ddnet/src/engine/e_packer.c

150 lines
2.3 KiB
C
Raw Normal View History

2007-11-25 19:42:40 +00:00
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
#include "e_system.h"
2007-12-15 10:24:49 +00:00
#include "e_packer.h"
#include "e_compression.h"
/* useful for debugging */
#define packing_error(p) p->error = 1
/* #define packing_error(p) p->error = 1; dbg_break() */
void packer_reset(PACKER *p)
{
p->error = 0;
p->current = p->buffer;
p->end = p->current + PACKER_BUFFER_SIZE;
}
void packer_add_int(PACKER *p, int i)
{
if(p->error)
return;
/* make sure that we have space enough */
if(p->end - p->current < 6)
{
dbg_break();
p->error = 1;
}
else
p->current = vint_pack(p->current, i);
}
void packer_add_string(PACKER *p, const char *str, int limit)
{
if(p->error)
return;
if(limit > 0)
{
while(*str && limit != 0)
{
*p->current++ = *str++;
limit--;
if(p->current >= p->end)
{
packing_error(p);
break;
}
}
*p->current++ = 0;
}
else
{
while(*str)
{
*p->current++ = *str++;
if(p->current >= p->end)
{
packing_error(p);
break;
}
}
*p->current++ = 0;
}
}
void packer_add_raw(PACKER *p, const unsigned char *data, int size)
{
if(p->error)
return;
if(p->current+size >= p->end)
{
packing_error(p);
return;
}
while(size)
{
*p->current++ = *data++;
size--;
}
}
int packer_size(PACKER *p)
{
return (const unsigned char *)p->current-(const unsigned char *)p->buffer;
}
const unsigned char *packer_data(PACKER *p)
{
return (const unsigned char *)p->buffer;
}
void unpacker_reset(UNPACKER *p, const unsigned char *data, int size)
{
p->error = 0;
p->start = data;
p->end = p->start + size;
p->current = p->start;
}
int unpacker_get_int(UNPACKER *p)
{
int i;
if(p->error || p->current >= p->end)
return 0;
p->current = vint_unpack(p->current, &i);
if(p->current > p->end)
{
packing_error(p);
return 0;
}
return i;
}
const char *unpacker_get_string(UNPACKER *p)
{
2007-10-06 17:01:06 +00:00
const char *ptr;
if(p->error || p->current >= p->end)
return "";
2007-10-06 17:01:06 +00:00
ptr = (const char *)p->current;
while(*p->current) /* skip the string */
{
p->current++;
if(p->current == p->end)
{
packing_error(p);
return "";
}
}
p->current++;
return ptr;
}
const unsigned char *unpacker_get_raw(UNPACKER *p, int size)
{
const unsigned char *ptr = p->current;
p->current += size;
if(p->current > p->end)
{
packing_error(p);
return 0;
}
return ptr;
}