mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 09:49:04 +00:00
Backed out changeset: 57d8f3733daf
This commit is contained in:
parent
bc638755e6
commit
341e468d5b
16 changed files with 29 additions and 29 deletions
|
@ -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 ((uint32)'_LEN');
|
||||||
f.serialCheck ((uint32)"MINA");
|
f.serialCheck ((uint32)'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 ((uint32)'_LEN');
|
||||||
f.serialCheck ((uint32)"MINA");
|
f.serialCheck ((uint32)'MINA');
|
||||||
f.serialCheck ((uint32)"TES_");
|
f.serialCheck ((uint32)'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((uint32)'_LEN');
|
||||||
f.serialCheck((uint32)"DOLC");
|
f.serialCheck((uint32)'DOLC');
|
||||||
f.serialCheck((uint32)"DLUB");
|
f.serialCheck((uint32)'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((uint32)'_LEN');
|
||||||
f.serialCheck((uint32)"DOLC");
|
f.serialCheck((uint32)'DOLC');
|
||||||
f.serialCheck((uint32)"PAHS");
|
f.serialCheck((uint32)'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((uint32) '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((uint32) '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 ((uint32)'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 ((uint32)'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 ((uint32)'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 ((uint32)'_RAF');
|
||||||
f.serialCheck ((uint32)"KNAB");
|
f.serialCheck ((uint32)'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((uint32)'_LEN');
|
||||||
f.serialCheck((uint32)"GEV_");
|
f.serialCheck((uint32)'GEV_');
|
||||||
f.serialCheck((uint32)"BATE");
|
f.serialCheck((uint32)'BATE');
|
||||||
f.serialCheck((uint32)"__EL");
|
f.serialCheck((uint32)'__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((uint32)'ENOZ');
|
||||||
|
|
||||||
f.xmlSerial (ZoneId, "ZONE_ID");
|
f.xmlSerial (ZoneId, "ZONE_ID");
|
||||||
f.xmlSerial (ZoneBB, "BB");
|
f.xmlSerial (ZoneBB, "BB");
|
||||||
|
|
|
@ -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 ((uint32)'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 ((uint32)'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 ((uint32)'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 ((uint32)'KBRP');
|
||||||
|
|
||||||
// Serial the version
|
// Serial the version
|
||||||
(void)s.serialVersion (0);
|
(void)s.serialVersion (0);
|
||||||
|
|
|
@ -341,8 +341,8 @@ private:
|
||||||
|
|
||||||
void serial(NLMISC::IStream &f)
|
void serial(NLMISC::IStream &f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint32)"_RTS");
|
f.serialCheck((uint32)'_RTS');
|
||||||
f.serialCheck((uint32)"KCAP");
|
f.serialCheck((uint32)'KCAP');
|
||||||
f.serialVersion(0);
|
f.serialVersion(0);
|
||||||
f.serial(PackedVersion);
|
f.serial(PackedVersion);
|
||||||
f.serial(LanguageCode);
|
f.serial(LanguageCode);
|
||||||
|
|
Loading…
Reference in a new issue