Skip to content
Snippets Groups Projects
Commit 4b0f147d authored by Tazpn's avatar Tazpn
Browse files

Update to last changes before the lower case/upper case problem

parent dc1c5795
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
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