2011-02-23 10:52:22 +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
|
|
|
*/
|
2009-09-29 21:42:40 +00:00
|
|
|
|
2011-02-25 13:35:59 +00:00
|
|
|
/** \file gameengine/Ketsji/KX_PhysicsObjectWrapper.cpp
|
|
|
|
* \ingroup ketsji
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2008-09-06 14:13:31 +00:00
|
|
|
#include "PyObjectPlus.h"
|
2008-09-06 02:46:11 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "KX_PhysicsObjectWrapper.h"
|
|
|
|
#include "PHY_IPhysicsEnvironment.h"
|
|
|
|
#include "PHY_IPhysicsController.h"
|
|
|
|
|
|
|
|
KX_PhysicsObjectWrapper::KX_PhysicsObjectWrapper(
|
|
|
|
PHY_IPhysicsController* ctrl,
|
2009-06-28 11:22:26 +00:00
|
|
|
PHY_IPhysicsEnvironment* physenv) :
|
|
|
|
PyObjectPlus(),
|
2004-03-22 22:02:18 +00:00
|
|
|
m_ctrl(ctrl),
|
|
|
|
m_physenv(physenv)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
KX_PhysicsObjectWrapper::~KX_PhysicsObjectWrapper()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-10-31 04:11:39 +00:00
|
|
|
#ifdef WITH_PYTHON
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2009-04-20 15:06:46 +00:00
|
|
|
PyObject* KX_PhysicsObjectWrapper::PySetPosition(PyObject* args)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
float x,y,z;
|
2009-04-20 15:06:46 +00:00
|
|
|
if (PyArg_ParseTuple(args,"fff:setPosition",&x,&y,&z))
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
m_ctrl->setPosition(x,y,z);
|
|
|
|
}
|
2008-07-01 16:43:46 +00:00
|
|
|
else {
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-08-14 03:23:36 +00:00
|
|
|
Py_RETURN_NONE;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 15:06:46 +00:00
|
|
|
PyObject* KX_PhysicsObjectWrapper::PySetLinearVelocity(PyObject* args)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
float x,y,z;
|
|
|
|
int local;
|
2009-04-20 15:06:46 +00:00
|
|
|
if (PyArg_ParseTuple(args,"fffi:setLinearVelocity",&x,&y,&z,&local))
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
m_ctrl->SetLinearVelocity(x,y,z,local != 0);
|
|
|
|
}
|
2008-07-01 16:43:46 +00:00
|
|
|
else {
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-08-14 03:23:36 +00:00
|
|
|
Py_RETURN_NONE;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2009-04-20 15:06:46 +00:00
|
|
|
PyObject* KX_PhysicsObjectWrapper::PySetAngularVelocity(PyObject* args)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
float x,y,z;
|
|
|
|
int local;
|
2009-04-20 15:06:46 +00:00
|
|
|
if (PyArg_ParseTuple(args,"fffi:setAngularVelocity",&x,&y,&z,&local))
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
m_ctrl->SetAngularVelocity(x,y,z,local != 0);
|
|
|
|
}
|
2008-07-01 16:43:46 +00:00
|
|
|
else {
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-08-14 03:23:36 +00:00
|
|
|
Py_RETURN_NONE;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2009-04-20 15:06:46 +00:00
|
|
|
PyObject* KX_PhysicsObjectWrapper::PySetActive(PyObject* args)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
int active;
|
2009-04-20 15:06:46 +00:00
|
|
|
if (PyArg_ParseTuple(args,"i:setActive",&active))
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
m_ctrl->SetActive(active!=0);
|
|
|
|
}
|
2008-07-01 16:43:46 +00:00
|
|
|
else {
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-08-14 03:23:36 +00:00
|
|
|
Py_RETURN_NONE;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-20 15:06:46 +00:00
|
|
|
PyAttributeDef KX_PhysicsObjectWrapper::Attributes[] = {
|
|
|
|
{ NULL } //Sentinel
|
|
|
|
};
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
//python specific stuff
|
|
|
|
PyTypeObject KX_PhysicsObjectWrapper::Type = {
|
2009-06-08 20:08:19 +00:00
|
|
|
PyVarObject_HEAD_INIT(NULL, 0)
|
2009-08-10 00:07:34 +00:00
|
|
|
"KX_PhysicsObjectWrapper",
|
|
|
|
sizeof(PyObjectPlus_Proxy),
|
|
|
|
0,
|
|
|
|
py_base_dealloc,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
py_base_repr,
|
|
|
|
0,0,0,0,0,0,0,0,0,
|
|
|
|
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
|
|
|
|
0,0,0,0,0,0,0,
|
|
|
|
Methods,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
&PyObjectPlus::Type,
|
|
|
|
0,0,0,0,0,0,
|
|
|
|
py_base_new
|
2002-10-12 11:37:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
PyMethodDef KX_PhysicsObjectWrapper::Methods[] = {
|
|
|
|
{"setPosition",(PyCFunction) KX_PhysicsObjectWrapper::sPySetPosition, METH_VARARGS},
|
|
|
|
{"setLinearVelocity",(PyCFunction) KX_PhysicsObjectWrapper::sPySetLinearVelocity, METH_VARARGS},
|
|
|
|
{"setAngularVelocity",(PyCFunction) KX_PhysicsObjectWrapper::sPySetAngularVelocity, METH_VARARGS},
|
|
|
|
{"setActive",(PyCFunction) KX_PhysicsObjectWrapper::sPySetActive, METH_VARARGS},
|
|
|
|
{NULL,NULL} //Sentinel
|
|
|
|
};
|
2009-09-29 21:42:40 +00:00
|
|
|
|
|
|
|
#endif
|