diff --git a/obj/NiAVObject.cpp b/obj/NiAVObject.cpp index 9930f14a71637090d0b2af18de7808e895e630fa..1e2122ac5088bbbb48a3b0408d3ee1184989a2e2 100644 --- a/obj/NiAVObject.cpp +++ b/obj/NiAVObject.cpp @@ -30,6 +30,10 @@ void NiAVObject::FixLinks( const vector<NiObjectRef> & objects, list<uint> & lin NI_A_V_OBJECT_FIXLINKS } +list<NiObjectRef> NiAVObject::GetRefs() const { + NI_A_V_OBJECT_GETREFS +} + /*! * This is a conveniance function that allows you to retrieve the full 4x4 matrix transform of a node. It accesses the "Rotation," "Translation," and "Scale" attributes and builds a complete 4x4 transformation matrix from them. * \return A 4x4 transformation matrix built from the node's transform attributes. diff --git a/obj/NiAVObject.h b/obj/NiAVObject.h index ff091d88e56d51001a75ab9d7493f9e5c11e233b..49aed8fb2a84f21821714cbc14ca02099bde3548 100644 --- a/obj/NiAVObject.h +++ b/obj/NiAVObject.h @@ -34,6 +34,7 @@ public: virtual void Write( ostream& out, map<NiObjectRef,uint> link_map, unsigned int version, unsigned int user_version ) const; virtual string asString( bool verbose = false ) const; virtual void FixLinks( const vector<NiObjectRef> & objects, list<uint> & link_stack, unsigned int version, unsigned int user_version ); + virtual list<NiObjectRef> GetRefs() const; //TODO: list of NiProperty pointers. Need functions to add/remove. //TODO: Bounding Box. What to do with newer files that have a link? Wrap this in a function and translate? diff --git a/obj/NiObjectNET.cpp b/obj/NiObjectNET.cpp index 469c17b299322829fc50850e4de7285bd1f557aa..728c97d22ab3dad951e658cd8fcbb7619f5357dd 100644 --- a/obj/NiObjectNET.cpp +++ b/obj/NiObjectNET.cpp @@ -28,6 +28,10 @@ void NiObjectNET::FixLinks( const vector<NiObjectRef> & objects, list<uint> & li NI_OBJECT_N_E_T_FIXLINKS } +list<NiObjectRef> NiObjectNET::GetRefs() const { + NI_OBJECT_N_E_T_GETREFS +} + string NiObjectNET::GetName() { return name; } diff --git a/obj/NiObjectNET.h b/obj/NiObjectNET.h index 7f799e33cae865f60909a908ad191502d42c3e5e..d22513150b50c03b27f2f1a80b2b4975f2eaf9c2 100644 --- a/obj/NiObjectNET.h +++ b/obj/NiObjectNET.h @@ -34,7 +34,8 @@ public: */ virtual string GetIDString(); virtual void FixLinks( const vector<NiObjectRef> & objects, list<uint> & link_stack, unsigned int version, unsigned int user_version ); - + virtual list<NiObjectRef> GetRefs() const; + string GetName(); void SetName( string & new_name ); //TODO: pointer to extra data type... find out what that is. AExtraData right now. Need functions to add/remove.