2013-07-02 09:47:22 +00:00
|
|
|
/*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2012-11-04 20:56:02 +00:00
|
|
|
/** \file gameengine/Ketsji/KX_CharacterWrapper.cpp
|
|
|
|
* \ingroup ketsji
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "KX_CharacterWrapper.h"
|
|
|
|
#include "PHY_ICharacter.h"
|
2013-01-30 05:55:17 +00:00
|
|
|
#include "KX_PyMath.h"
|
2012-11-04 20:56:02 +00:00
|
|
|
|
|
|
|
KX_CharacterWrapper::KX_CharacterWrapper(PHY_ICharacter* character) :
|
|
|
|
PyObjectPlus(),
|
|
|
|
m_character(character)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
KX_CharacterWrapper::~KX_CharacterWrapper()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef WITH_PYTHON
|
|
|
|
|
|
|
|
PyTypeObject KX_CharacterWrapper::Type = {
|
|
|
|
PyVarObject_HEAD_INIT(NULL, 0)
|
|
|
|
"KX_CharacterWrapper",
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
PyAttributeDef KX_CharacterWrapper::Attributes[] = {
|
|
|
|
KX_PYATTRIBUTE_RO_FUNCTION("onGround", KX_CharacterWrapper, pyattr_get_onground),
|
|
|
|
KX_PYATTRIBUTE_RW_FUNCTION("gravity", KX_CharacterWrapper, pyattr_get_gravity, pyattr_set_gravity),
|
2012-12-26 01:25:53 +00:00
|
|
|
KX_PYATTRIBUTE_RW_FUNCTION("maxJumps", KX_CharacterWrapper, pyattr_get_max_jumps, pyattr_set_max_jumps),
|
2012-12-29 10:22:19 +00:00
|
|
|
KX_PYATTRIBUTE_RO_FUNCTION("jumpCount", KX_CharacterWrapper, pyattr_get_jump_count),
|
2013-01-30 05:55:17 +00:00
|
|
|
KX_PYATTRIBUTE_RW_FUNCTION("walkDirection", KX_CharacterWrapper, pyattr_get_walk_dir, pyattr_set_walk_dir),
|
2012-11-04 20:56:02 +00:00
|
|
|
{ NULL } //Sentinel
|
|
|
|
};
|
|
|
|
|
|
|
|
PyObject *KX_CharacterWrapper::pyattr_get_onground(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef)
|
|
|
|
{
|
|
|
|
KX_CharacterWrapper* self = static_cast<KX_CharacterWrapper*>(self_v);
|
|
|
|
|
|
|
|
return PyBool_FromLong(self->m_character->OnGround());
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *KX_CharacterWrapper::pyattr_get_gravity(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef)
|
|
|
|
{
|
|
|
|
KX_CharacterWrapper* self = static_cast<KX_CharacterWrapper*>(self_v);
|
|
|
|
|
|
|
|
return PyFloat_FromDouble(self->m_character->GetGravity());
|
|
|
|
}
|
|
|
|
|
|
|
|
int KX_CharacterWrapper::pyattr_set_gravity(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef, PyObject *value)
|
|
|
|
{
|
|
|
|
KX_CharacterWrapper* self = static_cast<KX_CharacterWrapper*>(self_v);
|
|
|
|
double param = PyFloat_AsDouble(value);
|
|
|
|
|
|
|
|
if (param == -1)
|
|
|
|
{
|
|
|
|
PyErr_SetString(PyExc_ValueError, "KX_CharacterWrapper.gravity: expected a float");
|
|
|
|
return PY_SET_ATTR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->m_character->SetGravity((float)param);
|
|
|
|
return PY_SET_ATTR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-12-26 01:25:53 +00:00
|
|
|
PyObject *KX_CharacterWrapper::pyattr_get_max_jumps(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef)
|
|
|
|
{
|
|
|
|
KX_CharacterWrapper* self = static_cast<KX_CharacterWrapper*>(self_v);
|
|
|
|
|
|
|
|
return PyLong_FromLong(self->m_character->GetMaxJumps());
|
|
|
|
}
|
|
|
|
|
|
|
|
int KX_CharacterWrapper::pyattr_set_max_jumps(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef, PyObject *value)
|
|
|
|
{
|
|
|
|
KX_CharacterWrapper* self = static_cast<KX_CharacterWrapper*>(self_v);
|
|
|
|
long param = PyLong_AsLong(value);
|
|
|
|
|
|
|
|
if (param == -1)
|
|
|
|
{
|
|
|
|
PyErr_SetString(PyExc_ValueError, "KX_CharacterWrapper.maxJumps: expected an integer");
|
|
|
|
return PY_SET_ATTR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->m_character->SetMaxJumps((int)param);
|
|
|
|
return PY_SET_ATTR_SUCCESS;
|
|
|
|
}
|
2012-12-29 10:22:19 +00:00
|
|
|
|
|
|
|
PyObject *KX_CharacterWrapper::pyattr_get_jump_count(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef)
|
|
|
|
{
|
|
|
|
KX_CharacterWrapper* self = static_cast<KX_CharacterWrapper*>(self_v);
|
|
|
|
|
|
|
|
return PyLong_FromLong(self->m_character->GetJumpCount());
|
|
|
|
}
|
|
|
|
|
2013-01-30 05:55:17 +00:00
|
|
|
PyObject *KX_CharacterWrapper::pyattr_get_walk_dir(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef)
|
|
|
|
{
|
|
|
|
KX_CharacterWrapper* self = static_cast<KX_CharacterWrapper*>(self_v);
|
|
|
|
|
2013-02-21 18:30:11 +00:00
|
|
|
return PyObjectFrom(self->m_character->GetWalkDirection());
|
2013-01-30 05:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int KX_CharacterWrapper::pyattr_set_walk_dir(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef, PyObject *value)
|
|
|
|
{
|
|
|
|
KX_CharacterWrapper* self = static_cast<KX_CharacterWrapper*>(self_v);
|
|
|
|
MT_Vector3 dir;
|
|
|
|
if (!PyVecTo(value, dir)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "KX_CharacterWrapper.walkDirection: expected a vector");
|
|
|
|
return PY_SET_ATTR_FAIL;
|
|
|
|
}
|
|
|
|
|
2013-02-21 18:30:11 +00:00
|
|
|
self->m_character->SetWalkDirection(dir);
|
2013-01-30 05:55:17 +00:00
|
|
|
return PY_SET_ATTR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-11-04 20:56:02 +00:00
|
|
|
PyMethodDef KX_CharacterWrapper::Methods[] = {
|
|
|
|
KX_PYMETHODTABLE_NOARGS(KX_CharacterWrapper, jump),
|
|
|
|
{NULL,NULL} //Sentinel
|
|
|
|
};
|
|
|
|
|
|
|
|
KX_PYMETHODDEF_DOC_NOARGS(KX_CharacterWrapper, jump,
|
|
|
|
"jump()\n"
|
|
|
|
"makes the character jump.\n")
|
|
|
|
{
|
|
|
|
m_character->Jump();
|
|
|
|
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // WITH_PYTHON
|