2008-11-07 02:58:25 +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): Blender Foundation (2008).
|
|
|
|
|
*
|
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2008-11-17 18:44:06 +00:00
|
|
|
#include <stdio.h>
|
2008-11-07 02:58:25 +00:00
|
|
|
|
2009-06-07 13:09:18 +00:00
|
|
|
#include "RNA_access.h"
|
2008-11-07 02:58:25 +00:00
|
|
|
#include "RNA_define.h"
|
|
|
|
|
#include "RNA_types.h"
|
|
|
|
|
|
|
|
|
|
#include "DNA_ID.h"
|
|
|
|
|
|
2009-06-03 23:16:51 +00:00
|
|
|
#include "rna_internal.h"
|
|
|
|
|
|
2008-11-07 02:58:25 +00:00
|
|
|
#ifdef RNA_RUNTIME
|
|
|
|
|
|
2008-11-17 18:44:06 +00:00
|
|
|
#include "BKE_idprop.h"
|
2009-03-14 23:17:55 +00:00
|
|
|
#include "BKE_library.h"
|
2008-11-17 18:44:06 +00:00
|
|
|
|
2008-11-07 02:58:25 +00:00
|
|
|
/* name functions that ignore the first two ID characters */
|
2009-01-08 13:57:29 +00:00
|
|
|
void rna_ID_name_get(PointerRNA *ptr, char *value)
|
2008-11-07 02:58:25 +00:00
|
|
|
{
|
|
|
|
|
ID *id= (ID*)ptr->data;
|
|
|
|
|
BLI_strncpy(value, id->name+2, sizeof(id->name)-2);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-08 13:57:29 +00:00
|
|
|
int rna_ID_name_length(PointerRNA *ptr)
|
2008-11-07 02:58:25 +00:00
|
|
|
{
|
|
|
|
|
ID *id= (ID*)ptr->data;
|
|
|
|
|
return strlen(id->name+2);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-08 13:57:29 +00:00
|
|
|
void rna_ID_name_set(PointerRNA *ptr, const char *value)
|
2008-11-07 02:58:25 +00:00
|
|
|
{
|
|
|
|
|
ID *id= (ID*)ptr->data;
|
|
|
|
|
BLI_strncpy(id->name+2, value, sizeof(id->name)-2);
|
2009-03-14 23:17:55 +00:00
|
|
|
test_idbutton(id->name+2);
|
2008-11-07 02:58:25 +00:00
|
|
|
}
|
|
|
|
|
|
2009-06-07 13:09:18 +00:00
|
|
|
short RNA_type_to_ID_code(StructRNA *type)
|
2008-11-17 18:44:06 +00:00
|
|
|
{
|
2009-06-07 13:09:18 +00:00
|
|
|
if(RNA_struct_is_a(type, &RNA_Action)) return ID_AC;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Armature)) return ID_AR;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Brush)) return ID_BR;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Camera)) return ID_CA;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Curve)) return ID_CU;
|
2009-09-03 05:12:34 +00:00
|
|
|
if(RNA_struct_is_a(type, &RNA_GreasePencil)) return ID_GD;
|
2009-06-07 13:09:18 +00:00
|
|
|
if(RNA_struct_is_a(type, &RNA_Group)) return ID_GR;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Image)) return ID_IM;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Key)) return ID_KE;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Lamp)) return ID_LA;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Library)) return ID_LI;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Lattice)) return ID_LT;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Material)) return ID_MA;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_MetaBall)) return ID_MB;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_NodeTree)) return ID_NT;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Mesh)) return ID_ME;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Object)) return ID_OB;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_ParticleSettings)) return ID_PA;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Scene)) return ID_SCE;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Screen)) return ID_SCR;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Sound)) return ID_SO;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Text)) return ID_TXT;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_Texture)) return ID_TE;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_VectorFont)) return ID_VF;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_World)) return ID_WO;
|
|
|
|
|
if(RNA_struct_is_a(type, &RNA_WindowManager)) return ID_WM;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2008-11-17 18:44:06 +00:00
|
|
|
|
2009-06-07 13:09:18 +00:00
|
|
|
StructRNA *ID_code_to_RNA_type(short idcode)
|
|
|
|
|
{
|
|
|
|
|
switch(idcode) {
|
2009-01-05 16:31:00 +00:00
|
|
|
case ID_AC: return &RNA_Action;
|
2008-12-09 11:29:40 +00:00
|
|
|
case ID_AR: return &RNA_Armature;
|
2008-12-01 06:52:18 +00:00
|
|
|
case ID_BR: return &RNA_Brush;
|
2008-11-29 19:53:49 +00:00
|
|
|
case ID_CA: return &RNA_Camera;
|
2008-12-01 19:02:27 +00:00
|
|
|
case ID_CU: return &RNA_Curve;
|
2009-08-27 06:03:41 +00:00
|
|
|
case ID_GD: return &RNA_GreasePencil;
|
2008-11-30 05:07:57 +00:00
|
|
|
case ID_GR: return &RNA_Group;
|
2008-11-30 18:39:49 +00:00
|
|
|
case ID_IM: return &RNA_Image;
|
2008-12-03 21:18:10 +00:00
|
|
|
case ID_KE: return &RNA_Key;
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
case ID_LA: return &RNA_Lamp;
|
2008-11-29 19:08:46 +00:00
|
|
|
case ID_LI: return &RNA_Library;
|
2008-11-30 16:38:56 +00:00
|
|
|
case ID_LT: return &RNA_Lattice;
|
2008-11-27 13:36:28 +00:00
|
|
|
case ID_MA: return &RNA_Material;
|
2008-11-30 20:18:55 +00:00
|
|
|
case ID_MB: return &RNA_MetaBall;
|
2008-11-29 01:04:15 +00:00
|
|
|
case ID_NT: return &RNA_NodeTree;
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
case ID_ME: return &RNA_Mesh;
|
|
|
|
|
case ID_OB: return &RNA_Object;
|
2009-02-17 21:07:01 +00:00
|
|
|
case ID_PA: return &RNA_ParticleSettings;
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
case ID_SCE: return &RNA_Scene;
|
2008-11-29 01:04:15 +00:00
|
|
|
case ID_SCR: return &RNA_Screen;
|
2008-12-26 16:50:05 +00:00
|
|
|
case ID_SO: return &RNA_Sound;
|
2008-12-31 15:02:40 +00:00
|
|
|
case ID_TXT: return &RNA_Text;
|
2009-01-02 23:05:28 +00:00
|
|
|
case ID_TE: return &RNA_Texture;
|
2008-12-02 23:45:11 +00:00
|
|
|
case ID_VF: return &RNA_VectorFont;
|
2008-11-30 22:48:43 +00:00
|
|
|
case ID_WO: return &RNA_World;
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
case ID_WM: return &RNA_WindowManager;
|
|
|
|
|
default: return &RNA_ID;
|
|
|
|
|
}
|
2008-11-17 18:44:06 +00:00
|
|
|
}
|
|
|
|
|
|
2009-06-07 13:09:18 +00:00
|
|
|
StructRNA *rna_ID_refine(PointerRNA *ptr)
|
|
|
|
|
{
|
|
|
|
|
ID *id= (ID*)ptr->data;
|
|
|
|
|
|
|
|
|
|
return ID_code_to_RNA_type(GS(id->name));
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-20 09:52:02 +00:00
|
|
|
IDProperty *rna_ID_idproperties(PointerRNA *ptr, int create)
|
|
|
|
|
{
|
|
|
|
|
return IDP_GetProperties(ptr->data, create);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-08 13:57:29 +00:00
|
|
|
void rna_ID_fake_user_set(PointerRNA *ptr, int value)
|
2008-11-29 19:08:46 +00:00
|
|
|
{
|
|
|
|
|
ID *id= (ID*)ptr->data;
|
|
|
|
|
|
|
|
|
|
if(value && !(id->flag & LIB_FAKEUSER)) {
|
|
|
|
|
id->flag |= LIB_FAKEUSER;
|
|
|
|
|
id->us++;
|
|
|
|
|
}
|
|
|
|
|
else if(!value && (id->flag & LIB_FAKEUSER)) {
|
|
|
|
|
id->flag &= ~LIB_FAKEUSER;
|
|
|
|
|
id->us--;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-20 09:52:02 +00:00
|
|
|
IDProperty *rna_IDPropertyGroup_idproperties(PointerRNA *ptr, int create)
|
|
|
|
|
{
|
|
|
|
|
return ptr->data;
|
|
|
|
|
}
|
|
|
|
|
|
2.5: RNA, defining enums, pointers and collections properties is now
possible from python, but it's still work in progress.
Pointers and collections are restricted to types derived from
IDPropertyGroup (same as for operators), because RNA knows how to
allocate/deallocate those.
Collections have .add() and .remove(number) functions that can be
used. The remove function should be fixed to take an other argument
than a number.
With the IDPropertyGroup restriction, pointers are more like nested
structs. They don't have add(), remove() yet, not sure where to put
them. Currently the pointer / nested struct is automatically allocated
in the get() function, this needs to be fixed, rule is that RNA get()
will not change any data for thread safety.
Also, it is only possible to add properties to structs after they have
been registered, which needs to be improved as well.
Example code:
http://www.pasteall.org/7201/python
2009-08-18 01:29:25 +00:00
|
|
|
void rna_IDPropertyGroup_unregister(const bContext *C, StructRNA *type)
|
|
|
|
|
{
|
|
|
|
|
RNA_struct_free(&BLENDER_RNA, type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StructRNA *rna_IDPropertyGroup_register(const bContext *C, ReportList *reports, void *data, const char *identifier, StructValidateFunc validate, StructCallbackFunc call, StructFreeFunc free)
|
|
|
|
|
{
|
|
|
|
|
PointerRNA dummyptr;
|
|
|
|
|
|
|
|
|
|
/* create dummy pointer */
|
|
|
|
|
RNA_pointer_create(NULL, &RNA_IDPropertyGroup, NULL, &dummyptr);
|
|
|
|
|
|
|
|
|
|
/* validate the python class */
|
|
|
|
|
if(validate(&dummyptr, data, NULL) != 0)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
return RNA_def_struct(&BLENDER_RNA, identifier, "IDPropertyGroup"); // XXX
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StructRNA* rna_IDPropertyGroup_refine(PointerRNA *ptr)
|
|
|
|
|
{
|
|
|
|
|
return ptr->type;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-07 02:58:25 +00:00
|
|
|
#else
|
|
|
|
|
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
static void rna_def_ID_properties(BlenderRNA *brna)
|
2008-11-17 18:44:06 +00:00
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
|
|
|
|
/* this is struct is used for holding the virtual
|
|
|
|
|
* PropertyRNA's for ID properties */
|
2008-12-19 04:06:24 +00:00
|
|
|
srna= RNA_def_struct(brna, "IDProperty", NULL);
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "ID Property", "Property that stores arbitrary, user defined properties.");
|
2008-12-19 04:06:24 +00:00
|
|
|
|
2008-11-17 18:44:06 +00:00
|
|
|
/* IDP_STRING */
|
|
|
|
|
prop= RNA_def_property(srna, "string", PROP_STRING, PROP_NONE);
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
|
2008-11-17 18:44:06 +00:00
|
|
|
|
|
|
|
|
/* IDP_INT */
|
|
|
|
|
prop= RNA_def_property(srna, "int", PROP_INT, PROP_NONE);
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
|
2008-11-17 18:44:06 +00:00
|
|
|
|
2009-01-10 22:57:33 +00:00
|
|
|
prop= RNA_def_property(srna, "int_array", PROP_INT, PROP_NONE);
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
|
2008-11-17 18:44:06 +00:00
|
|
|
RNA_def_property_array(prop, 1);
|
|
|
|
|
|
|
|
|
|
/* IDP_FLOAT */
|
|
|
|
|
prop= RNA_def_property(srna, "float", PROP_FLOAT, PROP_NONE);
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
|
2008-11-17 18:44:06 +00:00
|
|
|
|
2009-01-10 22:57:33 +00:00
|
|
|
prop= RNA_def_property(srna, "float_array", PROP_FLOAT, PROP_NONE);
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
|
2008-11-17 18:44:06 +00:00
|
|
|
RNA_def_property_array(prop, 1);
|
|
|
|
|
|
|
|
|
|
/* IDP_DOUBLE */
|
|
|
|
|
prop= RNA_def_property(srna, "double", PROP_FLOAT, PROP_NONE);
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
|
2008-11-17 18:44:06 +00:00
|
|
|
|
2009-01-10 22:57:33 +00:00
|
|
|
prop= RNA_def_property(srna, "double_array", PROP_FLOAT, PROP_NONE);
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
|
2008-11-17 18:44:06 +00:00
|
|
|
RNA_def_property_array(prop, 1);
|
|
|
|
|
|
|
|
|
|
/* IDP_GROUP */
|
|
|
|
|
prop= RNA_def_property(srna, "group", PROP_POINTER, PROP_NONE);
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
|
|
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
|
2008-11-17 18:44:06 +00:00
|
|
|
RNA_def_property_struct_type(prop, "IDPropertyGroup");
|
|
|
|
|
|
RNA:
* Added support for using pointers + collections as operator properties,
but with the restriction that they must point to other type derived from
ID property groups. The "add" function for these properties will allocate
a new ID property group and point to that.
* Added support for arrays with type IDP_GROUP in ID properties.
* Fix bug getting/setting float array values.
Example code for collections, note the "OperatorMousePath" type is defined
in rna_wm.c and has a float[2] property named "loc".
Defining the operator property:
prop= RNA_def_property(ot->srna, "path", PROP_COLLECTION, PROP_NONE);
RNA_def_property_struct_runtime(prop, &RNA_OperatorMousePath);
Adding values:
PointerRNA itemptr;
float loc[2] = {1, 1},
RNA_collection_add(op->ptr, "path", &itemptr);
RNA_float_set_array(&itemptr, "loc", loc);
Iterating:
RNA_BEGIN(op->ptr, itemptr, "path") {
float loc[2];
RNA_float_get_array(&itemptr, "loc", loc);
printf("Location: %f %f\n", loc[0], loc[1]);
}
RNA_END;
2008-12-26 20:38:52 +00:00
|
|
|
prop= RNA_def_property(srna, "collection", PROP_COLLECTION, PROP_NONE);
|
|
|
|
|
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
|
|
|
|
|
RNA_def_property_struct_type(prop, "IDPropertyGroup");
|
|
|
|
|
|
2008-11-17 18:44:06 +00:00
|
|
|
/* IDP_ID -- not implemented yet in id properties */
|
|
|
|
|
|
|
|
|
|
/* ID property groups > level 0, since level 0 group is merged
|
|
|
|
|
* with native RNA properties. the builtin_properties will take
|
|
|
|
|
* care of the properties here */
|
2008-12-19 04:06:24 +00:00
|
|
|
srna= RNA_def_struct(brna, "IDPropertyGroup", NULL);
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "ID Property Group", "Group of ID properties.");
|
2009-05-20 09:52:02 +00:00
|
|
|
RNA_def_struct_idproperties_func(srna, "rna_IDPropertyGroup_idproperties");
|
2.5: RNA, defining enums, pointers and collections properties is now
possible from python, but it's still work in progress.
Pointers and collections are restricted to types derived from
IDPropertyGroup (same as for operators), because RNA knows how to
allocate/deallocate those.
Collections have .add() and .remove(number) functions that can be
used. The remove function should be fixed to take an other argument
than a number.
With the IDPropertyGroup restriction, pointers are more like nested
structs. They don't have add(), remove() yet, not sure where to put
them. Currently the pointer / nested struct is automatically allocated
in the get() function, this needs to be fixed, rule is that RNA get()
will not change any data for thread safety.
Also, it is only possible to add properties to structs after they have
been registered, which needs to be improved as well.
Example code:
http://www.pasteall.org/7201/python
2009-08-18 01:29:25 +00:00
|
|
|
RNA_def_struct_register_funcs(srna, "rna_IDPropertyGroup_register", "rna_IDPropertyGroup_unregister");
|
|
|
|
|
RNA_def_struct_refine_func(srna, "rna_IDPropertyGroup_refine");
|
2008-11-17 18:44:06 +00:00
|
|
|
}
|
|
|
|
|
|
2008-11-29 19:08:46 +00:00
|
|
|
static void rna_def_ID(BlenderRNA *brna)
|
2008-11-07 02:58:25 +00:00
|
|
|
{
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
StructRNA *srna;
|
2008-11-07 02:58:25 +00:00
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna= RNA_def_struct(brna, "ID", NULL);
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "ID", "Base type for datablocks, defining a unique name, linking from other libraries and garbage collection.");
|
2009-05-29 15:12:31 +00:00
|
|
|
RNA_def_struct_flag(srna, STRUCT_ID|STRUCT_ID_REFCOUNT);
|
2009-01-01 15:52:51 +00:00
|
|
|
RNA_def_struct_refine_func(srna, "rna_ID_refine");
|
2009-05-20 09:52:02 +00:00
|
|
|
RNA_def_struct_idproperties_func(srna, "rna_ID_idproperties");
|
2008-11-07 02:58:25 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "name", PROP_STRING, PROP_NONE);
|
2008-11-30 14:00:14 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Name", "Unique datablock ID name.");
|
2008-11-07 02:58:25 +00:00
|
|
|
RNA_def_property_string_funcs(prop, "rna_ID_name_get", "rna_ID_name_length", "rna_ID_name_set");
|
2008-12-15 10:48:04 +00:00
|
|
|
RNA_def_property_string_maxlength(prop, sizeof(((ID*)NULL)->name)-2);
|
2008-11-07 02:58:25 +00:00
|
|
|
RNA_def_struct_name_property(srna, prop);
|
2008-11-29 19:08:46 +00:00
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "users", PROP_INT, PROP_UNSIGNED);
|
|
|
|
|
RNA_def_property_int_sdna(prop, NULL, "us");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
|
2008-11-29 19:08:46 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Users", "Number of times this datablock is referenced.");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "fake_user", PROP_BOOLEAN, PROP_NONE);
|
|
|
|
|
RNA_def_property_boolean_sdna(prop, NULL, "flag", LIB_FAKEUSER);
|
|
|
|
|
RNA_def_property_ui_text(prop, "Fake User", "Saves this datablock even if it has no users");
|
|
|
|
|
RNA_def_property_boolean_funcs(prop, NULL, "rna_ID_fake_user_set");
|
|
|
|
|
|
|
|
|
|
prop= RNA_def_property(srna, "library", PROP_POINTER, PROP_NONE);
|
|
|
|
|
RNA_def_property_pointer_sdna(prop, NULL, "lib");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
|
2008-11-29 19:08:46 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Library", "Library file the datablock is linked from.");
|
2008-11-07 02:58:25 +00:00
|
|
|
}
|
|
|
|
|
|
2008-11-29 19:08:46 +00:00
|
|
|
static void rna_def_library(BlenderRNA *brna)
|
|
|
|
|
{
|
|
|
|
|
StructRNA *srna;
|
|
|
|
|
PropertyRNA *prop;
|
|
|
|
|
|
2008-12-19 04:06:24 +00:00
|
|
|
srna= RNA_def_struct(brna, "Library", "ID");
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Library", "External .blend file from which data is linked.");
|
2009-06-03 23:16:51 +00:00
|
|
|
RNA_def_struct_ui_icon(srna, ICON_LIBRARY_DATA_DIRECT);
|
2008-11-29 19:08:46 +00:00
|
|
|
|
2008-11-30 00:57:32 +00:00
|
|
|
prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
|
2008-11-29 19:08:46 +00:00
|
|
|
RNA_def_property_string_sdna(prop, NULL, "name");
|
2009-03-23 13:24:48 +00:00
|
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
|
2008-11-29 19:08:46 +00:00
|
|
|
RNA_def_property_ui_text(prop, "Filename", "Path to the library .blend file.");
|
|
|
|
|
}
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
void RNA_def_ID(BlenderRNA *brna)
|
2008-11-17 18:44:06 +00:00
|
|
|
{
|
2008-12-19 04:06:24 +00:00
|
|
|
StructRNA *srna;
|
2009-01-10 22:57:33 +00:00
|
|
|
|
2009-04-07 00:49:39 +00:00
|
|
|
/* built-in unknown type */
|
2008-12-19 04:06:24 +00:00
|
|
|
srna= RNA_def_struct(brna, "UnknownType", NULL);
|
2009-01-10 22:57:33 +00:00
|
|
|
RNA_def_struct_ui_text(srna, "Unknown Type", "Stub RNA type used for pointers to unknown or internal data.");
|
2008-11-30 15:55:14 +00:00
|
|
|
|
2009-04-07 00:49:39 +00:00
|
|
|
/* built-in any type */
|
|
|
|
|
srna= RNA_def_struct(brna, "AnyType", NULL);
|
|
|
|
|
RNA_def_struct_ui_text(srna, "Any Type", "RNA type used for pointers to any possible data.");
|
|
|
|
|
|
RNA
* More ID property support. What was already possible was showing
ID properties as RNA properties. Now it is possible to define
RNA properties and have an ID property automatically created the
first time it is set (if not set it retuns the default).
* Added support for defining RNA structs and properties at runtime.
This is useful for python and plugins, and could also be used
for operators, not sure yet what is best there, they could be done
in preprocess for speed, but not sure how to do that while keeping
operator registration a single function.
* Added quick functions to get/set properties based on names, to be
used for operators.
* Added some simple support for inheritance, was already doing this
but having it as a feature simplifies things. Two things were added
for this: when defining a struct you can give a 'from' struct whose
properties will be copied, and structs like ID, operator, modifier,
can define a refine callback that will return the more specific type
of the struct like ID -> Object, Mesh, .. .
* Added simple windowmanager wrap with only the registered operators
list, used for testing RNA for operators.
2008-11-21 02:23:46 +00:00
|
|
|
rna_def_ID(brna);
|
|
|
|
|
rna_def_ID_properties(brna);
|
2008-11-29 19:08:46 +00:00
|
|
|
rna_def_library(brna);
|
2008-11-17 18:44:06 +00:00
|
|
|
}
|
|
|
|
|
|
2008-11-07 02:58:25 +00:00
|
|
|
#endif
|
|
|
|
|
|