re3/src/save/SaveBuf.h

73 lines
1.4 KiB
C++

#pragma once
#ifdef VALIDATE_SAVE_SIZE
extern int32 _saveBufCount;
#define INITSAVEBUF _saveBufCount = 0;
#define VALIDATESAVEBUF(b) assert(_saveBufCount == b);
#else
#define INITSAVEBUF
#define VALIDATESAVEBUF(b)
#endif
inline void
SkipSaveBuf(uint8 *&buf, int32 skip)
{
buf += skip;
#ifdef VALIDATE_SAVE_SIZE
_saveBufCount += skip;
#endif
}
template <typename T>
inline void
ReadSaveBuf(T* out, uint8 *&buf)
{
*out = *(T *)buf;
SkipSaveBuf(buf, sizeof(T));
}
template <typename T>
inline T *
WriteSaveBuf(uint8 *&buf, const T &value)
{
T *p = (T *)buf;
*p = value;
SkipSaveBuf(buf, sizeof(T));
return p;
}
#ifdef COMPATIBLE_SAVES
inline void
ZeroSaveBuf(uint8 *&buf, uint32 length)
{
memset(buf, 0, length);
SkipSaveBuf(buf, length);
}
#endif
#define SAVE_HEADER_SIZE (4 * sizeof(char) + sizeof(uint32))
#define WriteSaveHeader(buf, a, b, c, d, size) \
WriteSaveBuf(buf, a); \
WriteSaveBuf(buf, b); \
WriteSaveBuf(buf, c); \
WriteSaveBuf(buf, d); \
WriteSaveBuf(buf, (uint32)(size));
#ifdef VALIDATE_SAVE_SIZE
#define CheckSaveHeader(buf, a, b, c, d, size) do { \
char _c; uint32 _size;\
ReadSaveBuf(&_c, buf);\
assert(_c == a);\
ReadSaveBuf(&_c, buf);\
assert(_c == b);\
ReadSaveBuf(&_c, buf);\
assert(_c == c);\
ReadSaveBuf(&_c, buf);\
assert(_c == d);\
ReadSaveBuf(&_size, buf);\
assert(_size == size);\
} while(0)
#else
#define CheckSaveHeader(buf, a, b, c, d, size) SkipSaveBuf(buf, 8);
#endif