blender/source/gameengine/Converter/BL_ArmatureObject.h

156 lines
4.9 KiB
C
Raw Normal View History

/*
* ***** BEGIN GPL LICENSE BLOCK *****
2002-10-12 11:37:38 +00:00
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
2002-10-12 11:37:38 +00:00
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
2010-02-12 13:34:04 +00:00
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2002-10-12 11:37:38 +00:00
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*
* The Original Code is: all of this file.
*
* Contributor(s): none yet.
*
* ***** END GPL LICENSE BLOCK *****
2002-10-12 11:37:38 +00:00
*/
/** \file BL_ArmatureObject.h
* \ingroup bgeconv
*/
#ifndef __BL_ARMATUREOBJECT_H__
#define __BL_ARMATUREOBJECT_H__
2002-10-12 11:37:38 +00:00
#include "KX_GameObject.h"
#include "BL_ArmatureConstraint.h"
#include "BL_ArmatureChannel.h"
2002-10-12 11:37:38 +00:00
#include "SG_IObject.h"
#include <vector>
#include <algorithm>
2002-10-12 11:37:38 +00:00
2005-04-23 11:36:44 +00:00
struct bArmature;
struct Bone;
struct bConstraint;
2002-10-12 11:37:38 +00:00
class BL_ActionActuator;
class BL_ArmatureActuator;
2005-04-23 11:36:44 +00:00
class MT_Matrix4x4;
struct Object;
class KX_BlenderSceneConverter;
2002-10-12 11:37:38 +00:00
class BL_ArmatureObject : public KX_GameObject
{
Py_Header
2002-10-12 11:37:38 +00:00
public:
2002-10-12 11:37:38 +00:00
double GetLastFrame ();
short GetActivePriority();
virtual void ProcessReplica();
virtual void ReParentLogic();
virtual void Relink(CTR_Map<CTR_HashedPtr, void*> *obj_map);
virtual bool UnlinkObject(SCA_IObject* clientobj);
2002-10-12 11:37:38 +00:00
class BL_ActionActuator * GetActiveAction();
BL_ArmatureObject(
void* sgReplicationInfo,
SG_Callbacks callbacks,
Object *armature,
Scene *scene,
int vert_deform_type
);
virtual ~BL_ArmatureObject();
2002-10-12 11:37:38 +00:00
virtual CValue* GetReplica();
void GetMRDPose(struct bPose **pose);
void GetPose(struct bPose **pose);
2002-10-12 11:37:38 +00:00
void SetPose (struct bPose *pose);
struct bPose *GetOrigPose() {return m_pose;} // never edit this, only for accessing names
2002-10-12 11:37:38 +00:00
void ApplyPose();
void RestorePose();
2002-10-12 11:37:38 +00:00
bool SetActiveAction(class BL_ActionActuator *act, short priority, double curtime);
2005-04-23 11:36:44 +00:00
2012-08-04 19:34:38 +00:00
struct bArmature *GetArmature() { return m_armature; }
2005-04-23 11:36:44 +00:00
const struct bArmature * GetArmature() const { return m_armature; }
const struct Scene * GetScene() const { return m_scene; }
2005-04-23 11:36:44 +00:00
Object* GetArmatureObject() {return m_objArma;}
int GetVertDeformType() {return m_vert_deform_type;}
// for constraint python API
void LoadConstraints(KX_BlenderSceneConverter* converter);
size_t GetConstraintNumber() const { return m_constraintNumber; }
BL_ArmatureConstraint* GetConstraint(const char* posechannel, const char* constraint);
BL_ArmatureConstraint* GetConstraint(const char* posechannelconstraint);
BL_ArmatureConstraint* GetConstraint(int index);
// for pose channel python API
void LoadChannels();
size_t GetChannelNumber() const { return m_channelNumber; }
BL_ArmatureChannel* GetChannel(bPoseChannel* channel);
BL_ArmatureChannel* GetChannel(const char* channel);
BL_ArmatureChannel* GetChannel(int index);
2005-04-23 11:36:44 +00:00
/// Retrieve the pose matrix for the specified bone.
/// Returns true on success.
bool GetBoneMatrix(Bone* bone, MT_Matrix4x4& matrix);
2005-04-23 11:36:44 +00:00
/// Returns the bone length. The end of the bone is in the local y direction.
float GetBoneLength(Bone* bone) const;
2002-10-12 11:37:38 +00:00
virtual int GetGameObjectType() { return OBJ_ARMATURE; }
#ifdef WITH_PYTHON
// PYTHON
2012-09-16 04:58:18 +00:00
static PyObject *pyattr_get_constraints(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
static PyObject *pyattr_get_channels(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
KX_PYMETHOD_DOC_NOARGS(BL_ArmatureObject, update);
#endif /* WITH_PYTHON */
2002-10-12 11:37:38 +00:00
protected:
/* list element: BL_ArmatureConstraint. Use SG_DListHead to have automatic list replication */
SG_DListHead<BL_ArmatureConstraint> m_controlledConstraints;
/* list element: BL_ArmatureChannel. Use SG_DList to avoid list replication */
SG_DList m_poseChannels;
Object *m_objArma;
2002-10-12 11:37:38 +00:00
struct bArmature *m_armature;
struct bPose *m_pose;
struct bPose *m_armpose;
struct bPose *m_framePose;
struct Scene *m_scene; // need for BKE_pose_where_is
2002-10-12 11:37:38 +00:00
double m_lastframe;
double m_timestep; // delta since last pose evaluation.
2002-10-12 11:37:38 +00:00
class BL_ActionActuator *m_activeAct;
short m_activePriority;
int m_vert_deform_type;
size_t m_constraintNumber;
size_t m_channelNumber;
// store the original armature object matrix
float m_obmat[4][4];
double m_lastapplyframe;
2002-10-12 11:37:38 +00:00
};
/* Pose function specific to the game engine */
void game_blend_poses(struct bPose *dst, struct bPose *src, float srcweight/*, short mode*/); /* was blend_poses */
//void extract_pose_from_pose(struct bPose *pose, const struct bPose *src);
void game_copy_pose(struct bPose **dst, struct bPose *src, int copy_con);
void game_free_pose(struct bPose *pose);
#endif /* __BL_ARMATUREOBJECT_H__ */