Skip to content
Snippets Groups Projects
Commit 7a4780b4 authored by Shon Ferguson's avatar Shon Ferguson
Browse files

Fix for NiKeyframeData is no longer in implementation file.

parent 001b77dd
No related branches found
No related tags found
No related merge requests found
...@@ -6261,11 +6261,6 @@ void NiKeyframeData::InternalRead( istream& in, list<uint> & link_stack, unsigne ...@@ -6261,11 +6261,6 @@ void NiKeyframeData::InternalRead( istream& in, list<uint> & link_stack, unsigne
   
void NiKeyframeData::InternalWrite( ostream& out, map<NiObjectRef,uint> link_map, unsigned int version, unsigned int user_version ) const { void NiKeyframeData::InternalWrite( ostream& out, map<NiObjectRef,uint> link_map, unsigned int version, unsigned int user_version ) const {
AKeyedData::Write( out, link_map, version, user_version ); AKeyedData::Write( out, link_map, version, user_version );
if ( rotationType == XYZ_ROTATION_KEY ) {
numRotationKeys = 1;
} else {
numRotationKeys = uint(quaternionKeys.size());
}
NifStream( numRotationKeys, out, version ); NifStream( numRotationKeys, out, version );
if ( (numRotationKeys != 0) ) { if ( (numRotationKeys != 0) ) {
NifStream( rotationType, out, version ); NifStream( rotationType, out, version );
...@@ -6313,11 +6308,6 @@ void NiKeyframeData::InternalWrite( ostream& out, map<NiObjectRef,uint> link_map ...@@ -6313,11 +6308,6 @@ void NiKeyframeData::InternalWrite( ostream& out, map<NiObjectRef,uint> link_map
std::string NiKeyframeData::InternalAsString( bool verbose ) const { std::string NiKeyframeData::InternalAsString( bool verbose ) const {
stringstream out; stringstream out;
out << AKeyedData::asString(); out << AKeyedData::asString();
if ( rotationType == XYZ_ROTATION_KEY ) {
numRotationKeys = 1;
} else {
numRotationKeys = uint(quaternionKeys.size());
}
out << " Num Rotation Keys: " << numRotationKeys << endl; out << " Num Rotation Keys: " << numRotationKeys << endl;
if ( (numRotationKeys != 0) ) { if ( (numRotationKeys != 0) ) {
out << " Rotation Type: " << rotationType << endl; out << " Rotation Type: " << rotationType << endl;
......
...@@ -44,14 +44,24 @@ KeyType NiKeyframeData::GetRotateType() const { ...@@ -44,14 +44,24 @@ KeyType NiKeyframeData::GetRotateType() const {
void NiKeyframeData::SetRotateType( KeyType t ) { void NiKeyframeData::SetRotateType( KeyType t ) {
rotationType = t; rotationType = t;
UpdateRotationKeyCount();
} }
vector< Key<Quaternion> > NiKeyframeData::GetQuatRotateKeys() const { vector< Key<Quaternion> > NiKeyframeData::GetQuatRotateKeys() const {
return quaternionKeys; return quaternionKeys;
} }
void NiKeyframeData::UpdateRotationKeyCount() {
if ( rotationType == XYZ_ROTATION_KEY ) {
numRotationKeys = 1;
} else {
numRotationKeys = uint(quaternionKeys.size());
}
};
void NiKeyframeData::SetQuatRotateKeys( const vector< Key<Quaternion> > & keys ) { void NiKeyframeData::SetQuatRotateKeys( const vector< Key<Quaternion> > & keys ) {
quaternionKeys = keys; quaternionKeys = keys;
UpdateRotationKeyCount();
} }
KeyType NiKeyframeData::GetXRotateType() const { KeyType NiKeyframeData::GetXRotateType() const {
......
...@@ -185,6 +185,7 @@ public: ...@@ -185,6 +185,7 @@ public:
void SetScaleKeys( vector< Key<float> > const & keys ); void SetScaleKeys( vector< Key<float> > const & keys );
protected: protected:
void UpdateRotationKeyCount();
NI_KEYFRAME_DATA_MEMBERS NI_KEYFRAME_DATA_MEMBERS
STANDARD_INTERNAL_METHODS STANDARD_INTERNAL_METHODS
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment