#include <PxSerialFramework.h>
Public Member Functions | |
virtual PxBase * | resolveReference (PxU32 kind, size_t reference) const =0 |
Retrieves a pointer to a deserialized PxBase object given a corresponding deserialized reference value. | |
template<typename T > | |
void | translatePxBase (T *&base) |
Helper function to update PxBase pointer on deserialization. | |
PX_INLINE void | readName (const char *&name) |
Helper function to read a name from the extra data during deserialization. | |
template<typename T > | |
PX_INLINE T * | readExtraData (PxU32 count=1) |
Function to read extra data during deserialization. | |
template<typename T , PxU32 alignment> | |
PX_INLINE T * | readExtraData (PxU32 count=1) |
Function to read extra data during deserialization optionally aligning the extra data stream before reading. | |
PX_INLINE void | alignExtraData (PxU32 alignment=PX_SERIAL_ALIGN) |
Function to align the extra data stream to a power of 2 alignment. | |
virtual PxU32 | getPhysXVersion () const =0 |
Function to return the PX_PHYSX_VERSION value with which the data was originally serialized. | |
Protected Member Functions | |
PxDeserializationContext () | |
virtual | ~PxDeserializationContext () |
Protected Attributes | |
PxU8 * | mExtraDataAddress |
This class is used to resolve references and access extra data during deserialization. It is mainly used by the serialization framework. Except for custom serializable types, users should not have to worry about it.
PxDeserializationContext::PxDeserializationContext | ( | ) | [inline, protected] |
virtual PxDeserializationContext::~PxDeserializationContext | ( | ) | [inline, protected, virtual] |
PX_INLINE void PxDeserializationContext::alignExtraData | ( | PxU32 | alignment = PX_SERIAL_ALIGN |
) | [inline] |
Function to align the extra data stream to a power of 2 alignment.
This function is assumed to be called within the implementation of PxSerializer::createObject.
virtual PxU32 PxDeserializationContext::getPhysXVersion | ( | ) | const [pure virtual] |
Function to return the PX_PHYSX_VERSION value with which the data was originally serialized.
PX_INLINE T* PxDeserializationContext::readExtraData | ( | PxU32 | count = 1 |
) | [inline] |
Function to read extra data during deserialization optionally aligning the extra data stream before reading.
This function is assumed to be called within the implementation of PxSerializer::createObject.
PX_INLINE T* PxDeserializationContext::readExtraData | ( | PxU32 | count = 1 |
) | [inline] |
Function to read extra data during deserialization.
This function is assumed to be called within the implementation of PxSerializer::createObject.
PX_INLINE void PxDeserializationContext::readName | ( | const char *& | name | ) | [inline] |
Helper function to read a name from the extra data during deserialization.
This function is assumed to be called within the implementation of PxSerializer::createObject.
virtual PxBase* PxDeserializationContext::resolveReference | ( | PxU32 | kind, | |
size_t | reference | |||
) | const [pure virtual] |
Retrieves a pointer to a deserialized PxBase object given a corresponding deserialized reference value.
This method is assumed to be called in the implementation of PxSerializer::createObject in order to update reference values on deserialization.
To update a PxBase reference the corresponding deserialized pointer value needs to be provided in order to retrieve the location of the corresponding deserialized PxBase object. (PxDeserializationContext::translatePxBase simplifies this common case).
For other kinds of references the reverence values need to be updated by deduction given the corresponding PxBase instance.
[in] | kind | What kind of reference this is (PX_SERIAL_REF_KIND_PXBASE, PX_SERIAL_REF_KIND_MATERIAL_IDX or custom kind) |
[in] | reference | Deserialized reference value |
void PxDeserializationContext::translatePxBase | ( | T *& | base | ) | [inline] |
Helper function to update PxBase pointer on deserialization.
References PX_SERIAL_REF_KIND_PXBASE.
PxU8* PxDeserializationContext::mExtraDataAddress [protected] |