/*===========================================================================*\ * * * OpenFlipper * * Copyright (C) 2001-2011 by Computer Graphics Group, RWTH Aachen * * www.openflipper.org * * * *--------------------------------------------------------------------------- * * This file is part of OpenFlipper. * * * * OpenFlipper 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 3 of * * the License, or (at your option) any later version with the * * following exceptions: * * * * If other files instantiate templates or use macros * * or inline functions from this file, or you compile this file and * * link it with other files to produce an executable, this file does * * not by itself cause the resulting executable to be covered by the * * GNU Lesser General Public License. This exception does not however * * invalidate any other reasons why the executable file might be * * covered by the GNU Lesser General Public License. * * * * OpenFlipper 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 LesserGeneral Public * * License along with OpenFlipper. If not, * * see . * * * \*===========================================================================*/ /*===========================================================================*\ * * * $Revision$ * * $LastChangedBy$ * * $Date$ * * * \*===========================================================================*/ #define JOINTT_C #include "JointT.hh" #include using namespace std; //----------------------------------------------------------------------------------------------------- /** * @brief Default constructor, creates a joint pointing to the origin */ template JointT::JointT(Joint *_parent, std::string _name) : id_(0), selected_(false), parent_(_parent), name_(_name) { } //----------------------------------------------------------------------------------------------------- /** * @brief Copy constructor, creates an incomplete copy of the given joint * * The parent and children cannot be copied, since they are provided as pointers only. Furthermore, * if a skeleton is being cloned the corresponding joints may not yet exist in this skeleton. */ template JointT::JointT(const Joint &_other) : id_(_other.id_), selected_(_other.selected_), parent_(0), name_(_other.name_) { } //----------------------------------------------------------------------------------------------------- template JointT::~JointT() { } //----------------------------------------------------------------------------------------------------- /** * @brief Returns the joints index * * The index is part of a continuous sequence out of the interval [0, number of joints). It is guaranteed * not to change, unless joints are deleted from the skeleton. */ template inline unsigned int JointT::id() { return id_; } //----------------------------------------------------------------------------------------------------- template inline void JointT::setId(unsigned int _id) { id_ = _id; } //----------------------------------------------------------------------------------------------------- /** * @brief Replaces this joints parent joint * * After calling this method this joint is child of the given joint. Keep in mind that this will corrupt * the joints local matrix in all poses. * * @param _newParent The new parent joint * @param _skeleton The skeleton this joint is part of, used to update the poses local matrices */ template inline void JointT::setParent(Joint *_newParent, SkeletonT &_skeleton) { // Check for cycles and do not continue operation if cycles would be created! (if this joint is a parent of newParent this will be the case) Joint *parent = _newParent; while (parent != 0){ if (parent == this) { std::cerr << "Illegal setParent operation (joint " << _newParent->id() << " cannot be parent of " << this->id() << " because this would lead to a cycle. Cancelling." << std::endl; return; } parent = parent->parent(); } if(parent_ != 0) if(remove(parent_->children_.begin(), parent_->children_.end(), this) != parent_->children_.end()) // remove from the last parent parent_->children_.resize(parent_->children_.size() - 1); parent_ = _newParent; if ( _newParent != 0) _newParent->children_.push_back(this); _skeleton.updateFromGlobal(id_); } //----------------------------------------------------------------------------------------------------- /** * @brief Returns the parent joint * * If you want to know the root position of a joint, then just take its parents global position. They always * match, since a joint is always directly attached to its parent. */ template inline JointT *JointT::parent() { return parent_; } //----------------------------------------------------------------------------------------------------- template inline bool JointT::isRoot() { return parent_ == NULL; } //----------------------------------------------------------------------------------------------------- /** * @brief Returns an iterator on the joints children */ template inline typename JointT::ChildIter JointT::begin() { return children_.begin(); } //----------------------------------------------------------------------------------------------------- /** * @brief Returns the end iterator for the joints children */ template inline typename JointT::ChildIter JointT::end() { return children_.end(); } //----------------------------------------------------------------------------------------------------- /** * @brief Returns the number of children */ template inline size_t JointT::size() { return children_.size(); } //----------------------------------------------------------------------------------------------------- /** * @brief Returns the child joint with the given index * * @param _index The child nodes index * @return A pointer to the child joint or zero if the index was out of range */ template inline JointT *JointT::child(size_t _index) { assert( _index < children_.size() ); if(_index >= children_.size()) return 0; return children_[_index]; } //----------------------------------------------------------------------------------------------------- /** * @brief Returns the joint's selection state * */ template inline bool JointT::selected() { return selected_; } //----------------------------------------------------------------------------------------------------- /** * @brief Set the joint's selction state * */ template inline void JointT::setSelected(bool _selected) { selected_ = _selected; } //----------------------------------------------------------------------------------------------------- template inline std::string JointT::name() { return name_; } //----------------------------------------------------------------------------------------------------- template inline void JointT::setName(std::string _name) { name_ = _name; } //-----------------------------------------------------------------------------------------------------