2014-05-18 08:57:44 +00:00
|
|
|
/*
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
2018-01-28 18:42:05 +00:00
|
|
|
Copyright (c) 2006-2018, assimp team
|
|
|
|
|
2017-05-09 17:57:36 +00:00
|
|
|
|
2014-05-18 08:57:44 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the
|
2014-05-18 08:57:44 +00:00
|
|
|
following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the assimp team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the assimp team.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2014-05-18 08:57:44 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 03:52:10 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2014-05-18 08:57:44 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 03:52:10 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2014-05-18 08:57:44 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 03:52:10 +00:00
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2014-05-18 08:57:44 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AI_OGRESTRUCTS_H_INC
|
|
|
|
#define AI_OGRESTRUCTS_H_INC
|
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_NO_OGRE_IMPORTER
|
|
|
|
|
2018-01-06 00:18:33 +00:00
|
|
|
#include <assimp/MemoryIOWrapper.h>
|
2016-04-05 21:23:53 +00:00
|
|
|
#include <memory>
|
2016-06-06 20:04:29 +00:00
|
|
|
#include <assimp/mesh.h>
|
2015-04-15 23:00:17 +00:00
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
struct aiNodeAnim;
|
|
|
|
struct aiAnimation;
|
|
|
|
struct aiNode;
|
|
|
|
struct aiMaterial;
|
|
|
|
struct aiScene;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
|
|
|
/** @note Parts of this implementation, for example enums, deserialization constants and logic
|
2015-05-19 03:57:13 +00:00
|
|
|
has been copied directly with minor modifications from the MIT licensed Ogre3D code base.
|
|
|
|
See more from https://bitbucket.org/sinbad/ogre. */
|
2014-05-18 08:57:44 +00:00
|
|
|
|
|
|
|
namespace Assimp
|
|
|
|
{
|
|
|
|
namespace Ogre
|
|
|
|
{
|
|
|
|
|
|
|
|
// Forward decl
|
|
|
|
class Mesh;
|
2014-05-20 01:52:53 +00:00
|
|
|
class MeshXml;
|
|
|
|
class SubMesh;
|
|
|
|
class SubMeshXml;
|
|
|
|
class Skeleton;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
|
|
|
#define OGRE_SAFE_DELETE(p) delete p; p=0;
|
|
|
|
|
|
|
|
// Typedefs
|
|
|
|
typedef Assimp::MemoryIOStream MemoryStream;
|
2016-04-05 21:23:53 +00:00
|
|
|
typedef std::shared_ptr<MemoryStream> MemoryStreamPtr;
|
2014-05-18 08:57:44 +00:00
|
|
|
typedef std::map<uint16_t, MemoryStreamPtr> VertexBufferBindings;
|
|
|
|
|
|
|
|
// Ogre Vertex Element
|
|
|
|
class VertexElement
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Vertex element semantics, used to identify the meaning of vertex buffer contents
|
|
|
|
enum Semantic {
|
|
|
|
/// Position, 3 reals per vertex
|
|
|
|
VES_POSITION = 1,
|
|
|
|
/// Blending weights
|
|
|
|
VES_BLEND_WEIGHTS = 2,
|
|
|
|
/// Blending indices
|
|
|
|
VES_BLEND_INDICES = 3,
|
|
|
|
/// Normal, 3 reals per vertex
|
|
|
|
VES_NORMAL = 4,
|
|
|
|
/// Diffuse colours
|
|
|
|
VES_DIFFUSE = 5,
|
|
|
|
/// Specular colours
|
|
|
|
VES_SPECULAR = 6,
|
|
|
|
/// Texture coordinates
|
|
|
|
VES_TEXTURE_COORDINATES = 7,
|
|
|
|
/// Binormal (Y axis if normal is Z)
|
|
|
|
VES_BINORMAL = 8,
|
|
|
|
/// Tangent (X axis if normal is Z)
|
|
|
|
VES_TANGENT = 9,
|
|
|
|
/// The number of VertexElementSemantic elements (note - the first value VES_POSITION is 1)
|
|
|
|
VES_COUNT = 9
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Vertex element type, used to identify the base types of the vertex contents
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
VET_FLOAT1 = 0,
|
|
|
|
VET_FLOAT2 = 1,
|
|
|
|
VET_FLOAT3 = 2,
|
|
|
|
VET_FLOAT4 = 3,
|
|
|
|
/// alias to more specific colour type - use the current rendersystem's colour packing
|
|
|
|
VET_COLOUR = 4,
|
|
|
|
VET_SHORT1 = 5,
|
|
|
|
VET_SHORT2 = 6,
|
|
|
|
VET_SHORT3 = 7,
|
|
|
|
VET_SHORT4 = 8,
|
|
|
|
VET_UBYTE4 = 9,
|
|
|
|
/// D3D style compact colour
|
|
|
|
VET_COLOUR_ARGB = 10,
|
|
|
|
/// GL style compact colour
|
|
|
|
VET_COLOUR_ABGR = 11,
|
|
|
|
VET_DOUBLE1 = 12,
|
|
|
|
VET_DOUBLE2 = 13,
|
|
|
|
VET_DOUBLE3 = 14,
|
|
|
|
VET_DOUBLE4 = 15,
|
|
|
|
VET_USHORT1 = 16,
|
|
|
|
VET_USHORT2 = 17,
|
|
|
|
VET_USHORT3 = 18,
|
|
|
|
VET_USHORT4 = 19,
|
|
|
|
VET_INT1 = 20,
|
|
|
|
VET_INT2 = 21,
|
|
|
|
VET_INT3 = 22,
|
|
|
|
VET_INT4 = 23,
|
|
|
|
VET_UINT1 = 24,
|
|
|
|
VET_UINT2 = 25,
|
|
|
|
VET_UINT3 = 26,
|
|
|
|
VET_UINT4 = 27
|
|
|
|
};
|
|
|
|
|
|
|
|
VertexElement();
|
|
|
|
|
|
|
|
/// Size of the vertex element in bytes.
|
|
|
|
size_t Size() const;
|
|
|
|
|
|
|
|
/// Count of components in this element, eg. VET_FLOAT3 return 3.
|
|
|
|
size_t ComponentCount() const;
|
|
|
|
|
|
|
|
/// Type as string.
|
|
|
|
std::string TypeToString();
|
|
|
|
|
|
|
|
/// Semantic as string.
|
|
|
|
std::string SemanticToString();
|
|
|
|
|
|
|
|
static size_t TypeSize(Type type);
|
|
|
|
static size_t ComponentCount(Type type);
|
|
|
|
static std::string TypeToString(Type type);
|
|
|
|
static std::string SemanticToString(Semantic semantic);
|
|
|
|
|
|
|
|
uint16_t index;
|
|
|
|
uint16_t source;
|
|
|
|
uint16_t offset;
|
|
|
|
Type type;
|
|
|
|
Semantic semantic;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
|
|
|
typedef std::vector<VertexElement> VertexElementList;
|
|
|
|
|
2014-05-20 01:52:53 +00:00
|
|
|
/// Ogre Vertex Bone Assignment
|
|
|
|
struct VertexBoneAssignment
|
|
|
|
{
|
2015-05-19 03:57:13 +00:00
|
|
|
uint32_t vertexIndex;
|
|
|
|
uint16_t boneIndex;
|
|
|
|
float weight;
|
2014-05-20 01:52:53 +00:00
|
|
|
};
|
|
|
|
typedef std::vector<VertexBoneAssignment> VertexBoneAssignmentList;
|
|
|
|
typedef std::map<uint32_t, VertexBoneAssignmentList > VertexBoneAssignmentsMap;
|
|
|
|
typedef std::map<uint16_t, std::vector<aiVertexWeight> > AssimpVertexBoneWeightList;
|
|
|
|
|
|
|
|
// Ogre Vertex Data interface, inherited by the binary and XML implementations.
|
|
|
|
class IVertexData
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
IVertexData();
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns if bone assignments are available.
|
|
|
|
bool HasBoneAssignments() const;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Add vertex mapping from old to new index.
|
|
|
|
void AddVertexMapping(uint32_t oldIndex, uint32_t newIndex);
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns re-mapped bone assignments.
|
|
|
|
/** @note Uses mappings added via AddVertexMapping. */
|
|
|
|
AssimpVertexBoneWeightList AssimpBoneWeights(size_t vertices);
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns a set of bone indexes that are referenced by bone assignments (weights).
|
|
|
|
std::set<uint16_t> ReferencedBonesByWeights() const;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Vertex count.
|
|
|
|
uint32_t count;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Bone assignments.
|
|
|
|
VertexBoneAssignmentList boneAssignments;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2014-05-20 01:52:53 +00:00
|
|
|
private:
|
2015-05-19 03:57:13 +00:00
|
|
|
void BoneAssignmentsForVertex(uint32_t currentIndex, uint32_t newIndex, VertexBoneAssignmentList &dest) const;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
std::map<uint32_t, std::vector<uint32_t> > vertexIndexMapping;
|
|
|
|
VertexBoneAssignmentsMap boneAssignmentsMap;
|
2014-05-20 01:52:53 +00:00
|
|
|
};
|
|
|
|
|
2014-05-18 08:57:44 +00:00
|
|
|
// Ogre Vertex Data
|
2014-05-20 01:52:53 +00:00
|
|
|
class VertexData : public IVertexData
|
2014-05-18 08:57:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
VertexData();
|
|
|
|
~VertexData();
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Releases all memory that this data structure owns.
|
|
|
|
void Reset();
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Get vertex size for @c source.
|
|
|
|
uint32_t VertexSize(uint16_t source) const;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Get vertex buffer for @c source.
|
|
|
|
MemoryStream *VertexBuffer(uint16_t source);
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Get vertex element for @c semantic for @c index.
|
|
|
|
VertexElement *GetVertexElement(VertexElement::Semantic semantic, uint16_t index = 0);
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Vertex elements.
|
|
|
|
VertexElementList vertexElements;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Vertex buffers mapped to bind index.
|
|
|
|
VertexBufferBindings vertexBindings;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Ogre Index Data
|
|
|
|
class IndexData
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
IndexData();
|
|
|
|
~IndexData();
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Releases all memory that this data structure owns.
|
|
|
|
void Reset();
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Index size in bytes.
|
|
|
|
size_t IndexSize() const;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Face size in bytes.
|
|
|
|
size_t FaceSize() const;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Index count.
|
|
|
|
uint32_t count;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Face count.
|
|
|
|
uint32_t faceCount;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// If has 32-bit indexes.
|
|
|
|
bool is32bit;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Index buffer.
|
|
|
|
MemoryStreamPtr buffer;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Ogre Pose
|
|
|
|
class Pose
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
struct Vertex
|
|
|
|
{
|
|
|
|
uint32_t index;
|
|
|
|
aiVector3D offset;
|
|
|
|
aiVector3D normal;
|
|
|
|
};
|
|
|
|
typedef std::map<uint32_t, Vertex> PoseVertexMap;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
Pose() : target(0), hasNormals(false) {}
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Name.
|
|
|
|
std::string name;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Target.
|
|
|
|
uint16_t target;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Does vertices map have normals.
|
|
|
|
bool hasNormals;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Vertex offset and normals.
|
|
|
|
PoseVertexMap vertices;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
2014-05-20 01:52:53 +00:00
|
|
|
typedef std::vector<Pose*> PoseList;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
|
|
|
/// Ogre Pose Key Frame Ref
|
|
|
|
struct PoseRef
|
|
|
|
{
|
2015-05-19 03:57:13 +00:00
|
|
|
uint16_t index;
|
|
|
|
float influence;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
2014-05-20 01:52:53 +00:00
|
|
|
typedef std::vector<PoseRef> PoseRefList;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
|
|
|
/// Ogre Pose Key Frame
|
|
|
|
struct PoseKeyFrame
|
|
|
|
{
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Time position in the animation.
|
|
|
|
float timePos;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
PoseRefList references;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
2014-05-20 01:52:53 +00:00
|
|
|
typedef std::vector<PoseKeyFrame> PoseKeyFrameList;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
|
|
|
/// Ogre Morph Key Frame
|
|
|
|
struct MorphKeyFrame
|
|
|
|
{
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Time position in the animation.
|
|
|
|
float timePos;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
MemoryStreamPtr buffer;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
2014-05-20 01:52:53 +00:00
|
|
|
typedef std::vector<MorphKeyFrame> MorphKeyFrameList;
|
|
|
|
|
|
|
|
/// Ogre animation key frame
|
|
|
|
struct TransformKeyFrame
|
|
|
|
{
|
2015-05-19 03:57:13 +00:00
|
|
|
TransformKeyFrame();
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
aiMatrix4x4 Transform();
|
2014-05-21 01:00:11 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
float timePos;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
aiQuaternion rotation;
|
|
|
|
aiVector3D position;
|
|
|
|
aiVector3D scale;
|
2014-05-20 01:52:53 +00:00
|
|
|
};
|
|
|
|
typedef std::vector<TransformKeyFrame> TransformKeyFrameList;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
|
|
|
/// Ogre Animation Track
|
|
|
|
struct VertexAnimationTrack
|
|
|
|
{
|
2015-05-19 03:57:13 +00:00
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
/// No animation
|
|
|
|
VAT_NONE = 0,
|
|
|
|
/// Morph animation is made up of many interpolated snapshot keyframes
|
|
|
|
VAT_MORPH = 1,
|
|
|
|
/// Pose animation is made up of a single delta pose keyframe
|
|
|
|
VAT_POSE = 2,
|
|
|
|
/// Keyframe that has its on pos, rot and scale for a time position
|
|
|
|
VAT_TRANSFORM = 3
|
|
|
|
};
|
|
|
|
|
|
|
|
VertexAnimationTrack();
|
|
|
|
|
|
|
|
/// Convert to Assimp node animation.
|
|
|
|
aiNodeAnim *ConvertToAssimpAnimationNode(Skeleton *skeleton);
|
|
|
|
|
|
|
|
// Animation type.
|
|
|
|
Type type;
|
|
|
|
|
|
|
|
/// Vertex data target.
|
|
|
|
/** 0 == shared geometry
|
|
|
|
>0 == submesh index + 1 */
|
|
|
|
uint16_t target;
|
|
|
|
|
|
|
|
/// Only valid for VAT_TRANSFORM.
|
|
|
|
std::string boneName;
|
|
|
|
|
|
|
|
/// Only one of these will contain key frames, depending on the type enum.
|
|
|
|
PoseKeyFrameList poseKeyFrames;
|
|
|
|
MorphKeyFrameList morphKeyFrames;
|
|
|
|
TransformKeyFrameList transformKeyFrames;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
2014-05-20 01:52:53 +00:00
|
|
|
typedef std::vector<VertexAnimationTrack> VertexAnimationTrackList;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
|
|
|
/// Ogre Animation
|
2014-05-20 01:52:53 +00:00
|
|
|
class Animation
|
2014-05-18 08:57:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-10-29 12:04:23 +00:00
|
|
|
explicit Animation(Skeleton *parent);
|
|
|
|
explicit Animation(Mesh *parent);
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns the associated vertex data for a track in this animation.
|
|
|
|
/** @note Only valid to call when parent Mesh is set. */
|
|
|
|
VertexData *AssociatedVertexData(VertexAnimationTrack *track) const;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Convert to Assimp animation.
|
|
|
|
aiAnimation *ConvertToAssimpAnimation();
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Parent mesh.
|
|
|
|
/** @note Set only when animation is read from a mesh. */
|
|
|
|
Mesh *parentMesh;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Parent skeleton.
|
|
|
|
/** @note Set only when animation is read from a skeleton. */
|
|
|
|
Skeleton *parentSkeleton;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Animation name.
|
|
|
|
std::string name;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Base animation name.
|
|
|
|
std::string baseName;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Length in seconds.
|
|
|
|
float length;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Base animation key time.
|
|
|
|
float baseTime;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Animation tracks.
|
|
|
|
VertexAnimationTrackList tracks;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
2014-05-20 01:52:53 +00:00
|
|
|
typedef std::vector<Animation*> AnimationList;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2014-05-20 01:52:53 +00:00
|
|
|
/// Ogre Bone
|
|
|
|
class Bone
|
2014-05-18 08:57:44 +00:00
|
|
|
{
|
2014-05-20 01:52:53 +00:00
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
Bone();
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns if this bone is parented.
|
|
|
|
bool IsParented() const;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Parent index as uint16_t. Internally int32_t as -1 means unparented.
|
|
|
|
uint16_t ParentId() const;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Add child bone.
|
|
|
|
void AddChild(Bone *bone);
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Calculates the world matrix for bone and its children.
|
|
|
|
void CalculateWorldMatrixAndDefaultPose(Skeleton *skeleton);
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Convert to Assimp node (animation nodes).
|
|
|
|
aiNode *ConvertToAssimpNode(Skeleton *parent, aiNode *parentNode = 0);
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Convert to Assimp bone (mesh bones).
|
|
|
|
aiBone *ConvertToAssimpBone(Skeleton *parent, const std::vector<aiVertexWeight> &boneWeights);
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
uint16_t id;
|
|
|
|
std::string name;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
Bone *parent;
|
|
|
|
int32_t parentId;
|
|
|
|
std::vector<uint16_t> children;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
aiVector3D position;
|
|
|
|
aiQuaternion rotation;
|
|
|
|
aiVector3D scale;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
aiMatrix4x4 worldMatrix;
|
|
|
|
aiMatrix4x4 defaultPose;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
2014-05-20 01:52:53 +00:00
|
|
|
typedef std::vector<Bone*> BoneList;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2014-05-20 01:52:53 +00:00
|
|
|
/// Ogre Skeleton
|
|
|
|
class Skeleton
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
enum BlendMode
|
|
|
|
{
|
|
|
|
/// Animations are applied by calculating a weighted average of all animations
|
|
|
|
ANIMBLEND_AVERAGE = 0,
|
|
|
|
/// Animations are applied by calculating a weighted cumulative total
|
|
|
|
ANIMBLEND_CUMULATIVE = 1
|
|
|
|
};
|
2014-05-21 01:00:11 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
Skeleton();
|
|
|
|
~Skeleton();
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Releases all memory that this data structure owns.
|
|
|
|
void Reset();
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns unparented root bones.
|
|
|
|
BoneList RootBones() const;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns number of unparented root bones.
|
|
|
|
size_t NumRootBones() const;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Get bone by name.
|
|
|
|
Bone *BoneByName(const std::string &name) const;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Get bone by id.
|
|
|
|
Bone *BoneById(uint16_t id) const;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
BoneList bones;
|
|
|
|
AnimationList animations;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// @todo Take blend mode into account, but where?
|
|
|
|
BlendMode blendMode;
|
2014-05-20 01:52:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Ogre Sub Mesh interface, inherited by the binary and XML implementations.
|
|
|
|
class ISubMesh
|
2014-05-18 08:57:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
/// @note Full list of Ogre types, not all of them are supported and exposed to Assimp.
|
|
|
|
enum OperationType
|
|
|
|
{
|
|
|
|
/// A list of points, 1 vertex per point
|
|
|
|
OT_POINT_LIST = 1,
|
|
|
|
/// A list of lines, 2 vertices per line
|
|
|
|
OT_LINE_LIST = 2,
|
|
|
|
/// A strip of connected lines, 1 vertex per line plus 1 start vertex
|
|
|
|
OT_LINE_STRIP = 3,
|
|
|
|
/// A list of triangles, 3 vertices per triangle
|
|
|
|
OT_TRIANGLE_LIST = 4,
|
|
|
|
/// A strip of triangles, 3 vertices for the first triangle, and 1 per triangle after that
|
|
|
|
OT_TRIANGLE_STRIP = 5,
|
|
|
|
/// A fan of triangles, 3 vertices for the first triangle, and 1 per triangle after that
|
|
|
|
OT_TRIANGLE_FAN = 6
|
|
|
|
};
|
|
|
|
|
|
|
|
ISubMesh();
|
|
|
|
|
|
|
|
/// SubMesh index.
|
|
|
|
unsigned int index;
|
|
|
|
|
|
|
|
/// SubMesh name.
|
|
|
|
std::string name;
|
|
|
|
|
|
|
|
/// Material used by this submesh.
|
|
|
|
std::string materialRef;
|
|
|
|
|
|
|
|
/// Texture alias information.
|
|
|
|
std::string textureAliasName;
|
|
|
|
std::string textureAliasRef;
|
|
|
|
|
|
|
|
/// Assimp scene material index used by this submesh.
|
|
|
|
/** -1 if no material or material could not be imported. */
|
|
|
|
int materialIndex;
|
|
|
|
|
|
|
|
/// If submesh uses shared geometry from parent mesh.
|
|
|
|
bool usesSharedVertexData;
|
|
|
|
|
|
|
|
/// Operation type.
|
|
|
|
OperationType operationType;
|
2014-05-20 01:52:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Ogre SubMesh
|
|
|
|
class SubMesh : public ISubMesh
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
SubMesh();
|
|
|
|
~SubMesh();
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Releases all memory that this data structure owns.
|
|
|
|
/** @note Vertex and index data contains shared ptrs
|
|
|
|
that are freed automatically. In practice the ref count
|
|
|
|
should be 0 after this reset. */
|
|
|
|
void Reset();
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Covert to Assimp mesh.
|
|
|
|
aiMesh *ConvertToAssimpMesh(Mesh *parent);
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Vertex data.
|
|
|
|
VertexData *vertexData;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Index data.
|
|
|
|
IndexData *indexData;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
2014-05-20 01:52:53 +00:00
|
|
|
typedef std::vector<SubMesh*> SubMeshList;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
|
|
|
/// Ogre Mesh
|
|
|
|
class Mesh
|
|
|
|
{
|
|
|
|
public:
|
2016-04-23 07:43:20 +00:00
|
|
|
/// Constructor.
|
2015-05-19 03:57:13 +00:00
|
|
|
Mesh();
|
2016-04-23 07:43:20 +00:00
|
|
|
|
|
|
|
/// Destructor.
|
2015-05-19 03:57:13 +00:00
|
|
|
~Mesh();
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Releases all memory that this data structure owns.
|
|
|
|
void Reset();
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns number of subMeshes.
|
|
|
|
size_t NumSubMeshes() const;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns submesh for @c index.
|
2016-04-23 07:43:20 +00:00
|
|
|
SubMesh *GetSubMesh( size_t index) const;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Convert mesh to Assimp scene.
|
|
|
|
void ConvertToAssimpScene(aiScene* dest);
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Mesh has skeletal animations.
|
|
|
|
bool hasSkeletalAnimations;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Skeleton reference.
|
|
|
|
std::string skeletonRef;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Skeleton.
|
|
|
|
Skeleton *skeleton;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Vertex data
|
|
|
|
VertexData *sharedVertexData;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Sub meshes.
|
|
|
|
SubMeshList subMeshes;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Animations
|
|
|
|
AnimationList animations;
|
2014-05-18 08:57:44 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Poses
|
|
|
|
PoseList poses;
|
2014-05-20 01:52:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Ogre XML Vertex Data
|
|
|
|
class VertexDataXml : public IVertexData
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
VertexDataXml();
|
|
|
|
|
|
|
|
bool HasPositions() const;
|
|
|
|
bool HasNormals() const;
|
|
|
|
bool HasTangents() const;
|
|
|
|
bool HasUvs() const;
|
|
|
|
size_t NumUvs() const;
|
|
|
|
|
|
|
|
std::vector<aiVector3D> positions;
|
|
|
|
std::vector<aiVector3D> normals;
|
|
|
|
std::vector<aiVector3D> tangents;
|
|
|
|
std::vector<std::vector<aiVector3D> > uvs;
|
2014-05-20 01:52:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Ogre XML Index Data
|
|
|
|
class IndexDataXml
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
IndexDataXml() : faceCount(0) {}
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Face count.
|
|
|
|
uint32_t faceCount;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
std::vector<aiFace> faces;
|
2014-05-20 01:52:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Ogre XML SubMesh
|
|
|
|
class SubMeshXml : public ISubMesh
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
SubMeshXml();
|
|
|
|
~SubMeshXml();
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Releases all memory that this data structure owns.
|
|
|
|
void Reset();
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
aiMesh *ConvertToAssimpMesh(MeshXml *parent);
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
IndexDataXml *indexData;
|
|
|
|
VertexDataXml *vertexData;
|
2014-05-20 01:52:53 +00:00
|
|
|
};
|
|
|
|
typedef std::vector<SubMeshXml*> SubMeshXmlList;
|
|
|
|
|
|
|
|
/// Ogre XML Mesh
|
|
|
|
class MeshXml
|
|
|
|
{
|
|
|
|
public:
|
2015-05-19 03:57:13 +00:00
|
|
|
MeshXml();
|
|
|
|
~MeshXml();
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Releases all memory that this data structure owns.
|
|
|
|
void Reset();
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns number of subMeshes.
|
|
|
|
size_t NumSubMeshes() const;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Returns submesh for @c index.
|
|
|
|
SubMeshXml *GetSubMesh(uint16_t index) const;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Convert mesh to Assimp scene.
|
|
|
|
void ConvertToAssimpScene(aiScene* dest);
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Skeleton reference.
|
|
|
|
std::string skeletonRef;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Skeleton.
|
|
|
|
Skeleton *skeleton;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Vertex data
|
|
|
|
VertexDataXml *sharedVertexData;
|
2014-05-20 01:52:53 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
/// Sub meshes.
|
|
|
|
SubMeshXmlList subMeshes;
|
2014-05-18 08:57:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // Ogre
|
|
|
|
} // Assimp
|
|
|
|
|
|
|
|
#endif // ASSIMP_BUILD_NO_OGRE_IMPORTER
|
|
|
|
#endif // AI_OGRESTRUCTS_H_INC
|