1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
use types::*;
use ffi;
use sound;
use libc::c_void;
use fmod_sys;
use fmod_sys::MemoryUsageDetails;
use std::mem::transmute;
use libc::{c_char};
use std::default::Default;
pub struct SoundGroup {
sound_group: *mut ffi::FMOD_SOUNDGROUP,
}
impl ffi::FFI<ffi::FMOD_SOUNDGROUP> for SoundGroup {
fn wrap(s: *mut ffi::FMOD_SOUNDGROUP) -> SoundGroup {
SoundGroup {sound_group: s}
}
fn unwrap(s: &SoundGroup) -> *mut ffi::FMOD_SOUNDGROUP {
s.sound_group
}
}
impl Drop for SoundGroup {
fn drop(&mut self) {
self.release();
}
}
impl SoundGroup {
pub fn release(&mut self) -> ::Result {
if !self.sound_group.is_null() {
match unsafe { ffi::FMOD_SoundGroup_Release(self.sound_group) } {
::Result::Ok => {
self.sound_group =::std::ptr::null_mut();
::Result::Ok
}
e => e
}
} else {
::Result::Ok
}
}
pub fn set_max_audible(&self, max_audible: i32) -> ::Result {
unsafe { ffi::FMOD_SoundGroup_SetMaxAudible(self.sound_group, max_audible) }
}
pub fn get_max_audible(&self) -> Result<i32, ::Result> {
let mut max_audible = 0i32;
match unsafe { ffi::FMOD_SoundGroup_GetMaxAudible(self.sound_group, &mut max_audible) } {
::Result::Ok => Ok(max_audible),
e => Err(e)
}
}
pub fn set_max_audible_behavior(&self, max_audible_behavior: ::SoundGroupBehavior) -> ::Result {
unsafe { ffi::FMOD_SoundGroup_SetMaxAudibleBehavior(self.sound_group, max_audible_behavior) }
}
pub fn get_max_audible_behavior(&self) -> Result<::SoundGroupBehavior, ::Result> {
let mut max_audible_behavior = ::SoundGroupBehavior::Fail;
match unsafe { ffi::FMOD_SoundGroup_GetMaxAudibleBehavior(self.sound_group, &mut max_audible_behavior) } {
::Result::Ok => Ok(max_audible_behavior),
e => Err(e)
}
}
pub fn set_mute_fade_speed(&self, speed: f32) -> ::Result {
unsafe { ffi::FMOD_SoundGroup_SetMuteFadeSpeed(self.sound_group, speed) }
}
pub fn get_mute_fade_speed(&self) -> Result<f32, ::Result> {
let mut speed = 0f32;
match unsafe { ffi::FMOD_SoundGroup_GetMuteFadeSpeed(self.sound_group, &mut speed) } {
::Result::Ok => Ok(speed),
e => Err(e)
}
}
pub fn set_volume(&self, volume: f32) -> ::Result {
unsafe { ffi::FMOD_SoundGroup_SetVolume(self.sound_group, volume) }
}
pub fn get_volume(&self) -> Result<f32, ::Result> {
let mut volume = 0f32;
match unsafe { ffi::FMOD_SoundGroup_GetVolume(self.sound_group, &mut volume) } {
::Result::Ok => Ok(volume),
e => Err(e)
}
}
pub fn stop(&self) -> ::Result {
unsafe { ffi::FMOD_SoundGroup_Stop(self.sound_group) }
}
pub fn get_name(&self, name_len: usize) -> Result<String, ::Result> {
let mut c = Vec::with_capacity(name_len + 1);
for _ in 0..(name_len + 1) {
c.push(0);
}
match unsafe { ffi::FMOD_SoundGroup_GetName(self.sound_group, c.as_mut_ptr() as *mut c_char, name_len as i32) } {
::Result::Ok => Ok(String::from_utf8(c).unwrap()),
e => Err(e)
}
}
pub fn get_num_sounds(&self) -> Result<i32, ::Result> {
let mut num_sounds = 0i32;
match unsafe { ffi::FMOD_SoundGroup_GetNumSounds(self.sound_group, &mut num_sounds) } {
::Result::Ok => Ok(num_sounds),
e => Err(e)
}
}
pub fn get_sound(&self, index: i32) -> Result<sound::Sound, ::Result> {
let mut sound = ::std::ptr::null_mut();
match unsafe { ffi::FMOD_SoundGroup_GetSound(self.sound_group, index, &mut sound) } {
::Result::Ok => Ok(ffi::FFI::wrap(sound)),
e => Err(e)
}
}
pub fn get_num_playing(&self) -> Result<i32, ::Result> {
let mut num_playing = 0i32;
match unsafe { ffi::FMOD_SoundGroup_GetNumPlaying(self.sound_group, &mut num_playing) } {
::Result::Ok => Ok(num_playing),
e => Err(e)
}
}
pub fn get_memory_info(&self, MemoryBits(memory_bits): MemoryBits,
EventMemoryBits(event_memory_bits): EventMemoryBits) -> Result<(u32, MemoryUsageDetails), ::Result> {
let mut details = fmod_sys::get_memory_usage_details_ffi(Default::default());
let mut memory_used = 0u32;
match unsafe { ffi::FMOD_SoundGroup_GetMemoryInfo(self.sound_group, memory_bits, event_memory_bits, &mut memory_used, &mut details) } {
::Result::Ok => Ok((memory_used, fmod_sys::from_memory_usage_details_ptr(details))),
e => Err(e)
}
}
pub fn set_user_data<T>(&self, user_data: &mut T) -> ::Result {
unsafe { ffi::FMOD_SoundGroup_SetUserData(self.sound_group, transmute(user_data)) }
}
pub fn get_user_data<'r, T>(&'r self) -> Result<&'r mut T, ::Result> {
unsafe {
let mut user_data : *mut c_void = ::std::ptr::null_mut();
match ffi::FMOD_SoundGroup_GetUserData(self.sound_group, &mut user_data) {
::Result::Ok => {
let tmp : &mut T = transmute::<*mut c_void, &mut T>(user_data);
Ok(tmp)
},
e => Err(e)
}
}
}
}