soc-2008-mxcurioni: reimplemented the initialization/allocation for base classes. The Python object type tp_new slot is now set to PyType_GenericNew, instead of the former custom functions. As a note, by default, Python does not set this slot: it is therefore mandatory for the base classes. For children classes, only __init__ is needed.
To make our base classes subclasses, the Py_TPFLAGS_BASETYPE flag was added to the object type tp_flags slot.
Finally, I began to implement CurvePoint, descendant of Interface0D. This commit allowed me to verify that my SWIG replacement method works: interfaces are well taken into account by children. For a test, use the following code:
================================
import Blender
from Blender import Freestyle
from Blender.Freestyle import *
print Interface0D()
print CurvePoint()
================================
The __repr__ method is only implemented in Interface0D:
PyObject * Interface0D___repr__(BPy_Interface0D* self)
{
return PyString_FromFormat("type: %s - address: %p", self->if0D->getExactTypeName().c_str(), self->if0D );}
and the result is of the form:
type: Interface0D - address: 0x18e5ccc0
type: CurvePoint - address: 0x18e473f0
As you can see, the correct getExactTypeName of the class is called.
This commit is contained in:
@@ -9,7 +9,7 @@ extern "C" {
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/*--------------- Python API function prototypes for Interface1D instance -----------*/
|
||||
static PyObject * Interface1D___new__(PyTypeObject *type, PyObject *args, PyObject *kwds);
|
||||
static int Interface1D___init__(BPy_Interface1D *self, PyObject *args, PyObject *kwds);
|
||||
static void Interface1D___dealloc__(BPy_Interface1D *self);
|
||||
static PyObject * Interface1D___repr__(BPy_Interface1D *self);
|
||||
|
||||
@@ -70,7 +70,7 @@ PyTypeObject Interface1D_Type = {
|
||||
NULL, /* PyBufferProcs *tp_as_buffer; */
|
||||
|
||||
/*** Flags to define presence of optional/expanded features ***/
|
||||
Py_TPFLAGS_DEFAULT, /* long tp_flags; */
|
||||
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* long tp_flags; */
|
||||
|
||||
NULL, /* char *tp_doc; Documentation string */
|
||||
/*** Assigned meaning in release 2.0 ***/
|
||||
@@ -101,9 +101,9 @@ PyTypeObject Interface1D_Type = {
|
||||
NULL, /* descrgetfunc tp_descr_get; */
|
||||
NULL, /* descrsetfunc tp_descr_set; */
|
||||
0, /* long tp_dictoffset; */
|
||||
NULL, /* initproc tp_init; */
|
||||
(initproc)Interface1D___init__, /* initproc tp_init; */
|
||||
NULL, /* allocfunc tp_alloc; */
|
||||
(newfunc)Interface1D___new__, /* newfunc tp_new; */
|
||||
PyType_GenericNew, /* newfunc tp_new; */
|
||||
|
||||
/* Low-level free-memory routine */
|
||||
NULL, /* freefunc tp_free; */
|
||||
@@ -135,16 +135,10 @@ PyMODINIT_FUNC Interface1D_Init( PyObject *module )
|
||||
|
||||
//------------------------INSTANCE METHODS ----------------------------------
|
||||
|
||||
PyObject * Interface1D___new__(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
||||
int Interface1D___init__(BPy_Interface1D *self, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
BPy_Interface1D *self;
|
||||
|
||||
self = (BPy_Interface1D *)type->tp_alloc(type, 0);
|
||||
if (self != NULL) {
|
||||
self->if1D = new Interface1D();
|
||||
}
|
||||
|
||||
return (PyObject *)self;
|
||||
self->if1D = new Interface1D();
|
||||
return 0;
|
||||
}
|
||||
|
||||
void Interface1D___dealloc__(BPy_Interface1D* self)
|
||||
|
||||
Reference in New Issue
Block a user