| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*
- -----------------------------------------------------------------------------
- The MIT License (MIT)
- Copyright (c) 2013-08-17 Tobias Peters <tobias.peters@kreativeffekt.at>
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- -----------------------------------------------------------------------------
- */
- #include "data/QGearsHRCSkeletonLoader.h"
- #include <OgreBone.h>
- #include "data/QGearsHRCFile.h"
- namespace QGears
- {
- //-------------------------------------------------------------------------
- const String HRCSkeletonLoader::ROOT_BONE_NAME( "root" );
- const Ogre::Quaternion HRCSkeletonLoader::ROOT_ORIENTATION( HRCSkeletonLoader::createRootOrientation() );
- typedef HRCFile::BoneList BoneList;
- //-------------------------------------------------------------------------
- HRCSkeletonLoader::HRCSkeletonLoader( HRCFile &hrc_file ) :
- m_hrc_file( hrc_file )
- {
- }
- //-------------------------------------------------------------------------
- HRCSkeletonLoader::~HRCSkeletonLoader()
- {
- }
- //---------------------------------------------------------------------
- Ogre::Quaternion
- HRCSkeletonLoader::createRootOrientation()
- {
- Ogre::Radian angle( Ogre::Degree( 180 ) );
- Ogre::Vector3 axis( 0, 1, 1 );
- return Ogre::Quaternion( angle, axis );
- }
- //-------------------------------------------------------------------------
- void
- HRCSkeletonLoader::loadResource( Ogre::Resource *resource )
- {
- Ogre::Skeleton *skeleton( static_cast<Ogre::Skeleton *>(resource) );
- assert( skeleton );
- m_hrc_file.load();
- skeleton->_notifyOrigin( m_hrc_file.getName() );
- Ogre::Bone *root( skeleton->createBone( ROOT_BONE_NAME ) );
- root->setOrientation( ROOT_ORIENTATION );
- typedef std::map< String, Ogre::Real> LengthMap;
- LengthMap length_map;
- LengthMap::const_iterator length;
- BoneList &bones( m_hrc_file.getBones() );
- for( BoneList::const_iterator bone( bones.begin() )
- ;bone != bones.end()
- ;++bone )
- {
- Ogre::Bone* child( skeleton->createBone( bone->name ) );
- Ogre::Bone* parent( skeleton->getBone( bone->parent ) );
- length_map[ bone->name ] = bone->length;
- length = length_map.find( bone->parent );
- if( length != length_map.end() )
- {
- child->setPosition( 0, length->second, 0 );
- }
- parent->addChild( child );
- }
- }
- //-------------------------------------------------------------------------
- }
|