tibia-client/src/framework/core/binarytree.cpp

249 lines
5.7 KiB
C++
Raw Normal View History

2012-06-24 15:05:44 +02:00
/*
2017-01-13 11:47:07 +01:00
* Copyright (c) 2010-2017 OTClient <https://github.com/edubart/otclient>
2012-06-24 15:05:44 +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.
*/
#include "binarytree.h"
#include "filestream.h"
BinaryTree::BinaryTree(const FileStreamPtr& fin) :
m_fin(fin), m_pos(0xFFFFFFFF)
{
m_startPos = fin->tell();
}
BinaryTree::~BinaryTree()
{
}
void BinaryTree::skipNodes()
2012-06-24 15:05:44 +02:00
{
while(true) {
uint8 byte = m_fin->getU8();
2012-06-24 15:05:44 +02:00
switch(byte) {
case BINARYTREE_NODE_START: {
skipNodes();
2012-06-24 15:05:44 +02:00
break;
}
case BINARYTREE_NODE_END:
return;
case BINARYTREE_ESCAPE_CHAR:
m_fin->getU8();
2012-06-24 15:05:44 +02:00
break;
default:
break;
}
}
}
void BinaryTree::unserialize()
2012-06-24 17:44:33 +02:00
{
if(m_pos != 0xFFFFFFFF)
return;
m_pos = 0;
2012-06-24 17:44:33 +02:00
m_fin->seek(m_startPos);
while(true) {
uint8 byte = m_fin->getU8();
switch(byte) {
case BINARYTREE_NODE_START: {
skipNodes();
break;
}
case BINARYTREE_NODE_END:
return;
case BINARYTREE_ESCAPE_CHAR:
m_buffer.add(m_fin->getU8());
break;
default:
m_buffer.add(byte);
break;
}
}
}
BinaryTreeVec BinaryTree::getChildren()
{
BinaryTreeVec children;
m_fin->seek(m_startPos);
while(true) {
uint8 byte = m_fin->getU8();
switch(byte) {
case BINARYTREE_NODE_START: {
BinaryTreePtr node(new BinaryTree(m_fin));
children.push_back(node);
node->skipNodes();
break;
}
case BINARYTREE_NODE_END:
return children;
case BINARYTREE_ESCAPE_CHAR:
m_fin->getU8();
break;
default:
break;
}
}
2012-06-24 17:44:33 +02:00
}
2012-06-24 15:05:44 +02:00
void BinaryTree::seek(uint pos)
{
unserialize();
2012-06-24 15:05:44 +02:00
if(pos > m_buffer.size())
stdext::throw_exception("BinaryTree: seek failed");
m_pos = pos;
}
2014-02-13 03:41:53 +01:00
void BinaryTree::skip(uint len)
{
unserialize();
seek(tell() + len);
}
2012-06-24 15:05:44 +02:00
uint8 BinaryTree::getU8()
{
unserialize();
2012-07-14 19:29:42 +02:00
if(m_pos+1 > m_buffer.size())
2012-06-24 15:05:44 +02:00
stdext::throw_exception("BinaryTree: getU8 failed");
uint8 v = m_buffer[m_pos];
m_pos += 1;
return v;
}
uint16 BinaryTree::getU16()
{
unserialize();
2012-07-14 19:29:42 +02:00
if(m_pos+2 > m_buffer.size())
2012-06-24 15:05:44 +02:00
stdext::throw_exception("BinaryTree: getU16 failed");
uint16 v = stdext::readULE16(&m_buffer[m_pos]);
2012-06-24 15:05:44 +02:00
m_pos += 2;
return v;
}
uint32 BinaryTree::getU32()
{
unserialize();
2012-07-14 19:29:42 +02:00
if(m_pos+4 > m_buffer.size())
2012-06-24 15:05:44 +02:00
stdext::throw_exception("BinaryTree: getU32 failed");
uint32 v = stdext::readULE32(&m_buffer[m_pos]);
2012-06-24 15:05:44 +02:00
m_pos += 4;
return v;
}
uint64 BinaryTree::getU64()
{
unserialize();
2012-07-14 19:29:42 +02:00
if(m_pos+8 > m_buffer.size())
stdext::throw_exception("BinaryTree: getU64 failed");
uint64 v = stdext::readULE64(&m_buffer[m_pos]);
2012-06-24 15:05:44 +02:00
m_pos += 8;
return v;
}
2012-07-30 18:26:36 +02:00
std::string BinaryTree::getString(uint16 len)
{
unserialize();
if(len == 0)
len = getU16();
2012-07-30 18:26:36 +02:00
if(m_pos+len > m_buffer.size())
stdext::throw_exception("BinaryTree: getString failed: string length exceeded buffer size.");
std::string ret((char *)&m_buffer[m_pos], len);
m_pos += len;
return ret;
}
Point BinaryTree::getPoint()
{
Point ret;
ret.x = getU8();
ret.y = getU8();
return ret;
}
2012-08-20 00:30:49 +02:00
OutputBinaryTree::OutputBinaryTree(const FileStreamPtr& fin)
: m_fin(fin)
{
startNode(0);
}
void OutputBinaryTree::addU8(uint8 v)
{
write(&v, 1);
}
void OutputBinaryTree::addU16(uint16 v)
{
uint8 data[2];
stdext::writeULE16(data, v);
2012-08-20 00:30:49 +02:00
write(data, 2);
}
void OutputBinaryTree::addU32(uint32 v)
{
uint8 data[4];
stdext::writeULE32(data, v);
2012-08-20 00:30:49 +02:00
write(data, 4);
}
void OutputBinaryTree::addString(const std::string& v)
{
if(v.size() > 0xFFFF)
stdext::throw_exception("too long string");
addU16(v.length());
write((const uint8*)v.c_str(), v.length());
}
void OutputBinaryTree::addPos(uint16 x, uint16 y, uint8 z)
2012-08-20 00:30:49 +02:00
{
addU16(x);
addU16(y);
addU8(z);
2012-08-20 00:30:49 +02:00
}
void OutputBinaryTree::addPoint(const Point& point)
{
addU8(point.x);
addU8(point.y);
}
void OutputBinaryTree::startNode(uint8 node)
{
m_fin->addU8(BINARYTREE_NODE_START);
2012-09-29 18:48:01 +02:00
write(&node, 1);
2012-08-20 00:30:49 +02:00
}
void OutputBinaryTree::endNode()
{
m_fin->addU8(BINARYTREE_NODE_END);
}
2012-09-28 09:24:49 +02:00
void OutputBinaryTree::write(const uint8 *data, size_t size)
2012-08-20 00:30:49 +02:00
{
2012-09-28 09:24:49 +02:00
for(size_t i=0;i<size;++i) {
2012-08-20 00:30:49 +02:00
if(data[i]==BINARYTREE_NODE_START || data[i]==BINARYTREE_NODE_END||data[i]==BINARYTREE_ESCAPE_CHAR)
m_fin->addU8(BINARYTREE_ESCAPE_CHAR);
m_fin->addU8(data[i]);
}
}
2012-09-28 09:24:49 +02:00