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"
|
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
|
|
|
#include "bpy_opwrapper.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"
|
|
|
|
|
|
|
|
//#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;
|
|
|
|
|
|
|
|
iterprop= RNA_struct_iterator_property(ptr);
|
|
|
|
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;
|
|
|
|
|
|
|
|
arg_name= RNA_property_identifier(&iter.ptr, prop);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pyrna_py_to_prop(ptr, prop, item)) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2008-12-29 12:04:25 +00:00
|
|
|
|
|
|
|
|
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
|
|
|
static int pyop_func_compare( BPy_OperatorFunc * a, BPy_OperatorFunc * b )
|
|
|
|
{
|
|
|
|
return (strcmp(a->name, b->name)==0) ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
2009-02-26 05:50:19 +00:00
|
|
|
/* For some reason python3 needs these :/ */
|
2009-03-05 12:09:30 +00:00
|
|
|
static PyObject *pyop_func_richcmp(BPy_OperatorFunc * a, BPy_OperatorFunc * b, int op)
|
2009-02-26 05:50:19 +00:00
|
|
|
{
|
|
|
|
int cmp_result= -1; /* assume false */
|
|
|
|
if (BPy_OperatorFunc_Check(a) && BPy_OperatorFunc_Check(b)) {
|
|
|
|
cmp_result= pyop_func_compare(a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Py_CmpToRich(op, cmp_result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-21 08:53:36 +00:00
|
|
|
/*----------------------repr--------------------------------------------*/
|
|
|
|
static PyObject *pyop_base_repr( BPy_OperatorBase * self )
|
|
|
|
{
|
|
|
|
return PyUnicode_FromFormat( "[BPy_OperatorBase]");
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *pyop_func_repr( BPy_OperatorFunc * self )
|
|
|
|
{
|
|
|
|
return PyUnicode_FromFormat( "[BPy_OperatorFunc \"%s\"]", self->name);
|
|
|
|
}
|
|
|
|
|
2009-03-05 12:09:30 +00:00
|
|
|
static struct PyMethodDef pyop_base_methods[] = {
|
|
|
|
{"add", (PyCFunction)PYOP_wrap_add, METH_VARARGS, ""},
|
|
|
|
{"remove", (PyCFunction)PYOP_wrap_remove, METH_VARARGS, ""},
|
|
|
|
{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
|
|
|
|
2008-12-21 08:53:36 +00:00
|
|
|
//---------------getattr--------------------------------------------
|
|
|
|
static PyObject *pyop_base_getattro( BPy_OperatorBase * self, PyObject *pyname )
|
|
|
|
{
|
|
|
|
char *name = _PyUnicode_AsString(pyname);
|
|
|
|
PyObject *ret;
|
|
|
|
wmOperatorType *ot;
|
2009-03-05 17:47:33 +00:00
|
|
|
PyMethodDef *meth;
|
|
|
|
|
2008-12-29 12:04:25 +00:00
|
|
|
if ((ot = WM_operatortype_find(name))) {
|
|
|
|
ret= pyop_func_CreatePyObject(self->C, name);
|
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-05 12:09:30 +00:00
|
|
|
else if (strcmp(name, "__dict__")==0) {
|
|
|
|
ret = PyDict_New();
|
|
|
|
|
|
|
|
for(ot= WM_operatortype_first(); ot; ot= ot->next) {
|
|
|
|
PyDict_SetItemString(ret, ot->idname, Py_None);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(meth=pyop_base_methods; meth->ml_name; meth++) {
|
|
|
|
PyDict_SetItemString(ret, meth->ml_name, Py_None);
|
|
|
|
}
|
|
|
|
}
|
2008-12-29 12:04:25 +00:00
|
|
|
else if ((ret = PyObject_GenericGetAttr((PyObject *)self, pyname))) {
|
|
|
|
/* do nothing, this accounts for methoddef's add and remove */
|
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
|
|
|
}
|
|
|
|
else {
|
2008-12-29 12:04:25 +00:00
|
|
|
PyErr_Format( PyExc_AttributeError, "Operator \"%s\" not found", name);
|
|
|
|
ret= NULL;
|
2008-12-21 08:53:36 +00:00
|
|
|
}
|
2009-03-05 12:09:30 +00:00
|
|
|
|
2008-12-21 08:53:36 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-12-29 12:04:25 +00:00
|
|
|
/* getseter's */
|
|
|
|
PyObject *pyop_func_get_rna(BPy_OperatorFunc *self)
|
2008-12-29 03:24:13 +00:00
|
|
|
{
|
2008-12-29 12:04:25 +00:00
|
|
|
BPy_StructRNA *pyrna;
|
|
|
|
PointerRNA ptr;
|
|
|
|
wmOperatorType *ot;
|
2008-12-29 03:24:13 +00:00
|
|
|
|
2008-12-29 12:04:25 +00:00
|
|
|
ot= WM_operatortype_find(self->name);
|
|
|
|
if (ot == NULL) {
|
|
|
|
PyErr_SetString( PyExc_SystemError, "Operator could not be found");
|
|
|
|
return NULL;
|
2008-12-29 03:24:13 +00:00
|
|
|
}
|
|
|
|
|
2008-12-29 12:04:25 +00:00
|
|
|
/* XXX POINTER - if this 'ot' is python generated, it could be free'd */
|
2009-03-11 17:28:37 +00:00
|
|
|
RNA_pointer_create(NULL, ot->srna, NULL, &ptr);
|
|
|
|
pyrna= (BPy_StructRNA *)pyrna_struct_CreatePyObject(&ptr); /* were not really using &ptr, overwite next */
|
2009-01-08 15:29:09 +00:00
|
|
|
pyrna->freeptr= 1;
|
|
|
|
|
2008-12-29 12:04:25 +00:00
|
|
|
return (PyObject *)pyrna;
|
2008-12-29 03:24:13 +00:00
|
|
|
}
|
|
|
|
|
2008-12-29 12:04:25 +00:00
|
|
|
static PyGetSetDef pyop_func_getseters[] = {
|
2009-01-02 07:54:38 +00:00
|
|
|
{"rna", (getter)pyop_func_get_rna, (setter)NULL, "Operator RNA properties", NULL},
|
2008-12-29 12:04:25 +00:00
|
|
|
{NULL,NULL,NULL,NULL,NULL} /* Sentinel */
|
|
|
|
};
|
|
|
|
|
2008-12-21 08:53:36 +00:00
|
|
|
static PyObject * pyop_func_call(BPy_OperatorFunc * self, PyObject *args, PyObject *kw)
|
|
|
|
{
|
2008-12-25 10:48:36 +00:00
|
|
|
wmOperatorType *ot;
|
|
|
|
|
|
|
|
int error_val = 0;
|
|
|
|
PointerRNA ptr;
|
2009-01-02 07:54:38 +00:00
|
|
|
char *report_str= NULL;
|
|
|
|
|
2008-12-21 08:53:36 +00:00
|
|
|
if (PyTuple_Size(args)) {
|
|
|
|
PyErr_SetString( PyExc_AttributeError, "All operator args must be keywords");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-12-25 10:48:36 +00:00
|
|
|
ot= WM_operatortype_find(self->name);
|
2008-12-26 12:39:53 +00:00
|
|
|
if (ot == NULL) {
|
|
|
|
PyErr_SetString( PyExc_SystemError, "Operator could not be found");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-01-18 10:46:26 +00:00
|
|
|
if(ot->poll && (ot->poll(self->C) == 0)) {
|
|
|
|
PyErr_SetString( PyExc_SystemError, "Operator poll() function failed, context is incorrect");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-01-01 20:44:40 +00:00
|
|
|
WM_operator_properties_create(&ptr, self->name);
|
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-01-18 10:46:26 +00:00
|
|
|
WM_operator_call_py(self->C, ot, &ptr, &reports);
|
2009-01-02 07:54:38 +00:00
|
|
|
|
|
|
|
report_str= BKE_reports_string(&reports, RPT_ERROR);
|
|
|
|
|
|
|
|
if (report_str) {
|
|
|
|
PyErr_SetString(PyExc_SystemError, report_str);
|
|
|
|
MEM_freeN(report_str);
|
|
|
|
error_val = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reports.list.first)
|
|
|
|
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) {
|
|
|
|
PyErr_Format(PyExc_AttributeError, "Operator \"%s\" does not take any args", self->name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
WM_operator_name_call(self->C, self->name, WM_OP_EXEC_DEFAULT, NULL);
|
|
|
|
}
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------BPy_OperatorBase method def------------------------------*/
|
|
|
|
PyTypeObject pyop_base_Type = {
|
|
|
|
#if (PY_VERSION_HEX >= 0x02060000)
|
2009-01-29 09:38:52 +00:00
|
|
|
PyVarObject_HEAD_INIT(NULL, 0)
|
2008-12-21 08:53:36 +00:00
|
|
|
#else
|
|
|
|
/* python 2.5 and below */
|
|
|
|
PyObject_HEAD_INIT( NULL ) /* required py macro */
|
|
|
|
0, /* ob_size */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
"Operator", /* tp_name */
|
|
|
|
sizeof( BPy_OperatorBase ), /* tp_basicsize */
|
|
|
|
0, /* tp_itemsize */
|
|
|
|
/* methods */
|
|
|
|
NULL, /* tp_dealloc */
|
|
|
|
NULL, /* printfunc tp_print; */
|
|
|
|
NULL, /* getattrfunc tp_getattr; */
|
|
|
|
NULL, /* setattrfunc tp_setattr; */
|
|
|
|
NULL, /* tp_compare */
|
|
|
|
( reprfunc ) pyop_base_repr, /* tp_repr */
|
|
|
|
|
|
|
|
/* Method suites for standard classes */
|
|
|
|
|
|
|
|
NULL, /* PyNumberMethods *tp_as_number; */
|
|
|
|
NULL, /* PySequenceMethods *tp_as_sequence; */
|
|
|
|
NULL, /* PyMappingMethods *tp_as_mapping; */
|
|
|
|
|
|
|
|
/* More standard operations (here for binary compatibility) */
|
|
|
|
|
|
|
|
NULL, /* hashfunc tp_hash; */
|
|
|
|
NULL, /* ternaryfunc tp_call; */
|
|
|
|
NULL, /* reprfunc tp_str; */
|
|
|
|
( getattrofunc )pyop_base_getattro, /*PyObject_GenericGetAttr - MINGW Complains, assign later */ /* getattrofunc tp_getattro; */
|
|
|
|
NULL, /*PyObject_GenericSetAttr - MINGW Complains, assign later */ /* setattrofunc tp_setattro; */
|
|
|
|
|
|
|
|
/* Functions to access object as input/output buffer */
|
|
|
|
NULL, /* PyBufferProcs *tp_as_buffer; */
|
|
|
|
|
|
|
|
/*** Flags to define presence of optional/expanded features ***/
|
|
|
|
Py_TPFLAGS_DEFAULT, /* long tp_flags; */
|
|
|
|
|
|
|
|
NULL, /* char *tp_doc; Documentation string */
|
|
|
|
/*** Assigned meaning in release 2.0 ***/
|
|
|
|
/* call function for all accessible objects */
|
|
|
|
NULL, /* traverseproc tp_traverse; */
|
|
|
|
|
|
|
|
/* delete references to contained objects */
|
|
|
|
NULL, /* inquiry tp_clear; */
|
|
|
|
|
|
|
|
/*** Assigned meaning in release 2.1 ***/
|
|
|
|
/*** rich comparisons ***/
|
|
|
|
NULL, /* richcmpfunc tp_richcompare; */
|
|
|
|
|
|
|
|
/*** weak reference enabler ***/
|
|
|
|
0, /* long tp_weaklistoffset; */
|
|
|
|
|
|
|
|
/*** Added in release 2.2 ***/
|
|
|
|
/* Iterators */
|
|
|
|
NULL, /* getiterfunc tp_iter; */
|
|
|
|
NULL, /* iternextfunc tp_iternext; */
|
|
|
|
|
|
|
|
/*** Attribute descriptor and subclassing stuff ***/
|
2008-12-29 12:04:25 +00:00
|
|
|
pyop_base_methods, /* struct PyMethodDef *tp_methods; */
|
2008-12-21 08:53:36 +00:00
|
|
|
NULL, /* struct PyMemberDef *tp_members; */
|
2008-12-29 12:04:25 +00:00
|
|
|
NULL, /* struct PyGetSetDef *tp_getset; */
|
2008-12-21 08:53:36 +00:00
|
|
|
NULL, /* struct _typeobject *tp_base; */
|
|
|
|
NULL, /* PyObject *tp_dict; */
|
|
|
|
NULL, /* descrgetfunc tp_descr_get; */
|
|
|
|
NULL, /* descrsetfunc tp_descr_set; */
|
|
|
|
0, /* long tp_dictoffset; */
|
|
|
|
NULL, /* initproc tp_init; */
|
|
|
|
NULL, /* allocfunc tp_alloc; */
|
|
|
|
NULL, /* newfunc tp_new; */
|
|
|
|
/* Low-level free-memory routine */
|
|
|
|
NULL, /* freefunc tp_free; */
|
|
|
|
/* For PyObject_IS_GC */
|
|
|
|
NULL, /* inquiry tp_is_gc; */
|
|
|
|
NULL, /* PyObject *tp_bases; */
|
|
|
|
/* method resolution order */
|
|
|
|
NULL, /* PyObject *tp_mro; */
|
|
|
|
NULL, /* PyObject *tp_cache; */
|
|
|
|
NULL, /* PyObject *tp_subclasses; */
|
|
|
|
NULL, /* PyObject *tp_weaklist; */
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
/*-----------------------BPy_OperatorBase method def------------------------------*/
|
|
|
|
PyTypeObject pyop_func_Type = {
|
|
|
|
#if (PY_VERSION_HEX >= 0x02060000)
|
2009-01-29 09:38:52 +00:00
|
|
|
PyVarObject_HEAD_INIT(NULL, 0)
|
2008-12-21 08:53:36 +00:00
|
|
|
#else
|
|
|
|
/* python 2.5 and below */
|
|
|
|
PyObject_HEAD_INIT( NULL ) /* required py macro */
|
|
|
|
0, /* ob_size */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
"OperatorFunc", /* tp_name */
|
|
|
|
sizeof( BPy_OperatorFunc ), /* tp_basicsize */
|
|
|
|
0, /* tp_itemsize */
|
|
|
|
/* methods */
|
|
|
|
NULL, /* tp_dealloc */
|
|
|
|
NULL, /* printfunc tp_print; */
|
|
|
|
NULL, /* getattrfunc tp_getattr; */
|
|
|
|
NULL, /* setattrfunc tp_setattr; */
|
2009-02-26 05:50:19 +00:00
|
|
|
NULL, /* tp_compare */ /* DEPRECATED in python 3.0! */
|
2008-12-21 08:53:36 +00:00
|
|
|
( reprfunc ) pyop_func_repr, /* tp_repr */
|
|
|
|
|
|
|
|
/* Method suites for standard classes */
|
|
|
|
|
|
|
|
NULL, /* PyNumberMethods *tp_as_number; */
|
|
|
|
NULL, /* PySequenceMethods *tp_as_sequence; */
|
|
|
|
NULL, /* PyMappingMethods *tp_as_mapping; */
|
|
|
|
|
|
|
|
/* More standard operations (here for binary compatibility) */
|
|
|
|
|
|
|
|
NULL, /* hashfunc tp_hash; */
|
|
|
|
(ternaryfunc)pyop_func_call, /* ternaryfunc tp_call; */
|
|
|
|
NULL, /* reprfunc tp_str; */
|
2008-12-29 12:04:25 +00:00
|
|
|
NULL, /* getattrofunc tp_getattro; */
|
2008-12-21 08:53:36 +00:00
|
|
|
NULL, /*PyObject_GenericSetAttr - MINGW Complains, assign later */ /* setattrofunc tp_setattro; */
|
|
|
|
|
|
|
|
/* Functions to access object as input/output buffer */
|
|
|
|
NULL, /* PyBufferProcs *tp_as_buffer; */
|
|
|
|
|
|
|
|
/*** Flags to define presence of optional/expanded features ***/
|
|
|
|
Py_TPFLAGS_DEFAULT, /* long tp_flags; */
|
|
|
|
|
|
|
|
NULL, /* char *tp_doc; Documentation string */
|
|
|
|
/*** Assigned meaning in release 2.0 ***/
|
|
|
|
/* call function for all accessible objects */
|
|
|
|
NULL, /* traverseproc tp_traverse; */
|
|
|
|
|
|
|
|
/* delete references to contained objects */
|
|
|
|
NULL, /* inquiry tp_clear; */
|
|
|
|
|
|
|
|
/*** Assigned meaning in release 2.1 ***/
|
|
|
|
/*** rich comparisons ***/
|
2009-02-26 05:50:19 +00:00
|
|
|
(richcmpfunc)pyop_func_richcmp, /* richcmpfunc tp_richcompare; */
|
2008-12-21 08:53:36 +00:00
|
|
|
|
|
|
|
/*** weak reference enabler ***/
|
|
|
|
0, /* long tp_weaklistoffset; */
|
|
|
|
|
|
|
|
/*** Added in release 2.2 ***/
|
|
|
|
/* Iterators */
|
|
|
|
NULL, /* getiterfunc tp_iter; */
|
|
|
|
NULL, /* iternextfunc tp_iternext; */
|
|
|
|
|
|
|
|
/*** Attribute descriptor and subclassing stuff ***/
|
|
|
|
NULL, /* struct PyMethodDef *tp_methods; */
|
|
|
|
NULL, /* struct PyMemberDef *tp_members; */
|
2008-12-29 12:04:25 +00:00
|
|
|
pyop_func_getseters, /* struct PyGetSetDef *tp_getset; */
|
2008-12-21 08:53:36 +00:00
|
|
|
NULL, /* struct _typeobject *tp_base; */
|
|
|
|
NULL, /* PyObject *tp_dict; */
|
|
|
|
NULL, /* descrgetfunc tp_descr_get; */
|
|
|
|
NULL, /* descrsetfunc tp_descr_set; */
|
|
|
|
0, /* long tp_dictoffset; */
|
|
|
|
NULL, /* initproc tp_init; */
|
|
|
|
NULL, /* allocfunc tp_alloc; */
|
|
|
|
NULL, /* newfunc tp_new; */
|
|
|
|
/* Low-level free-memory routine */
|
|
|
|
NULL, /* freefunc tp_free; */
|
|
|
|
/* For PyObject_IS_GC */
|
|
|
|
NULL, /* inquiry tp_is_gc; */
|
|
|
|
NULL, /* PyObject *tp_bases; */
|
|
|
|
/* method resolution order */
|
|
|
|
NULL, /* PyObject *tp_mro; */
|
|
|
|
NULL, /* PyObject *tp_cache; */
|
|
|
|
NULL, /* PyObject *tp_subclasses; */
|
|
|
|
NULL, /* PyObject *tp_weaklist; */
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
PyObject *pyop_base_CreatePyObject( bContext *C )
|
|
|
|
{
|
|
|
|
BPy_OperatorBase *pyop;
|
|
|
|
|
|
|
|
pyop = ( BPy_OperatorBase * ) PyObject_NEW( BPy_OperatorBase, &pyop_base_Type );
|
|
|
|
|
|
|
|
if( !pyop ) {
|
|
|
|
PyErr_SetString( PyExc_MemoryError, "couldn't create BPy_OperatorBase object" );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
pyop->C = C; /* TODO - copy this? */
|
|
|
|
|
|
|
|
return ( PyObject * ) pyop;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *pyop_func_CreatePyObject( bContext *C, char *name )
|
|
|
|
{
|
|
|
|
BPy_OperatorFunc *pyop;
|
|
|
|
|
|
|
|
pyop = ( BPy_OperatorFunc * ) PyObject_NEW( BPy_OperatorFunc, &pyop_func_Type );
|
|
|
|
|
|
|
|
if( !pyop ) {
|
|
|
|
PyErr_SetString( PyExc_MemoryError, "couldn't create BPy_OperatorFunc object" );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(pyop->name, name);
|
|
|
|
pyop->C= C; /* TODO - how should contexts be dealt with? */
|
|
|
|
|
|
|
|
return ( PyObject * ) pyop;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *BPY_operator_module( bContext *C )
|
|
|
|
{
|
|
|
|
if( PyType_Ready( &pyop_base_Type ) < 0 )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if( PyType_Ready( &pyop_func_Type ) < 0 )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
//submodule = Py_InitModule3( "operator", M_rna_methods, "rna module" );
|
|
|
|
return pyop_base_CreatePyObject(C);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|