/usr/include/sofa/component/container/ArticulatedHierarchyContainer.inl is in libsofa1-dev 1.0~beta4-10ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | /******************************************************************************
* SOFA, Simulation Open-Framework Architecture, version 1.0 beta 4 *
* (c) 2006-2009 MGH, INRIA, USTL, UJF, CNRS *
* *
* This library is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 2.1 of the License, or (at *
* your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, but WITHOUT *
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or *
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License *
* for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
*******************************************************************************
* SOFA :: Modules *
* *
* Authors: The SOFA Team and external contributors (see Authors.txt) *
* *
* Contact information: contact@sofa-framework.org *
******************************************************************************/
#ifndef SOFA_COMPONENT_CONTAINER_ARTICULATEDHIERARCHYCONTAINER_INL
#define SOFA_COMPONENT_CONTAINER_ARTICULATEDHIERARCHYCONTAINER_INL
#include <sofa/component/container/ArticulatedHierarchyContainer.h>
#include <sofa/helper/system/FileRepository.h>
#include <sofa/simulation/common/Simulation.h>
namespace sofa
{
namespace component
{
namespace container
{
ArticulatedHierarchyContainer::ArticulationCenter::Articulation::Articulation():
axis(initData(&axis, (Vector3) Vector3(1,0,0), "rotationAxis", "Set the rotation axis for the articulation")),
rotation(initData(&rotation, (bool) false, "rotation", "Rotation")),
translation(initData(&translation, (bool) false, "translation", "Translation")),
articulationIndex(initData(&articulationIndex, (int) 0, "articulationIndex", "Articulation index"))
{
}
ArticulatedHierarchyContainer::ArticulationCenter::ArticulationCenter():
parentIndex(initData(&parentIndex, "parentIndex", "Parent of the center articulation")),
childIndex(initData(&childIndex, "childIndex", "Child of the center articulation")),
globalPosition(initData(&globalPosition, "globalPosition", "Global position of the articulation center")),
posOnParent(initData(&posOnParent, "posOnParent", "Parent position of the articulation center")),
posOnChild(initData(&posOnChild, "posOnChild", "Child position of the articulation center")),
articulationProcess(initData(&articulationProcess, (int) 0, "articulationProcess", " 0 - (default) hierarchy between articulations (euler angles)\n 1- ( on Parent) no hierarchy - axis are attached to the parent\n 2- (attached on Child) no hierarchy - axis are attached to the child"))
{
}
ArticulatedHierarchyContainer::ArticulationCenter* ArticulatedHierarchyContainer::getArticulationCenterAsChild(int index)
{
vector<ArticulationCenter*>::const_iterator ac = articulationCenters.begin();
vector<ArticulationCenter*>::const_iterator acEnd = articulationCenters.end();
for (; ac != acEnd; ac++)
{
if ((*ac)->childIndex.getValue() == index)
return (*ac);
}
return (*ac);
}
vector<ArticulatedHierarchyContainer::ArticulationCenter*> ArticulatedHierarchyContainer::getAcendantList(int index)
{
unsigned int i=0;
acendantList.clear();
while (index !=0)
{
acendantList.push_back(getArticulationCenterAsChild(index));
index = acendantList[i]->parentIndex.getValue();
i++;
}
return acendantList;
}
ArticulatedHierarchyContainer::ArticulatedHierarchyContainer():
filename(initData(&filename, "filename", "BVH File to load the articulation", false))
{
joint = NULL;
id = 0;
chargedFromFile = false;
numOfFrames = 0;
dtbvh = 0.0;
}
void ArticulatedHierarchyContainer::buildCenterArticulationsTree(sofa::helper::io::bvh::BVHJoint* bvhjoint, int id_buf, const char* name, simulation::Node* node)
{
std::vector<sofa::helper::io::bvh::BVHJoint*> jointChildren = bvhjoint->getChildren();
if (jointChildren.size()==0)
return;
std::string str(name);
str.append("/");
str.append(bvhjoint->getName());
simulation::Node* nodeOfArticulationCenters = simulation::getSimulation()->newNode(str);
node->addChild(nodeOfArticulationCenters);
ArticulationCenter* ac = new ArticulationCenter();
nodeOfArticulationCenters->addObject(ac);
articulationCenters.push_back(ac);
ac->posOnParent.setValue(Vector3(bvhjoint->getOffset()->x,bvhjoint->getOffset()->y,bvhjoint->getOffset()->z)); //
ac->posOnChild.setValue(Vector3(0,0,0));
ac->parentIndex.setValue(id_buf);
ac->childIndex.setValue(bvhjoint->getId()+1);
simulation::Node* nodeOfArticulations = simulation::getSimulation()->newNode("articulations");
nodeOfArticulationCenters->addChild(nodeOfArticulations);
sofa::helper::io::bvh::BVHChannels* channels = bvhjoint->getChannels();
sofa::helper::io::bvh::BVHMotion* motion = bvhjoint->getMotion();
std::cerr<<"num Frames found in BVH ="<<motion->frameCount<<std::endl;
ArticulationCenter::Articulation* a;
for (unsigned int j=0; j<channels->channels.size(); j++)
{
switch(channels->channels[j])
{
case sofa::helper::io::bvh::BVHChannels::NOP:
break;
case sofa::helper::io::bvh::BVHChannels::Xposition:
a = new ArticulationCenter::Articulation();
nodeOfArticulations->addObject(a);
ac->articulations.push_back(a);
a->axis.setValue(Vector3(1,0,0));
a->translation.setValue(true);
a->articulationIndex.setValue(id);
for (int k=0; k<motion->frameCount; k++)
a->motion.push_back(motion->frames[k][j]);
id++;
break;
case sofa::helper::io::bvh::BVHChannels::Yposition:
a = new ArticulationCenter::Articulation();
nodeOfArticulations->addObject(a);
ac->articulations.push_back(a);
a->axis.setValue(Vector3(0,1,0));
a->translation.setValue(true);
a->articulationIndex.setValue(id);
for (int k=0; k<motion->frameCount; k++)
a->motion.push_back(motion->frames[k][j]);
id++;
break;
case sofa::helper::io::bvh::BVHChannels::Zposition:
a = new ArticulationCenter::Articulation();
nodeOfArticulations->addObject(a);
ac->articulations.push_back(a);
a->axis.setValue(Vector3(0,0,1));
a->translation.setValue(true);
a->articulationIndex.setValue(id);
for (int k=0; k<motion->frameCount; k++)
a->motion.push_back(motion->frames[k][j]);
id++;
break;
case sofa::helper::io::bvh::BVHChannels::Xrotation:
a = new ArticulationCenter::Articulation();
nodeOfArticulations->addObject(a);
ac->articulations.push_back(a);
a->axis.setValue(Vector3(1,0,0));
a->rotation.setValue(true);
a->articulationIndex.setValue(id);
for (int k=0; k<motion->frameCount; k++)
a->motion.push_back(motion->frames[k][j]);
id++;
break;
case sofa::helper::io::bvh::BVHChannels::Yrotation:
a = new ArticulationCenter::Articulation();
nodeOfArticulations->addObject(a);
ac->articulations.push_back(a);
a->axis.setValue(Vector3(0,1,0));
a->rotation.setValue(true);
a->articulationIndex.setValue(id);
for (int k=0; k<motion->frameCount; k++)
a->motion.push_back(motion->frames[k][j]);
id++;
break;
case sofa::helper::io::bvh::BVHChannels::Zrotation:
a = new ArticulationCenter::Articulation();
nodeOfArticulations->addObject(a);
ac->articulations.push_back(a);
a->axis.setValue(Vector3(0,0,1));
a->rotation.setValue(true);
a->articulationIndex.setValue(id);
for (int k=0; k<motion->frameCount; k++)
a->motion.push_back(motion->frames[k][j]);
id++;
break;
}
}
for(unsigned int i=0; i<jointChildren.size(); i++)
{
buildCenterArticulationsTree(jointChildren[i], bvhjoint->getId()+1, bvhjoint->getName(), nodeOfArticulationCenters);
}
}
void ArticulatedHierarchyContainer::init ()
{
simulation::tree::GNode* context = dynamic_cast<simulation::tree::GNode *>(this->getContext()); // access to current node
std::string file = filename.getFullPath();
if ( sofa::helper::system::DataRepository.findFile (file) )
{
sofa::helper::io::bvh::BVHLoader loader = sofa::helper::io::bvh::BVHLoader();
joint = loader.load(sofa::helper::system::DataRepository.getFile ( file ).c_str());
chargedFromFile = true;
numOfFrames = joint->getMotion()->frameCount;
dtbvh = joint->getMotion()->frameTime;
}
if (joint != NULL)
{
simulation::Node* articulationCenters = simulation::getSimulation()->newNode("ArticulationCenters");
context->addChild(articulationCenters);
buildCenterArticulationsTree(joint, 0, "Root", articulationCenters);
component::MechanicalObject<Vec1dTypes>* mm1 = dynamic_cast<component::MechanicalObject<Vec1dTypes>*>(context->getMechanicalState());
mm1->resize(id);
context = *context->child.begin();
component::MechanicalObject<RigidTypes>* mm2 = dynamic_cast<component::MechanicalObject<RigidTypes>*>(context->getMechanicalState());
mm2->resize(joint->getNumJoints()+1);
}
else
{
context->getTreeObjects<ArticulationCenter>(&articulationCenters);
vector<ArticulatedHierarchyContainer::ArticulationCenter*>::const_iterator ac = articulationCenters.begin();
vector<ArticulatedHierarchyContainer::ArticulationCenter*>::const_iterator acEnd = articulationCenters.end();
for (; ac != acEnd; ac++)
{
context = dynamic_cast<simulation::tree::GNode *>((*ac)->getContext());
for (simulation::tree::GNode::ChildIterator it = context->child.begin(); it != context->child.end(); ++it)
{
GNode* n = *it;
n->getTreeObjects<ArticulationCenter::Articulation>(&(*ac)->articulations);
}
// for Arboris Mapping, init the transformation for each articulation center
Quat q; // TODO: add a rotation component to the positionning on the ArticulatedHierarchyContainer
(*ac)->H_p_pLc.set((*ac)->posOnParent.getValue(),q);
(*ac)->H_c_cLp.set((*ac)->posOnChild.getValue(), q);
(*ac)->H_pLc_cLp.identity();
}
}
}
} // namespace container
} // namespace component
} // namespace sofa
#endif
|