summaryrefslogtreecommitdiffstats
path: root/src/drone.c
blob: 4dbb7ed15d32a3ecf89591dc0b7422fbc788895f (plain)
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>

#include <xas/riff.h>
#include <xas/vox.h>
#include <xas/drone.h>

xas_drone *xas_drone_new(xas_spatial_scene *scene,
                             xas_spatial_coord position,
                             size_t bank_entry_size,
                             size_t bank_entry_count) {
    xas_drone *drone;

    if ((drone = malloc(sizeof(*drone))) == NULL) {
        goto error_malloc_drone;
    }

    if ((drone->bank = xas_bank_new(scene->format,
                                      bank_entry_size,
                                      bank_entry_count)) == NULL) {
        goto error_bank_new;
    }

    if ((drone->obj = xas_spatial_scene_add_bank_player(scene,
                                                          position,
                                                          drone->bank)) == NULL) {
        goto error_spatial_scene_add_bank_player;
    }

    drone->scene = scene;

    return drone;

error_spatial_scene_add_bank_player:
    xas_bank_destroy(drone->bank);

error_bank_new:
    free(drone);

error_malloc_drone:
    return NULL;
}

void xas_drone_destroy(xas_drone *drone) {
    xas_bank_destroy(drone->bank);

    free(drone);
}

enum xas_drone_mood xas_drone_mood_get(xas_drone *drone) {
    return drone->mood;
}

void xas_drone_mood_set(xas_drone *drone, enum xas_drone_mood mood) {
    drone->mood = mood;
}

xas_spatial_object *xas_drone_get_spatial_object(xas_drone *drone) {
    return drone->obj;
}

ssize_t xas_drone_sample_record(xas_drone *drone,
                                  xas_audio_stream *source,
                                  size_t sample_index,
                                  size_t sample_len) {
    if (sample_index >= drone->bank->entry_count
     || sample_len > drone->bank->entry_size) {
        errno = EINVAL;

        goto error_invalid;
    }

    return xas_bank_record(drone->bank,
                             source,
                             sample_index,
                             sample_len);

    return 0;

error_invalid:
    return -1;
}

ssize_t xas_drone_sample_import(xas_drone *drone,
                                  const char *path,
                                  size_t sample_index) {
    ssize_t ret;
    xas_audio_stream *source;

    if ((source = xas_riff_open_file(path, O_RDONLY)) == NULL) {
        goto error_riff_open_file;
    }

    if ((ret = xas_drone_sample_record(drone,
                                         source,
                                         sample_index,
                                         drone->bank->entry_size)) < 0) {
        goto error_sample_record;
    }

    xas_audio_stream_destroy(source);

    return ret;

error_sample_record:
    xas_audio_stream_destroy(source);

error_riff_open_file:
    return -1;
}

int xas_drone_speech_import(xas_drone *drone,
                              const char *voice,
                              float speed,
                              size_t sample_index,
                              size_t sample_count,
                              const char **speech_lines) {
    xas_drone_vox *vox;
    size_t i, o;

    if (sample_index + sample_count - 1 >= drone->bank->entry_count) {
        errno = EINVAL;

        goto error_invalid;
    }

    if ((vox = xas_drone_vox_new(drone)) == NULL) {
        goto error_vox_new;
    }

    if (voice) {
        xas_drone_vox_set_voice(vox, voice);
    }

    xas_drone_vox_set_speed(vox, speed);

    for (i=0, o=sample_index; i<sample_count; i++, o++) {
        if (xas_drone_vox_say(vox, speech_lines[i]) < 0) {
            goto error_vox_say;
        }

        if (xas_drone_vox_save(vox, o) < 0) {
            goto error_vox_save;
        }

        if (xas_vox_stop(vox->obj) < 0) {
            goto error_vox_stop_obj;
        }
    }

    xas_drone_vox_destroy(vox);

    return 0;

error_vox_stop_obj:
error_vox_save:
error_vox_say:
error_vox_new:
error_invalid:
    return -1;
}

int xas_drone_seq_sample(xas_drone *drone,
                           xas_seq *seq,
                           size_t speech_part,
                           struct timeval *now) {
    struct timeval duration,
                   tmp;

    if (xas_seq_add_set_bank(seq,
                               drone->obj,
                               *now,
                               speech_part) < 0) {
        goto error_xas_seq_add;
    }

    if (xas_seq_add_event_on(seq,
                               drone->obj,
                               *now) < 0) {
        goto error_xas_seq_add;
    }

    xas_bank_entry_duration(drone->bank,
                              speech_part,
                              &duration);

    timeradd(now, &duration, &tmp);

    now->tv_sec  = tmp.tv_sec;
    now->tv_usec = tmp.tv_usec;

    return 0;

error_xas_seq_add:
    return -1;
}

xas_drone_vox *xas_drone_vox_new(xas_drone *drone) {
    xas_drone_vox *vox;

    if ((vox = malloc(sizeof(*vox))) == NULL) {
        goto error_malloc_vox;
    }

    if ((vox->obj = xas_vox_new(drone->scene->format,
                                  XAS_DRONE_VOX_BUFFER_SIZE,
                                  XAS_DRONE_VOX_TEXT2WAVE_PATH)) == NULL) {
        goto error_vox_new;
    }

    vox->drone = drone;

    return vox;

error_vox_new:
    free(vox);

error_malloc_vox:
    return NULL;
}

void xas_drone_vox_destroy(xas_drone_vox *vox) {
    xas_vox_destroy(vox->obj);
    free(vox);
}

int xas_drone_vox_set_voice(xas_drone_vox *vox, const char *voice) {
    return xas_vox_set_voice(vox->obj, voice);
}

int xas_drone_vox_set_speed(xas_drone_vox *vox, float speed) {
    return xas_vox_set_parameter_float(vox->obj,
                                         "Duration_Stretch",
                                         1.0f / speed);
}

int xas_drone_vox_say(xas_drone_vox *vox, const char *text) {
    return xas_vox_say(vox->obj, text);
}

int xas_drone_vox_vsayf(xas_drone_vox *vox,
                          const char *format,
                          va_list args) {
    return xas_vox_vsayf(vox->obj, format, args);
}

int xas_drone_vox_sayf(xas_drone_vox *vox, const char *format, ...) {
    int ret;
    va_list args;

    va_start(args, format);

    ret = xas_vox_vsayf(vox->obj, format, args);

    va_end(args);

    return ret;
}

int xas_drone_vox_save(xas_drone_vox *vox, size_t sample_index) {
    xas_audio_stream *source;

    if ((source = xas_vox_stream_new(vox->obj)) == NULL) {
        goto error_vox_stream_new;
    }

    if (xas_vox_generate(vox->obj) < 0) {
        goto error_vox_generate;
    }

    if (xas_bank_record(vox->drone->bank,
                          source,
                          sample_index,
                          vox->drone->bank->entry_size) < 0) {
        goto error_bank_record;
    }

    xas_audio_stream_destroy(source);

    return 0;

error_bank_record:
error_vox_generate:
    xas_audio_stream_destroy(source);

error_vox_stream_new:
    return -1;
}

xas_drone_chamber *xas_drone_chamber_new(xas_spatial_scene *scene,
                                             xas_spatial_coord location,
                                             size_t drone_count) {
    xas_drone_chamber *chamber;

    size_t total = drone_count * sizeof(xas_drone *);

    if ((chamber = malloc(sizeof(*chamber))) == NULL) {
        goto error_malloc_chamber;
    }

    if ((chamber->drones = malloc(total)) == NULL) {
        goto error_malloc_chamber_drones;
    }

    if ((chamber->synth_bass = xas_spatial_scene_add_synth(scene,
                                                             (xas_spatial_coord){
                                                                location.x,
                                                                location.y,
                                                                location.z + 5.0
                                                             },
                                                             XAS_SYNTH_SQUARE)) == NULL) {
        goto error_spatial_scene_add_synth;
    }

    if ((chamber->synth_l = xas_spatial_scene_add_synth(scene,
                                                          (xas_spatial_coord){
                                                              location.x - 5.0,
                                                              location.y,
                                                              location.z
                                                          },
                                                          XAS_SYNTH_SINE)) == NULL) {
        goto error_spatial_scene_add_synth;
    }

    if ((chamber->synth_r = xas_spatial_scene_add_synth(scene,
                                                          (xas_spatial_coord){
                                                              location.x + 5.0,
                                                              location.y,
                                                              location.z
                                                          },
                                                          XAS_SYNTH_SINE)) == NULL) {
        goto error_spatial_scene_add_synth;
    }

    xas_synth_set_frequency(chamber->synth_bass->ctx,
                              XAS_DRONE_CHAMBER_BASS_FREQUENCY);

    xas_synth_start(chamber->synth_l->ctx);
    xas_synth_start(chamber->synth_r->ctx);

    chamber->drone_count = drone_count;

    memset(chamber->drones, '\0', total);

    return chamber;

error_spatial_scene_add_synth:
error_malloc_chamber_drones:
    free(chamber);

error_malloc_chamber:
    return NULL;
}

void xas_drone_chamber_destroy(xas_drone_chamber *chamber) {
    free(chamber->drones);
    free(chamber);
}

void xas_drone_chamber_insert_drone(xas_drone_chamber *chamber,
                                      xas_drone *drone,
                                      size_t index) {
    chamber->drones[index] = drone;
}

void xas_drone_chamber_set_drone_gain(xas_drone_chamber *chamber, float gain) {
    size_t i;

    for (i=0; i<chamber->drone_count; i++) {
        xas_drone *drone = chamber->drones[i];

        xas_object_set_gain(drone->obj->ctx, gain);
    }
}

void xas_drone_chamber_set_synth_gain(xas_drone_chamber *chamber, float gain) {
    xas_object_set_gain(chamber->synth_l->ctx,    gain);
    xas_object_set_gain(chamber->synth_r->ctx,    gain);
}

void xas_drone_chamber_set_bass_gain(xas_drone_chamber *chamber, float gain) {
    xas_object_set_gain(chamber->synth_bass->ctx, gain);
}

void xas_drone_chamber_bass_start(xas_drone_chamber *chamber) {
    xas_synth_start(chamber->synth_bass->ctx);
}

void xas_drone_chamber_bass_stop(xas_drone_chamber *chamber) {
    xas_synth_stop(chamber->synth_bass->ctx);
}

void xas_drone_chamber_bass_set_type(xas_drone_chamber *chamber,
                                       enum xas_synth_type type) {
    xas_synth_set_type(chamber->synth_bass->ctx, type);
}

void xas_drone_chamber_bass_set_frequency(xas_drone_chamber *chamber,
                                            size_t freq) {
    xas_synth_set_frequency(chamber->synth_bass->ctx, freq);
}

int xas_drone_chamber_seq_intervals(xas_drone_chamber *chamber,
                                      xas_drone_chamber_interval *intervals,
                                      xas_seq *seq,
                                      size_t count,
                                      struct timeval *now) {
    size_t i;

    for (i=0; i<count; i++) {
        struct timeval cur = {
            .tv_sec  = now->tv_sec,
            .tv_usec = now->tv_usec
        };

        if (xas_seq_add_set_frequency(seq,
                                        chamber->synth_l,
                                        *now,
                                        intervals[i].freq_l) < 0) {
            goto error_seq_add;
        }

        if (xas_seq_add_set_synth_type(seq,
                                         chamber->synth_l,
                                         *now,
                                         intervals[i].type_l) < 0) {
            goto error_seq_add;
        }

        if (xas_seq_add_set_frequency(seq,
                                        chamber->synth_r,
                                        *now,
                                        intervals[i].freq_r) < 0) {
            goto error_seq_add;
        }

        if (xas_seq_add_set_synth_type(seq,
                                         chamber->synth_r,
                                         *now,
                                         intervals[i].type_r) < 0) {
            goto error_seq_add;
        }

        timeradd(&cur, &intervals[i].duration, now);
    }

    return 0;

error_seq_add:
    return -1;
}

static void max_speech_duration(xas_drone_chamber *chamber,
                                size_t speech_part,
                                struct timeval *max) {
    size_t i;

    max->tv_sec  = 0;
    max->tv_usec = 0;

    for (i=0; i<chamber->drone_count; i++) {
        xas_drone *drone = chamber->drones[i];

        struct timeval duration;

        xas_bank_entry_duration(drone->bank,
                                  speech_part,
                                  &duration);

        if (timercmp(max, &duration, <)) {
            max->tv_sec  = duration.tv_sec;
            max->tv_usec = duration.tv_usec;
        }
    }
}

int xas_drone_chamber_seq_chorus(xas_drone_chamber *chamber,
                                   xas_seq *seq,
                                   size_t speech_part,
                                   struct timeval *now) {
    struct timeval duration,
                   tmp,
                   delay = { 0, 500000 };

    size_t i;

    max_speech_duration(chamber, speech_part, &duration);

    for (i=0; i<chamber->drone_count; i++) {
        xas_drone *drone = chamber->drones[i];

        if (xas_seq_add_set_bank(seq,
                                   drone->obj,
                                   *now,
                                   speech_part) < 0) {
            goto error_seq_add;
        }

        if (xas_seq_add_event_on(seq, drone->obj, *now) < 0) {
            goto error_seq_add;
        }
    }

    timeradd(now, &duration, &tmp);
    timeradd(&tmp, &delay, now);

    return 0;

error_seq_add:
    return -1;
}