mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-19 13:36:13 +00:00
Changed: Created NELID macro to fix warning "multi-character character constant"
This commit is contained in:
parent
c9a3aa304a
commit
bbcb725c39
37 changed files with 76 additions and 69 deletions
|
@ -109,7 +109,7 @@ struct TLoadFormDicoEntry
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
*/
|
*/
|
||||||
const uint32 PACKED_SHEET_HEADER = 'PKSH';
|
const uint32 PACKED_SHEET_HEADER = NELID("PKSH");
|
||||||
const uint32 PACKED_SHEET_VERSION = 5;
|
const uint32 PACKED_SHEET_VERSION = 5;
|
||||||
// This Version may be used if you want to use the serialVersion() system in loadForm()
|
// This Version may be used if you want to use the serialVersion() system in loadForm()
|
||||||
const uint32 PACKED_SHEET_VERSION_COMPATIBLE = 0;
|
const uint32 PACKED_SHEET_VERSION_COMPATIBLE = 0;
|
||||||
|
|
|
@ -53,6 +53,13 @@ class CMemStream;
|
||||||
# endif
|
# endif
|
||||||
# define NLMISC_BSWAP64(src) (src) = (((src)>>56)&0xFF) | ((((src)>>48)&0xFF)<<8) | ((((src)>>40)&0xFF)<<16) | ((((src)>>32)&0xFF)<<24) | ((((src)>>24)&0xFF)<<32) | ((((src)>>16)&0xFF)<<40) | ((((src)>>8)&0xFF)<<48) | (((src)&0xFF)<<56)
|
# define NLMISC_BSWAP64(src) (src) = (((src)>>56)&0xFF) | ((((src)>>48)&0xFF)<<8) | ((((src)>>40)&0xFF)<<16) | ((((src)>>32)&0xFF)<<24) | ((((src)>>24)&0xFF)<<32) | ((((src)>>16)&0xFF)<<40) | ((((src)>>8)&0xFF)<<48) | (((src)&0xFF)<<56)
|
||||||
|
|
||||||
|
// convert a 4 characters string to uint32
|
||||||
|
#ifdef NL_LITTLE_ENDIAN
|
||||||
|
# define NELID(x) (uint32((x[0] << 24) | (x[1] << 16) | (x[2] << 8) | (x[3])))
|
||||||
|
#else
|
||||||
|
# define NELID(x) (uint32((x[3] << 24) | (x[2] << 16) | (x[1] << 8) | (x[0])))
|
||||||
|
#endif
|
||||||
|
|
||||||
// ======================================================================================================
|
// ======================================================================================================
|
||||||
/**
|
/**
|
||||||
* Stream Exception.
|
* Stream Exception.
|
||||||
|
|
|
@ -89,8 +89,8 @@ void CAnimation::serial (NLMISC::IStream& f)
|
||||||
nlassert(_IdByChannelId.empty());
|
nlassert(_IdByChannelId.empty());
|
||||||
|
|
||||||
// Serial a header
|
// Serial a header
|
||||||
f.serialCheck ((uint32)'_LEN');
|
f.serialCheck (NELID("_LEN"));
|
||||||
f.serialCheck ((uint32)'MINA');
|
f.serialCheck (NELID("MINA"));
|
||||||
|
|
||||||
// Serial a version
|
// Serial a version
|
||||||
sint version=f.serialVersion (2);
|
sint version=f.serialVersion (2);
|
||||||
|
|
|
@ -185,9 +185,9 @@ void CAnimationSet::serial (NLMISC::IStream& f)
|
||||||
nlassert(!_AnimHeaderOptimisation);
|
nlassert(!_AnimHeaderOptimisation);
|
||||||
|
|
||||||
// Serial an header
|
// Serial an header
|
||||||
f.serialCheck ((uint32)'_LEN');
|
f.serialCheck (NELID("_LEN"));
|
||||||
f.serialCheck ((uint32)'MINA');
|
f.serialCheck (NELID("MINA"));
|
||||||
f.serialCheck ((uint32)'TES_');
|
f.serialCheck (NELID("TES_"));
|
||||||
|
|
||||||
// Serial a version
|
// Serial a version
|
||||||
uint ver= f.serialVersion (1);
|
uint ver= f.serialVersion (1);
|
||||||
|
|
|
@ -264,9 +264,9 @@ void CLodCharacterShapeBuild::compile(const std::vector<bool> &triangleSelection
|
||||||
void CLodCharacterShapeBuild::serial(NLMISC::IStream &f)
|
void CLodCharacterShapeBuild::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
// NEL_CLODBULD
|
// NEL_CLODBULD
|
||||||
f.serialCheck((uint32)'_LEN');
|
f.serialCheck(NELID("_LEN"));
|
||||||
f.serialCheck((uint32)'DOLC');
|
f.serialCheck(NELID("DOLC"));
|
||||||
f.serialCheck((uint32)'DLUB');
|
f.serialCheck(NELID("DLUB"));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Version 1:
|
Version 1:
|
||||||
|
@ -525,9 +525,9 @@ void CLodCharacterShape::CBoneInfluence::serial(NLMISC::IStream &f)
|
||||||
void CLodCharacterShape::serial(NLMISC::IStream &f)
|
void CLodCharacterShape::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
// NEL_CLODSHAP
|
// NEL_CLODSHAP
|
||||||
f.serialCheck((uint32)'_LEN');
|
f.serialCheck(NELID("_LEN"));
|
||||||
f.serialCheck((uint32)'DOLC');
|
f.serialCheck(NELID("DOLC"));
|
||||||
f.serialCheck((uint32)'PAHS');
|
f.serialCheck(NELID("PAHS"));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Version 1:
|
Version 1:
|
||||||
|
|
|
@ -152,7 +152,7 @@ void CPackedWorld::getZones(std::vector<TPackedZoneBaseSPtr> &zones)
|
||||||
void CPackedWorld::serialZoneNames(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CPackedWorld::serialZoneNames(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
{
|
{
|
||||||
f.serialVersion(1);
|
f.serialVersion(1);
|
||||||
f.serialCheck((uint32) 'OWPA');
|
f.serialCheck(NELID("OWPA"));
|
||||||
f.serialCont(ZoneNames);
|
f.serialCont(ZoneNames);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ CPSLocated::CPSLocated() : /*_MaxNumFaces(0),*/
|
||||||
_ParametricMotion(false),
|
_ParametricMotion(false),
|
||||||
_TriggerOnDeath(false),
|
_TriggerOnDeath(false),
|
||||||
_LastForever(true),
|
_LastForever(true),
|
||||||
_TriggerID((uint32) 'NONE'),
|
_TriggerID(NELID("NONE")),
|
||||||
_NonIntegrableForceNbRefs(0),
|
_NonIntegrableForceNbRefs(0),
|
||||||
_NumIntegrableForceWithDifferentBasis(0)
|
_NumIntegrableForceWithDifferentBasis(0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -405,7 +405,7 @@ void CInstanceGroup::serial (NLMISC::IStream& f)
|
||||||
* ***********************************************/
|
* ***********************************************/
|
||||||
|
|
||||||
// Serial a header
|
// Serial a header
|
||||||
f.serialCheck ((uint32)'TPRG');
|
f.serialCheck (NELID("TPRG"));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Version 5:
|
Version 5:
|
||||||
|
|
|
@ -116,7 +116,7 @@ IShape* CShapeStream::getShapePointer () const
|
||||||
void CShapeStream::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CShapeStream::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
{
|
{
|
||||||
// First, serial an header or checking if it is correct
|
// First, serial an header or checking if it is correct
|
||||||
f.serialCheck ((uint32)'PAHS');
|
f.serialCheck (NELID("PAHS"));
|
||||||
|
|
||||||
// Then, serial the shape
|
// Then, serial the shape
|
||||||
f.serialPolyPtr (_Shape);
|
f.serialPolyPtr (_Shape);
|
||||||
|
|
|
@ -60,7 +60,7 @@ void CSkeletonWeight::build (const TNodeArray& array)
|
||||||
void CSkeletonWeight::serial (NLMISC::IStream& f)
|
void CSkeletonWeight::serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// Serial a header
|
// Serial a header
|
||||||
f.serialCheck ((uint32)'TWKS');
|
f.serialCheck (NELID("TWKS"));
|
||||||
|
|
||||||
// Serial a version number
|
// Serial a version number
|
||||||
(void)f.serialVersion (0);
|
(void)f.serialVersion (0);
|
||||||
|
|
|
@ -104,8 +104,8 @@ const sint CTileFarBank::_Version=0x0;
|
||||||
void CTileFarBank::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CTileFarBank::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
{
|
{
|
||||||
// Write/Check "FAR_BANK" in header of the stream
|
// Write/Check "FAR_BANK" in header of the stream
|
||||||
f.serialCheck ((uint32)'_RAF');
|
f.serialCheck (NELID("_RAF"));
|
||||||
f.serialCheck ((uint32)'KNAB');
|
f.serialCheck (NELID("KNAB"));
|
||||||
|
|
||||||
// Serial version
|
// Serial version
|
||||||
(void)f.serialVersion(_Version);
|
(void)f.serialVersion(_Version);
|
||||||
|
|
|
@ -192,10 +192,10 @@ void CVegetableShape::serial(NLMISC::IStream &f)
|
||||||
- BestSidedPreComputeLighting
|
- BestSidedPreComputeLighting
|
||||||
*/
|
*/
|
||||||
sint ver= f.serialVersion(1);
|
sint ver= f.serialVersion(1);
|
||||||
f.serialCheck((uint32)'_LEN');
|
f.serialCheck(NELID("_LEN"));
|
||||||
f.serialCheck((uint32)'GEV_');
|
f.serialCheck(NELID("GEV_"));
|
||||||
f.serialCheck((uint32)'BATE');
|
f.serialCheck(NELID("BATE"));
|
||||||
f.serialCheck((uint32)'__EL');
|
f.serialCheck(NELID("__EL"));
|
||||||
|
|
||||||
f.serial(Lighted);
|
f.serial(Lighted);
|
||||||
f.serial(DoubleSided);
|
f.serial(DoubleSided);
|
||||||
|
|
|
@ -458,7 +458,7 @@ void CZone::serial(NLMISC::IStream &f)
|
||||||
throw EOlderStream(f);
|
throw EOlderStream(f);
|
||||||
}
|
}
|
||||||
|
|
||||||
f.serialCheck((uint32)'ENOZ');
|
f.serialCheck(NELID("ENOZ"));
|
||||||
|
|
||||||
f.xmlSerial (ZoneId, "ZONE_ID");
|
f.xmlSerial (ZoneId, "ZONE_ID");
|
||||||
f.xmlSerial (ZoneBB, "BB");
|
f.xmlSerial (ZoneBB, "BB");
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
#ifdef LUA_NEVRAX_VERSION
|
#ifdef LUA_NEVRAX_VERSION
|
||||||
#include "lua_ide_dll_nevrax/include/lua_ide_dll/ide_interface.h" // external debugger
|
#include "lua_ide_dll_nevrax/include/lua_ide_dll/ide_interface.h" // external debugger
|
||||||
#endif
|
#endif
|
||||||
const uint32 UI_CACHE_SERIAL_CHECK = (uint32) 'IUG_';
|
const uint32 UI_CACHE_SERIAL_CHECK = NELID("IUG_");
|
||||||
|
|
||||||
using namespace NLMISC;
|
using namespace NLMISC;
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
|
@ -80,7 +80,7 @@ void CMaterial::serial (NLMISC::IStream &s)
|
||||||
s.xmlPush ("LIGO_MATERIAL");
|
s.xmlPush ("LIGO_MATERIAL");
|
||||||
|
|
||||||
// Serial the header
|
// Serial the header
|
||||||
s.serialCheck ((uint32)'TMOL');
|
s.serialCheck (NELID("TMOL"));
|
||||||
|
|
||||||
// Serial the version
|
// Serial the version
|
||||||
/*sint ver =*/ s.serialVersion (0);
|
/*sint ver =*/ s.serialVersion (0);
|
||||||
|
|
|
@ -199,7 +199,7 @@ void CTransition::serial (NLMISC::IStream &s)
|
||||||
s.xmlPush ("LIGO_TRANSITION");
|
s.xmlPush ("LIGO_TRANSITION");
|
||||||
|
|
||||||
// Serial the header
|
// Serial the header
|
||||||
s.serialCheck ((uint32)'STGL');
|
s.serialCheck (NELID("STGL"));
|
||||||
|
|
||||||
// Serial the version
|
// Serial the version
|
||||||
/*sint ver =*/ s.serialVersion (0);
|
/*sint ver =*/ s.serialVersion (0);
|
||||||
|
|
|
@ -153,7 +153,7 @@ void CZoneRegion::serial (NLMISC::IStream &f)
|
||||||
f.xmlPush ("LAND");
|
f.xmlPush ("LAND");
|
||||||
|
|
||||||
sint32 version = f.serialVersion (1);
|
sint32 version = f.serialVersion (1);
|
||||||
f.serialCheck ((uint32)'DNAL');
|
f.serialCheck (NELID("DNAL"));
|
||||||
|
|
||||||
f.xmlSerial (_MinX, "MIN_X");
|
f.xmlSerial (_MinX, "MIN_X");
|
||||||
f.xmlSerial (_MinY, "MIN_Y");
|
f.xmlSerial (_MinY, "MIN_Y");
|
||||||
|
|
|
@ -85,7 +85,7 @@ void CPrimitiveBlock::serial (NLMISC::IStream &s)
|
||||||
s.xmlPush ("PRIMITIVE_BLOCK");
|
s.xmlPush ("PRIMITIVE_BLOCK");
|
||||||
|
|
||||||
// Serial checks
|
// Serial checks
|
||||||
s.serialCheck ((uint32)'KBRP');
|
s.serialCheck (NELID("KBRP"));
|
||||||
|
|
||||||
// Serial the version
|
// Serial the version
|
||||||
(void)s.serialVersion (0);
|
(void)s.serialVersion (0);
|
||||||
|
|
|
@ -1711,8 +1711,8 @@ void CObjectViewer::serial (NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
// version 4: include particle workspace infos
|
// version 4: include particle workspace infos
|
||||||
// serial "OBJV_CFG"
|
// serial "OBJV_CFG"
|
||||||
f.serialCheck ((uint32)'VJBO');
|
f.serialCheck (NELID("VJBO');
|
||||||
f.serialCheck ((uint32)'GFC_');
|
f.serialCheck (NELID("GFC_');
|
||||||
|
|
||||||
// serial the version
|
// serial the version
|
||||||
int ver=f.serialVersion (4);
|
int ver=f.serialVersion (4);
|
||||||
|
|
|
@ -64,7 +64,7 @@ bool CPositionState::getPos(sint32 &px, sint32 &py)
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CPositionState::serialNodeLeaf(NLMISC::IStream &f, CCDBNodeLeaf *&dbNode)
|
void CPositionState::serialNodeLeaf(NLMISC::IStream &f, CCDBNodeLeaf *&dbNode)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32) 'NL__');
|
f.serialCheck(NELID("NL__"));
|
||||||
f.serialVersion(0);
|
f.serialVersion(0);
|
||||||
std::string dbPath;
|
std::string dbPath;
|
||||||
if (f.isReading())
|
if (f.isReading())
|
||||||
|
@ -85,18 +85,18 @@ void CPositionState::serialNodeLeaf(NLMISC::IStream &f, CCDBNodeLeaf *&dbNode)
|
||||||
}
|
}
|
||||||
f.serial(dbPath);
|
f.serial(dbPath);
|
||||||
}
|
}
|
||||||
f.serialCheck((uint32) 'END_');
|
f.serialCheck(NELID("END_"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CUIDEntityPositionState::serial(NLMISC::IStream &f)
|
void CUIDEntityPositionState::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32) 'UIDE');
|
f.serialCheck(NELID("UIDE"));
|
||||||
f.serialVersion(0);
|
f.serialVersion(0);
|
||||||
serialNodeLeaf(f, _DBPos);
|
serialNodeLeaf(f, _DBPos);
|
||||||
serialNodeLeaf(f, _Uid);
|
serialNodeLeaf(f, _Uid);
|
||||||
f.serialCheck((uint32) '_END');
|
f.serialCheck(NELID("_END"));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
|
@ -241,11 +241,11 @@ bool CAnimalPositionState::getPos(sint32 &px, sint32 &py)
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CAnimalPositionState::serial(NLMISC::IStream &f)
|
void CAnimalPositionState::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32) 'APS_');
|
f.serialCheck(NELID("APS_"));
|
||||||
f.serialVersion(0);
|
f.serialVersion(0);
|
||||||
CUIDEntityPositionState::serial(f);
|
CUIDEntityPositionState::serial(f);
|
||||||
serialNodeLeaf(f, _Status);
|
serialNodeLeaf(f, _Status);
|
||||||
f.serialCheck((uint32) 'END_');
|
f.serialCheck(NELID("END_"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -299,11 +299,11 @@ bool CDialogEntityPositionState::getDbPos(sint32 &px, sint32 &py)
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
void CNamedEntityPositionState::serial(NLMISC::IStream &f)
|
void CNamedEntityPositionState::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32) 'NEPS');
|
f.serialCheck(NELID("NEPS"));
|
||||||
f.serialVersion(0);
|
f.serialVersion(0);
|
||||||
serialNodeLeaf(f, _Name);
|
serialNodeLeaf(f, _Name);
|
||||||
serialNodeLeaf(f, _X);
|
serialNodeLeaf(f, _X);
|
||||||
serialNodeLeaf(f, _Y);
|
serialNodeLeaf(f, _Y);
|
||||||
f.serialCheck((uint32) 'END_');
|
f.serialCheck(NELID("END_"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
void CFilteredChatSummary::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CFilteredChatSummary::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
{
|
{
|
||||||
sint ver= f.serialVersion(2);
|
sint ver= f.serialVersion(2);
|
||||||
f.serialCheck((uint32) 'USHC');
|
f.serialCheck(NELID("USHC"));
|
||||||
f.serial(SrcGuild);
|
f.serial(SrcGuild);
|
||||||
f.serial(SrcTeam);
|
f.serial(SrcTeam);
|
||||||
f.serial(SrcAroundMe);
|
f.serial(SrcAroundMe);
|
||||||
|
@ -42,7 +42,7 @@ void CFilteredChatSummary::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
void CFilteredDynChatSummary::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
void CFilteredDynChatSummary::serial(NLMISC::IStream &f) throw(NLMISC::EStream)
|
||||||
{
|
{
|
||||||
sint ver = f.serialVersion(0);
|
sint ver = f.serialVersion(0);
|
||||||
f.serialCheck((uint32) 'USHC');
|
f.serialCheck((NELID("USHC"));
|
||||||
if (ver >= 0)
|
if (ver >= 0)
|
||||||
{
|
{
|
||||||
for (uint8 i = 0; i < CChatGroup::MaxDynChanPerPlayer; i++)
|
for (uint8 i = 0; i < CChatGroup::MaxDynChanPerPlayer; i++)
|
||||||
|
|
|
@ -68,7 +68,7 @@ void CCompassTarget::serial(NLMISC::IStream &f)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
f.serialCheck((uint32) 'CTAR');
|
f.serialCheck(NELID("CTAR"));
|
||||||
f.serialVersion(0);
|
f.serialVersion(0);
|
||||||
f.serial(Pos);
|
f.serial(Pos);
|
||||||
// for the name, try to save a string identifier if possible, because language may be changed between
|
// for the name, try to save a string identifier if possible, because language may be changed between
|
||||||
|
@ -95,7 +95,7 @@ void CCompassTarget::serial(NLMISC::IStream &f)
|
||||||
_PositionState = NULL;
|
_PositionState = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
f.serialCheck((uint32) '_END');
|
f.serialCheck(NELID("_END"));
|
||||||
// if language has been modified, then we are not able to display correctly the name, so just
|
// if language has been modified, then we are not able to display correctly the name, so just
|
||||||
// reset the compass to north to avoid incoherency
|
// reset the compass to north to avoid incoherency
|
||||||
if (f.isReading())
|
if (f.isReading())
|
||||||
|
|
|
@ -1663,7 +1663,7 @@ bool CInterfaceManager::loadConfig (const string &filename)
|
||||||
// serial user chats info (serial it before position of windows so that they can be updated properly)
|
// serial user chats info (serial it before position of windows so that they can be updated properly)
|
||||||
if (ver >= 1)
|
if (ver >= 1)
|
||||||
{
|
{
|
||||||
f.serialCheck(uint32('_ICU'));
|
f.serialCheck(NELID("_ICU"));
|
||||||
if (!PeopleInterraction.loadUserChatsInfos(f))
|
if (!PeopleInterraction.loadUserChatsInfos(f))
|
||||||
{
|
{
|
||||||
nlwarning("Bad user chat saving");
|
nlwarning("Bad user chat saving");
|
||||||
|
@ -1671,7 +1671,7 @@ bool CInterfaceManager::loadConfig (const string &filename)
|
||||||
}
|
}
|
||||||
|
|
||||||
// header
|
// header
|
||||||
f.serialCheck(uint32('GFCI'));
|
f.serialCheck(NELID("GFCI"));
|
||||||
f.serial(nNbMode);
|
f.serial(nNbMode);
|
||||||
f.serial(_CurrentMode);
|
f.serial(_CurrentMode);
|
||||||
if(ver>=10)
|
if(ver>=10)
|
||||||
|
@ -1897,7 +1897,7 @@ bool CInterfaceManager::saveConfig (const string &filename)
|
||||||
f.serialVersion(ICFG_STREAM_VERSION);
|
f.serialVersion(ICFG_STREAM_VERSION);
|
||||||
|
|
||||||
// serial user chats info (serial it before position of windows so that they can be updated properly)
|
// serial user chats info (serial it before position of windows so that they can be updated properly)
|
||||||
f.serialCheck(uint32('_ICU'));
|
f.serialCheck(NELID("_ICU"));
|
||||||
if (!PeopleInterraction.saveUserChatsInfos(f))
|
if (!PeopleInterraction.saveUserChatsInfos(f))
|
||||||
{
|
{
|
||||||
nlwarning("Config saving failed");
|
nlwarning("Config saving failed");
|
||||||
|
@ -1907,7 +1907,7 @@ bool CInterfaceManager::saveConfig (const string &filename)
|
||||||
}
|
}
|
||||||
|
|
||||||
// header
|
// header
|
||||||
f.serialCheck(uint32('GFCI'));
|
f.serialCheck(NELID("GFCI"));
|
||||||
f.serial(i);
|
f.serial(i);
|
||||||
f.serial(_CurrentMode);
|
f.serial(_CurrentMode);
|
||||||
f.serial(_LastInGameScreenW);
|
f.serial(_LastInGameScreenW);
|
||||||
|
|
|
@ -1695,14 +1695,14 @@ bool CPeopleInterraction::saveUserChatsInfos(NLMISC::IStream &f)
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
sint ver= f.serialVersion(USER_CHATS_INFO_VERSION);
|
sint ver= f.serialVersion(USER_CHATS_INFO_VERSION);
|
||||||
f.serialCheck((uint32) 'TAHC');
|
f.serialCheck(NELID("TAHC"));
|
||||||
//saveFilteredChat(f, MainChat);
|
//saveFilteredChat(f, MainChat);
|
||||||
saveFilteredChat(f, ChatGroup);
|
saveFilteredChat(f, ChatGroup);
|
||||||
for(uint k = 0; k < MaxNumUserChats; ++k)
|
for(uint k = 0; k < MaxNumUserChats; ++k)
|
||||||
{
|
{
|
||||||
saveFilteredChat(f, UserChat[k]);
|
saveFilteredChat(f, UserChat[k]);
|
||||||
}
|
}
|
||||||
f.serialCheck((uint32) 'TAHC');
|
f.serialCheck(NELID("TAHC"));
|
||||||
if (ver>=1)
|
if (ver>=1)
|
||||||
{
|
{
|
||||||
CChatGroupWindow *pCGW = PeopleInterraction.getChatGroupWindow();
|
CChatGroupWindow *pCGW = PeopleInterraction.getChatGroupWindow();
|
||||||
|
@ -1732,7 +1732,7 @@ bool CPeopleInterraction::saveUserDynChatsInfos(NLMISC::IStream &f)
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
sint ver = f.serialVersion(USER_DYN_CHATS_INFO_VERSION);
|
sint ver = f.serialVersion(USER_DYN_CHATS_INFO_VERSION);
|
||||||
f.serialCheck((uint32) 'OMGY');
|
f.serialCheck(NELID("OMGY"));
|
||||||
if (ver >= 1)
|
if (ver >= 1)
|
||||||
{
|
{
|
||||||
saveFilteredDynChat(f, TheUserChat);
|
saveFilteredDynChat(f, TheUserChat);
|
||||||
|
@ -1755,7 +1755,7 @@ bool CPeopleInterraction::loadUserChatsInfos(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
bool present;
|
bool present;
|
||||||
sint ver = f.serialVersion(USER_CHATS_INFO_VERSION);
|
sint ver = f.serialVersion(USER_CHATS_INFO_VERSION);
|
||||||
f.serialCheck((uint32) 'TAHC');
|
f.serialCheck(NELID("TAHC"));
|
||||||
f.serial(present);
|
f.serial(present);
|
||||||
if (!present)
|
if (!present)
|
||||||
{
|
{
|
||||||
|
@ -1777,7 +1777,7 @@ bool CPeopleInterraction::loadUserChatsInfos(NLMISC::IStream &f)
|
||||||
setupUserChatFromSummary(fcs, UserChat[k]);
|
setupUserChatFromSummary(fcs, UserChat[k]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
f.serialCheck((uint32) 'TAHC');
|
f.serialCheck(NELID("TAHC"));
|
||||||
if (ver>=1)
|
if (ver>=1)
|
||||||
{
|
{
|
||||||
// CChatGroupWindow *pCGW = PeopleInterraction.getChatGroupWindow();
|
// CChatGroupWindow *pCGW = PeopleInterraction.getChatGroupWindow();
|
||||||
|
@ -1819,7 +1819,7 @@ bool CPeopleInterraction::loadUserDynChatsInfos(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
bool present;
|
bool present;
|
||||||
sint ver = f.serialVersion(USER_DYN_CHATS_INFO_VERSION);
|
sint ver = f.serialVersion(USER_DYN_CHATS_INFO_VERSION);
|
||||||
f.serialCheck((uint32) 'OMGY');
|
f.serialCheck(NELID("OMGY"));
|
||||||
f.serial(present);
|
f.serial(present);
|
||||||
if (!present)
|
if (!present)
|
||||||
{
|
{
|
||||||
|
|
|
@ -429,7 +429,7 @@ CPackedWorld *CIslandCollision::reloadPackedIsland(const CScenarioEntryPoints::C
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
CIFile f(CPath::lookup(islandDesc.Island + ".island_hm"));
|
CIFile f(CPath::lookup(islandDesc.Island + ".island_hm"));
|
||||||
f.serialCheck((uint32) 'MHSI');
|
f.serialCheck(NELID("MHSI"));
|
||||||
f.serial(_HeightMap);
|
f.serial(_HeightMap);
|
||||||
}
|
}
|
||||||
catch(const Exception &e)
|
catch(const Exception &e)
|
||||||
|
|
|
@ -341,8 +341,8 @@ private:
|
||||||
|
|
||||||
void serial(NLMISC::IStream &f)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32)'_RTS');
|
f.serialCheck(NELID("_RTS"));
|
||||||
f.serialCheck((uint32)'KCAP');
|
f.serialCheck(NELID("KCAP"));
|
||||||
f.serialVersion(0);
|
f.serialVersion(0);
|
||||||
f.serial(PackedVersion);
|
f.serial(PackedVersion);
|
||||||
f.serial(LanguageCode);
|
f.serial(LanguageCode);
|
||||||
|
|
|
@ -553,7 +553,7 @@ void CWorldMap::clear()
|
||||||
|
|
||||||
void CWorldMap::serial(NLMISC::IStream &f)
|
void CWorldMap::serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32)'WMAP');
|
f.serialCheck(NELID("WMAP');
|
||||||
|
|
||||||
// Version
|
// Version
|
||||||
// 0: initial version
|
// 0: initial version
|
||||||
|
|
|
@ -259,7 +259,7 @@ bool CDBDeltaFile::preload()
|
||||||
*/
|
*/
|
||||||
bool CDBDeltaFile::serialHeader()
|
bool CDBDeltaFile::serialHeader()
|
||||||
{
|
{
|
||||||
serialCheck((uint32)'DbDt');
|
serialCheck(NELID("DbDt');
|
||||||
uint version = serialVersion(0);
|
uint version = serialVersion(0);
|
||||||
|
|
||||||
if (isReading())
|
if (isReading())
|
||||||
|
@ -280,7 +280,7 @@ bool CDBDeltaFile::serialHeader()
|
||||||
serial(_Header);
|
serial(_Header);
|
||||||
}
|
}
|
||||||
|
|
||||||
serialCheck((uint32)'Data');
|
serialCheck(NELID("Data');
|
||||||
|
|
||||||
_DataStart = ftell(_File);
|
_DataStart = ftell(_File);
|
||||||
|
|
||||||
|
|
|
@ -189,7 +189,7 @@ private:
|
||||||
|
|
||||||
void serial(NLMISC::IStream& s)
|
void serial(NLMISC::IStream& s)
|
||||||
{
|
{
|
||||||
s.serialCheck((uint32)'DHdr');
|
s.serialCheck(NELID("DHdr');
|
||||||
uint version = s.serialVersion(0);
|
uint version = s.serialVersion(0);
|
||||||
|
|
||||||
s.serial(RowSize);
|
s.serial(RowSize);
|
||||||
|
|
|
@ -483,7 +483,7 @@ bool CDBReferenceFile::read(uint32 index, uint8* rowdata)
|
||||||
*/
|
*/
|
||||||
bool CDBReferenceFile::serialHeader()
|
bool CDBReferenceFile::serialHeader()
|
||||||
{
|
{
|
||||||
serialCheck((uint32)'DbRf');
|
serialCheck(NELID("DbRf');
|
||||||
uint version = serialVersion(0);
|
uint version = serialVersion(0);
|
||||||
|
|
||||||
if (isReading())
|
if (isReading())
|
||||||
|
@ -504,7 +504,7 @@ bool CDBReferenceFile::serialHeader()
|
||||||
serial(_Header);
|
serial(_Header);
|
||||||
}
|
}
|
||||||
|
|
||||||
serialCheck((uint32)'Data');
|
serialCheck(NELID("Data');
|
||||||
|
|
||||||
_DataStart = ftell(_File);
|
_DataStart = ftell(_File);
|
||||||
|
|
||||||
|
|
|
@ -199,7 +199,7 @@ private:
|
||||||
|
|
||||||
void serial(NLMISC::IStream& s)
|
void serial(NLMISC::IStream& s)
|
||||||
{
|
{
|
||||||
s.serialCheck((uint32)'RHdr');
|
s.serialCheck(NELID("RHdr');
|
||||||
uint version = s.serialVersion(0);
|
uint version = s.serialVersion(0);
|
||||||
|
|
||||||
s.serial(BaseIndex);
|
s.serial(BaseIndex);
|
||||||
|
|
|
@ -1436,7 +1436,7 @@ inline uint32 CDbMessage::getMessageHeaderSize()
|
||||||
*/
|
*/
|
||||||
inline void CUpdateLog::serial(NLMISC::IStream& f)
|
inline void CUpdateLog::serial(NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32)'ULOG');
|
f.serialCheck(NELID("ULOG');
|
||||||
|
|
||||||
uint version = f.serialVersion(1);
|
uint version = f.serialVersion(1);
|
||||||
|
|
||||||
|
|
|
@ -331,7 +331,7 @@ void CDatabaseState::serial(NLMISC::IStream& s)
|
||||||
{
|
{
|
||||||
s.xmlPush("database_state");
|
s.xmlPush("database_state");
|
||||||
|
|
||||||
s.serialCheck((uint32)'DBST');
|
s.serialCheck(NELID("DBST');
|
||||||
uint version = s.serialVersion(0);
|
uint version = s.serialVersion(0);
|
||||||
|
|
||||||
s.xmlPush("name");
|
s.xmlPush("name");
|
||||||
|
|
|
@ -60,7 +60,7 @@ public:
|
||||||
{
|
{
|
||||||
s.xmlPush("reference");
|
s.xmlPush("reference");
|
||||||
|
|
||||||
s.serialCheck((uint32)'RIDX');
|
s.serialCheck(NELID("RIDX');
|
||||||
uint version = s.serialVersion(0);
|
uint version = s.serialVersion(0);
|
||||||
|
|
||||||
s.xmlPush("database");
|
s.xmlPush("database");
|
||||||
|
|
|
@ -73,7 +73,7 @@ void CPDStringMapper::setMapping(const std::string& str, uint32 id)
|
||||||
*/
|
*/
|
||||||
void CPDStringMapper::serial(NLMISC::IStream& f)
|
void CPDStringMapper::serial(NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32)'PDSM');
|
f.serialCheck(NELID("PDSM');
|
||||||
|
|
||||||
uint version = f.serialVersion(0);
|
uint version = f.serialVersion(0);
|
||||||
|
|
||||||
|
|
|
@ -714,7 +714,7 @@ public:
|
||||||
|
|
||||||
void serial(NLMISC::IStream& f)
|
void serial(NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32)'IALC');
|
f.serialCheck(NELID("IALC');
|
||||||
f.serialVersion(0);
|
f.serialVersion(0);
|
||||||
|
|
||||||
f.serial(_NextIndex);
|
f.serial(_NextIndex);
|
||||||
|
|
|
@ -114,7 +114,7 @@ void CLightIGLoader::loadIG(const string &filename)
|
||||||
|
|
||||||
|
|
||||||
// Serial a header
|
// Serial a header
|
||||||
_File.serialCheck ((uint32)'TPRG');
|
_File.serialCheck (NELID("TPRG');
|
||||||
|
|
||||||
// Serial a version number
|
// Serial a version number
|
||||||
sint version = _File.serialVersion (5);
|
sint version = _File.serialVersion (5);
|
||||||
|
|
Loading…
Reference in a new issue