-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathoamlGodotModule.cpp
394 lines (301 loc) · 9.88 KB
/
oamlGodotModule.cpp
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
#include "core/io/config_file.h"
#include "core/os/file_access.h"
#include "oamlGodotModule.h"
void oamlGodotModule::set_mix_rate(int p_rate) {
if (oaml == NULL)
return;
oaml->SetAudioFormat(p_rate, 2, 4, true);
}
bool oamlGodotModule::mix(AudioFrame *p_buffer, int p_frames) {
if (oaml == NULL)
return true;
zeromem(p_buffer, p_frames*sizeof(AudioFrame));
oaml->MixToBuffer(p_buffer, p_frames*2);
return true;
}
// Called from audio thread
void oamlGodotModule::_mix_audio() {
AudioFrame *buffer = mix_buffer.ptrw();
int buffer_size = mix_buffer.size();
if (!mix(buffer, buffer_size))
return;
int cc = AudioServer::get_singleton()->get_channel_count();
for (int i = 0; i < cc; i++) {
AudioFrame *target = AudioServer::get_singleton()->thread_get_channel_mix_buffer(0, i);
for (int j = 0; j < buffer_size; j++) {
target[j] += buffer[j];
}
}
}
int oamlGodotModule::sp_get_channel_count() const {
return 2;
}
void oamlGodotModule::AddTension(int value) {
if (oaml == NULL)
return;
oaml->AddTension(value);
}
void oamlGodotModule::ClearConditions() {
if (oaml == NULL)
return;
oaml->ClearConditions();
}
void oamlGodotModule::EnableDynamicCompressor(bool enable, double thresholdDb, double ratio) {
if (oaml == NULL)
return;
oaml->EnableDynamicCompressor(enable, thresholdDb, ratio);
}
float oamlGodotModule::GetLayerGain(String layer) {
if (oaml == NULL)
return 0.f;
return oaml->GetLayerGain(layer.utf8().get_data());
}
int oamlGodotModule::GetLayerRandomChance(String layer) {
if (oaml == NULL)
return 0;
return oaml->GetLayerRandomChance(layer.utf8().get_data());
}
String oamlGodotModule::GetPlayingInfo() {
if (oaml == NULL)
return "";
return String(oaml->GetPlayingInfo());
}
int oamlGodotModule::GetTension() {
if (oaml == NULL)
return 0;
return oaml->GetTension();
}
String oamlGodotModule::GetVersion() {
if (oaml == NULL)
return "";
return oaml->GetVersion();
}
float oamlGodotModule::GetVolume() {
if (oaml == NULL)
return 1.0f;
return oaml->GetVolume();
}
int oamlGodotModule::Init(String defsFilename) {
if (oaml == NULL)
return OAML_ERROR;
return oaml->Init(defsFilename.ascii().get_data());
}
int oamlGodotModule::InitString(String defs) {
if (oaml == NULL)
return OAML_ERROR;
return oaml->InitString(defs.ascii());
}
int oamlGodotModule::ReadDefsFile(String defsFilename) {
if (oaml == NULL)
return OAML_ERROR;
return oaml->ReadDefsFile(defsFilename.ascii().get_data());
}
bool oamlGodotModule::IsPaused() {
if (oaml == NULL)
return true;
return oaml->IsPaused();
}
bool oamlGodotModule::IsPlaying() {
if (oaml == NULL)
return false;
return oaml->IsPlaying();
}
bool oamlGodotModule::IsTrackPlaying(String name) {
if (oaml == NULL)
return false;
return oaml->IsTrackPlaying(name.ascii());
}
void oamlGodotModule::LoadTrack(String name) {
if (oaml == NULL)
return;
oaml->LoadTrack(name.ascii());
}
float oamlGodotModule::LoadTrackProgress(String name) {
if (oaml == NULL)
return -1.f;
return oaml->LoadTrackProgress(name.ascii());
}
void oamlGodotModule::Pause() {
if (oaml == NULL)
return;
oaml->Pause();
}
int oamlGodotModule::PlayTrack(String name) {
if (oaml == NULL)
return OAML_ERROR;
return oaml->PlayTrack(name.ascii());
}
int oamlGodotModule::PlayTrackWithStringRandom(String str) {
if (oaml == NULL)
return OAML_ERROR;
return oaml->PlayTrackWithStringRandom(str.ascii());
}
int oamlGodotModule::PlayTrackByGroupRandom(String group) {
if (oaml == NULL)
return OAML_ERROR;
return oaml->PlayTrackByGroupRandom(group.ascii());
}
int oamlGodotModule::PlayTrackByGroupAndSubgroupRandom(String group, String subgroup) {
if (oaml == NULL)
return OAML_ERROR;
return oaml->PlayTrackByGroupAndSubgroupRandom(group.ascii(), subgroup.ascii());
}
void oamlGodotModule::Resume() {
if (oaml == NULL)
return;
oaml->Resume();
}
void oamlGodotModule::SetMainLoopCondition(int value) {
if (oaml == NULL)
return;
oaml->SetMainLoopCondition(value);
}
void oamlGodotModule::SetCondition(int id, int value) {
if (oaml == NULL)
return;
oaml->SetCondition(id, value);
}
void oamlGodotModule::SetLayerGain(String layer, float gain) {
if (oaml == NULL)
return;
oaml->SetLayerGain(layer.ascii(), gain);
}
void oamlGodotModule::SetLayerRandomChance(String layer, int randomChance) {
if (oaml == NULL)
return;
oaml->SetLayerRandomChance(layer.ascii(), randomChance);
}
void oamlGodotModule::SetTension(int value) {
if (oaml == NULL)
return;
oaml->SetTension(value);
}
void oamlGodotModule::SetVolume(float value) {
if (oaml == NULL)
return;
oaml->SetVolume(value);
}
void oamlGodotModule::StopPlaying() {
if (oaml == NULL)
return;
oaml->StopPlaying();
}
String oamlGodotModule::SaveState() {
if (oaml == NULL)
return "";
return oaml->SaveState().c_str();
}
void oamlGodotModule::LoadState(String state) {
if (oaml == NULL)
return;
oaml->LoadState(state.utf8().get_data());
}
void oamlGodotModule::_bind_methods() {
ClassDB::bind_method(D_METHOD("add_tension", "value"), &oamlGodotModule::AddTension);
ClassDB::bind_method(D_METHOD("clear_conditions"), &oamlGodotModule::ClearConditions);
ClassDB::bind_method(D_METHOD("enable_dynamic_compressor", "enable", "thresholdDb", "ratio"), &oamlGodotModule::EnableDynamicCompressor, true, -3.0, 4.0);
ClassDB::bind_method(D_METHOD("get_layer_gain", "layer"), &oamlGodotModule::GetLayerGain);
ClassDB::bind_method(D_METHOD("get_layer_random_chance", "layer"), &oamlGodotModule::GetLayerRandomChance);
ClassDB::bind_method(D_METHOD("get_playing_info"), &oamlGodotModule::GetPlayingInfo);
ClassDB::bind_method(D_METHOD("get_tension"), &oamlGodotModule::GetTension);
ClassDB::bind_method(D_METHOD("get_version"), &oamlGodotModule::GetVersion);
ClassDB::bind_method(D_METHOD("get_volume"), &oamlGodotModule::GetVolume);
ClassDB::bind_method(D_METHOD("init", "defsFilename"), &oamlGodotModule::Init);
ClassDB::bind_method(D_METHOD("init_string", "defs"), &oamlGodotModule::InitString);
ClassDB::bind_method(D_METHOD("read_defs_file", "defsFilename"), &oamlGodotModule::ReadDefsFile);
ClassDB::bind_method(D_METHOD("is_paused"), &oamlGodotModule::IsPaused);
ClassDB::bind_method(D_METHOD("is_playing"), &oamlGodotModule::IsPlaying);
ClassDB::bind_method(D_METHOD("is_track_playing", "name"), &oamlGodotModule::IsTrackPlaying);
ClassDB::bind_method(D_METHOD("load_state", "state"), &oamlGodotModule::LoadState);
ClassDB::bind_method(D_METHOD("load_track", "name"), &oamlGodotModule::LoadTrack);
ClassDB::bind_method(D_METHOD("load_track_progress", "name"), &oamlGodotModule::LoadTrackProgress);
ClassDB::bind_method(D_METHOD("pause"), &oamlGodotModule::Pause);
ClassDB::bind_method(D_METHOD("play_track", "name"), &oamlGodotModule::PlayTrack);
ClassDB::bind_method(D_METHOD("play_track_with_string_random", "str"), &oamlGodotModule::PlayTrackWithStringRandom);
ClassDB::bind_method(D_METHOD("play_track_by_group_random", "group"), &oamlGodotModule::PlayTrackByGroupRandom);
ClassDB::bind_method(D_METHOD("play_track_by_group_and_subgroup_random", "group", "subgroup"), &oamlGodotModule::PlayTrackByGroupAndSubgroupRandom);
ClassDB::bind_method(D_METHOD("resume"), &oamlGodotModule::Resume);
ClassDB::bind_method(D_METHOD("save_state"), &oamlGodotModule::SaveState);
ClassDB::bind_method(D_METHOD("set_main_loop_condition", "value"), &oamlGodotModule::SetMainLoopCondition);
ClassDB::bind_method(D_METHOD("set_condition", "id", "value"), &oamlGodotModule::SetCondition);
ClassDB::bind_method(D_METHOD("set_layer_gain", "layer", "gain"), &oamlGodotModule::SetLayerGain);
ClassDB::bind_method(D_METHOD("set_layer_random_chance", "layer", "randomChance"), &oamlGodotModule::SetLayerRandomChance);
ClassDB::bind_method(D_METHOD("set_tension", "value"), &oamlGodotModule::SetTension);
ClassDB::bind_method(D_METHOD("set_volume", "vol"), &oamlGodotModule::SetVolume);
ClassDB::bind_method(D_METHOD("stop_playing"), &oamlGodotModule::StopPlaying);
BIND_CONSTANT(OAML_OK);
BIND_CONSTANT(OAML_ERROR);
BIND_CONSTANT(OAML_NOT_FOUND);
}
static void* oamlOpen(const char *filename) {
String path = "res://"+String(filename);
FileAccess *f = FileAccess::open(path, FileAccess::READ);
if (f == NULL) {
ConfigFile cf;
Error err = cf.load(path + ".import");
if (err == OK) {
f = FileAccess::open(cf.get_value("remap", "path"), FileAccess::READ);
if (f != NULL) {
char header[5] = "0000";
f->seek(28);
while (strncmp(header, "OggS", 4) != 0) {
f->get_buffer((uint8_t*)header, 4);
f->seek(f->get_position()-3);
}
f->seek(f->get_position()-1);
return (void*)f;
}
}
print_line("oaml: Error opening resource file:" + path);
return NULL;
}
return (void*)f;
}
static size_t oamlRead(void *ptr, size_t size, size_t nitems, void *fd) {
FileAccess *f = (FileAccess*)fd;
return f->get_buffer((uint8_t*)ptr, size*nitems);
}
static int oamlSeek(void *fd, long offset, int whence) {
FileAccess *f = (FileAccess*)fd;
if (whence == SEEK_SET)
f->seek(offset);
else if (whence == SEEK_END)
f->seek_end(offset);
else if (whence == SEEK_CUR)
f->seek(f->get_position()+offset);
return 0;
}
static long oamlTell(void *fd) {
FileAccess *f = (FileAccess*)fd;
return f->get_position();
}
static int oamlClose(void *fd) {
FileAccess *f = (FileAccess*)fd;
f->close();
memdelete(f);
return 0;
}
static oamlFileCallbacks fileCbs = {
&oamlOpen,
&oamlRead,
&oamlSeek,
&oamlTell,
&oamlClose
};
oamlGodotModule::oamlGodotModule() {
oaml = new oamlApi();
oaml->SetFileCallbacks(&fileCbs);
oaml->SetAudioFormat(AudioServer::get_singleton()->get_mix_rate(), 2, 4, true);
AudioServer::get_singleton()->lock();
mix_buffer.resize(AudioServer::get_singleton()->thread_get_mix_buffer_size());
AudioServer::get_singleton()->unlock();
AudioServer::get_singleton()->add_callback(_mix_audios, this);
}
oamlGodotModule::~oamlGodotModule() {
if (oaml != NULL) {
oaml->Shutdown();
delete oaml;
oaml = NULL;
}
AudioServer::get_singleton()->remove_callback(_mix_audios, this);
}