2011-02-22 10:33:14 +00:00
|
|
|
/*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** 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
|
2008-04-16 22:40:48 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/** \file BL_ArmatureObject.h
|
|
|
|
* \ingroup bgeconv
|
|
|
|
*/
|
|
|
|
|
2012-02-23 10:41:31 +00:00
|
|
|
#ifndef __BL_ARMATUREOBJECT_H__
|
|
|
|
#define __BL_ARMATUREOBJECT_H__
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "KX_GameObject.h"
|
2009-09-24 21:22:24 +00:00
|
|
|
#include "BL_ArmatureConstraint.h"
|
|
|
|
#include "BL_ArmatureChannel.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "SG_IObject.h"
|
2009-09-24 21:22:24 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <algorithm>
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2005-04-23 11:36:44 +00:00
|
|
|
struct bArmature;
|
|
|
|
struct Bone;
|
2009-09-24 21:22:24 +00:00
|
|
|
struct bConstraint;
|
2002-10-12 11:37:38 +00:00
|
|
|
class BL_ActionActuator;
|
2009-09-24 21:22:24 +00:00
|
|
|
class BL_ArmatureActuator;
|
2005-04-23 11:36:44 +00:00
|
|
|
class MT_Matrix4x4;
|
2006-01-06 03:46:54 +00:00
|
|
|
struct Object;
|
2009-09-24 21:22:24 +00:00
|
|
|
class KX_BlenderSceneConverter;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
class BL_ArmatureObject : public KX_GameObject
|
|
|
|
{
|
2011-11-06 01:39:36 +00:00
|
|
|
Py_Header
|
2002-10-12 11:37:38 +00:00
|
|
|
public:
|
2009-09-24 21:22:24 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
double GetLastFrame ();
|
|
|
|
short GetActivePriority();
|
2009-06-08 20:08:19 +00:00
|
|
|
virtual void ProcessReplica();
|
2009-09-24 21:22:24 +00:00
|
|
|
virtual void ReParentLogic();
|
2011-05-06 20:18:42 +00:00
|
|
|
virtual void Relink(CTR_Map<CTR_HashedPtr, void*> *obj_map);
|
2009-09-24 21:22:24 +00:00
|
|
|
virtual bool UnlinkObject(SCA_IObject* clientobj);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
class BL_ActionActuator * GetActiveAction();
|
2006-01-06 03:46:54 +00:00
|
|
|
|
|
|
|
BL_ArmatureObject(
|
|
|
|
void* sgReplicationInfo,
|
|
|
|
SG_Callbacks callbacks,
|
2009-06-16 20:38:18 +00:00
|
|
|
Object *armature,
|
2011-07-26 06:10:05 +00:00
|
|
|
Scene *scene,
|
|
|
|
int vert_deform_type
|
2006-01-06 03:46:54 +00:00
|
|
|
);
|
|
|
|
virtual ~BL_ArmatureObject();
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2006-01-06 03:46:54 +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);
|
2009-06-17 09:42:04 +00:00
|
|
|
struct bPose *GetOrigPose() {return m_pose;} // never edit this, only for accessing names
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
void ApplyPose();
|
2008-09-17 01:29:54 +00:00
|
|
|
void RestorePose();
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
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; }
|
2009-06-16 20:38:18 +00:00
|
|
|
const struct Scene * GetScene() const { return m_scene; }
|
2005-04-23 11:36:44 +00:00
|
|
|
|
2006-01-06 03:46:54 +00:00
|
|
|
Object* GetArmatureObject() {return m_objArma;}
|
|
|
|
|
2011-07-26 06:10:05 +00:00
|
|
|
int GetVertDeformType() {return m_vert_deform_type;}
|
|
|
|
|
2009-09-24 21:22:24 +00:00
|
|
|
// 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();
|
2010-08-25 09:25:11 +00:00
|
|
|
size_t GetChannelNumber() const { return m_channelNumber; }
|
2009-09-24 21:22:24 +00:00
|
|
|
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.
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
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
|
|
|
|
2006-05-11 17:58:23 +00:00
|
|
|
virtual int GetGameObjectType() { return OBJ_ARMATURE; }
|
2009-09-24 21:22:24 +00:00
|
|
|
|
2010-10-31 04:11:39 +00:00
|
|
|
#ifdef WITH_PYTHON
|
2009-09-29 21:42:40 +00:00
|
|
|
|
2009-09-24 21:22:24 +00:00
|
|
|
// 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);
|
2009-09-24 21:22:24 +00:00
|
|
|
KX_PYMETHOD_DOC_NOARGS(BL_ArmatureObject, update);
|
|
|
|
|
2012-10-09 13:36:42 +00:00
|
|
|
#endif /* WITH_PYTHON */
|
2009-09-29 21:42:40 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
protected:
|
2009-09-24 21:22:24 +00:00
|
|
|
/* 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;
|
2006-01-06 03:46:54 +00:00
|
|
|
Object *m_objArma;
|
2002-10-12 11:37:38 +00:00
|
|
|
struct bArmature *m_armature;
|
|
|
|
struct bPose *m_pose;
|
2008-09-17 01:29:54 +00:00
|
|
|
struct bPose *m_armpose;
|
2008-08-31 21:53:39 +00:00
|
|
|
struct bPose *m_framePose;
|
2012-05-05 16:03:57 +00:00
|
|
|
struct Scene *m_scene; // need for BKE_pose_where_is
|
2002-10-12 11:37:38 +00:00
|
|
|
double m_lastframe;
|
2009-09-24 21:22:24 +00:00
|
|
|
double m_timestep; // delta since last pose evaluation.
|
2002-10-12 11:37:38 +00:00
|
|
|
class BL_ActionActuator *m_activeAct;
|
|
|
|
short m_activePriority;
|
2011-07-26 06:10:05 +00:00
|
|
|
int m_vert_deform_type;
|
2009-09-24 21:22:24 +00:00
|
|
|
size_t m_constraintNumber;
|
|
|
|
size_t m_channelNumber;
|
|
|
|
// store the original armature object matrix
|
|
|
|
float m_obmat[4][4];
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
|
|
|
double m_lastapplyframe;
|
2002-10-12 11:37:38 +00:00
|
|
|
};
|
|
|
|
|
2009-09-24 21:22:24 +00:00
|
|
|
/* Pose function specific to the game engine */
|
2013-08-14 23:31:49 +00:00
|
|
|
void game_blend_poses(struct bPose *dst, struct bPose *src, float srcweight, short mode); /* was blend_poses */
|
2009-09-24 21:22:24 +00:00
|
|
|
//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);
|
|
|
|
|
2012-10-09 13:36:42 +00:00
|
|
|
#endif /* __BL_ARMATUREOBJECT_H__ */
|