2002-10-12 11:37:38 +00:00
|
|
|
//
|
|
|
|
// Replace the mesh for this actuator's parent
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
//
|
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,
|
|
|
|
// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
|
|
// todo: not all trackflags / upflags are implemented/tested !
|
|
|
|
// m_trackflag is used to determine the forward tracking direction
|
|
|
|
// m_upflag for the up direction
|
|
|
|
// normal situation is +y for forward, +z for up
|
|
|
|
|
|
|
|
#include "MT_Scalar.h"
|
|
|
|
#include "SCA_IActuator.h"
|
|
|
|
#include "KX_TrackToActuator.h"
|
|
|
|
#include "SCA_IScene.h"
|
|
|
|
#include "SCA_LogicManager.h"
|
|
|
|
#include <math.h>
|
|
|
|
#include <iostream>
|
|
|
|
#include "KX_GameObject.h"
|
|
|
|
|
2008-09-06 14:13:31 +00:00
|
|
|
#include "PyObjectPlus.h"
|
2008-09-06 02:46:11 +00:00
|
|
|
|
2002-11-25 15:29:57 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
/* Native functions */
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
KX_TrackToActuator::KX_TrackToActuator(SCA_IObject *gameobj,
|
|
|
|
SCA_IObject *ob,
|
|
|
|
int time,
|
|
|
|
bool allow3D,
|
|
|
|
int trackflag,
|
|
|
|
int upflag,
|
|
|
|
PyTypeObject* T)
|
|
|
|
:
|
|
|
|
SCA_IActuator(gameobj, T)
|
|
|
|
{
|
|
|
|
m_time = time;
|
|
|
|
m_allow3D = allow3D;
|
|
|
|
m_object = ob;
|
|
|
|
m_trackflag = trackflag;
|
|
|
|
m_upflag = upflag;
|
2007-03-23 02:20:12 +00:00
|
|
|
m_parentobj = 0;
|
|
|
|
|
2008-05-14 20:22:57 +00:00
|
|
|
if (m_object)
|
2008-04-26 20:41:25 +00:00
|
|
|
m_object->RegisterActuator(this);
|
2007-03-23 02:20:12 +00:00
|
|
|
|
2008-05-14 20:22:57 +00:00
|
|
|
if (gameobj->isA(&KX_GameObject::Type))
|
|
|
|
{
|
|
|
|
// if the object is vertex parented, don't check parent orientation as the link is broken
|
|
|
|
if (!((KX_GameObject*)gameobj)->IsVertexParent()){
|
|
|
|
m_parentobj = ((KX_GameObject*)gameobj)->GetParent(); // check if the object is parented
|
|
|
|
if (m_parentobj) {
|
|
|
|
// if so, store the initial local rotation
|
|
|
|
// this is needed to revert the effect of the parent inverse node (TBC)
|
|
|
|
m_parentlocalmat = m_parentobj->GetSGNode()->GetLocalOrientation();
|
2009-05-10 20:53:58 +00:00
|
|
|
// use registration mechanism rather than AddRef, it creates zombie objects
|
|
|
|
m_parentobj->RegisterActuator(this);
|
|
|
|
// GetParent did AddRef, undo here
|
|
|
|
m_parentobj->Release();
|
2008-05-14 20:22:57 +00:00
|
|
|
}
|
2007-03-23 02:20:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
} /* End of constructor */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* old function from Blender */
|
|
|
|
MT_Matrix3x3 EulToMat3(float *eul)
|
|
|
|
{
|
|
|
|
MT_Matrix3x3 mat;
|
|
|
|
float ci, cj, ch, si, sj, sh, cc, cs, sc, ss;
|
|
|
|
|
|
|
|
ci = cos(eul[0]);
|
|
|
|
cj = cos(eul[1]);
|
|
|
|
ch = cos(eul[2]);
|
|
|
|
si = sin(eul[0]);
|
|
|
|
sj = sin(eul[1]);
|
|
|
|
sh = sin(eul[2]);
|
|
|
|
cc = ci*ch;
|
|
|
|
cs = ci*sh;
|
|
|
|
sc = si*ch;
|
|
|
|
ss = si*sh;
|
|
|
|
|
|
|
|
mat[0][0] = cj*ch;
|
|
|
|
mat[1][0] = sj*sc-cs;
|
|
|
|
mat[2][0] = sj*cc+ss;
|
|
|
|
mat[0][1] = cj*sh;
|
|
|
|
mat[1][1] = sj*ss+cc;
|
|
|
|
mat[2][1] = sj*cs-sc;
|
|
|
|
mat[0][2] = -sj;
|
|
|
|
mat[1][2] = cj*si;
|
|
|
|
mat[2][2] = cj*ci;
|
|
|
|
|
|
|
|
return mat;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* old function from Blender */
|
2005-08-23 13:16:02 +00:00
|
|
|
void Mat3ToEulOld(MT_Matrix3x3 mat, float *eul)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
MT_Scalar cy;
|
|
|
|
|
|
|
|
cy = sqrt(mat[0][0]*mat[0][0] + mat[0][1]*mat[0][1]);
|
|
|
|
|
|
|
|
if (cy > 16.0*FLT_EPSILON) {
|
|
|
|
eul[0] = atan2(mat[1][2], mat[2][2]);
|
|
|
|
eul[1] = atan2(-mat[0][2], cy);
|
|
|
|
eul[2] = atan2(mat[0][1], mat[0][0]);
|
|
|
|
} else {
|
|
|
|
eul[0] = atan2(-mat[2][1], mat[1][1]);
|
|
|
|
eul[1] = atan2(-mat[0][2], cy);
|
|
|
|
eul[2] = 0.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* old function from Blender */
|
|
|
|
void compatible_eulFast(float *eul, float *oldrot)
|
|
|
|
{
|
|
|
|
float dx, dy, dz;
|
|
|
|
|
2008-07-25 10:52:10 +00:00
|
|
|
/* angular difference of 360 degrees */
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
dx= eul[0] - oldrot[0];
|
|
|
|
dy= eul[1] - oldrot[1];
|
|
|
|
dz= eul[2] - oldrot[2];
|
|
|
|
|
2008-07-25 10:52:10 +00:00
|
|
|
if( fabs(dx) > MT_PI) {
|
2002-10-12 11:37:38 +00:00
|
|
|
if(dx > 0.0) eul[0] -= MT_2_PI; else eul[0]+= MT_2_PI;
|
|
|
|
}
|
2008-07-25 10:52:10 +00:00
|
|
|
if( fabs(dy) > MT_PI) {
|
2002-10-12 11:37:38 +00:00
|
|
|
if(dy > 0.0) eul[1] -= MT_2_PI; else eul[1]+= MT_2_PI;
|
|
|
|
}
|
2008-07-25 10:52:10 +00:00
|
|
|
if( fabs(dz) > MT_PI ) {
|
2002-10-12 11:37:38 +00:00
|
|
|
if(dz > 0.0) eul[2] -= MT_2_PI; else eul[2]+= MT_2_PI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MT_Matrix3x3 matrix3x3_interpol(MT_Matrix3x3 oldmat, MT_Matrix3x3 mat, int m_time)
|
|
|
|
{
|
|
|
|
float eul[3], oldeul[3];
|
|
|
|
|
2005-08-23 13:16:02 +00:00
|
|
|
Mat3ToEulOld(oldmat, oldeul);
|
|
|
|
Mat3ToEulOld(mat, eul);
|
2002-10-12 11:37:38 +00:00
|
|
|
compatible_eulFast(eul, oldeul);
|
|
|
|
|
|
|
|
eul[0]= (m_time*oldeul[0] + eul[0])/(1.0+m_time);
|
|
|
|
eul[1]= (m_time*oldeul[1] + eul[1])/(1.0+m_time);
|
|
|
|
eul[2]= (m_time*oldeul[2] + eul[2])/(1.0+m_time);
|
|
|
|
|
|
|
|
return EulToMat3(eul);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
KX_TrackToActuator::~KX_TrackToActuator()
|
2008-04-26 20:41:25 +00:00
|
|
|
{
|
|
|
|
if (m_object)
|
|
|
|
m_object->UnregisterActuator(this);
|
2008-05-14 20:22:57 +00:00
|
|
|
if (m_parentobj)
|
2009-05-10 20:53:58 +00:00
|
|
|
m_parentobj->UnregisterActuator(this);
|
2002-10-12 11:37:38 +00:00
|
|
|
} /* end of destructor */
|
|
|
|
|
2008-04-26 20:41:25 +00:00
|
|
|
void KX_TrackToActuator::ProcessReplica()
|
|
|
|
{
|
|
|
|
// the replica is tracking the same object => register it
|
|
|
|
if (m_object)
|
|
|
|
m_object->RegisterActuator(this);
|
2008-07-30 16:15:15 +00:00
|
|
|
if (m_parentobj)
|
2009-05-10 20:53:58 +00:00
|
|
|
m_parentobj->RegisterActuator(this);
|
2008-04-26 20:41:25 +00:00
|
|
|
SCA_IActuator::ProcessReplica();
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
|
2008-04-26 20:41:25 +00:00
|
|
|
bool KX_TrackToActuator::UnlinkObject(SCA_IObject* clientobj)
|
|
|
|
{
|
|
|
|
if (clientobj == m_object)
|
|
|
|
{
|
|
|
|
// this object is being deleted, we cannot continue to track it.
|
|
|
|
m_object = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
2009-05-10 20:53:58 +00:00
|
|
|
if (clientobj == m_parentobj)
|
|
|
|
{
|
|
|
|
m_parentobj = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
2008-04-26 20:41:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-07-19 07:45:19 +00:00
|
|
|
void KX_TrackToActuator::Relink(GEN_Map<GEN_HashedPtr, void*> *obj_map)
|
|
|
|
{
|
|
|
|
void **h_obj = (*obj_map)[m_object];
|
|
|
|
if (h_obj) {
|
|
|
|
if (m_object)
|
|
|
|
m_object->UnregisterActuator(this);
|
|
|
|
m_object = (SCA_IObject*)(*h_obj);
|
|
|
|
m_object->RegisterActuator(this);
|
|
|
|
}
|
2008-07-30 16:15:15 +00:00
|
|
|
|
|
|
|
void **h_parobj = (*obj_map)[m_parentobj];
|
|
|
|
if (h_parobj) {
|
|
|
|
if (m_parentobj)
|
2009-05-10 20:53:58 +00:00
|
|
|
m_parentobj->UnregisterActuator(this);
|
2008-07-30 16:15:15 +00:00
|
|
|
m_parentobj= (KX_GameObject*)(*h_parobj);
|
2009-05-10 20:53:58 +00:00
|
|
|
m_parentobj->RegisterActuator(this);
|
2008-07-30 16:15:15 +00:00
|
|
|
}
|
2008-07-19 07:45:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-16 11:41:50 +00:00
|
|
|
bool KX_TrackToActuator::Update(double curtime, bool frame)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
bool bNegativeEvent = IsNegativeEvent();
|
|
|
|
RemoveAllEvents();
|
|
|
|
|
|
|
|
if (bNegativeEvent)
|
|
|
|
{
|
|
|
|
// do nothing on negative events
|
|
|
|
}
|
|
|
|
else if (m_object)
|
|
|
|
{
|
|
|
|
KX_GameObject* curobj = (KX_GameObject*) GetParent();
|
|
|
|
MT_Vector3 dir = ((KX_GameObject*)m_object)->NodeGetWorldPosition() - curobj->NodeGetWorldPosition();
|
2008-07-01 05:16:08 +00:00
|
|
|
if (dir.length2())
|
|
|
|
dir.normalize();
|
2002-10-12 11:37:38 +00:00
|
|
|
MT_Vector3 up(0,0,1);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef DSADSA
|
|
|
|
switch (m_upflag)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
{
|
2009-02-25 06:43:03 +00:00
|
|
|
up.setValue(1.0,0,0);
|
2002-10-12 11:37:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 1:
|
|
|
|
{
|
2009-02-25 06:43:03 +00:00
|
|
|
up.setValue(0,1.0,0);
|
2002-10-12 11:37:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
default:
|
|
|
|
{
|
2009-02-25 06:43:03 +00:00
|
|
|
up.setValue(0,0,1.0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (m_allow3D)
|
|
|
|
{
|
2008-07-01 05:16:08 +00:00
|
|
|
up = (up - up.dot(dir) * dir).safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-07-01 05:16:08 +00:00
|
|
|
dir = (dir - up.dot(dir)*up).safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MT_Vector3 left;
|
|
|
|
MT_Matrix3x3 mat;
|
|
|
|
|
|
|
|
switch (m_trackflag)
|
|
|
|
{
|
|
|
|
case 0: // TRACK X
|
|
|
|
{
|
|
|
|
// (1.0 , 0.0 , 0.0 ) x direction is forward, z (0.0 , 0.0 , 1.0 ) up
|
2008-07-01 05:16:08 +00:00
|
|
|
left = dir.safe_normalized();
|
|
|
|
dir = (left.cross(up)).safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
mat.setValue (
|
|
|
|
left[0], dir[0],up[0],
|
|
|
|
left[1], dir[1],up[1],
|
|
|
|
left[2], dir[2],up[2]
|
|
|
|
);
|
|
|
|
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
case 1: // TRACK Y
|
|
|
|
{
|
|
|
|
// (0.0 , 1.0 , 0.0 ) y direction is forward, z (0.0 , 0.0 , 1.0 ) up
|
2008-07-01 05:16:08 +00:00
|
|
|
left = (dir.cross(up)).safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
mat.setValue (
|
|
|
|
left[0], dir[0],up[0],
|
|
|
|
left[1], dir[1],up[1],
|
|
|
|
left[2], dir[2],up[2]
|
|
|
|
);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 2: // track Z
|
|
|
|
{
|
2008-07-01 05:16:08 +00:00
|
|
|
left = up.safe_normalized();
|
|
|
|
up = dir.safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
dir = left;
|
2008-07-01 05:16:08 +00:00
|
|
|
left = (dir.cross(up)).safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
mat.setValue (
|
|
|
|
left[0], dir[0],up[0],
|
|
|
|
left[1], dir[1],up[1],
|
|
|
|
left[2], dir[2],up[2]
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 3: // TRACK -X
|
|
|
|
{
|
|
|
|
// (1.0 , 0.0 , 0.0 ) x direction is forward, z (0.0 , 0.0 , 1.0 ) up
|
2008-07-01 05:16:08 +00:00
|
|
|
left = -dir.safe_normalized();
|
|
|
|
dir = -(left.cross(up)).safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
mat.setValue (
|
|
|
|
left[0], dir[0],up[0],
|
|
|
|
left[1], dir[1],up[1],
|
|
|
|
left[2], dir[2],up[2]
|
|
|
|
);
|
|
|
|
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
case 4: // TRACK -Y
|
|
|
|
{
|
|
|
|
// (0.0 , -1.0 , 0.0 ) -y direction is forward, z (0.0 , 0.0 , 1.0 ) up
|
2008-07-01 05:16:08 +00:00
|
|
|
left = (-dir.cross(up)).safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
mat.setValue (
|
|
|
|
left[0], -dir[0],up[0],
|
|
|
|
left[1], -dir[1],up[1],
|
|
|
|
left[2], -dir[2],up[2]
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 5: // track -Z
|
|
|
|
{
|
2008-07-01 05:16:08 +00:00
|
|
|
left = up.safe_normalized();
|
|
|
|
up = -dir.safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
dir = left;
|
2008-07-01 05:16:08 +00:00
|
|
|
left = (dir.cross(up)).safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
mat.setValue (
|
|
|
|
left[0], dir[0],up[0],
|
|
|
|
left[1], dir[1],up[1],
|
|
|
|
left[2], dir[2],up[2]
|
|
|
|
);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
// (1.0 , 0.0 , 0.0 ) -x direction is forward, z (0.0 , 0.0 , 1.0 ) up
|
2008-07-01 05:16:08 +00:00
|
|
|
left = -dir.safe_normalized();
|
|
|
|
dir = -(left.cross(up)).safe_normalized();
|
2002-10-12 11:37:38 +00:00
|
|
|
mat.setValue (
|
|
|
|
left[0], dir[0],up[0],
|
|
|
|
left[1], dir[1],up[1],
|
|
|
|
left[2], dir[2],up[2]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MT_Matrix3x3 oldmat;
|
|
|
|
oldmat= curobj->NodeGetWorldOrientation();
|
|
|
|
|
|
|
|
/* erwin should rewrite this! */
|
|
|
|
mat= matrix3x3_interpol(oldmat, mat, m_time);
|
|
|
|
|
2007-03-23 02:20:12 +00:00
|
|
|
|
|
|
|
if(m_parentobj){ // check if the model is parented and calculate the child transform
|
|
|
|
|
|
|
|
MT_Point3 localpos;
|
|
|
|
localpos = curobj->GetSGNode()->GetLocalPosition();
|
|
|
|
// Get the inverse of the parent matrix
|
|
|
|
MT_Matrix3x3 parentmatinv;
|
|
|
|
parentmatinv = m_parentobj->NodeGetWorldOrientation ().inverse ();
|
|
|
|
// transform the local coordinate system into the parents system
|
|
|
|
mat = parentmatinv * mat;
|
|
|
|
// append the initial parent local rotation matrix
|
|
|
|
mat = m_parentlocalmat * mat;
|
|
|
|
|
|
|
|
// set the models tranformation properties
|
|
|
|
curobj->NodeSetLocalOrientation(mat);
|
|
|
|
curobj->NodeSetLocalPosition(localpos);
|
2009-03-31 21:03:15 +00:00
|
|
|
//curobj->UpdateTransform();
|
2007-03-23 02:20:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
curobj->NodeSetLocalOrientation(mat);
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
/* Python functions */
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Integration hooks ------------------------------------------------------- */
|
|
|
|
PyTypeObject KX_TrackToActuator::Type = {
|
2009-04-29 16:54:45 +00:00
|
|
|
#if (PY_VERSION_HEX >= 0x02060000)
|
|
|
|
PyVarObject_HEAD_INIT(NULL, 0)
|
|
|
|
#else
|
|
|
|
/* python 2.5 and below */
|
|
|
|
PyObject_HEAD_INIT( NULL ) /* required py macro */
|
|
|
|
0, /* ob_size */
|
|
|
|
#endif
|
2002-10-12 11:37:38 +00:00
|
|
|
"KX_TrackToActuator",
|
2009-04-19 14:57:52 +00:00
|
|
|
sizeof(PyObjectPlus_Proxy),
|
2002-10-12 11:37:38 +00:00
|
|
|
0,
|
2009-04-19 14:57:52 +00:00
|
|
|
py_base_dealloc,
|
2002-10-12 11:37:38 +00:00
|
|
|
0,
|
|
|
|
0,
|
2009-04-03 14:51:06 +00:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
py_base_repr,
|
|
|
|
0,0,0,0,0,0,
|
|
|
|
py_base_getattro,
|
|
|
|
py_base_setattro,
|
|
|
|
0,0,0,0,0,0,0,0,0,
|
2009-04-03 04:12:20 +00:00
|
|
|
Methods
|
2002-10-12 11:37:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PyParentObject KX_TrackToActuator::Parents[] = {
|
|
|
|
&KX_TrackToActuator::Type,
|
|
|
|
&SCA_IActuator::Type,
|
|
|
|
&SCA_ILogicBrick::Type,
|
|
|
|
&CValue::Type,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PyMethodDef KX_TrackToActuator::Methods[] = {
|
2009-03-31 21:03:15 +00:00
|
|
|
// ---> deprecated
|
2008-10-02 00:22:28 +00:00
|
|
|
{"setTime", (PyCFunction) KX_TrackToActuator::sPySetTime, METH_VARARGS, (PY_METHODCHAR)SetTime_doc},
|
2009-04-19 17:29:07 +00:00
|
|
|
{"getTime", (PyCFunction) KX_TrackToActuator::sPyGetTime, METH_NOARGS, (PY_METHODCHAR)GetTime_doc},
|
2008-10-02 00:22:28 +00:00
|
|
|
{"setUse3D", (PyCFunction) KX_TrackToActuator::sPySetUse3D, METH_VARARGS, (PY_METHODCHAR)SetUse3D_doc},
|
2009-04-19 17:29:07 +00:00
|
|
|
{"getUse3D", (PyCFunction) KX_TrackToActuator::sPyGetUse3D, METH_NOARGS, (PY_METHODCHAR)GetUse3D_doc},
|
2009-02-19 10:34:51 +00:00
|
|
|
{"setObject", (PyCFunction) KX_TrackToActuator::sPySetObject, METH_O, (PY_METHODCHAR)SetObject_doc},
|
|
|
|
{"getObject", (PyCFunction) KX_TrackToActuator::sPyGetObject, METH_VARARGS, (PY_METHODCHAR)GetObject_doc},
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
{NULL,NULL} //Sentinel
|
|
|
|
};
|
|
|
|
|
2009-02-26 09:04:06 +00:00
|
|
|
PyAttributeDef KX_TrackToActuator::Attributes[] = {
|
2009-03-31 21:03:15 +00:00
|
|
|
KX_PYATTRIBUTE_INT_RW("time",0,1000,true,KX_TrackToActuator,m_time),
|
2009-04-07 11:45:48 +00:00
|
|
|
KX_PYATTRIBUTE_BOOL_RW("use3D",KX_TrackToActuator,m_allow3D),
|
2009-03-31 21:03:15 +00:00
|
|
|
KX_PYATTRIBUTE_RW_FUNCTION("object", KX_TrackToActuator, pyattr_get_object, pyattr_set_object),
|
|
|
|
|
2009-02-26 09:04:06 +00:00
|
|
|
{ NULL } //Sentinel
|
|
|
|
};
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2009-03-31 21:03:15 +00:00
|
|
|
PyObject* KX_TrackToActuator::pyattr_get_object(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2009-03-31 21:03:15 +00:00
|
|
|
KX_TrackToActuator* actuator = static_cast<KX_TrackToActuator*>(self);
|
|
|
|
if (!actuator->m_object)
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
else
|
2009-04-19 12:46:39 +00:00
|
|
|
return actuator->m_object->GetProxy();
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2009-03-31 21:03:15 +00:00
|
|
|
int KX_TrackToActuator::pyattr_set_object(void *self, const struct KX_PYATTRIBUTE_DEF *attrdef, PyObject *value)
|
2009-02-21 12:43:24 +00:00
|
|
|
{
|
2009-03-31 21:03:15 +00:00
|
|
|
KX_TrackToActuator* actuator = static_cast<KX_TrackToActuator*>(self);
|
|
|
|
KX_GameObject *gameobj;
|
2009-02-19 10:34:51 +00:00
|
|
|
|
2009-04-20 09:13:59 +00:00
|
|
|
if (!ConvertPythonToGameObject(value, &gameobj, true, "actuator.object = value: KX_TrackToActuator"))
|
2009-03-31 21:03:15 +00:00
|
|
|
return 1; // ConvertPythonToGameObject sets the error
|
2009-02-19 10:34:51 +00:00
|
|
|
|
2009-03-31 21:03:15 +00:00
|
|
|
if (actuator->m_object != NULL)
|
|
|
|
actuator->m_object->UnregisterActuator(actuator);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2009-03-31 21:03:15 +00:00
|
|
|
actuator->m_object = (SCA_IObject*) gameobj;
|
2009-02-19 10:34:51 +00:00
|
|
|
|
2009-03-31 21:03:15 +00:00
|
|
|
if (actuator->m_object)
|
|
|
|
actuator->m_object->RegisterActuator(actuator);
|
2009-02-19 10:34:51 +00:00
|
|
|
|
2009-03-31 21:03:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-03 14:51:06 +00:00
|
|
|
PyObject* KX_TrackToActuator::py_getattro(PyObject *attr)
|
2009-03-31 21:03:15 +00:00
|
|
|
{
|
2009-04-03 14:51:06 +00:00
|
|
|
py_getattro_up(SCA_IActuator);
|
2009-03-31 21:03:15 +00:00
|
|
|
}
|
|
|
|
|
2009-04-20 23:17:52 +00:00
|
|
|
PyObject* KX_TrackToActuator::py_getattro_dict() {
|
|
|
|
py_getattro_dict_up(SCA_IActuator);
|
|
|
|
}
|
|
|
|
|
2009-04-03 14:51:06 +00:00
|
|
|
int KX_TrackToActuator::py_setattro(PyObject *attr, PyObject* value)
|
2009-03-31 21:03:15 +00:00
|
|
|
{
|
2009-04-07 11:06:35 +00:00
|
|
|
py_setattro_up(SCA_IActuator);
|
2009-02-19 10:34:51 +00:00
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
/* 1. setObject */
|
2008-09-20 11:08:35 +00:00
|
|
|
const char KX_TrackToActuator::SetObject_doc[] =
|
2002-10-12 11:37:38 +00:00
|
|
|
"setObject(object)\n"
|
2008-08-14 08:58:25 +00:00
|
|
|
"\t- object: KX_GameObject, string or None\n"
|
2002-10-12 11:37:38 +00:00
|
|
|
"\tSet the object to track with the parent of this actuator.\n";
|
2009-04-19 17:29:07 +00:00
|
|
|
PyObject* KX_TrackToActuator::PySetObject(PyObject* value)
|
2008-08-14 08:58:25 +00:00
|
|
|
{
|
|
|
|
KX_GameObject *gameobj;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2009-02-19 10:34:51 +00:00
|
|
|
ShowDeprecationWarning("setObject()", "the object property");
|
|
|
|
|
2009-04-20 09:13:59 +00:00
|
|
|
if (!ConvertPythonToGameObject(value, &gameobj, true, "actuator.setObject(value): KX_TrackToActuator"))
|
2008-08-14 08:58:25 +00:00
|
|
|
return NULL; // ConvertPythonToGameObject sets the error
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-08-14 08:58:25 +00:00
|
|
|
if (m_object != NULL)
|
|
|
|
m_object->UnregisterActuator(this);
|
|
|
|
|
|
|
|
m_object = (SCA_IObject*)gameobj;
|
|
|
|
if (m_object)
|
|
|
|
m_object->RegisterActuator(this);
|
|
|
|
|
|
|
|
Py_RETURN_NONE;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 2. getObject */
|
2008-09-20 11:08:35 +00:00
|
|
|
const char KX_TrackToActuator::GetObject_doc[] =
|
2008-08-14 08:58:25 +00:00
|
|
|
"getObject(name_only = 1)\n"
|
|
|
|
"name_only - optional arg, when true will return the KX_GameObject rather then its name\n"
|
|
|
|
"\tReturns the object to track with the parent of this actuator\n";
|
2009-04-19 17:29:07 +00:00
|
|
|
PyObject* KX_TrackToActuator::PyGetObject(PyObject* args)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2008-08-14 08:58:25 +00:00
|
|
|
int ret_name_only = 1;
|
2009-02-19 10:34:51 +00:00
|
|
|
|
|
|
|
ShowDeprecationWarning("getObject()", "the object property");
|
|
|
|
|
2009-04-10 16:45:19 +00:00
|
|
|
if (!PyArg_ParseTuple(args, "|i:getObject", &ret_name_only))
|
2008-08-14 08:58:25 +00:00
|
|
|
return NULL;
|
|
|
|
|
2004-09-19 01:33:08 +00:00
|
|
|
if (!m_object)
|
2008-08-14 08:58:25 +00:00
|
|
|
Py_RETURN_NONE;
|
|
|
|
|
|
|
|
if (ret_name_only)
|
|
|
|
return PyString_FromString(m_object->GetName());
|
|
|
|
else
|
2009-04-19 12:46:39 +00:00
|
|
|
return m_object->GetProxy();
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 3. setTime */
|
2008-09-20 11:08:35 +00:00
|
|
|
const char KX_TrackToActuator::SetTime_doc[] =
|
2002-10-12 11:37:38 +00:00
|
|
|
"setTime(time)\n"
|
|
|
|
"\t- time: integer\n"
|
|
|
|
"\tSet the time in frames with which to delay the tracking motion.\n";
|
2009-04-19 17:29:07 +00:00
|
|
|
PyObject* KX_TrackToActuator::PySetTime(PyObject* args)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2009-03-31 21:03:15 +00:00
|
|
|
ShowDeprecationWarning("setTime()", "the timer property");
|
2002-10-12 11:37:38 +00:00
|
|
|
int timeArg;
|
|
|
|
|
2009-04-10 16:45:19 +00:00
|
|
|
if (!PyArg_ParseTuple(args, "i:setTime", &timeArg))
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_time= timeArg;
|
|
|
|
|
2009-02-21 12:43:24 +00:00
|
|
|
Py_RETURN_NONE;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 4.getTime */
|
2008-09-20 11:08:35 +00:00
|
|
|
const char KX_TrackToActuator::GetTime_doc[] =
|
2002-10-12 11:37:38 +00:00
|
|
|
"getTime()\n"
|
|
|
|
"\t- time: integer\n"
|
|
|
|
"\tReturn the time in frames with which the tracking motion is delayed.\n";
|
2009-04-19 17:29:07 +00:00
|
|
|
PyObject* KX_TrackToActuator::PyGetTime()
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2009-03-31 21:03:15 +00:00
|
|
|
ShowDeprecationWarning("getTime()", "the timer property");
|
2002-10-12 11:37:38 +00:00
|
|
|
return PyInt_FromLong(m_time);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 5. getUse3D */
|
2008-09-20 11:08:35 +00:00
|
|
|
const char KX_TrackToActuator::GetUse3D_doc[] =
|
2002-10-12 11:37:38 +00:00
|
|
|
"getUse3D()\n"
|
|
|
|
"\tReturns 1 if the motion is allowed to extend in the z-direction.\n";
|
2009-04-19 17:29:07 +00:00
|
|
|
PyObject* KX_TrackToActuator::PyGetUse3D()
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2009-03-31 21:03:15 +00:00
|
|
|
ShowDeprecationWarning("setTime()", "the use3D property");
|
2002-10-12 11:37:38 +00:00
|
|
|
return PyInt_FromLong(!(m_allow3D == 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 6. setUse3D */
|
2008-09-20 11:08:35 +00:00
|
|
|
const char KX_TrackToActuator::SetUse3D_doc[] =
|
2002-10-12 11:37:38 +00:00
|
|
|
"setUse3D(value)\n"
|
|
|
|
"\t- value: 0 or 1\n"
|
|
|
|
"\tSet to 1 to allow the tracking motion to extend in the z-direction,\n"
|
|
|
|
"\tset to 0 to lock the tracking motion to the x-y plane.\n";
|
2009-04-19 17:29:07 +00:00
|
|
|
PyObject* KX_TrackToActuator::PySetUse3D(PyObject* args)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2009-03-31 21:03:15 +00:00
|
|
|
ShowDeprecationWarning("setTime()", "the use3D property");
|
2002-10-12 11:37:38 +00:00
|
|
|
int boolArg;
|
|
|
|
|
2009-04-10 16:45:19 +00:00
|
|
|
if (!PyArg_ParseTuple(args, "i:setUse3D", &boolArg)) {
|
2002-10-12 11:37:38 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_allow3D = !(boolArg == 0);
|
|
|
|
|
2009-02-21 12:43:24 +00:00
|
|
|
Py_RETURN_NONE;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* eof */
|