You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.2 KiB

#include "inputmessage.h"
InputMessage::InputMessage()
{
reset();
}
void InputMessage::reset()
{
m_readPos = 0;
m_messageSize = 2;
}
uint8 InputMessage::getU8(bool peek)
{
assert(canRead(1));
uint8 v = m_buffer[m_readPos];
if(!peek)
m_readPos += 1;
return v;
}
uint16 InputMessage::getU16(bool peek)
{
assert(canRead(2));
uint16 v = *(uint16_t*)(m_buffer + m_readPos);
if(!peek)
m_readPos += 2;
return v;
}
uint32 InputMessage::getU32(bool peek)
{
assert(canRead(4));
uint32 v = *(uint32*)(m_buffer + m_readPos);
if(!peek)
m_readPos += 4;
return v;
}
uint64 InputMessage::getU64(bool peek)
{
assert(canRead(8));
uint64 v = *(uint64*)(m_buffer + m_readPos);
if(!peek)
m_readPos += 8;
return v;
}
std::string InputMessage::getString()
{
uint16 stringLength = getU16();
assert(canRead(stringLength));
char* v = (char*)(m_buffer + m_readPos);
m_readPos += stringLength;
return std::string(v, stringLength);
}
bool InputMessage::canRead(int bytes)
{
if((m_readPos + bytes > m_messageSize) || (m_readPos + bytes > BUFFER_MAXSIZE))
return false;
return true;
}