| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * $Id$ | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * ***** BEGIN GPL/BL DUAL 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. The Blender | 
					
						
							|  |  |  |  * Foundation also sells licenses for use in proprietary software under | 
					
						
							|  |  |  |  * the Blender License.  See http://www.blender.org/BL/ for information
 | 
					
						
							|  |  |  |  * about this. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is a new part of Blender. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-10-12 23:41:33 +00:00
										 |  |  |  * Contributor(s): Willian P. Germano, Jordi Rovira i Bonnet, Joseph Gilbert. | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * ***** END GPL/BL DUAL LICENSE BLOCK ***** | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Most of this file comes from opy_nmesh.[ch] in the old bpython dir */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-20 03:56:41 +00:00
										 |  |  | #ifndef EXPP_NMESH_H
 | 
					
						
							|  |  |  | #define EXPP_NMESH_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-18 03:50:37 +00:00
										 |  |  | #include <Python.h>
 | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAVE_CONFIG_H
 | 
					
						
							|  |  |  | #include <config.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-23 10:37:50 +00:00
										 |  |  | #include "DNA_customdata_types.h"
 | 
					
						
							| 
									
										
										
										
											2005-07-18 03:50:37 +00:00
										 |  |  | #include "DNA_object_types.h"
 | 
					
						
							|  |  |  | #include "DNA_mesh_types.h"
 | 
					
						
							|  |  |  | #include "DNA_meshdata_types.h"
 | 
					
						
							| 
									
										
										
										
											2003-05-31 04:43:10 +00:00
										 |  |  | #include "Material.h"
 | 
					
						
							|  |  |  | #include "Image.h"
 | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* EXPP PyType Objects */ | 
					
						
							| 
									
										
										
										
											2004-11-14 01:03:01 +00:00
										 |  |  | extern PyTypeObject NMesh_Type; | 
					
						
							|  |  |  | extern PyTypeObject NMFace_Type; | 
					
						
							|  |  |  | extern PyTypeObject NMVert_Type; | 
					
						
							|  |  |  | extern PyTypeObject NMCol_Type; | 
					
						
							| 
									
										
										
										
											2005-01-22 02:48:03 +00:00
										 |  |  | extern PyTypeObject NMEdge_Type; | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-31 04:43:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-18 00:54:43 +00:00
										 |  |  | struct BPy_Object; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-10-12 23:41:33 +00:00
										 |  |  | /* These are from blender/src/editdeform.c, should be declared elsewhere,
 | 
					
						
							|  |  |  |  * maybe in BIF_editdeform.h, after proper testing of vgrouping methods XXX */ | 
					
						
							| 
									
										
										
										
											2004-10-07 19:25:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-09 19:45:59 +00:00
										 |  |  | extern void add_vert_defnr( Object * ob, int def_nr, int vertnum, float weight, | 
					
						
							| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | 		     int assignmode ); | 
					
						
							| 
									
										
										
										
											2005-03-09 19:45:59 +00:00
										 |  |  | extern void remove_vert_def_nr( Object * ob, int def_nr, int vertnum ); | 
					
						
							| 
									
										
										
										
											2003-10-12 23:41:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-07 19:25:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Type checking for EXPP PyTypes */ | 
					
						
							| 
									
										
										
										
											2003-06-28 07:38:21 +00:00
										 |  |  | #define BPy_NMesh_Check(v)       ((v)->ob_type == &NMesh_Type)
 | 
					
						
							|  |  |  | #define BPy_NMFace_Check(v)      ((v)->ob_type == &NMFace_Type)
 | 
					
						
							|  |  |  | #define BPy_NMVert_Check(v)      ((v)->ob_type == &NMVert_Type)
 | 
					
						
							|  |  |  | #define BPy_NMCol_Check(v)       ((v)->ob_type == &NMCol_Type)
 | 
					
						
							| 
									
										
										
										
											2005-01-22 02:48:03 +00:00
										 |  |  | #define BPy_NMEdge_Check(v)      ((v)->ob_type == &NMEdge_Type)
 | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Typedefs for the new types */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2004-10-14 17:35:16 +00:00
										 |  |  | 	PyObject_HEAD		/* required python macro   */ | 
					
						
							|  |  |  | 	unsigned char r, g, b, a; | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | } BPy_NMCol;			/* an NMesh color: [r,g,b,a] */ | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2004-10-14 17:35:16 +00:00
										 |  |  | 	PyObject_VAR_HEAD	/* required python macro   */ | 
					
						
							|  |  |  | 	float co[3]; | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 	float no[3]; | 
					
						
							|  |  |  | 	float uvco[3]; | 
					
						
							|  |  |  | 	int index; | 
					
						
							| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | 	char flag;		/* see MVert flag in DNA_meshdata_types */ | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | } BPy_NMVert;			/* an NMesh vertex */ | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2004-10-14 17:35:16 +00:00
										 |  |  | 	PyObject_HEAD		/* required python macro   */ | 
					
						
							|  |  |  | 	PyObject * v; | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 	PyObject *uv; | 
					
						
							|  |  |  | 	PyObject *col; | 
					
						
							|  |  |  | 	short mode; | 
					
						
							| 
									
										
										
										
											2005-02-03 03:04:32 +00:00
										 |  |  | 	short flag; /* tface->flag */ | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 	unsigned char transp; | 
					
						
							| 
									
										
										
										
											2003-06-13 04:21:48 +00:00
										 |  |  | 	Image *image; | 
					
						
							| 
									
										
										
										
											2005-02-03 03:04:32 +00:00
										 |  |  | 	char mat_nr, mf_flag /* was char smooth */; | 
					
						
							| 
									
										
										
										
											2006-12-23 10:37:50 +00:00
										 |  |  | 	int orig_index; | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | } BPy_NMFace;			/* an NMesh face */ | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-22 02:48:03 +00:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  |   PyObject_HEAD		/* required python macro   */ | 
					
						
							|  |  |  |   PyObject *v1; | 
					
						
							|  |  |  |   PyObject *v2; | 
					
						
							|  |  |  |   char crease; | 
					
						
							|  |  |  |   short flag; | 
					
						
							|  |  |  | } BPy_NMEdge;     /* an NMesh edge */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2004-10-14 17:35:16 +00:00
										 |  |  | 	PyObject_HEAD		/* required python macro   */ | 
					
						
							| 
									
										
										
										
											2007-02-25 01:07:28 +00:00
										 |  |  | 	Mesh * mesh;		/* libdata must be second */ | 
					
						
							| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | 	Object *object;		/* for vertex grouping info, since it's stored on the object */ | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 	PyObject *name; | 
					
						
							|  |  |  | 	PyObject *materials; | 
					
						
							|  |  |  | 	PyObject *verts; | 
					
						
							|  |  |  | 	PyObject *faces; | 
					
						
							| 
									
										
										
										
											2005-01-22 02:48:03 +00:00
										 |  |  |   PyObject *edges; | 
					
						
							| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | 	int sel_face;		/*@ XXX remove */ | 
					
						
							|  |  |  | 	short smoothresh;	/* max AutoSmooth angle */ | 
					
						
							|  |  |  | 	short subdiv[2];	/* SubDiv Levels: display and rendering */ | 
					
						
							|  |  |  | 	short mode;		/* see the EXPP_NMESH_* defines in the beginning of this file */ | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 	char flags; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-06 21:51:54 +00:00
										 |  |  | #define NMESH_HASMCOL	(1<<0)
 | 
					
						
							|  |  |  | #define NMESH_HASVERTUV	(1<<1)
 | 
					
						
							|  |  |  | #define NMESH_HASFACEUV	(1<<2)
 | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-23 10:37:50 +00:00
										 |  |  | 	/* stores original data that is not accesible through NMesh, but that we
 | 
					
						
							|  |  |  | 	   still want to preserve, indexed by orig_index in NMFace */ | 
					
						
							|  |  |  | 	CustomData fdata;  | 
					
						
							|  |  |  | 	int totfdata; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-28 07:38:21 +00:00
										 |  |  | } BPy_NMesh; | 
					
						
							| 
									
										
										
										
											2003-05-17 04:29:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* PROTOS */ | 
					
						
							| 
									
										
										
										
											2004-10-07 19:25:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyObject *NMesh_Init( void ); | 
					
						
							|  |  |  | PyObject *NMesh_CreatePyObject( Mesh * me, Object * ob ); | 
					
						
							| 
									
										
										
										
											2005-10-04 15:17:27 +00:00
										 |  |  | Mesh *NMesh_FromPyObject( PyObject * pyobj, Object * ob ); | 
					
						
							| 
									
										
										
										
											2004-10-07 19:25:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-19 05:35:35 +00:00
										 |  |  | void mesh_update( Mesh * mesh , Object * ob ); | 
					
						
							| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | PyObject *new_NMesh( Mesh * oldmesh ); | 
					
						
							| 
									
										
										
										
											2005-12-14 18:01:42 +00:00
										 |  |  | Mesh *Mesh_fromNMesh( BPy_NMesh * nmesh ); | 
					
						
							| 
									
										
										
										
											2004-09-25 20:30:40 +00:00
										 |  |  | PyObject *NMesh_assignMaterials_toObject( BPy_NMesh * nmesh, Object * ob ); | 
					
						
							|  |  |  | Material **nmesh_updateMaterials( BPy_NMesh * nmesh ); | 
					
						
							|  |  |  | Material **newMaterialList_fromPyList( PyObject * list ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif				/* EXPP_NMESH_H */
 |