Moved netmsg implementations, restructure

This commit is contained in:
Jordan Cristiano
2015-05-14 21:36:57 -04:00
parent 78de8690ab
commit 90d39bc498
75 changed files with 2421 additions and 201 deletions

View File

@ -0,0 +1,43 @@
#include "svc_usermessage.h"
#include "bitbuf.h"
#include "netmath.h"
#include "netcontants.h"
#include <cassert>
namespace NetHandlers
{
bool SVC_UserMessage_BitRead_Internal(bf_read& bitbuf, SourceGameContext& context, NetMsg::SVC_UserMessage* data)
{
data->msgType = bitbuf.ReadByte();
data->dataLengthInBits = bitbuf.ReadUBitLong(11);
assert(math::BitsToBytes(data->dataLengthInBits) <= MAX_USER_MSG_DATA);
data->data.reset(new uint8_t[math::BitsToBytes(data->dataLengthInBits)]);
bitbuf.ReadBits(data->data.get(), data->dataLengthInBits);
return !bitbuf.IsOverflowed();
}
bool SVC_UserMessage_BitWrite_Internal(bf_write& bitbuf, SourceGameContext& context, NetMsg::SVC_UserMessage* data)
{
bitbuf.WriteByte(data->msgType);
bitbuf.WriteUBitLong(data->dataLengthInBits, 11);
bitbuf.WriteBits(data->data.get(), data->dataLengthInBits);
return !bitbuf.IsOverflowed();
}
bool SVC_UserMessage_JsonRead_Internal(JsonRead& jsonbuf, SourceGameContext& context, NetMsg::SVC_UserMessage* data)
{
return true;
}
bool SVC_UserMessage_JsonWrite_Internal(JsonWrite& jsonbuf, SourceGameContext& context, NetMsg::SVC_UserMessage* data)
{
return true;
}
void SVC_UserMessage_ToString_Internal(std::ostringstream& out, NetMsg::SVC_UserMessage* data)
{
out << "svc_UserMessage: type " << data->msgType
<< ", bytes " << math::BitsToBytes(data->dataLengthInBits);
}
}