forked from bartvdbraak/blender
c785532bec
Python dir(ob) for game types now includes attributes names, * Use "__dict__" rather then "__methods__" attribute to be Python 3.0 compatible * Added _getattr_dict() for getting the method and attribute names from a PyObject, rather then building it in the macro. * Added place holder *::Attribute array, needed for the _getattr_up macro.
419 lines
8.8 KiB
C++
419 lines
8.8 KiB
C++
/**
|
|
* $Id$
|
|
* ***** 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., 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.
|
|
*
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include "KX_VertexProxy.h"
|
|
#include "KX_MeshProxy.h"
|
|
#include "RAS_TexVert.h"
|
|
|
|
#include "KX_PyMath.h"
|
|
|
|
PyTypeObject KX_VertexProxy::Type = {
|
|
PyObject_HEAD_INIT(&PyType_Type)
|
|
0,
|
|
"KX_VertexProxy",
|
|
sizeof(KX_VertexProxy),
|
|
0,
|
|
PyDestructor,
|
|
0,
|
|
__getattr,
|
|
__setattr,
|
|
0, //&MyPyCompare,
|
|
__repr,
|
|
0, //&cvalue_as_number,
|
|
0,
|
|
0,
|
|
0,
|
|
0
|
|
};
|
|
|
|
PyParentObject KX_VertexProxy::Parents[] = {
|
|
&KX_VertexProxy::Type,
|
|
&SCA_IObject::Type,
|
|
&CValue::Type,
|
|
NULL
|
|
};
|
|
|
|
PyMethodDef KX_VertexProxy::Methods[] = {
|
|
{"getXYZ", (PyCFunction)KX_VertexProxy::sPyGetXYZ,METH_NOARGS},
|
|
{"setXYZ", (PyCFunction)KX_VertexProxy::sPySetXYZ,METH_O},
|
|
{"getUV", (PyCFunction)KX_VertexProxy::sPyGetUV,METH_NOARGS},
|
|
{"setUV", (PyCFunction)KX_VertexProxy::sPySetUV,METH_O},
|
|
|
|
{"getUV2", (PyCFunction)KX_VertexProxy::sPyGetUV2,METH_NOARGS},
|
|
{"setUV2", (PyCFunction)KX_VertexProxy::sPySetUV2,METH_VARARGS},
|
|
|
|
{"getRGBA", (PyCFunction)KX_VertexProxy::sPyGetRGBA,METH_NOARGS},
|
|
{"setRGBA", (PyCFunction)KX_VertexProxy::sPySetRGBA,METH_O},
|
|
{"getNormal", (PyCFunction)KX_VertexProxy::sPyGetNormal,METH_NOARGS},
|
|
{"setNormal", (PyCFunction)KX_VertexProxy::sPySetNormal,METH_O},
|
|
{NULL,NULL} //Sentinel
|
|
};
|
|
|
|
PyAttributeDef KX_VertexProxy::Attributes[] = {
|
|
{ NULL } //Sentinel
|
|
};
|
|
|
|
PyObject*
|
|
KX_VertexProxy::_getattr(const char *attr)
|
|
{
|
|
|
|
if (attr[1]=='\0') { // Group single letters
|
|
// pos
|
|
if (attr[0]=='x')
|
|
return PyFloat_FromDouble(m_vertex->getXYZ()[0]);
|
|
if (attr[0]=='y')
|
|
return PyFloat_FromDouble(m_vertex->getXYZ()[1]);
|
|
if (attr[0]=='z')
|
|
return PyFloat_FromDouble(m_vertex->getXYZ()[2]);
|
|
|
|
// Col
|
|
if (attr[0]=='r')
|
|
return PyFloat_FromDouble(m_vertex->getRGBA()[0]/255.0);
|
|
if (attr[0]=='g')
|
|
return PyFloat_FromDouble(m_vertex->getRGBA()[1]/255.0);
|
|
if (attr[0]=='b')
|
|
return PyFloat_FromDouble(m_vertex->getRGBA()[2]/255.0);
|
|
if (attr[0]=='a')
|
|
return PyFloat_FromDouble(m_vertex->getRGBA()[3]/255.0);
|
|
|
|
// UV
|
|
if (attr[0]=='u')
|
|
return PyFloat_FromDouble(m_vertex->getUV1()[0]);
|
|
if (attr[0]=='v')
|
|
return PyFloat_FromDouble(m_vertex->getUV1()[1]);
|
|
}
|
|
|
|
|
|
if (!strcmp(attr, "XYZ"))
|
|
return PyObjectFrom(MT_Vector3(m_vertex->getXYZ()));
|
|
|
|
if (!strcmp(attr, "UV"))
|
|
return PyObjectFrom(MT_Point2(m_vertex->getUV1()));
|
|
|
|
if (!strcmp(attr, "color") || !strcmp(attr, "colour"))
|
|
{
|
|
const unsigned char *colp = m_vertex->getRGBA();
|
|
MT_Vector4 color(colp[0], colp[1], colp[2], colp[3]);
|
|
color /= 255.0;
|
|
return PyObjectFrom(color);
|
|
}
|
|
|
|
if (!strcmp(attr, "normal"))
|
|
{
|
|
return PyObjectFrom(MT_Vector3(m_vertex->getNormal()));
|
|
}
|
|
|
|
_getattr_up(SCA_IObject);
|
|
}
|
|
|
|
int KX_VertexProxy::_setattr(const char *attr, PyObject *pyvalue)
|
|
{
|
|
if (PySequence_Check(pyvalue))
|
|
{
|
|
if (!strcmp(attr, "XYZ"))
|
|
{
|
|
MT_Point3 vec;
|
|
if (PyVecTo(pyvalue, vec))
|
|
{
|
|
m_vertex->SetXYZ(vec);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
if (!strcmp(attr, "UV"))
|
|
{
|
|
MT_Point2 vec;
|
|
if (PyVecTo(pyvalue, vec))
|
|
{
|
|
m_vertex->SetUV(vec);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
if (!strcmp(attr, "color") || !strcmp(attr, "colour"))
|
|
{
|
|
MT_Vector4 vec;
|
|
if (PyVecTo(pyvalue, vec))
|
|
{
|
|
m_vertex->SetRGBA(vec);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
if (!strcmp(attr, "normal"))
|
|
{
|
|
MT_Vector3 vec;
|
|
if (PyVecTo(pyvalue, vec))
|
|
{
|
|
m_vertex->SetNormal(vec);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
if (PyFloat_Check(pyvalue))
|
|
{
|
|
float val = PyFloat_AsDouble(pyvalue);
|
|
// pos
|
|
MT_Point3 pos(m_vertex->getXYZ());
|
|
if (!strcmp(attr, "x"))
|
|
{
|
|
pos.x() = val;
|
|
m_vertex->SetXYZ(pos);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
|
|
if (!strcmp(attr, "y"))
|
|
{
|
|
pos.y() = val;
|
|
m_vertex->SetXYZ(pos);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
|
|
if (!strcmp(attr, "z"))
|
|
{
|
|
pos.z() = val;
|
|
m_vertex->SetXYZ(pos);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
|
|
// uv
|
|
MT_Point2 uv = m_vertex->getUV1();
|
|
if (!strcmp(attr, "u"))
|
|
{
|
|
uv[0] = val;
|
|
m_vertex->SetUV(uv);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
|
|
if (!strcmp(attr, "v"))
|
|
{
|
|
uv[1] = val;
|
|
m_vertex->SetUV(uv);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
|
|
// uv
|
|
MT_Point2 uv2 = m_vertex->getUV2();
|
|
if (!strcmp(attr, "u2"))
|
|
{
|
|
uv[0] = val;
|
|
m_vertex->SetUV2(uv);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
|
|
if (!strcmp(attr, "v2"))
|
|
{
|
|
uv[1] = val;
|
|
m_vertex->SetUV2(uv);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
|
|
// col
|
|
unsigned int icol = *((const unsigned int *)m_vertex->getRGBA());
|
|
unsigned char *cp = (unsigned char*) &icol;
|
|
val *= 255.0;
|
|
if (!strcmp(attr, "r"))
|
|
{
|
|
cp[0] = (unsigned char) val;
|
|
m_vertex->SetRGBA(icol);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
if (!strcmp(attr, "g"))
|
|
{
|
|
cp[1] = (unsigned char) val;
|
|
m_vertex->SetRGBA(icol);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
if (!strcmp(attr, "b"))
|
|
{
|
|
cp[2] = (unsigned char) val;
|
|
m_vertex->SetRGBA(icol);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
if (!strcmp(attr, "a"))
|
|
{
|
|
cp[3] = (unsigned char) val;
|
|
m_vertex->SetRGBA(icol);
|
|
m_mesh->SetMeshModified(true);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
return SCA_IObject::_setattr(attr, pyvalue);
|
|
}
|
|
|
|
KX_VertexProxy::KX_VertexProxy(KX_MeshProxy*mesh, RAS_TexVert* vertex)
|
|
: m_vertex(vertex),
|
|
m_mesh(mesh)
|
|
{
|
|
}
|
|
|
|
KX_VertexProxy::~KX_VertexProxy()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
// stuff for cvalue related things
|
|
CValue* KX_VertexProxy::Calc(VALUE_OPERATOR, CValue *) { return NULL;}
|
|
CValue* KX_VertexProxy::CalcFinal(VALUE_DATA_TYPE, VALUE_OPERATOR, CValue *) { return NULL;}
|
|
STR_String sVertexName="vertex";
|
|
const STR_String & KX_VertexProxy::GetText() {return sVertexName;};
|
|
float KX_VertexProxy::GetNumber() { return -1;}
|
|
STR_String KX_VertexProxy::GetName() { return sVertexName;}
|
|
void KX_VertexProxy::SetName(STR_String) { };
|
|
CValue* KX_VertexProxy::GetReplica() { return NULL;}
|
|
void KX_VertexProxy::ReplicaSetName(STR_String) {};
|
|
|
|
|
|
// stuff for python integration
|
|
|
|
PyObject* KX_VertexProxy::PyGetXYZ(PyObject*)
|
|
{
|
|
return PyObjectFrom(MT_Point3(m_vertex->getXYZ()));
|
|
}
|
|
|
|
PyObject* KX_VertexProxy::PySetXYZ(PyObject*, PyObject* value)
|
|
{
|
|
MT_Point3 vec;
|
|
if (!PyVecTo(value, vec))
|
|
return NULL;
|
|
|
|
m_vertex->SetXYZ(vec);
|
|
m_mesh->SetMeshModified(true);
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
PyObject* KX_VertexProxy::PyGetNormal(PyObject*)
|
|
{
|
|
return PyObjectFrom(MT_Vector3(m_vertex->getNormal()));
|
|
}
|
|
|
|
PyObject* KX_VertexProxy::PySetNormal(PyObject*, PyObject* value)
|
|
{
|
|
MT_Vector3 vec;
|
|
if (!PyVecTo(value, vec))
|
|
return NULL;
|
|
|
|
m_vertex->SetNormal(vec);
|
|
m_mesh->SetMeshModified(true);
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
|
|
PyObject* KX_VertexProxy::PyGetRGBA(PyObject*)
|
|
{
|
|
int *rgba = (int *) m_vertex->getRGBA();
|
|
return PyInt_FromLong(*rgba);
|
|
}
|
|
|
|
PyObject* KX_VertexProxy::PySetRGBA(PyObject*, PyObject* value)
|
|
{
|
|
if PyInt_Check(value) {
|
|
int rgba = PyInt_AsLong(value);
|
|
m_vertex->SetRGBA(rgba);
|
|
m_mesh->SetMeshModified(true);
|
|
Py_RETURN_NONE;
|
|
}
|
|
else {
|
|
MT_Vector4 vec;
|
|
if (PyVecTo(value, vec))
|
|
{
|
|
m_vertex->SetRGBA(vec);
|
|
m_mesh->SetMeshModified(true);
|
|
Py_RETURN_NONE;
|
|
}
|
|
}
|
|
|
|
PyErr_SetString(PyExc_TypeError, "expected a 4D vector or an int");
|
|
return NULL;
|
|
}
|
|
|
|
|
|
PyObject* KX_VertexProxy::PyGetUV(PyObject*)
|
|
{
|
|
return PyObjectFrom(MT_Vector2(m_vertex->getUV1()));
|
|
}
|
|
|
|
PyObject* KX_VertexProxy::PySetUV(PyObject*, PyObject* value)
|
|
{
|
|
MT_Point2 vec;
|
|
if (!PyVecTo(value, vec))
|
|
return NULL;
|
|
|
|
m_vertex->SetUV(vec);
|
|
m_mesh->SetMeshModified(true);
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
PyObject* KX_VertexProxy::PyGetUV2(PyObject*)
|
|
{
|
|
return PyObjectFrom(MT_Vector2(m_vertex->getUV2()));
|
|
}
|
|
|
|
PyObject* KX_VertexProxy::PySetUV2(PyObject*, PyObject* args)
|
|
{
|
|
MT_Point2 vec;
|
|
unsigned int unit=0;
|
|
PyObject* list= NULL;
|
|
if(!PyArg_ParseTuple(args, "Oi:setUV2", &list, &unit))
|
|
return NULL;
|
|
|
|
if (!PyVecTo(list, vec))
|
|
return NULL;
|
|
|
|
m_vertex->SetFlag((m_vertex->getFlag()|RAS_TexVert::SECOND_UV));
|
|
m_vertex->SetUnit(unit);
|
|
m_vertex->SetUV2(vec);
|
|
m_mesh->SetMeshModified(true);
|
|
Py_RETURN_NONE;
|
|
}
|