Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Niflib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Grant Kim
Niflib
Commits
7a4780b4
Commit
7a4780b4
authored
18 years ago
by
Shon Ferguson
Browse files
Options
Downloads
Patches
Plain Diff
Fix for NiKeyframeData is no longer in implementation file.
parent
001b77dd
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
gen/obj_impl.cpp
+0
-10
0 additions, 10 deletions
gen/obj_impl.cpp
obj/NiKeyframeData.cpp
+10
-0
10 additions, 0 deletions
obj/NiKeyframeData.cpp
obj/NiKeyframeData.h
+1
-0
1 addition, 0 deletions
obj/NiKeyframeData.h
with
11 additions
and
10 deletions
gen/obj_impl.cpp
+
0
−
10
View file @
7a4780b4
...
@@ -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;
...
...
This diff is collapsed.
Click to expand it.
obj/NiKeyframeData.cpp
+
10
−
0
View file @
7a4780b4
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
obj/NiKeyframeData.h
+
1
−
0
View file @
7a4780b4
...
@@ -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
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment