diff --git a/include/obj/bhkMoppBvTreeShape.h b/include/obj/bhkMoppBvTreeShape.h index cc2b28340a797894aded994c5f5a623644d8199d..7e563487f05122617c310715f93d2641065085cf 100644 --- a/include/obj/bhkMoppBvTreeShape.h +++ b/include/obj/bhkMoppBvTreeShape.h @@ -83,6 +83,53 @@ public: */ NIFLIB_API void SetMaterial( HavokMaterial value ); + /*! + * Get the shape's bounding volume code. The code is specific to the Havok Physics engine. + * \return A byte vector containing the code representing the MOPP. + */ + NIFLIB_API vector<byte> GetMoppCode() const; + + /*! + * Sets the shape's bounding volume code. The code is specific to the Havok Physics engine. + * \param[in] value A byte vector containing the code representing the MOPP. + */ + NIFLIB_API void SetMoppCode( vector<byte> & value ); + + /*! + * Get the origin for the shape's mopp code in mopp coordinates. This is the minimum of all vertices in + * the packed shape along each axis, minus 0.1. + * \return The origin value in mopp coordinates. + */ + NIFLIB_API Vector3 GetMoppOrigin() const; + + /*! + * Sets the origin for the shape's mopp code in mopp coordinates. This is the minimum of all vertices in + * the packed shape along each axis, minus 0.1. + * \param[in] value The origin in mopp coordinates. + */ + NIFLIB_API void SetMoppOrigin( Vector3 value ); + + + /*! + * Gets the scale for the shape's mopp code in mopp coordinates. + * The scaling factor to quantize the MOPP: the quantization factor is equal to + * 256*256 divided by this number. In Oblivion files, scale is taken equal to + * 256*256*254 / (size + 0.2) where size is the largest dimension of the bounding + * box of the packed shape. + * \return The scale value in mopp coordinates. + */ + NIFLIB_API float GetMoppScale() const; + + /*! + * Sets the scale for the shape's mopp code in mopp coordinates. + * The scaling factor to quantize the MOPP: the quantization factor is equal to + * 256*256 divided by this number. In Oblivion files, scale is taken equal to + * 256*256*254 / (size + 0.2) where size is the largest dimension of the bounding + * box of the packed shape. + * \param[in] value The scale in mopp coordinates. + */ + NIFLIB_API void SetMoppScale( float value ); + //--END CUSTOM CODE--// protected: /*! The shape. */ diff --git a/include/obj/bhkPackedNiTriStripsShape.h b/include/obj/bhkPackedNiTriStripsShape.h index 377fcf5f08d34cc5210496a211df6f646101d1de..2c00b067f3de2ffa3b184add5ae16bc21ea66829 100644 --- a/include/obj/bhkPackedNiTriStripsShape.h +++ b/include/obj/bhkPackedNiTriStripsShape.h @@ -71,6 +71,18 @@ public: */ NIFLIB_API void SetData( hkPackedNiTriStripsData * n ); + /*! + * Retrieves the subshape data object used by this geometry node, if any. + * \return The subshape data object. + */ + NIFLIB_API vector<OblivionSubShape> GetSubShapes() const; + + /*! + * Sets the subshape data object used by this geometry node. + * \param[in] value The subshape data. + */ + NIFLIB_API void SetSubShapes( vector<OblivionSubShape>& value ); + //--END CUSTOM CODE--// protected: /*! Number of subparts. */ diff --git a/src/obj/bhkMoppBvTreeShape.cpp b/src/obj/bhkMoppBvTreeShape.cpp index 1e2bbf16b312b60eb1bbd6f6af7d59fe804068ee..2df51bd504bc5d43d9f58641e77eb20e12a569db 100644 --- a/src/obj/bhkMoppBvTreeShape.cpp +++ b/src/obj/bhkMoppBvTreeShape.cpp @@ -175,4 +175,29 @@ void bhkMoppBvTreeShape::SetMaterial( HavokMaterial value ) { material = value; } +vector<byte> bhkMoppBvTreeShape::GetMoppCode() const { + return moppData; +} + +void bhkMoppBvTreeShape::SetMoppCode( vector<byte> & value ) { + moppDataSize = value.size(); + moppData = value; +} + +Vector3 bhkMoppBvTreeShape::GetMoppOrigin() const { + return origin; +} + +void bhkMoppBvTreeShape::SetMoppOrigin( Vector3 value ) { + origin = value; +} + +float bhkMoppBvTreeShape::GetMoppScale() const { + return scale; +} + +void bhkMoppBvTreeShape::SetMoppScale( float value ) { + scale = value; +} + //--END CUSTOM CODE--// diff --git a/src/obj/bhkPackedNiTriStripsShape.cpp b/src/obj/bhkPackedNiTriStripsShape.cpp index 89835888596b390eac4279fcd7448fe3fa62b5dc..7b3400a6696d91738bd3e2567c943a4ccb076ca4 100644 --- a/src/obj/bhkPackedNiTriStripsShape.cpp +++ b/src/obj/bhkPackedNiTriStripsShape.cpp @@ -184,4 +184,14 @@ void bhkPackedNiTriStripsShape::SetData( hkPackedNiTriStripsData * n ) { data = n; } +vector<OblivionSubShape> bhkPackedNiTriStripsShape::GetSubShapes() const { + return subShapes; +} + +void bhkPackedNiTriStripsShape::SetSubShapes( vector<OblivionSubShape>& value ) { + numSubShapes = value.size(); + subShapes = value; +} + + //--END CUSTOM CODE--//