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_ActionActuator.h
|
|
|
|
* \ingroup bgeconv
|
|
|
|
*/
|
|
|
|
|
2012-02-23 10:41:31 +00:00
|
|
|
#ifndef __BL_ACTIONACTUATOR_H__
|
|
|
|
#define __BL_ACTIONACTUATOR_H__
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2011-05-06 20:18:42 +00:00
|
|
|
#include "CTR_HashedPtr.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "SCA_IActuator.h"
|
2009-01-22 17:40:47 +00:00
|
|
|
#include "DNA_actuator_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "MT_Point3.h"
|
|
|
|
|
|
|
|
class BL_ActionActuator : public SCA_IActuator
|
|
|
|
{
|
|
|
|
public:
|
2011-11-06 01:39:36 +00:00
|
|
|
Py_Header
|
2002-10-12 11:37:38 +00:00
|
|
|
BL_ActionActuator(SCA_IObject* gameobj,
|
|
|
|
const STR_String& propname,
|
2008-06-23 15:32:44 +00:00
|
|
|
const STR_String& framepropname,
|
2002-10-12 11:37:38 +00:00
|
|
|
float starttime,
|
|
|
|
float endtime,
|
|
|
|
struct bAction *action,
|
|
|
|
short playtype,
|
2013-08-14 23:32:00 +00:00
|
|
|
short blend_mode,
|
2002-10-12 11:37:38 +00:00
|
|
|
short blendin,
|
|
|
|
short priority,
|
2011-06-11 01:03:03 +00:00
|
|
|
short layer,
|
2011-07-03 01:59:17 +00:00
|
|
|
float layer_weight,
|
2011-06-16 01:18:52 +00:00
|
|
|
short ipo_flags,
|
2008-07-10 14:23:19 +00:00
|
|
|
short end_reset,
|
2011-07-05 05:22:02 +00:00
|
|
|
float stride);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
virtual ~BL_ActionActuator();
|
2004-10-16 11:41:50 +00:00
|
|
|
virtual bool Update(double curtime, bool frame);
|
2005-03-25 10:33:39 +00:00
|
|
|
virtual CValue* GetReplica();
|
|
|
|
virtual void ProcessReplica();
|
2004-11-06 04:53:41 +00:00
|
|
|
|
2013-04-18 01:52:38 +00:00
|
|
|
void SetBlendTime(float newtime);
|
|
|
|
void SetLocalTime(float curtime);
|
|
|
|
void ResetStartTime(float curtime);
|
2009-04-04 02:57:35 +00:00
|
|
|
|
|
|
|
bAction* GetAction() { return m_action; }
|
|
|
|
void SetAction(bAction* act) { m_action= act; }
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2010-10-31 04:11:39 +00:00
|
|
|
#ifdef WITH_PYTHON
|
2009-09-29 21:42:40 +00:00
|
|
|
|
2011-11-06 01:39:36 +00:00
|
|
|
KX_PYMETHOD_O(BL_ActionActuator,GetChannel)
|
|
|
|
KX_PYMETHOD_DOC(BL_ActionActuator,setChannel)
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2009-04-04 02:57:35 +00:00
|
|
|
static PyObject* pyattr_get_action(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
|
|
|
|
static int pyattr_set_action(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);
|
2009-06-17 09:42:04 +00:00
|
|
|
static PyObject* pyattr_get_channel_names(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
|
2011-07-05 05:22:02 +00:00
|
|
|
static PyObject* pyattr_get_use_continue(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
|
|
|
|
static int pyattr_set_use_continue(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);
|
2011-08-11 03:27:47 +00:00
|
|
|
static PyObject* pyattr_get_frame(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
|
|
|
|
static int pyattr_set_frame(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);
|
2009-01-21 13:54:53 +00:00
|
|
|
|
|
|
|
static int CheckBlendTime(void *self, const PyAttributeDef*)
|
|
|
|
{
|
|
|
|
BL_ActionActuator* act = reinterpret_cast<BL_ActionActuator*>(self);
|
|
|
|
|
2009-01-22 17:40:47 +00:00
|
|
|
if (act->m_blendframe > act->m_blendin)
|
2009-01-21 13:54:53 +00:00
|
|
|
act->m_blendframe = act->m_blendin;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CheckType(void *self, const PyAttributeDef*)
|
|
|
|
{
|
|
|
|
BL_ActionActuator* act = reinterpret_cast<BL_ActionActuator*>(self);
|
|
|
|
|
|
|
|
switch (act->m_playtype) {
|
2009-01-22 17:40:47 +00:00
|
|
|
case ACT_ACTION_PLAY:
|
2011-02-16 19:53:39 +00:00
|
|
|
case ACT_ACTION_PINGPONG:
|
2009-01-22 17:40:47 +00:00
|
|
|
case ACT_ACTION_FLIPPER:
|
|
|
|
case ACT_ACTION_LOOP_STOP:
|
|
|
|
case ACT_ACTION_LOOP_END:
|
|
|
|
case ACT_ACTION_FROM_PROP:
|
2009-01-21 13:54:53 +00:00
|
|
|
return 0;
|
|
|
|
default:
|
2009-04-19 21:01:12 +00:00
|
|
|
PyErr_SetString(PyExc_ValueError, "Action Actuator, invalid play type supplied");
|
2009-01-21 13:54:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2012-10-09 13:36:42 +00:00
|
|
|
#endif /* WITH_PYTHON */
|
2009-04-04 02:57:35 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
protected:
|
|
|
|
MT_Point3 m_lastpos;
|
2004-12-05 02:50:57 +00:00
|
|
|
float m_blendframe;
|
2002-10-12 11:37:38 +00:00
|
|
|
int m_flag;
|
2004-11-06 04:53:41 +00:00
|
|
|
/** The frame this action starts */
|
|
|
|
float m_startframe;
|
|
|
|
/** The frame this action ends */
|
|
|
|
float m_endframe;
|
|
|
|
/** The time this action started */
|
2002-10-12 11:37:38 +00:00
|
|
|
float m_starttime;
|
2004-11-06 04:53:41 +00:00
|
|
|
/** The current time of the action */
|
2002-10-12 11:37:38 +00:00
|
|
|
float m_localtime;
|
2004-11-06 04:53:41 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
float m_lastUpdate;
|
|
|
|
float m_blendin;
|
2004-10-16 11:41:50 +00:00
|
|
|
float m_blendstart;
|
2002-10-12 11:37:38 +00:00
|
|
|
float m_stridelength;
|
2011-07-03 01:59:17 +00:00
|
|
|
float m_layer_weight;
|
2004-12-05 02:50:57 +00:00
|
|
|
short m_playtype;
|
2013-08-14 23:32:00 +00:00
|
|
|
short m_blendmode;
|
2004-12-05 02:50:57 +00:00
|
|
|
short m_priority;
|
2011-06-11 01:03:03 +00:00
|
|
|
short m_layer;
|
2011-06-16 01:18:52 +00:00
|
|
|
short m_ipo_flags;
|
2002-10-12 11:37:38 +00:00
|
|
|
struct bPose* m_pose;
|
|
|
|
struct bPose* m_blendpose;
|
|
|
|
struct bPose* m_userpose;
|
|
|
|
struct bAction *m_action;
|
2004-12-05 02:50:57 +00:00
|
|
|
STR_String m_propname;
|
2008-06-23 15:32:44 +00:00
|
|
|
STR_String m_framepropname;
|
2002-10-12 11:37:38 +00:00
|
|
|
};
|
|
|
|
|
2011-08-06 00:35:16 +00:00
|
|
|
// Not all of these values are used in BL_ActionActuator anymore,
|
2011-07-07 03:53:24 +00:00
|
|
|
// but BL_ShapeActionActuator still uses them, so we keep them around
|
|
|
|
// for now.
|
2002-10-12 11:37:38 +00:00
|
|
|
enum {
|
2011-07-05 05:22:02 +00:00
|
|
|
ACT_FLAG_REVERSE = 1<<0,
|
|
|
|
ACT_FLAG_LOCKINPUT = 1<<1,
|
|
|
|
ACT_FLAG_KEYUP = 1<<2,
|
|
|
|
ACT_FLAG_ACTIVE = 1<<3,
|
|
|
|
ACT_FLAG_CONTINUE = 1<<4,
|
2011-08-29 06:19:55 +00:00
|
|
|
ACT_FLAG_PLAY_END = 1<<5,
|
2011-09-01 21:47:46 +00:00
|
|
|
ACT_FLAG_ATTEMPT_PLAY = 1<<6,
|
2002-10-12 11:37:38 +00:00
|
|
|
};
|
2002-10-30 02:07:20 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
#endif
|
|
|
|
|