diff --git a/obj/NiObject.cpp b/obj/NiObject.cpp index 809855645af1146c433da3866c05066e6361b402..01991cbadff1c15a8fe4b30d88071c896d58d856 100644 --- a/obj/NiObject.cpp +++ b/obj/NiObject.cpp @@ -2,6 +2,7 @@ All rights reserved. Please see niflib.h for licence. */ #include "NiObject.h" +#include "niflib.h" using namespace Niflib; //Definition of TYPE constant @@ -64,6 +65,28 @@ string NiObject::GetIDString() { return out.str(); } -NiObjectRef NiObject::Clone( unsigned int version ) { - throw runtime_error("Cloning not yet implemented."); +NiObjectRef NiObject::Clone( unsigned int version, unsigned int user_version ) { + //Create a string stream to temporarily hold the state-save of this block + stringstream tmp; + + //Create a new object of the same type + NiObjectRef clone = CreateBlock( this->GetType().GetTypeName() ); + + //Dummy map + map<NiObjectRef,uint> link_map; + + //Write this object's data to the stream + this->Write( tmp, link_map, version, user_version ); + + //Dummy stack + list<uint> link_stack; + + //Read the data back from the stream into the clone + clone->Read( tmp, link_stack, version, user_version ); + + //We don't fix the links, causing the clone to be a copy of all + //data but have none of the linkage of the original. + + //return new object + return clone; }; diff --git a/obj/NiObject.h b/obj/NiObject.h index 7a61b268d4fba630d318ee89f015452c1ad187e8..968980638ecb8caa5513a83908edd09feec1f324 100644 --- a/obj/NiObject.h +++ b/obj/NiObject.h @@ -79,7 +79,7 @@ public: * \return A cloned copy of this block as a new block. * \sa CreateBlock */ - NIFLIB_API NiObjectRef Clone( unsigned int version = 0xFFFFFFFF ); + NIFLIB_API NiObjectRef Clone( unsigned int version = 0xFFFFFFFF, unsigned int user_version = 0 ); /*! * Summarizes the information contained in this block in English.