2002-10-12 11:37:38 +00:00
|
|
|
/**
|
|
|
|
* $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
|
|
|
*/
|
|
|
|
#ifndef __KX_VERTEXPROXY
|
|
|
|
#define __KX_VERTEXPROXY
|
|
|
|
|
|
|
|
#include "SCA_IObject.h"
|
|
|
|
|
2009-06-08 20:08:19 +00:00
|
|
|
class KX_VertexProxy : public CValue
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
Py_Header;
|
2004-05-30 11:09:46 +00:00
|
|
|
protected:
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
class RAS_TexVert* m_vertex;
|
2006-04-02 21:04:20 +00:00
|
|
|
class KX_MeshProxy* m_mesh;
|
2002-10-12 11:37:38 +00:00
|
|
|
public:
|
2006-04-02 21:04:20 +00:00
|
|
|
KX_VertexProxy(class KX_MeshProxy*mesh, class RAS_TexVert* vertex);
|
2002-10-12 11:37:38 +00:00
|
|
|
virtual ~KX_VertexProxy();
|
|
|
|
|
|
|
|
// stuff for cvalue related things
|
|
|
|
CValue* Calc(VALUE_OPERATOR op, CValue *val) ;
|
|
|
|
CValue* CalcFinal(VALUE_DATA_TYPE dtype, VALUE_OPERATOR op, CValue *val);
|
|
|
|
const STR_String & GetText();
|
2009-04-20 15:06:46 +00:00
|
|
|
double GetNumber();
|
2009-06-08 20:08:19 +00:00
|
|
|
STR_String& GetName();
|
|
|
|
void SetName(const char *name); // Set the name of the value
|
2002-10-12 11:37:38 +00:00
|
|
|
CValue* GetReplica();
|
|
|
|
|
|
|
|
|
|
|
|
// stuff for python integration
|
|
|
|
|
2009-02-23 06:41:10 +00:00
|
|
|
KX_PYMETHOD_NOARGS(KX_VertexProxy,GetXYZ);
|
|
|
|
KX_PYMETHOD_O(KX_VertexProxy,SetXYZ);
|
|
|
|
KX_PYMETHOD_NOARGS(KX_VertexProxy,GetUV);
|
|
|
|
KX_PYMETHOD_O(KX_VertexProxy,SetUV);
|
2006-01-06 03:46:54 +00:00
|
|
|
|
2009-02-23 06:41:10 +00:00
|
|
|
KX_PYMETHOD_NOARGS(KX_VertexProxy,GetUV2);
|
|
|
|
KX_PYMETHOD_VARARGS(KX_VertexProxy,SetUV2);
|
2006-01-06 03:46:54 +00:00
|
|
|
|
2009-02-23 06:41:10 +00:00
|
|
|
KX_PYMETHOD_NOARGS(KX_VertexProxy,GetRGBA);
|
|
|
|
KX_PYMETHOD_O(KX_VertexProxy,SetRGBA);
|
|
|
|
KX_PYMETHOD_NOARGS(KX_VertexProxy,GetNormal);
|
|
|
|
KX_PYMETHOD_O(KX_VertexProxy,SetNormal);
|
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 //__KX_VERTEXPROXY
|
2002-10-30 02:07:20 +00:00
|
|
|
|