0ad/source/lib/byte_order.cpp
janwas 06412a7751 allocators: bugfix (wasn't setting freelist to 0)
archive: afile_read bugfix (wasn't returning byte count)
byte_order: add to_leXX, implement read_leXX in terms of that, add
write_leXX (and also big-endian versions)
compression: support 0 length buffers + minor fixes
file: no longer support passing fn_len (that didn't work anyway due to
DynHashTbl find(const char*) interface); add FILE_DONT_SET_FN
optimization that prevents cluttering name cache.
file_cache: add logic to verify load/free/load/free sequence; add
FILE_LONG_LIVED flag to specify exceptions (e.g. XMB files that don't
free their buffer immediately)
vfs_mount/vfs_tree: bugfix (was mixing up portable and VFS paths)
vfs_optimizer: small fixes; creating Zip files now works
vfs_tree: add PathName that stores pointer to path and name component
for efficiency + convenience
zip: bugfixes (wasn't endian safe; incorrect handling of cmethod; forgot
to initialize ZipArchive members)

config: add -buildarchive flag
Xeromyces.cpp, FileUnpacker.cpp: add FILE_LONG_LIVED
mapreader: bump time estimate for ReadXML

This was SVN commit r3446.
2006-01-31 03:47:52 +00:00

124 lines
1.6 KiB
C++

#include "precompiled.h"
#include "byte_order.h"
#include "sdl.h"
inline u16 to_le16(u16 x)
{
#if SDL_BYTE_ORDER == SDL_BIG_ENDIAN
return SDL_Swap16(x);
#else
return x;
#endif
}
inline u32 to_le32(u32 x)
{
#if SDL_BYTE_ORDER == SDL_BIG_ENDIAN
return SDL_Swap32(x);
#else
return x;
#endif
}
inline u64 to_le64(u64 x)
{
#if SDL_BYTE_ORDER == SDL_BIG_ENDIAN
return SDL_Swap64(x);
#else
return x;
#endif
}
inline u16 to_be16(u16 x)
{
#if SDL_BYTE_ORDER == SDL_BIG_ENDIAN
return x;
#else
return SDL_Swap16(x);
#endif
}
inline u32 to_be32(u32 x)
{
#if SDL_BYTE_ORDER == SDL_BIG_ENDIAN
return x;
#else
return SDL_Swap32(x);
#endif
}
inline u64 to_be64(u64 x)
{
#if SDL_BYTE_ORDER == SDL_BIG_ENDIAN
return x;
#else
return SDL_Swap64(x);
#endif
}
u16 read_le16(const void* p)
{
return to_le16(*(u16*)p);
}
u32 read_le32(const void* p)
{
return to_le32(*(u32*)p);
}
u64 read_le64(const void* p)
{
return to_le64(*(u64*)p);
}
u16 read_be16(const void* p)
{
return to_be16(*(u16*)p);
}
u32 read_be32(const void* p)
{
return to_be32(*(u32*)p);
}
u64 read_be64(const void* p)
{
return to_be64(*(u64*)p);
}
void write_le16(void* p, u16 x)
{
*(u16*)p = to_le16(x);
}
void write_le32(void* p, u32 x)
{
*(u32*)p = to_le32(x);
}
void write_le64(void* p, u64 x)
{
*(u64*)p = to_le64(x);
}
void write_be16(void* p, u16 x)
{
*(u16*)p = to_be16(x);
}
void write_be32(void* p, u32 x)
{
*(u32*)p = to_be32(x);
}
void write_be64(void* p, u64 x)
{
*(u64*)p = to_be64(x);
}