Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-05-01 10:50:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-01 10:50:43 +0400
commit9fe1fe0aa8a82ff59932db40b36ff46644297f0b (patch)
treed1b7943ecdf528caba4c67557240ac59f02435af /source/blender/python/bmesh/bmesh_py_types_meshdata.c
parentae4fda82b026ae6e2b003c1105f329b7e76582b0 (diff)
bmesh py api:
add mtexpoly image access
Diffstat (limited to 'source/blender/python/bmesh/bmesh_py_types_meshdata.c')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_meshdata.c92
1 files changed, 92 insertions, 0 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types_meshdata.c b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
index 39336abe944..aa78dc64f6b 100644
--- a/source/blender/python/bmesh/bmesh_py_types_meshdata.c
+++ b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
@@ -41,9 +41,100 @@
#include "BLI_math_vector.h"
#include "BKE_deform.h"
+#include "BKE_library.h"
#include "bmesh_py_types_meshdata.h"
+
+/* Mesh BMTexPoly
+ * ************** */
+
+#define BPy_BMTexPoly_Check(v) (Py_TYPE(v) == &BPy_BMTexPoly_Type)
+
+typedef struct BPy_BMTexPoly {
+ PyObject_VAR_HEAD
+ MTexPoly *data;
+} BPy_BMTexPoly;
+
+extern PyObject *pyrna_id_CreatePyObject(ID *id);
+extern int pyrna_id_FromPyObject(PyObject *obj, ID **id);
+
+PyDoc_STRVAR(bpy_bmtexpoly_image_doc,
+"Image or None.\n\n:type: :class:`bpy.types.Image`"
+);
+static PyObject *bpy_bmtexpoly_image_get(BPy_BMTexPoly *self, void *UNUSED(closure))
+{
+ return pyrna_id_CreatePyObject((ID *)self->data->tpage);
+}
+
+static int bpy_bmtexpoly_image_set(BPy_BMTexPoly *self, PyObject *value, void *UNUSED(closure))
+{
+ ID *id;
+
+ if (value == Py_None) {
+ id = NULL;
+ }
+ else if (pyrna_id_FromPyObject(value, &id) && id && GS(id->name) == ID_IM) {
+ /* pass */
+ }
+ else {
+ PyErr_Format(PyExc_KeyError, "BMTexPoly.image = x"
+ "expected an image or None, not '%.200s'",
+ Py_TYPE(value)->tp_name);
+ return -1;
+ }
+
+ id_lib_extern(id);
+ self->data->tpage = (struct Image *)id;
+
+ return 0;
+}
+
+static PyGetSetDef bpy_bmtexpoly_getseters[] = {
+ /* attributes match rna_def_mtpoly */
+ {(char *)"image", (getter)bpy_bmtexpoly_image_get, (setter)bpy_bmtexpoly_image_set, (char *)bpy_bmtexpoly_image_doc, NULL},
+
+ {NULL, NULL, NULL, NULL, NULL} /* Sentinel */
+};
+
+PyTypeObject BPy_BMTexPoly_Type = {{{0}}}; /* bm.loops.layers.uv.active */
+
+static void bm_init_types_bmtexpoly(void)
+{
+ BPy_BMTexPoly_Type.tp_basicsize = sizeof(BPy_BMTexPoly);
+
+ BPy_BMTexPoly_Type.tp_name = "BMTexPoly";
+
+ BPy_BMTexPoly_Type.tp_doc = NULL; // todo
+
+ BPy_BMTexPoly_Type.tp_getset = bpy_bmtexpoly_getseters;
+
+ BPy_BMTexPoly_Type.tp_flags = Py_TPFLAGS_DEFAULT;
+
+ PyType_Ready(&BPy_BMTexPoly_Type);
+}
+
+int BPy_BMTexPoly_AssignPyObject(struct MTexPoly *mtpoly, PyObject *value)
+{
+ if (UNLIKELY(!BPy_BMTexPoly_Check(value))) {
+ PyErr_Format(PyExc_TypeError, "expected BMTexPoly, not a %.200s", Py_TYPE(value)->tp_name);
+ return -1;
+ }
+ else {
+ *((MTexPoly *)mtpoly) = *(((BPy_BMTexPoly *)value)->data);
+ return 0;
+ }
+}
+
+PyObject *BPy_BMTexPoly_CreatePyObject(struct MTexPoly *mtpoly)
+{
+ BPy_BMTexPoly *self = PyObject_New(BPy_BMTexPoly, &BPy_BMTexPoly_Type);
+ self->data = mtpoly;
+ return (PyObject *)self;
+}
+
+/* --- End Mesh BMTexPoly --- */
+
/* Mesh Loop UV
* ************ */
@@ -597,6 +688,7 @@ PyObject *BPy_BMDeformVert_CreatePyObject(struct MDeformVert *dvert)
/* call to init all types */
void BPy_BM_init_types_meshdata(void)
{
+ bm_init_types_bmtexpoly();
bm_init_types_bmloopuv();
bm_init_types_bmloopcol();
bm_init_types_bmdvert();