Changed: Minor changes
--HG-- branch : develop
This commit is contained in:
parent
0e74c167cd
commit
834fcbe8c8
2 changed files with 10 additions and 11 deletions
|
@ -65,7 +65,7 @@ public:
|
|||
{
|
||||
*this=other;
|
||||
}
|
||||
|
||||
|
||||
CAIEventType(const char *typeName)
|
||||
{
|
||||
// copy text from input string to _val variable
|
||||
|
@ -75,7 +75,7 @@ public:
|
|||
|
||||
// if type name is longer than 8 characters it won't fit in an int64!
|
||||
nlassert(typeName[i]==0);
|
||||
|
||||
|
||||
// pad out _val variable with 0s
|
||||
while(i<8)
|
||||
((char *)&_val)[i++]=0;
|
||||
|
@ -134,7 +134,7 @@ private:
|
|||
// base class IAIEvent
|
||||
//-----------------------------------------------------------------------------------
|
||||
// This is the base class for classes of event sent from the game dev services to
|
||||
// the AI. Note that the serial has a special syntax to allow for skipping of
|
||||
// the AI. Note that the serial has a special syntax to allow for skipping of
|
||||
// unrecognised events.
|
||||
|
||||
class IAIEvent
|
||||
|
@ -174,7 +174,7 @@ public:
|
|||
// note serial should serialise: <Type> <uint16 sizeof(EventClass)> <event_parameters>
|
||||
// the 'read' version of the serial should test the <sizeof> to ensure version robustness
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
|
||||
|
||||
public:
|
||||
/// the stunned creature id
|
||||
NLMISC::CEntityId CreatureId;
|
||||
|
@ -200,7 +200,7 @@ public:
|
|||
// note serial should serialise: <Type> <uint16 sizeof(EventClass)> <event_parameters>
|
||||
// the 'read' version of the serial should test the <sizeof> to ensure version robustness
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
|
||||
|
||||
public:
|
||||
/// the waked creature id
|
||||
NLMISC::CEntityId CreatureId;
|
||||
|
@ -228,7 +228,7 @@ public:
|
|||
// note serial should serialise: <Type> <uint16 sizeof(EventClass)> <event_parameters>
|
||||
// the 'read' version of the serial should test the <sizeof> to ensure version robustness
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
|
||||
|
||||
public:
|
||||
/// the creature Id
|
||||
NLMISC::CEntityId CreatureId;
|
||||
|
@ -260,7 +260,7 @@ public:
|
|||
// note serial should serialise: <Type> <uint16 sizeof(EventClass)> <event_parameters>
|
||||
// the 'read' version of the serial should test the <sizeof> to ensure version robustness
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
|
||||
|
||||
public:
|
||||
/// the affected creature id
|
||||
NLMISC::CEntityId CreatureId;
|
||||
|
@ -292,7 +292,7 @@ public:
|
|||
// note serial should serialise: <Type> <uint16 sizeof(EventClass)> <event_parameters>
|
||||
// the 'read' version of the serial should test the <sizeof> to ensure version robustness
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
|
||||
|
||||
public:
|
||||
/// the creature id
|
||||
NLMISC::CEntityId CreatureId;
|
||||
|
@ -318,7 +318,7 @@ public:
|
|||
// note serial should serialise: <Type> <uint16 sizeof(EventClass)> <event_parameters>
|
||||
// the 'read' version of the serial should test the <sizeof> to ensure version robustness
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
|
||||
|
||||
public:
|
||||
/// the creature id
|
||||
NLMISC::CEntityId CreatureId;
|
||||
|
@ -343,7 +343,7 @@ public:
|
|||
// note serial should serialise: <Type> <uint16 sizeof(EventClass)> <event_parameters>
|
||||
// the 'read' version of the serial should test the <sizeof> to ensure version robustness
|
||||
virtual void serial(NLMISC::IStream &f) throw(NLMISC::EStream);
|
||||
|
||||
|
||||
public:
|
||||
/// the affected creature id
|
||||
NLMISC::CEntityId CreatureId;
|
||||
|
|
|
@ -1773,7 +1773,6 @@ void CScreenshotIslands::buildBackTextureHLS(const std::string & islandName, con
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
// HLS order
|
||||
list< CRGBA > sortedHLS;
|
||||
list< CRGBA >::iterator itCol, itHLS;
|
||||
|
|
Loading…
Reference in a new issue