[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [18222] branches/blender2.5/blender/source /blender/makesrna/intern/rna_sound.c: Added bSample rna, and tweaked a couple of things in Sound rna.

Roland Hess me at harkyman.com
Thu Jan 1 20:34:41 CET 2009


Revision: 18222
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=18222
Author:   harkyman
Date:     2009-01-01 20:34:41 +0100 (Thu, 01 Jan 2009)

Log Message:
-----------
Added bSample rna, and tweaked a couple of things in Sound rna.

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_sound.c

Modified: branches/blender2.5/blender/source/blender/makesrna/intern/rna_sound.c
===================================================================
--- branches/blender2.5/blender/source/blender/makesrna/intern/rna_sound.c	2009-01-01 19:19:50 UTC (rev 18221)
+++ branches/blender2.5/blender/source/blender/makesrna/intern/rna_sound.c	2009-01-01 19:34:41 UTC (rev 18222)
@@ -17,27 +17,80 @@
  * 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): Campbell Barton
+ * Contributor(s): Campbell Barton, Roland Hess
  *
  * ***** END GPL LICENSE BLOCK *****
  */
 
 #include <stdlib.h>
 
+#include "RNA_access.h"
 #include "RNA_define.h"
 #include "RNA_types.h"
 
 #include "rna_internal.h"
 
 #include "DNA_sound_types.h"
+#include "DNA_property_types.h"
 
 #ifdef RNA_RUNTIME
 
 #else
 
+void RNA_def_sample(BlenderRNA *brna)
+{
+	StructRNA *srna;
+	PropertyRNA *prop;
+
+	/* sound types */
+	static EnumPropertyItem prop_sample_type_items[] = {
+		{SAMPLE_INVALID, "SAMPLE_INVALID", "Invalid", ""},
+		{SAMPLE_UNKNOWN, "SAMPLE_UNKNOWN", "Unknown", ""},
+		{SAMPLE_RAW, "SAMPLE_RAW", "Raw", ""},
+		{SAMPLE_WAV, "SAMPLE_WAV", "WAV", "Uncompressed"},
+		{SAMPLE_MP2, "SAMPLE_MP2", "MP2", "MPEG-1 Audio Layer 2"},
+		{SAMPLE_MP3, "SAMPLE_MP3", "MP3", "MPEG-1 Audio Layer 3"},
+		{SAMPLE_OGG_VORBIS, "SAMPLE_OGG_VORBIS", "Ogg Vorbis", ""},
+		{SAMPLE_WMA, "SAMPLE_WMA", "WMA", "Windows Media Audio"},
+		{SAMPLE_ASF, "SAMPLE_ASF", "ASF", "Windows Advanced Systems Format"},
+		{SAMPLE_AIFF, "SAMPLE_AIFF", "AIFF", "Audio Interchange File Format"},
+		{0, NULL, NULL, NULL}};
+	
+	srna= RNA_def_struct(brna, "sample", "ID");
+	RNA_def_struct_sdna(srna, "bSample");
+	RNA_def_struct_ui_text(srna, "SoundSample", "Sound Sample");
+
+	prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
+	RNA_def_property_enum_items(prop, prop_sample_type_items);
+	RNA_def_property_ui_text(prop, "Types", "");
+
+	prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
+	RNA_def_property_string_sdna(prop, NULL, "name");
+	RNA_def_property_flag(prop, PROP_NOT_EDITABLE); 
+	RNA_def_property_ui_text(prop, "Filename", "Full path filename of the sample");
+
+	prop= RNA_def_property(srna, "length", PROP_INT, PROP_UNSIGNED);
+	RNA_def_property_int_sdna(prop, NULL, "len");
+	RNA_def_property_ui_text(prop, "Length", "The length of sample in seconds");
+	RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
+
+	prop= RNA_def_property(srna, "rate", PROP_INT, PROP_UNSIGNED);
+	RNA_def_property_ui_text(prop, "Rate", "Sample rate in kHz");
+	RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
+
+	prop= RNA_def_property(srna, "bits", PROP_INT, PROP_UNSIGNED);
+	RNA_def_property_ui_text(prop, "Bits", "Bit-depth of sample");
+	RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
+
+	prop= RNA_def_property(srna, "channels", PROP_INT, PROP_UNSIGNED);
+	RNA_def_property_ui_text(prop, "Channels", "Number of channels (mono=1; stereo=2)");
+	RNA_def_property_flag(prop, PROP_NOT_EDITABLE); 
+
+}
+
 void RNA_def_sound(BlenderRNA *brna)
 {
-	/* TODO - bSample and bSoundListener structs */
+	/* TODO - bSoundListener */
 
 	StructRNA *srna;
 	PropertyRNA *prop;
@@ -46,6 +99,10 @@
 	RNA_def_struct_sdna(srna, "bSound");
 	RNA_def_struct_ui_text(srna, "Sound", "DOC_BROKEN");
 
+	prop= RNA_def_property(srna, "sample", PROP_POINTER, PROP_NONE);
+	RNA_def_property_struct_type(prop, "ID");
+	RNA_def_property_ui_text(prop, "Sample", "Sound Sample.");
+
 	prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
 	RNA_def_property_string_sdna(prop, NULL, "name");
 	RNA_def_property_flag(prop, PROP_NOT_EDITABLE); /* ? */
@@ -54,7 +111,7 @@
 	/* floats */
 	prop= RNA_def_property(srna, "volume", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "volume");
-	RNA_def_property_ui_text(prop, "Volume", "the volume for this sound in the game engine only");
+	RNA_def_property_ui_text(prop, "Volume", "The volume for this sound in the game engine only");
 	RNA_def_property_ui_range(prop, 0.0, 1.0, 10, 4);
 
 	prop= RNA_def_property(srna, "panning", PROP_FLOAT, PROP_NONE);
@@ -84,7 +141,7 @@
 
 	prop= RNA_def_property(srna, "distance", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "distance");
-	RNA_def_property_ui_text(prop, "Distance", "reference distance at which the listener will experience gain");
+	RNA_def_property_ui_text(prop, "Distance", "Reference distance at which the listener will experience gain");
 	RNA_def_property_ui_range(prop, 0.0, 1000.0, 10, 4); /* NOT used anywhere */
 
 	prop= RNA_def_property(srna, "ipo", PROP_POINTER, PROP_NONE);





More information about the Bf-blender-cvs mailing list