-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsound_manager.NVGT
286 lines (286 loc) · 8.96 KB
/
sound_manager.NVGT
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
#include "rotation.nvgt"
enum sound_item_types {
sound_item_type_stationary = 0,
sound_item_type_positional
};
abstract class sound_item {
string[]@ fx;
sound_item_types type;
sound_manager@ m;
bool persist;
bool looping;
bool played = false;
bool loaded = false;
string filename;
sound handle;
string owner;
float behind_pitch_decrease = 0, pan_step = 1, volume_step = 1;
double pitch = 100;
float volume = 0;
float pan = 0;
sound_item(string filename, bool looping = false, bool persist = false, string[]@ fx = null, sound_manager@ m = null, string owner = "") {
@this.m = m;
this.filename = filename;
this.looping = looping;
if (looping)
this.persist = true;
else
this.persist = persist;
@this.fx = @fx;
this.owner = owner;
}
bool play(bool wait = false) {
if (!this.loaded)
this.load();
if (this.loaded) {
this.handle.pan = this.pan;
this.handle.volume = this.volume;
this.handle.pitch = this.pitch;
this.handle.set_fx("");
if (this.fx != null and this.fx.length() > 0) {
for (uint i = 0; i < this.fx.length(); i++)
this.handle.set_fx(this.fx[i]);
}
bool result = this.looping ? this.handle.play_looped() : (wait ? this.handle.play_wait() : this.handle.play());
if (!this.looping)
played = true;
return result;
}
return false;
}
int opCmp(const sound_item@other) {
if (@other == @this) return 0;
return -1;
}
void load() {
if (!this.loaded)
this.loaded = this.handle.load(filename);
if (this.loaded)
this.handle.set_mixer(@m.mix);
}
}
class stationary_sound: sound_item {
stationary_sound(string filename, bool looping = false, bool persist = false, string[]@ fx = null, sound_manager@ m = null, string owner = "") {
super(filename, looping, persist, @fx, @m, owner);
type = sound_item_type_stationary;
}
}
class positional_sound: sound_item {
int leftrange, rightrange, backwardrange, forwardrange, lowerrange, upperrange;
vector pv, v, last_listener;
double last_rotation = 0;
positional_sound(string filename, vector v, double rotation = 0, bool looping = false, bool persist = false, string[]@ fx = null, sound_manager@ m = null, string owner = "", int leftrange = 0, int rightrange = 0, int backwardrange = 0, int forwardrange = 0, int lowerrange = 0, int upperrange = 0) {
super(filename, looping, persist, @fx, @m, owner);
this.v = v;
this.pv = v;
this.leftrange = leftrange;
this.rightrange = rightrange;
this.backwardrange = backwardrange;
this.forwardrange = forwardrange;
this.lowerrange = lowerrange;
this.upperrange = upperrange;
type = sound_item_type_positional;
this.update(v, rotation, force = true);
}
bool get_in_earshot() property {
if (m.max_distance <= 0)
return true;
if (get_3d_distance(this.last_listener.x, this.last_listener.y, this.last_listener.z, this.pv.x, this.pv.y, this.pv.z) > m.max_distance) {
return false;
}
return true;
}
bool play(bool wait = false) {
if (!in_earshot)
return false;
if (!this.loaded)
this.load();
this.update(this.last_listener, this.last_rotation, force = true);
return sound_item::play(wait);
}
void update(vector listener, double rotation = 0, bool force = false) {
vector new;
int left_x = v.x - this.leftrange;
int right_x = v.x + this.rightrange;
int bottom_y = v.y - this.backwardrange;
int top_y = v.y + this.forwardrange;
int bottom_z = v.z - this.lowerrange;
int top_z = v.z + this.upperrange;
double startpitch = this.pitch;
if (listener.x <= left_x)
new.x = left_x;
else if (listener.x >= right_x)
new.x = right_x;
else
new.x = listener.x;
if (listener.y <= bottom_y)
new.y = bottom_y;
else if (listener.y >= top_y) {
new.y = top_y;
startpitch -= this.behind_pitch_decrease;
} else
new.y = listener.y;
if (listener.z <= bottom_z)
new.z = bottom_z;
else if (listener.z >= top_z)
new.z = top_z;
else
new.z = listener.z;
if (new != this.pv or this.last_listener != listener or this.last_rotation != rotation or force == true) {
this.last_listener = listener;
this.pv = new;
this.last_rotation = rotation;
if (this.loaded) {
if (this.handle.pitch != startpitch) this.handle.pitch = startpitch;
this.handle.set_position(listener.x, m.y_is_elevation == false ? listener.y : listener.z, m.y_is_elevation == false ? listener.z : listener.y, new.x, m.y_is_elevation ? new.z : new.y, m.y_is_elevation ? new.y : new.z, rotation, this.pan_step, this.volume_step);
}
}
}
}
class sound_manager {
vector last_listener;
double last_rotation;
float pan_step = 1;
float volume_step = 1;
float behind_pitch_decrease = 0;
int max_distance = 0;
bool y_is_elevation = false;
sound_item@[] items();
mixer@ mix;
sound_manager(mixer@ mix = @sound_default_mixer) {
if (@mix != null)
@this.mix = @mix;
else
@this.mix = mixer();
}
stationary_sound@ play(string filename, bool looping = false, bool persist = false, bool wait = false, bool immediate = true, float pan = 0, double pitch = 100, float volume = 0, string[]@ fx = null, string owner = "") {
clean_sounds();
stationary_sound s(filename, looping, persist, @fx, @this, owner);
s.pan = pan;
s.volume = volume;
s.pitch = pitch;
if (immediate)
s.play(wait);
else
s.load();
items.insert_last(@s);
return @s;
}
positional_sound@ play(string filename, vector v, double rotation = 0.0, bool looping = false, bool persist = false, bool wait = false, bool immediate = true, float pan = 0, double pitch = 100, float volume = 0, string[]@ fx = null, string owner = "", int leftrange = 0, int rightrange = 0, int backwardrange = 0, int forwardrange = 0, int lowerrange = 0, int upperrange = 0) {
clean_sounds();
positional_sound s(filename, v, rotation, looping, persist, @fx, @this, owner, leftrange, rightrange, backwardrange, forwardrange, lowerrange, upperrange);
this.last_listener = v;
this.last_rotation = rotation;
s.volume_step = this.volume_step;
s.pan_step = this.pan_step;
s.behind_pitch_decrease = this.behind_pitch_decrease;
s.pan = pan;
s.volume = volume;
s.pitch = pitch;
if (immediate)
s.play(wait);
else
s.load();
items.insert_last(@s);
return @s;
}
sound_item@[] get_items(string&in owner) {
sound_item@[]ret;
for (uint i = 0; i < this.items.length(); i++) {
if (this.items[i].owner == owner) ret.insert_last(@this.items[i]);
}
return ret;
}
bool update_sounds(string&in owner, vector position) {
clean_sounds();
sound_item@[] items = this.get_items(owner);
if (items.length() <= 0) return false;
bool updated = false;
for (uint i = 0; i < items.length(); i++) {
if (items[i].type != sound_item_type_positional) continue;
positional_sound@ snd = cast < positional_sound@ > (items[i]);
if (@snd != null) {
snd.v = position;
snd.update(snd.last_listener, snd.last_rotation);
updated = true;
}
}
return updated;
}
bool update_sound(sound_item@ handle, vector position, bool force = false) {
if (handle is null) return false;
if (handle.type == sound_item_type_positional) {
positional_sound@ snd = cast < positional_sound@ > (handle);
if (snd.in_earshot) {
if (!snd.handle.playing and !snd.handle.paused and !snd.played)
snd.play();
snd.v= position;
snd.update(snd.last_listener, snd.last_rotation, force = force);
} else {
if (snd.handle.playing)
snd.handle.stop();
snd.handle.close();
snd.loaded = false;
}
return true;
}
return false;
}
bool destroy(sound_item@ handle) {
if (@handle == null) return false;
if (@handle.handle != null and (handle.handle.playing or handle.handle.paused))
handle.handle.stop();
if (handle.handle.active)
handle.handle.close();
int i = items.find(handle);
if (i > -1) {
items.remove_at(i);
return true;
}
return false;
}
int destroy(sound_item@[] handles) {
if (handles.length() <= 0) return 0;
int count = 0;
for (uint i = 0; i < handles.length(); i++) {
if (this.destroy(@handles[i])) count++;
}
return count;
}
int destroy(string&in owner) {
return this.destroy(this.get_items(owner));
}
void clean_sounds() {
for (uint i = 0; i < items.length(); i++) {
if (items[i].handle.playing == false and items[i].persist == false) {
if (items[i].handle != null and items[i].handle.active)
items[i].handle.close();
items.remove_at(i);
}
}
}
void update_listener(vector listener, double rotation, bool force = false) {
this.last_listener = listener;
this.last_rotation = rotation;
for (uint i = 0; i < this.items.length(); i++) {
positional_sound@ snd = cast<positional_sound@>(this.items[i]);
if (snd is null) continue;
snd.update(listener, rotation, force = force);
}
}
bool destroy_all() {
return this.destroy(this.items) > 0;
}
void pause_all() {
for (uint i = 0; i < this.items.length(); i++) {
if (@this.items[i].handle != null and this.items[i].handle.playing)
this.items[i].handle.pause();
}
}
void resume_all() {
for (uint i = 0; i < this.items.length(); i++) {
if (this.items[i].handle != null and this.items[i].handle.paused)
this.items[i].play();
}
}
}