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
6c5e45d9
Commit
6c5e45d9
authored
18 years ago
by
Shon Ferguson
Browse files
Options
Downloads
Patches
Plain Diff
Implemented repositioning of geometry to line up with skins.
parent
e7b03ae5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
obj/NiNode.cpp
+76
-24
76 additions, 24 deletions
obj/NiNode.cpp
obj/NiNode.h
+2
-0
2 additions, 0 deletions
obj/NiNode.h
with
78 additions
and
24 deletions
obj/NiNode.cpp
+
76
−
24
View file @
6c5e45d9
...
...
@@ -6,6 +6,7 @@ All rights reserved. Please see niflib.h for licence. */
#include
"NiDynamicEffect.h"
#include
"NiSkinInstance.h"
#include
"NiSkinData.h"
#include
"NiTriBasedGeom.h"
//Definition of TYPE constant
const
Type
NiNode
::
TYPE
(
"NiNode"
,
&
NI_NODE_PARENT
::
TYPE
);
...
...
@@ -227,28 +228,79 @@ void NiNode::GoToSkeletonBindPosition() {
}
}
//All the world positoins have been calculated, so use them to set the local
//positoins
////Put skeleton root into world positions if it's not already there
//if ( world_positions.find( this ) == world_positions.end() ) {
// world_positions[this] = GetWorldTransform();
//}
////Now loop through all nodes in the world_positions map
//for ( map< NiNodeRef, Matrix44>::iterator it = world_positions.begin(); it != world_positions.end(); ++it ) {
// if ( world_positions.find(it->first->GetParent()) != world_positions.end() ) {
// Matrix44 res_mat = world_positions[it->first] * world_positions[it->first->GetParent()].Inverse();
// //Store result in node's local transforms
// it->first->SetLocalRotation( Matrix33(
// res_mat[0][0], res_mat[0][1], res_mat[0][2],
// res_mat[1][0], res_mat[1][1], res_mat[1][2],
// res_mat[2][0], res_mat[2][1], res_mat[2][2]
// ) );
// it->first->SetLocalTranslation( Vector3( res_mat[3][0], res_mat[3][1], res_mat[3][2] ) );
// //Vector3 scale = res_mat.GetScale();
// it->first->SetLocalScale( 1.0f );//scale.x + scale.y + scale.z / 3.0f );
// }
//}
//Search for any NiTriBasedGeom classes lower in the scene graph and
//reposition them
RepositionGeom
(
this
);
}
void
NiNode
::
RepositionGeom
(
NiAVObjectRef
root
)
{
//Check if this is a NiTriBasedGeom
NiTriBasedGeomRef
geom
=
DynamicCast
<
NiTriBasedGeom
>
(
root
);
if
(
geom
!=
NULL
)
{
//This is a NiTriBasedGeom class
//Get NiSkinInstance and NiSkinData
NiSkinInstanceRef
skin_inst
=
geom
->
GetSkinInstance
();
if
(
skin_inst
==
NULL
)
{
return
;
}
NiSkinDataRef
skin_data
=
skin_inst
->
GetSkinData
();
if
(
skin_data
==
NULL
)
{
return
;
}
//Get bone info
vector
<
NiNodeRef
>
bones
=
skin_inst
->
GetBones
();
vector
<
SkinData
>
bone_data
=
skin_data
->
GetBoneData
();
//Make sure the counts match
if
(
bones
.
size
()
!=
bone_data
.
size
()
)
{
throw
runtime_error
(
"Bone counts in NiSkinInstance and attached NiSkinData must match"
);
}
//There must be at least one bone to do anything
if
(
bones
.
size
()
==
0
)
{
return
;
}
//Use first bone (arbitrary choice)
Matrix44
offset_mat
(
bone_data
[
0
].
rotation
[
0
][
0
],
bone_data
[
0
].
rotation
[
0
][
1
],
bone_data
[
0
].
rotation
[
0
][
2
],
0.0
f
,
bone_data
[
0
].
rotation
[
1
][
0
],
bone_data
[
0
].
rotation
[
1
][
1
],
bone_data
[
0
].
rotation
[
1
][
2
],
0.0
f
,
bone_data
[
0
].
rotation
[
2
][
0
],
bone_data
[
0
].
rotation
[
2
][
1
],
bone_data
[
0
].
rotation
[
2
][
2
],
0.0
f
,
bone_data
[
0
].
translation
.
x
,
bone_data
[
0
].
translation
.
y
,
bone_data
[
0
].
translation
.
z
,
1.0
f
);
//Get built up rotations to the root of the skeleton from this bone
Matrix44
bone_mat
=
bones
[
0
]
->
GetWorldTransform
();
Matrix44
world_mat
=
offset_mat
*
bone_mat
;
Matrix44
result_mat
=
world_mat
*
geom
->
GetParent
()
->
GetWorldTransform
().
Inverse
();
//--Set TriShape Local Position to Result--//
geom
->
SetLocalRotation
(
result_mat
.
GetRotation
()
);
geom
->
SetLocalTranslation
(
result_mat
.
GetTranslation
()
);
geom
->
SetLocalScale
(
1.0
f
);
//TODO: Calculate the correct adjustment for the NiSkinData overall matrix
//due to this change
return
;
}
//Check if this is a NiNode
NiNodeRef
node
=
DynamicCast
<
NiNode
>
(
root
);
if
(
node
!=
NULL
)
{
//This is a NiNode, call this function on all children
vector
<
NiAVObjectRef
>
children
=
node
->
GetChildren
();
for
(
uint
i
=
0
;
i
<
children
.
size
();
++
i
)
{
RepositionGeom
(
children
[
i
]
);
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
obj/NiNode.h
+
2
−
0
View file @
6c5e45d9
...
...
@@ -66,6 +66,8 @@ public:
/*! Should not be called directly */
void
SetSkinFlag
(
bool
n
);
private:
void
NiNode
::
RepositionGeom
(
NiAVObjectRef
root
);
protected:
list
<
NiSkinInstance
*>
skins
;
NI_NODE_MEMBERS
...
...
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