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
4b0f147d
Commit
4b0f147d
authored
18 years ago
by
Tazpn
Browse files
Options
Downloads
Patches
Plain Diff
Update to last changes before the lower case/upper case problem
parent
dc1c5795
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
obj/ABoneLODController.cpp
+58
-0
58 additions, 0 deletions
obj/ABoneLODController.cpp
with
58 additions
and
0 deletions
obj/ABoneLODController.cpp
+
58
−
0
View file @
4b0f147d
...
...
@@ -4,6 +4,7 @@ All rights reserved. Please see niflib.h for licence. */
#include
"ABoneLODController.h"
#include
"../gen/NodeGroup.h"
#include
"NiNode.h"
#include
<algorithm>
using
namespace
Niflib
;
//Definition of TYPE constant
...
...
@@ -37,3 +38,60 @@ const Type & ABoneLODController::GetType() const {
return
TYPE
;
};
/*!
* A list of node groups (each group a sequence of bones?).
*/
int
ABoneLODController
::
GetNodeGroupCount
()
const
{
return
int
(
nodeGroups
.
size
());
}
vector
<
Ref
<
NiNode
>
>
ABoneLODController
::
GetNodeGroup
(
int
index
)
const
{
if
(
index
<
0
||
index
>=
int
(
nodeGroups
.
size
())
)
{
throw
runtime_error
(
"Invalid index referenced."
);
}
return
nodeGroups
[
index
].
nodes
;
}
void
ABoneLODController
::
AddNodeToGroup
(
int
index
,
Ref
<
NiNode
>
node
)
{
while
(
index
>=
int
(
nodeGroups
.
size
()))
nodeGroups
.
insert
(
nodeGroups
.
end
(),
NodeGroup
()
);
numNodeGroups2
=
nodeGroups
.
size
();
vector
<
NiNodeRef
>&
nodes
=
nodeGroups
[
index
].
nodes
;
vector
<
NiNodeRef
>::
iterator
itr
=
std
::
find
(
nodes
.
begin
(),
nodes
.
end
(),
node
);
if
(
itr
==
nodes
.
end
())
nodes
.
push_back
(
node
);
}
void
ABoneLODController
::
RemoveNodeFromGroup
(
int
index
,
Ref
<
NiNode
>
node
)
{
if
(
index
<
0
||
index
>=
int
(
nodeGroups
.
size
())
)
{
throw
runtime_error
(
"Invalid index referenced."
);
}
vector
<
NiNodeRef
>&
nodes
=
nodeGroups
[
index
].
nodes
;
vector
<
NiNodeRef
>::
iterator
itr
=
std
::
find
(
nodes
.
begin
(),
nodes
.
end
(),
node
);
if
(
itr
==
nodes
.
end
())
return
;
nodes
.
erase
(
itr
);
}
void
ABoneLODController
::
SetNodeGroup
(
int
index
,
const
vector
<
Ref
<
NiNode
>
>&
group
)
{
while
(
index
>=
int
(
nodeGroups
.
size
()))
nodeGroups
.
insert
(
nodeGroups
.
end
(),
NodeGroup
()
);
numNodeGroups2
=
nodeGroups
.
size
();
nodeGroups
[
index
].
nodes
.
assign
(
group
.
begin
(),
group
.
end
());
}
void
ABoneLODController
::
RemoveNodeGroup
(
int
index
)
{
if
(
index
<
0
||
index
>=
int
(
nodeGroups
.
size
())
)
{
throw
runtime_error
(
"Invalid index referenced."
);
}
vector
<
NodeGroup
>::
iterator
itr
=
nodeGroups
.
begin
();
std
::
advance
(
itr
,
index
);
nodeGroups
.
erase
(
itr
);
numNodeGroups2
=
nodeGroups
.
size
();
}
void
ABoneLODController
::
ClearNodeGroups
()
{
nodeGroups
.
clear
();
numNodeGroups2
=
nodeGroups
.
size
();
}
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