Commit: 46587b3ccb0ec842500ce2c3f2359b78550aad0f
Author: Campbell Barton
Date:   Thu Oct 25 15:31:02 2018 +1100
Branches: blender2.8
https://developer.blender.org/rB46587b3ccb0ec842500ce2c3f2359b78550aad0f

PyAPI: support for Python paint cursors

===================================================================

M       source/blender/python/intern/bpy_rna.c
M       source/blender/python/intern/bpy_rna_callback.c

===================================================================

diff --git a/source/blender/python/intern/bpy_rna.c 
b/source/blender/python/intern/bpy_rna.c
index 6a525ec40c6..32d8c01be76 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -8459,6 +8459,9 @@ typedef struct BPyRNA_CallBack {
 static struct BPyRNA_CallBack pyrna_cb_methods[] = {
        {{"draw_handler_add",    (PyCFunction)pyrna_callback_classmethod_add,   
METH_VARARGS | METH_STATIC, ""}, &RNA_Space},
        {{"draw_handler_remove", 
(PyCFunction)pyrna_callback_classmethod_remove, METH_VARARGS | METH_STATIC, 
""}, &RNA_Space},
+
+       {{"draw_cursor_add",    (PyCFunction)pyrna_callback_classmethod_add,    
METH_VARARGS | METH_STATIC, ""}, &RNA_WindowManager},
+       {{"draw_cursor_remove", (PyCFunction)pyrna_callback_classmethod_remove, 
METH_VARARGS | METH_STATIC, ""}, &RNA_WindowManager},
        {{NULL, NULL, 0, NULL}, NULL}
 };
 
diff --git a/source/blender/python/intern/bpy_rna_callback.c 
b/source/blender/python/intern/bpy_rna_callback.c
index 7adb1d40fcc..7c1eebb9b1a 100644
--- a/source/blender/python/intern/bpy_rna_callback.c
+++ b/source/blender/python/intern/bpy_rna_callback.c
@@ -47,8 +47,12 @@
 #include "BKE_context.h"
 #include "BKE_screen.h"
 
+#include "WM_api.h"
+
 #include "ED_space_api.h"
 
+#include "../generic/python_utildefines.h"
+
 /* use this to stop other capsules from being mis-used */
 #define RNA_CAPSULE_ID "RNA_HANDLE"
 #define RNA_CAPSULE_ID_INVALID "RNA_HANDLE_REMOVED"
@@ -82,6 +86,53 @@ static void cb_region_draw(const bContext *C, ARegion 
*UNUSED(ar), void *customd
        bpy_context_clear((bContext *)C, &gilstate);
 }
 
+/* We could make generic utility */
+static PyObject *PyC_Tuple_CopySized(PyObject *src, int len_dst)
+{
+       PyObject *dst = PyTuple_New(len_dst);
+       int len_src = PyTuple_GET_SIZE(src);
+       BLI_assert(len_src <= len_dst);
+       for (int i = 0; i < len_src; i++) {
+               PyObject *item = PyTuple_GET_ITEM(src, i);
+               PyTuple_SET_ITEM(dst, i, item);
+               Py_INCREF(item);
+       }
+       return dst;
+}
+
+static void cb_wm_cursor_draw(bContext *C, int x, int y, void *customdata)
+{
+       PyObject *cb_func, *cb_args, *result;
+       PyGILState_STATE gilstate;
+
+       bpy_context_set((bContext *)C, &gilstate);
+
+       cb_func = PyTuple_GET_ITEM((PyObject *)customdata, 1);
+       cb_args = PyTuple_GET_ITEM((PyObject *)customdata, 2);
+
+       const int cb_args_len = PyTuple_GET_SIZE(cb_args);
+
+       PyObject *cb_args_xy = PyTuple_New(2);
+       PyTuple_SET_ITEMS(cb_args_xy, PyLong_FromLong(x), PyLong_FromLong(y));
+
+       PyObject *cb_args_with_xy = PyC_Tuple_CopySized(cb_args, cb_args_len + 
1);
+       PyTuple_SET_ITEM(cb_args_with_xy, cb_args_len, cb_args_xy);
+
+       result = PyObject_CallObject(cb_func, cb_args_with_xy);
+
+       Py_DECREF(cb_args_with_xy);
+
+       if (result) {
+               Py_DECREF(result);
+       }
+       else {
+               PyErr_Print();
+               PyErr_Clear();
+       }
+
+       bpy_context_clear((bContext *)C, &gilstate);
+}
+
 #if 0
 PyObject *pyrna_callback_add(BPy_StructRNA *self, PyObject *args)
 {
@@ -205,7 +256,20 @@ PyObject *pyrna_callback_classmethod_add(PyObject 
*UNUSED(self), PyObject *args)
        }
 
        /* class specific callbacks */
-       if (RNA_struct_is_a(srna, &RNA_Space)) {
+
+       if (srna == &RNA_WindowManager) {
+               if (!PyArg_ParseTuple(args, 
"OOO!:WindowManager.draw_cursor_add",
+                                     &cls, &cb_func,  /* already assigned, no 
matter */
+                                     &PyTuple_Type, &cb_args))
+               {
+                       return NULL;
+               }
+               bContext *C = BPy_GetContext();
+               struct wmWindowManager *wm = CTX_wm_manager(C);
+               handle = WM_paint_cursor_activate(wm, NULL, cb_wm_cursor_draw, 
(void *)args);
+               Py_INCREF(args);
+       }
+       else if (RNA_struct_is_a(srna, &RNA_Space)) {
                if (!PyArg_ParseTuple(args, "OOO!ss:Space.draw_handler_add",
                                      &cls, &cb_func,  /* already assigned, no 
matter */
                                      &PyTuple_Type, &cb_args, 
&cb_regiontype_str, &cb_event_str))
@@ -277,7 +341,22 @@ PyObject *pyrna_callback_classmethod_remove(PyObject 
*UNUSED(self), PyObject *ar
                return NULL;
        }
 
-       if (RNA_struct_is_a(srna, &RNA_Space)) {
+       if (srna == &RNA_WindowManager) {
+               if (!PyArg_ParseTuple(args, 
"OO!:WindowManager.draw_cursor_remove",
+                                     &cls, &PyCapsule_Type, &py_handle))
+               {
+                       return NULL;
+               }
+               bContext *C = BPy_GetContext();
+               struct wmWindowManager *wm = CTX_wm_manager(C);
+               customdata = WM_paint_cursor_customdata_get(handle);
+               if (!WM_paint_cursor_end(wm, handle)) {
+                       PyErr_SetString(PyExc_ValueError, 
"draw_cursor_remove(handler): cursor wasn't found");
+                       return NULL;
+               }
+               Py_DECREF((PyObject *)customdata);
+       }
+       else if (RNA_struct_is_a(srna, &RNA_Space)) {
                if (!PyArg_ParseTuple(args, "OO!s:Space.draw_handler_remove",
                                      &cls, &PyCapsule_Type, &py_handle,  /* 
already assigned, no matter */
                                      &cb_regiontype_str))

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to