2008-12-21 08:53:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* $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.
|
|
|
|
*
|
|
|
|
* Contributor(s): Campbell Barton
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bpy_operator.h"
|
2009-04-01 12:43:07 +00:00
|
|
|
#include "bpy_operator_wrap.h"
|
2008-12-25 10:48:36 +00:00
|
|
|
#include "bpy_rna.h" /* for setting arg props only - pyrna_py_to_prop() */
|
2008-12-21 08:53:36 +00:00
|
|
|
#include "bpy_compat.h"
|
2009-04-19 13:37:59 +00:00
|
|
|
#include "bpy_util.h"
|
2008-12-21 08:53:36 +00:00
|
|
|
|
|
|
|
//#include "blendef.h"
|
|
|
|
#include "BLI_dynstr.h"
|
python operators (in bpy_opwrapper.*)
This means you can define an operator in python that is called from C or Python - like any other operator.
Python functions for invoke and exec can be registered with an operator name.
keywords are read from the python exec() function, then used to create operator properties. The default python values are used to set the property type and defaults.
def exec(size=2.0, text="blah"): ...
is equivalent to...
prop = RNA_def_property(ot->srna, "size", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_default(prop, 2.0f);
prop = RNA_def_property(ot->srna, "size", PROP_STRING, PROP_NONE);
RNA_def_property_string_default(prop, "blah");
TODO -
* make use of events
* return OPERATOR_CANCELLED/OPERATOR_FINISHED.. etc
* add support for array args
* more testing
2008-12-27 14:52:49 +00:00
|
|
|
|
2008-12-21 08:53:36 +00:00
|
|
|
#include "WM_api.h"
|
|
|
|
#include "WM_types.h"
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
2009-01-02 07:54:38 +00:00
|
|
|
//#include "BKE_idprop.h"
|
|
|
|
#include "BKE_report.h"
|
2008-12-21 08:53:36 +00:00
|
|
|
|
|
|
|
extern ListBase global_ops; /* evil, temp use */
|
|
|
|
|
|
|
|
|
2008-12-28 08:41:49 +00:00
|
|
|
|
|
|
|
/* This function is only used by operators right now
|
|
|
|
* Its used for taking keyword args and filling in property values */
|
|
|
|
int PYOP_props_from_dict(PointerRNA *ptr, PyObject *kw)
|
|
|
|
{
|
|
|
|
int error_val = 0;
|
|
|
|
int totkw;
|
|
|
|
const char *arg_name= NULL;
|
|
|
|
PyObject *item;
|
|
|
|
|
|
|
|
PropertyRNA *prop, *iterprop;
|
|
|
|
CollectionPropertyIterator iter;
|
|
|
|
|
2009-04-19 13:37:59 +00:00
|
|
|
iterprop= RNA_struct_iterator_property(ptr->type);
|
2008-12-28 08:41:49 +00:00
|
|
|
RNA_property_collection_begin(ptr, iterprop, &iter);
|
|
|
|
|
|
|
|
totkw = kw ? PyDict_Size(kw):0;
|
|
|
|
|
|
|
|
for(; iter.valid; RNA_property_collection_next(&iter)) {
|
|
|
|
prop= iter.ptr.data;
|
|
|
|
|
2009-04-19 13:37:59 +00:00
|
|
|
arg_name= RNA_property_identifier(prop);
|
2008-12-28 08:41:49 +00:00
|
|
|
|
|
|
|
if (strcmp(arg_name, "rna_type")==0) continue;
|
|
|
|
|
|
|
|
if (kw==NULL) {
|
|
|
|
PyErr_Format( PyExc_AttributeError, "no args, expected \"%s\"", arg_name ? arg_name : "<UNKNOWN>");
|
|
|
|
error_val= -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
item= PyDict_GetItemString(kw, arg_name);
|
|
|
|
|
|
|
|
if (item == NULL) {
|
|
|
|
PyErr_Format( PyExc_AttributeError, "argument \"%s\" missing", arg_name ? arg_name : "<UNKNOWN>");
|
|
|
|
error_val = -1; /* pyrna_py_to_prop sets the error */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-04-16 13:21:18 +00:00
|
|
|
if (pyrna_py_to_prop(ptr, prop, NULL, item)) {
|
2008-12-28 08:41:49 +00:00
|
|
|
error_val= -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
totkw--;
|
python operators (in bpy_opwrapper.*)
This means you can define an operator in python that is called from C or Python - like any other operator.
Python functions for invoke and exec can be registered with an operator name.
keywords are read from the python exec() function, then used to create operator properties. The default python values are used to set the property type and defaults.
def exec(size=2.0, text="blah"): ...
is equivalent to...
prop = RNA_def_property(ot->srna, "size", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_default(prop, 2.0f);
prop = RNA_def_property(ot->srna, "size", PROP_STRING, PROP_NONE);
RNA_def_property_string_default(prop, "blah");
TODO -
* make use of events
* return OPERATOR_CANCELLED/OPERATOR_FINISHED.. etc
* add support for array args
* more testing
2008-12-27 14:52:49 +00:00
|
|
|
}
|
2008-12-28 08:41:49 +00:00
|
|
|
|
|
|
|
RNA_property_collection_end(&iter);
|
|
|
|
|
|
|
|
if (error_val==0 && totkw > 0) { /* some keywords were given that were not used :/ */
|
|
|
|
PyObject *key, *value;
|
|
|
|
Py_ssize_t pos = 0;
|
|
|
|
|
|
|
|
while (PyDict_Next(kw, &pos, &key, &value)) {
|
|
|
|
arg_name= _PyUnicode_AsString(key);
|
|
|
|
if (RNA_struct_find_property(ptr, arg_name) == NULL) break;
|
|
|
|
arg_name= NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyErr_Format( PyExc_AttributeError, "argument \"%s\" unrecognized", arg_name ? arg_name : "<UNKNOWN>");
|
|
|
|
error_val = -1;
|
python operators (in bpy_opwrapper.*)
This means you can define an operator in python that is called from C or Python - like any other operator.
Python functions for invoke and exec can be registered with an operator name.
keywords are read from the python exec() function, then used to create operator properties. The default python values are used to set the property type and defaults.
def exec(size=2.0, text="blah"): ...
is equivalent to...
prop = RNA_def_property(ot->srna, "size", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_default(prop, 2.0f);
prop = RNA_def_property(ot->srna, "size", PROP_STRING, PROP_NONE);
RNA_def_property_string_default(prop, "blah");
TODO -
* make use of events
* return OPERATOR_CANCELLED/OPERATOR_FINISHED.. etc
* add support for array args
* more testing
2008-12-27 14:52:49 +00:00
|
|
|
}
|
2008-12-28 08:41:49 +00:00
|
|
|
|
|
|
|
return error_val;
|
python operators (in bpy_opwrapper.*)
This means you can define an operator in python that is called from C or Python - like any other operator.
Python functions for invoke and exec can be registered with an operator name.
keywords are read from the python exec() function, then used to create operator properties. The default python values are used to set the property type and defaults.
def exec(size=2.0, text="blah"): ...
is equivalent to...
prop = RNA_def_property(ot->srna, "size", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_default(prop, 2.0f);
prop = RNA_def_property(ot->srna, "size", PROP_STRING, PROP_NONE);
RNA_def_property_string_default(prop, "blah");
TODO -
* make use of events
* return OPERATOR_CANCELLED/OPERATOR_FINISHED.. etc
* add support for array args
* more testing
2008-12-27 14:52:49 +00:00
|
|
|
}
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
static PyObject *pyop_base_dir(PyObject *self);
|
2009-03-21 06:55:30 +00:00
|
|
|
static PyObject *pyop_base_rna(PyObject *self, PyObject *pyname);
|
2009-03-05 12:09:30 +00:00
|
|
|
static struct PyMethodDef pyop_base_methods[] = {
|
2009-03-14 13:43:30 +00:00
|
|
|
{"__dir__", (PyCFunction)pyop_base_dir, METH_NOARGS, ""},
|
2009-03-21 06:55:30 +00:00
|
|
|
{"__rna__", (PyCFunction)pyop_base_rna, METH_O, ""},
|
2009-03-18 22:22:58 +00:00
|
|
|
{"add", (PyCFunction)PYOP_wrap_add, METH_O, ""},
|
2009-03-16 15:54:43 +00:00
|
|
|
{"remove", (PyCFunction)PYOP_wrap_remove, METH_O, ""},
|
2009-03-05 12:09:30 +00:00
|
|
|
{NULL, NULL, 0, NULL}
|
|
|
|
};
|
python operators (in bpy_opwrapper.*)
This means you can define an operator in python that is called from C or Python - like any other operator.
Python functions for invoke and exec can be registered with an operator name.
keywords are read from the python exec() function, then used to create operator properties. The default python values are used to set the property type and defaults.
def exec(size=2.0, text="blah"): ...
is equivalent to...
prop = RNA_def_property(ot->srna, "size", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_default(prop, 2.0f);
prop = RNA_def_property(ot->srna, "size", PROP_STRING, PROP_NONE);
RNA_def_property_string_default(prop, "blah");
TODO -
* make use of events
* return OPERATOR_CANCELLED/OPERATOR_FINISHED.. etc
* add support for array args
* more testing
2008-12-27 14:52:49 +00:00
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
/* 'self' stores the operator string */
|
|
|
|
static PyObject *pyop_base_call( PyObject * self, PyObject * args, PyObject * kw)
|
2008-12-21 08:53:36 +00:00
|
|
|
{
|
2008-12-25 10:48:36 +00:00
|
|
|
wmOperatorType *ot;
|
|
|
|
int error_val = 0;
|
|
|
|
PointerRNA ptr;
|
2009-03-14 13:43:30 +00:00
|
|
|
|
|
|
|
// XXX Todo, work out a better solution for passing on context, could make a tuple from self and pack the name and Context into it...
|
|
|
|
bContext *C = (bContext *)PyCObject_AsVoidPtr(PyDict_GetItemString(PyEval_GetGlobals(), "__bpy_context__"));
|
|
|
|
|
|
|
|
char *opname = _PyUnicode_AsString(self);
|
2009-01-02 07:54:38 +00:00
|
|
|
|
2008-12-21 08:53:36 +00:00
|
|
|
if (PyTuple_Size(args)) {
|
|
|
|
PyErr_SetString( PyExc_AttributeError, "All operator args must be keywords");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
ot= WM_operatortype_find(opname);
|
2008-12-26 12:39:53 +00:00
|
|
|
if (ot == NULL) {
|
2009-03-14 13:43:30 +00:00
|
|
|
PyErr_Format( PyExc_SystemError, "Operator \"%s\"could not be found", opname);
|
2008-12-26 12:39:53 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
if(ot->poll && (ot->poll(C) == 0)) {
|
2009-01-18 10:46:26 +00:00
|
|
|
PyErr_SetString( PyExc_SystemError, "Operator poll() function failed, context is incorrect");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
WM_operator_properties_create(&ptr, opname);
|
2008-12-28 08:41:49 +00:00
|
|
|
|
2008-12-28 13:03:37 +00:00
|
|
|
error_val= PYOP_props_from_dict(&ptr, kw);
|
2008-12-28 08:41:49 +00:00
|
|
|
|
2008-12-25 14:17:54 +00:00
|
|
|
if (error_val==0) {
|
2009-01-02 07:54:38 +00:00
|
|
|
ReportList reports;
|
|
|
|
|
|
|
|
BKE_reports_init(&reports, RPT_STORE);
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
WM_operator_call_py(C, ot, &ptr, &reports);
|
2009-01-02 07:54:38 +00:00
|
|
|
|
2009-04-19 13:37:59 +00:00
|
|
|
if(BPy_reports_to_error(&reports))
|
2009-01-02 07:54:38 +00:00
|
|
|
error_val = -1;
|
|
|
|
|
2009-04-19 13:37:59 +00:00
|
|
|
BKE_reports_clear(&reports);
|
2008-12-21 08:53:36 +00:00
|
|
|
}
|
|
|
|
|
2009-01-01 20:44:40 +00:00
|
|
|
WM_operator_properties_free(&ptr);
|
|
|
|
|
2008-12-28 13:03:37 +00:00
|
|
|
#if 0
|
|
|
|
/* if there is some way to know an operator takes args we should use this */
|
|
|
|
{
|
|
|
|
/* no props */
|
|
|
|
if (kw != NULL) {
|
2009-03-14 13:43:30 +00:00
|
|
|
PyErr_Format(PyExc_AttributeError, "Operator \"%s\" does not take any args", opname);
|
2008-12-28 13:03:37 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
WM_operator_name_call(C, opname, WM_OP_EXEC_DEFAULT, NULL);
|
2008-12-28 13:03:37 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (error_val==-1) {
|
2008-12-25 14:17:54 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-12-21 08:53:36 +00:00
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
static PyMethodDef pyop_base_call_meth[] = {
|
2009-03-21 16:03:26 +00:00
|
|
|
{"__op_call__", (PyCFunction)pyop_base_call, METH_VARARGS|METH_KEYWORDS, "generic operator calling function"}
|
2008-12-21 08:53:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
//---------------getattr--------------------------------------------
|
|
|
|
static PyObject *pyop_base_getattro( BPy_OperatorBase * self, PyObject *pyname )
|
2008-12-21 08:53:36 +00:00
|
|
|
{
|
2009-03-14 13:43:30 +00:00
|
|
|
char *name = _PyUnicode_AsString(pyname);
|
|
|
|
PyObject *ret;
|
2009-03-21 06:55:30 +00:00
|
|
|
wmOperatorType *ot;
|
2009-03-14 13:43:30 +00:00
|
|
|
|
2009-03-21 06:55:30 +00:00
|
|
|
if ((ot= WM_operatortype_find(name))) {
|
2009-03-14 13:43:30 +00:00
|
|
|
ret = PyCFunction_New( pyop_base_call_meth, pyname); /* set the name string as self, PyCFunction_New incref's self */
|
|
|
|
}
|
|
|
|
else if ((ret = PyObject_GenericGetAttr((PyObject *)self, pyname))) {
|
|
|
|
/* do nothing, this accounts for methoddef's add and remove */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyErr_Format( PyExc_AttributeError, "Operator \"%s\" not found", name);
|
|
|
|
ret= NULL;
|
2008-12-21 08:53:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
return ret;
|
2008-12-21 08:53:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
static PyObject *pyop_base_dir(PyObject *self)
|
2008-12-21 08:53:36 +00:00
|
|
|
{
|
2009-03-14 13:43:30 +00:00
|
|
|
PyObject *list = PyList_New(0), *name;
|
|
|
|
wmOperatorType *ot;
|
|
|
|
PyMethodDef *meth;
|
|
|
|
|
|
|
|
for(ot= WM_operatortype_first(); ot; ot= ot->next) {
|
|
|
|
name = PyUnicode_FromString(ot->idname);
|
|
|
|
PyList_Append(list, name);
|
|
|
|
Py_DECREF(name);
|
2008-12-21 08:53:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-14 13:43:30 +00:00
|
|
|
for(meth=pyop_base_methods; meth->ml_name; meth++) {
|
|
|
|
name = PyUnicode_FromString(meth->ml_name);
|
|
|
|
PyList_Append(list, name);
|
|
|
|
Py_DECREF(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
2008-12-21 08:53:36 +00:00
|
|
|
}
|
|
|
|
|
2009-03-21 06:55:30 +00:00
|
|
|
static PyObject *pyop_base_rna(PyObject *self, PyObject *pyname)
|
|
|
|
{
|
|
|
|
char *name = _PyUnicode_AsString(pyname);
|
|
|
|
wmOperatorType *ot;
|
|
|
|
|
|
|
|
if ((ot= WM_operatortype_find(name))) {
|
|
|
|
BPy_StructRNA *pyrna;
|
|
|
|
PointerRNA ptr;
|
|
|
|
|
|
|
|
/* XXX POINTER - if this 'ot' is python generated, it could be free'd */
|
|
|
|
RNA_pointer_create(NULL, ot->srna, NULL, &ptr);
|
|
|
|
|
|
|
|
pyrna= (BPy_StructRNA *)pyrna_struct_CreatePyObject(&ptr); /* were not really using &ptr, overwite next */
|
|
|
|
//pyrna->freeptr= 1;
|
2009-03-21 16:03:26 +00:00
|
|
|
return (PyObject *)pyrna;
|
2009-03-21 06:55:30 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-03-21 16:03:26 +00:00
|
|
|
PyErr_Format(PyExc_AttributeError, "Operator \"%s\" not found", name);
|
2009-03-21 06:55:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-15 08:58:33 +00:00
|
|
|
PyTypeObject pyop_base_Type = {NULL};
|
2009-03-14 13:43:30 +00:00
|
|
|
|
2009-04-11 05:46:40 +00:00
|
|
|
PyObject *BPY_operator_module( void )
|
2008-12-21 08:53:36 +00:00
|
|
|
{
|
2009-03-14 13:43:30 +00:00
|
|
|
pyop_base_Type.tp_name = "OperatorBase";
|
|
|
|
pyop_base_Type.tp_basicsize = sizeof( BPy_OperatorBase );
|
|
|
|
pyop_base_Type.tp_getattro = ( getattrofunc )pyop_base_getattro;
|
|
|
|
pyop_base_Type.tp_flags = Py_TPFLAGS_DEFAULT;
|
|
|
|
pyop_base_Type.tp_methods = pyop_base_methods;
|
|
|
|
|
2008-12-21 08:53:36 +00:00
|
|
|
if( PyType_Ready( &pyop_base_Type ) < 0 )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
//submodule = Py_InitModule3( "operator", M_rna_methods, "rna module" );
|
2009-03-14 13:43:30 +00:00
|
|
|
return (PyObject *)PyObject_NEW( BPy_OperatorBase, &pyop_base_Type );
|
2008-12-21 08:53:36 +00:00
|
|
|
}
|
|
|
|
|