Pyrogenesis HEAD
Pyrogenesis, a RTS Engine
|
Special message type for updated to game startup settings. More...
#include <NetMessage.h>
Public Member Functions | |
CGameSetupMessage (const ScriptInterface &scriptInterface) | |
CGameSetupMessage (const ScriptInterface &scriptInterface, JS::HandleValue data) | |
virtual u8 * | Serialize (u8 *pBuffer) const |
Serialize the message into the specified buffer parameter. More... | |
virtual const u8 * | Deserialize (const u8 *pStart, const u8 *pEnd) |
Deserializes the message from the specified buffer. More... | |
virtual size_t | GetSerializedLength () const |
Retrieves the size in bytes of the serialized message. More... | |
virtual CStr | ToString () const |
Returns a string representation for the message. More... | |
Public Member Functions inherited from CNetMessage | |
CNetMessage () | |
CNetMessage (NetMessageType type) | |
virtual | ~CNetMessage () |
NetMessageType | GetType () const |
Retrieves the message type. More... | |
virtual u8 * | Serialize (u8 *pBuffer) const |
Serialize the message into the specified buffer parameter. More... | |
virtual const u8 * | Deserialize (const u8 *pStart, const u8 *pEnd) |
Deserializes the message from the specified buffer. More... | |
virtual size_t | GetSerializedLength () const |
Retrieves the size in bytes of the serialized message. More... | |
virtual CStr | ToString () const |
Returns a string representation for the message. More... | |
Public Member Functions inherited from ISerializable | |
virtual | ~ISerializable () |
virtual size_t | GetSerializedLength () const =0 |
Return the length of the serialized form of this object. More... | |
virtual u8 * | Serialize (u8 *buffer) const =0 |
Serialize the object into the passed buffer. More... | |
virtual const u8 * | Deserialize (const u8 *buffer, const u8 *end)=0 |
Deserialize the object (i.e. More... | |
Public Attributes | |
JS::PersistentRootedValue | m_Data |
Private Member Functions | |
NONCOPYABLE (CGameSetupMessage) | |
Private Attributes | |
const ScriptInterface & | m_ScriptInterface |
Special message type for updated to game startup settings.
CGameSetupMessage::CGameSetupMessage | ( | const ScriptInterface & | scriptInterface | ) |
CGameSetupMessage::CGameSetupMessage | ( | const ScriptInterface & | scriptInterface, |
JS::HandleValue | data | ||
) |
Deserializes the message from the specified buffer.
pStart | Message start within the serialized buffer |
pEnd | Message end within the serialized buffer |
Reimplemented from CNetMessage.
|
virtual |
Retrieves the size in bytes of the serialized message.
Before calling Serialize, the memory size for the buffer where to serialize the message object can be found by calling this method.
Reimplemented from CNetMessage.
|
private |
Serialize the message into the specified buffer parameter.
The size required by the buffer parameter can be found by a call to GetSerializedLength method. The information contained within the message must be serialized before the message is sent. By default only the message type and its size are serialized in the buffer parameter.
pBuffer | Buffer where to serialize the message |
Reimplemented from CNetMessage.
|
virtual |
Returns a string representation for the message.
Reimplemented from CNetMessage.
JS::PersistentRootedValue CGameSetupMessage::m_Data |
|
private |