Blender V2.61 - r43446

DNA_speaker_types.h

Go to the documentation of this file.
00001 /*
00002  * ***** BEGIN GPL LICENSE BLOCK *****
00003  *
00004  * This program is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU General Public License
00006  * as published by the Free Software Foundation; either version 2
00007  * of the License, or (at your option) any later version.
00008  *
00009  * This program is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU General Public License
00015  * along with this program; if not, write to the Free Software Foundation,
00016  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00017  *
00018  * Contributor(s): Jörg Müller.
00019  *
00020  * ***** END GPL LICENSE BLOCK *****
00021  */
00022 
00027 #ifndef DNA_SPEAKER_TYPES_H
00028 #define DNA_SPEAKER_TYPES_H
00029 
00030 #include "DNA_ID.h"
00031 
00032 struct AnimData;
00033 struct bSound;
00034 
00035 typedef struct Speaker {
00036     ID id;
00037     struct AnimData *adt;   /* animation data (must be immediately after id for utilities to use it) */ 
00038 
00039     struct bSound *sound;
00040 
00041     // not animatable properties
00042     float volume_max;
00043     float volume_min;
00044     float distance_max;
00045     float distance_reference;
00046     float attenuation;
00047     float cone_angle_outer;
00048     float cone_angle_inner;
00049     float cone_volume_outer;
00050 
00051     // animatable properties
00052     float volume;
00053     float pitch;
00054 
00055     // flag
00056     short flag;
00057     short pad1[3];
00058 } Speaker;
00059 
00060 /* **************** SPEAKER ********************* */
00061 
00062 /* flag */
00063 #define SPK_DS_EXPAND   (1<<0)
00064 #define SPK_MUTED       (1<<1)
00065 #define SPK_RELATIVE    (1<<2)
00066 
00067 #endif /* DNA_SPEAKER_TYPES_H */
00068