tibia-client/src/framework/net/inputmessage.h

68 lines
2.1 KiB
C
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
2012-01-02 17:58:37 +01:00
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
2011-08-28 15:17:58 +02:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
2011-05-21 21:02:37 +02:00
#ifndef INPUTMESSAGE_H
#define INPUTMESSAGE_H
2011-08-15 16:06:15 +02:00
#include "declarations.h"
#include "networkexception.h"
2011-05-21 21:02:37 +02:00
class InputMessage
{
public:
enum {
2011-08-27 05:40:52 +02:00
BUFFER_MAXSIZE = 16384,
2011-05-30 05:11:12 +02:00
HEADER_POS = 0,
2011-05-21 21:02:37 +02:00
HEADER_LENGTH = 2,
2012-01-30 01:00:12 +01:00
CHECKSUm_position = 2,
2011-05-30 05:11:12 +02:00
CHECKSUM_LENGTH = 4,
DATA_POS = 6,
UNENCRYPTED_DATA_POS = 8
2011-05-21 21:02:37 +02:00
};
InputMessage();
void reset();
2011-08-16 06:24:20 +02:00
uint8 getU8(bool peek = false);
uint16 getU16(bool peek = false);
uint32 getU32(bool peek = false);
uint64 getU64(bool peek = false);
2011-05-21 21:02:37 +02:00
std::string getString();
2011-08-01 06:28:41 +02:00
void skipBytes(uint16 bytes) { m_readPos += bytes; }
2011-07-28 01:01:33 +02:00
uint8* getBuffer() { return m_buffer; }
2011-05-30 05:11:12 +02:00
uint16 getMessageSize() { return m_messageSize; }
void setMessageSize(uint16 messageSize) { m_messageSize = messageSize; }
2011-10-19 23:10:06 +02:00
bool eof() { return m_readPos >= m_messageSize; }
2011-05-21 21:02:37 +02:00
private:
bool canRead(int bytes);
void checkRead(int bytes);
2011-05-21 21:02:37 +02:00
2011-05-30 05:11:12 +02:00
uint16 m_readPos;
uint16 m_messageSize;
uint8 m_buffer[BUFFER_MAXSIZE];
2011-05-21 21:02:37 +02:00
};
#endif