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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-12-26 04:37:05 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-12-26 04:37:05 +0300
commit2a2e720586c73555eb82dfc9cc3c4b5f86adb178 (patch)
treed78d5e4a61c2ff1381c2a6227f86cf27bdb64f33 /source/blender/makesrna/intern/rna_nodetree.c
parent9104f67ff9c4435a7a465a93ffd860bad962e358 (diff)
2.5 / RNA / Nodes
* some work on node types.
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c71
1 files changed, 60 insertions, 11 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 5c6d32eb781..60783337de4 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -30,11 +30,68 @@
#include "rna_internal.h"
#include "DNA_node_types.h"
+#include "BKE_node.h"
#ifdef RNA_RUNTIME
+static void rna_Nodetree_nodes_begin(CollectionPropertyIterator *iter, PointerRNA *ptr)
+{
+ bNodeTree *ntree= (bNodeTree*)ptr->data;
+ rna_iterator_listbase_begin(iter, &ntree->nodes, NULL);
+}
+
#else
+static void rna_def_node(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+ static EnumPropertyItem node_type_items[] ={
+ {SH_NODE_OUTPUT, "OUTPUT", "Output", ""},
+ {SH_NODE_MATERIAL, "MATERIAL", "Material", ""},
+ {SH_NODE_RGB, "RGB", "RGB", ""},
+ {SH_NODE_VALUE, "VALUE", "Value", ""},
+ {SH_NODE_MIX_RGB, "MIXRGB", "Mix", ""},
+ {SH_NODE_VALTORGB, "VALTORGB", "Value to RGB", ""},
+ {SH_NODE_RGBTOBW, "RGBTOBW", "RGB to BW", ""},
+ {SH_NODE_TEXTURE, "TEXTURE", "Texture", ""},
+ {SH_NODE_NORMAL, "NORMAL", "Normal", ""},
+ {SH_NODE_GEOMETRY, "GEOMETRY", "Geometry", ""},
+ {SH_NODE_MAPPING, "MAPPING", "Mapping", ""},
+ {SH_NODE_CURVE_VEC, "CURVEVEC", "Vector Curves", ""},
+ {SH_NODE_CURVE_RGB, "CURVERGB", "RGB Curves", ""},
+ {SH_NODE_CAMERA, "CAMERA", "Camera", ""},
+ {SH_NODE_MATH, "MATH", "Math", ""},
+ {SH_NODE_VECT_MATH, "VECTMATH", "Vector Math", ""},
+ {SH_NODE_SQUEEZE, "SQUEEZE", "Squeeze", ""},
+ {SH_NODE_MATERIAL_EXT, "MATEXT", "Material Extended", ""},
+ {SH_NODE_INVERT, "INVERT", "Invert", ""},
+ {SH_NODE_SEPRGB, "SEPRGB", "Seperate RGB", ""},
+ {SH_NODE_COMBRGB, "COMBRGB", "Combine RGB", ""},
+ {SH_NODE_HUE_SAT, "HUESAT", "Hue/Saturation", ""},
+ {NODE_DYNAMIC, "DYNAMIC", "Scripted Node", ""},
+ {0, NULL, NULL, NULL}};
+
+ srna= RNA_def_struct(brna, "Node", NULL);
+ RNA_def_struct_ui_text(srna, "Node", "DOC_BROKEN");
+ RNA_def_struct_sdna(srna, "bNode");
+
+ prop= RNA_def_property(srna, "location", PROP_FLOAT, PROP_VECTOR);
+ RNA_def_property_float_sdna(prop, NULL, "locx");
+ RNA_def_property_array(prop, 2);
+ RNA_def_property_range(prop, -10000.0f, 10000.0f);
+ RNA_def_property_ui_text(prop, "Location", "");
+
+ prop= RNA_def_property(srna, "name", PROP_STRING, PROP_NONE);
+ RNA_def_property_ui_text(prop, "Name", "Node name.");
+ RNA_def_struct_name_property(srna, prop);
+
+ prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
+ RNA_def_property_enum_items(prop, node_type_items);
+ RNA_def_property_ui_text(prop, "Type", "");
+}
+
void RNA_def_nodetree(BlenderRNA *brna)
{
StructRNA *srna;
@@ -44,21 +101,13 @@ void RNA_def_nodetree(BlenderRNA *brna)
RNA_def_struct_ui_text(srna, "Node Tree", "DOC_BROKEN");
RNA_def_struct_sdna(srna, "bNodeTree");
- prop= RNA_def_property(srna, "Nodes", PROP_COLLECTION, PROP_NONE);
+ prop= RNA_def_property(srna, "nodes", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "nodes", NULL);
+ RNA_def_property_collection_funcs(prop, "rna_Nodetree_nodes_begin", "rna_iterator_listbase_next", "rna_iterator_listbase_end", "rna_iterator_listbase_get", 0, 0, 0, 0);
RNA_def_property_struct_type(prop, "Node");
- RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
RNA_def_property_ui_text(prop, "Nodes", "");
- srna= RNA_def_struct(brna, "Node", NULL);
- RNA_def_struct_ui_text(srna, "Node", "DOC_BROKEN");
- RNA_def_struct_sdna(srna, "bNode");
-
- prop= RNA_def_property(srna, "location", PROP_FLOAT, PROP_VECTOR);
- RNA_def_property_float_sdna(prop, NULL, "locx");
- RNA_def_property_array(prop, 2);
- RNA_def_property_range(prop, -1000.0f, 1000.0f);
- RNA_def_property_ui_text(prop, "Location", "");
+ rna_def_node(brna);
}
#endif