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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-11-18 13:57:06 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-11-18 13:57:06 +0300
commitc3da1af01c1584a8e23b9c6875bcb784fec00ed5 (patch)
tree61e48addc8f47b0317d7a285541f64d855d4bbfb /source/blender/makesrna/intern/rna_lamp.c
parent8c84a4338597b8b17bca5b1ffbe819f6d71fbf83 (diff)
RNA minor changes
* Added start of lamp wrapping (code by Michael Fox). * Add back Object.data, was crashing with unknown data type. * Added support for using consecutive variables like float r, g, b; as an array without writing a manual get/set function. * Also note the RNA documentation is updated now to be more about how to define RNA and use it, including some diagrams. http://wiki.blender.org/index.php/BlenderDev/Blender2.5/RNA
Diffstat (limited to 'source/blender/makesrna/intern/rna_lamp.c')
-rw-r--r--source/blender/makesrna/intern/rna_lamp.c70
1 files changed, 70 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_lamp.c b/source/blender/makesrna/intern/rna_lamp.c
new file mode 100644
index 00000000000..795b493d63a
--- /dev/null
+++ b/source/blender/makesrna/intern/rna_lamp.c
@@ -0,0 +1,70 @@
+/**
+ * $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>
+
+#include "RNA_define.h"
+#include "RNA_types.h"
+
+#include "rna_internal.h"
+
+#include "DNA_lamp_types.h"
+
+#ifdef RNA_RUNTIME
+
+
+#else
+
+void RNA_def_lamp(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+ static EnumPropertyItem prop_type_items[] = {{LA_LOCAL, "LOCAL", "Local"}, {LA_SUN, "SUN", "Sun"}, {LA_SPOT, "SPOT", "Spot"}, {LA_HEMI, "HEMI", "Hemi"}, {LA_AREA, "AREA", "Area"}, {0, NULL, NULL}};
+
+ srna= RNA_def_struct(brna, "Lamp", "Lamp");
+
+ RNA_def_ID(srna);
+
+ prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
+ RNA_def_property_enum_items(prop, prop_type_items);
+ RNA_def_property_ui_text(prop, "Type", "Type of Lamp.");
+
+ prop= RNA_def_property(srna, "dist", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_range(prop, 0.0f , 9999.0f);
+ RNA_def_property_ui_text(prop, "Distance", "Distance that the lamp emits light.");
+
+ prop= RNA_def_property(srna, "energy", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_range(prop, 0.0f , 10.0f);
+ RNA_def_property_ui_text(prop, "Energy", "Amount of light that the lamp emits.");
+
+ prop= RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR);
+ RNA_def_property_float_sdna(prop, NULL, "r");
+ RNA_def_property_array(prop, 3);
+ RNA_def_property_ui_text(prop, "Color", "Lamp color.");
+ RNA_def_property_ui_range(prop, 0.0f , 1.0f, 10.0f, 3.0f);
+}
+
+#endif
+
+