Merge branch 'Network' of https://github.com/dean11/Danbias into GameLogic

This commit is contained in:
Pontus Fransson 2013-12-18 00:10:47 +01:00
commit 623267ad1b
3 changed files with 16 additions and 11 deletions

View File

@ -222,6 +222,8 @@ void Translator::Pack(OysterByte &bytes, CustomNetProtocol& protocol)
bool Translator::Unpack(CustomNetProtocol& protocol, OysterByte &bytes)
{
privateData->headerString.clear();
if(!privateData->UnpackHeader(protocol, bytes))
{
return false;

View File

@ -60,13 +60,14 @@ unsigned char* OysterByte::GetByteArray()
void OysterByte::AddSize(unsigned int size)
{
int oldSize = this->size;
this->size += size;
int newCapacity = this->size + size;
if(this->size >= capacity)
if(newCapacity >= capacity)
{
IncreaseCapacity(oldSize);
IncreaseCapacity(newCapacity);
}
this->size += size;
}
void OysterByte::SetBytes(unsigned char* bytes)
@ -116,7 +117,7 @@ OysterByte& OysterByte::operator +=(const OysterByte& obj)
if(newSize >= (int)capacity)
{
IncreaseCapacity(this->size);
IncreaseCapacity(newSize);
}
for(int i = size, j = 0; i < newSize; i++, j++)
@ -133,12 +134,12 @@ OysterByte& OysterByte::operator +=(const OysterByte& obj)
// Private //
/////////////
void OysterByte::IncreaseCapacity(unsigned int oldSize)
void OysterByte::IncreaseCapacity(unsigned int newCapacity)
{
capacity = size * 2;
capacity = newCapacity * 2;
unsigned char* temp = new unsigned char[capacity];
for(int i = 0; i < (int)oldSize; i++)
for(int i = 0; i < (int)this->size; i++)
{
temp[i] = byteArray[i];
}

View File

@ -282,7 +282,7 @@ namespace Oyster
char* UnpackCStr(unsigned char buffer[])
{
short len = UnpackS(buffer);
char* str = new char[len];
char* str = new char[len+1];
buffer += 2;
for(int i = 0; i < len; i++)
@ -290,6 +290,8 @@ namespace Oyster
str[i] = buffer[i];
}
str[len] = '\0';
return str;
}