From 3dfe2108cfab31ba3ee5527e217d0d8e99a51162 Mon Sep 17 00:00:00 2001 From: git perforce import user Date: Tue, 25 Oct 2016 12:29:14 -0600 Subject: Initial commit: PhysX 3.4.0 Update @ 21294896 APEX 1.4.0 Update @ 21275617 [CL 21300167] --- .../files/classPxDeserializationContext.html | 326 +++++++++++++++++++++ 1 file changed, 326 insertions(+) create mode 100644 PhysX_3.4/Documentation/PhysXAPI/files/classPxDeserializationContext.html (limited to 'PhysX_3.4/Documentation/PhysXAPI/files/classPxDeserializationContext.html') diff --git a/PhysX_3.4/Documentation/PhysXAPI/files/classPxDeserializationContext.html b/PhysX_3.4/Documentation/PhysXAPI/files/classPxDeserializationContext.html new file mode 100644 index 00000000..3f8acf1d --- /dev/null +++ b/PhysX_3.4/Documentation/PhysXAPI/files/classPxDeserializationContext.html @@ -0,0 +1,326 @@ + + + NVIDIA(R) PhysX(R) SDK 3.4 API Reference: PxDeserializationContext Class Reference + + + + + + + +
+

PxDeserializationContext Class Reference
+ +[Common] +

Binary deserialization context class. +More... +

+#include <PxSerialFramework.h> +

+ +

+List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Member Functions

virtual PxBaseresolveReference (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
+


Detailed Description

+Binary deserialization context class. +

+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.

+

See also:
PxSerializationContext
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + +
PxDeserializationContext::PxDeserializationContext (  )  [inline, protected]
+
+
+ +

+ +

+

+ +

+
+ + + + + + + + +
virtual PxDeserializationContext::~PxDeserializationContext (  )  [inline, protected, virtual]
+
+
+ +

+ +

+

+


Member Function Documentation

+ +
+
+ + + + + + + + + +
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.

+

See also:
PxSerializationContext::alignData, PxSerializer::createObject
+ +
+

+ +

+
+ + + + + + + + +
virtual PxU32 PxDeserializationContext::getPhysXVersion (  )  const [pure virtual]
+
+
+ +

+Function to return the PX_PHYSX_VERSION value with which the data was originally serialized. +

+ +

+

+ +

+
+
+template<typename T , PxU32 alignment>
+ + + + + + + + + +
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.

+

See also:
PxSerializationContext::writeData, PxDeserializationContext::alignExtraData, PxSerializer::createObject
+ +
+

+ +

+
+
+template<typename T >
+ + + + + + + + + +
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.

+

See also:
PxSerializationContext::writeData, 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.

+

See also:
PxSerializationContext::writeName
+ +
+

+ +

+
+ + + + + + + + + + + + + + + + + + +
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.

+

Parameters:
+ + + +
[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
+
+
Returns:
PxBase object associated with the reference value
+
See also:
PxSerializationContext::registerReference, PX_SERIAL_REF_KIND_PXBASE, PX_SERIAL_REF_KIND_MATERIAL_IDX, translatePxBase
+ +
+

+ +

+
+
+template<typename T >
+ + + + + + + + + +
void PxDeserializationContext::translatePxBase (T *&  base  )  [inline]
+
+
+ +

+Helper function to update PxBase pointer on deserialization. +

+

See also:
resolveReference, PX_SERIAL_REF_KIND_PXBASE
+ +

References PX_SERIAL_REF_KIND_PXBASE.

+ +
+

+


Member Data Documentation

+ +
+
+ + + + +
PxU8* PxDeserializationContext::mExtraDataAddress [protected]
+
+
+ +

+ +

+

+


The documentation for this class was generated from the following file: +
+ +

+Copyright © 2008-2016 NVIDIA Corporation, 2701 San Tomas Expressway, Santa Clara, CA 95050 U.S.A. All rights reserved. www.nvidia.com + + -- cgit v1.2.3