From d1a99dd6ba9ecbc625e2255cc60fe7ad57aa2449 Mon Sep 17 00:00:00 2001
From: Tazpn <tazpn@users.sourceforge.net>
Date: Sun, 13 Jul 2008 17:36:36 +0000
Subject: [PATCH] 1. Add accessors related to MOPP generation code.

---
 include/obj/bhkMoppBvTreeShape.h        | 47 +++++++++++++++++++++++++
 include/obj/bhkPackedNiTriStripsShape.h | 12 +++++++
 src/obj/bhkMoppBvTreeShape.cpp          | 25 +++++++++++++
 src/obj/bhkPackedNiTriStripsShape.cpp   | 10 ++++++
 4 files changed, 94 insertions(+)

diff --git a/include/obj/bhkMoppBvTreeShape.h b/include/obj/bhkMoppBvTreeShape.h
index cc2b2834..7e563487 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 377fcf5f..2c00b067 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 1e2bbf16..2df51bd5 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 89835888..7b3400a6 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--//
-- 
GitLab