Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/makesrna/RNA_types.h2
-rw-r--r--source/blender/makesrna/intern/rna_main_api.c73
2 files changed, 75 insertions, 0 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index 5ec2320e2dc..b5f3abf8b25 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -333,6 +333,8 @@ typedef struct ExtensionRNA {
#define MainLamps Main
#define MainObjects Main
#define MainTexts Main
+#define MainActions Main
+#define MainGroups Main
#ifdef __cplusplus
}
diff --git a/source/blender/makesrna/intern/rna_main_api.c b/source/blender/makesrna/intern/rna_main_api.c
index 737f570df67..a1cc8bbabc8 100644
--- a/source/blender/makesrna/intern/rna_main_api.c
+++ b/source/blender/makesrna/intern/rna_main_api.c
@@ -47,6 +47,8 @@
#include "BKE_texture.h"
#include "BKE_scene.h"
#include "BKE_text.h"
+#include "BKE_action.h"
+#include "BKE_group.h"
#include "DNA_armature_types.h"
#include "DNA_camera_types.h"
@@ -55,6 +57,7 @@
#include "DNA_mesh_types.h"
#include "DNA_object_types.h"
#include "DNA_text_types.h"
+#include "DNA_group_types.h"
#include "ED_screen.h"
@@ -179,6 +182,19 @@ void rna_Main_lamps_remove(Main *bmain, ReportList *reports, Lamp *lamp)
/* XXX python now has invalid pointer? */
}
+Group *rna_Main_groups_new(Main *bmain, char* name)
+{
+ return add_group(name);
+}
+void rna_Main_groups_remove(Main *bmain, ReportList *reports, Group *group)
+{
+ free_group(group);
+ unlink_group(group);
+ group->id.us= 0;
+ free_libblock(&bmain->group, group);
+ /* XXX python now has invalid pointer? */
+}
+
Text *rna_Main_texts_new(Main *bmain, char* name)
{
return add_empty_text(name);
@@ -214,6 +230,23 @@ void rna_Main_armatures_remove(Main *bmain, ReportList *reports, bArmature *arm)
/* XXX python now has invalid pointer? */
}
+bAction *rna_Main_actions_new(Main *bmain, char* name)
+{
+ bAction *act= add_empty_action(name);
+ act->id.us--;
+ act->id.flag &= ~LIB_FAKEUSER;
+ return act;
+}
+void rna_Main_actions_remove(Main *bmain, ReportList *reports, bAction *act)
+{
+ if(act->id.us == 0)
+ free_libblock(&bmain->action, act);
+ else
+ BKE_reportf(reports, RPT_ERROR, "Action \"%s\" must have zero users to be removed, found %d.", act->id.name+2, act->id.us);
+
+ /* XXX python now has invalid pointer? */
+}
+
#else
void RNA_api_main(StructRNA *srna)
@@ -437,7 +470,27 @@ void RNA_def_main_worlds(BlenderRNA *brna, PropertyRNA *cprop)
}
void RNA_def_main_groups(BlenderRNA *brna, PropertyRNA *cprop)
{
+ StructRNA *srna;
+ FunctionRNA *func;
+ PropertyRNA *parm;
+ RNA_def_property_srna(cprop, "MainGroups");
+ srna= RNA_def_struct(brna, "MainGroups", NULL);
+ RNA_def_struct_ui_text(srna, "Main Groups", "Collection of groups.");
+
+ func= RNA_def_function(srna, "new", "rna_Main_groups_new");
+ RNA_def_function_ui_description(func, "Add a new group to the main database");
+ parm= RNA_def_string(func, "name", "Group", 0, "", "New name for the datablock.");
+ RNA_def_property_flag(parm, PROP_REQUIRED);
+ /* return type */
+ parm= RNA_def_pointer(func, "group", "Group", "", "New group datablock.");
+ RNA_def_function_return(func, parm);
+
+ func= RNA_def_function(srna, "remove", "rna_Main_groups_remove");
+ RNA_def_function_flag(func, FUNC_USE_REPORTS);
+ RNA_def_function_ui_description(func, "Remove a group from the current blendfile.");
+ parm= RNA_def_pointer(func, "group", "Group", "", "Group to remove.");
+ RNA_def_property_flag(parm, PROP_REQUIRED);
}
void RNA_def_main_texts(BlenderRNA *brna, PropertyRNA *cprop)
{
@@ -503,7 +556,27 @@ void RNA_def_main_armatures(BlenderRNA *brna, PropertyRNA *cprop)
}
void RNA_def_main_actions(BlenderRNA *brna, PropertyRNA *cprop)
{
+ StructRNA *srna;
+ FunctionRNA *func;
+ PropertyRNA *parm;
+
+ RNA_def_property_srna(cprop, "MainActions");
+ srna= RNA_def_struct(brna, "MainActions", NULL);
+ RNA_def_struct_ui_text(srna, "Main Actions", "Collection of actions.");
+
+ func= RNA_def_function(srna, "new", "rna_Main_actions_new");
+ RNA_def_function_ui_description(func, "Add a new action to the main database");
+ parm= RNA_def_string(func, "name", "Action", 0, "", "New name for the datablock.");
+ RNA_def_property_flag(parm, PROP_REQUIRED);
+ /* return type */
+ parm= RNA_def_pointer(func, "action", "Action", "", "New action datablock.");
+ RNA_def_function_return(func, parm);
+ func= RNA_def_function(srna, "remove", "rna_Main_actions_remove");
+ RNA_def_function_flag(func, FUNC_USE_REPORTS);
+ RNA_def_function_ui_description(func, "Remove a action from the current blendfile.");
+ parm= RNA_def_pointer(func, "action", "Action", "", "Action to remove.");
+ RNA_def_property_flag(parm, PROP_REQUIRED);
}
void RNA_def_main_particles(BlenderRNA *brna, PropertyRNA *cprop)
{