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
|
#include <stdlib.h>
#include <string.h>
#include <xas/vox.h>
#include <xas/drone.h>
static size_t DEFAULT_BUFFER_SIZE = 735;
static int record_speech_sample(xas_bank *bank,
size_t entry_index,
float speed,
const char *text) {
xas_vox *vox;
xas_audio_stream *source;
if ((vox = xas_vox_new(bank->format,
DEFAULT_BUFFER_SIZE,
"/usr/bin/text2wave")) == NULL) {
goto error_vox_new;
}
if ((source = xas_vox_stream_new(vox)) == NULL) {
goto error_vox_stream_new;
}
xas_vox_set_voice(vox, "voice_cmu_us_slt_cg");
xas_vox_set_parameter_float(vox, "Duration_Stretch", speed);
xas_vox_say(vox, text);
xas_vox_generate(vox);
if (xas_bank_record(bank, source, entry_index, bank->entry_size) < 0) {
goto error_bank_record;
}
xas_audio_stream_destroy(source);
xas_vox_destroy(vox);
return 0;
error_bank_record:
xas_audio_stream_destroy(source);
error_vox_stream_new:
xas_vox_destroy(vox);
error_vox_new:
return -1;
}
xas_drone *xas_drone_new(xas_spatial_scene *scene,
xas_spatial_coord position,
float speech_speed,
size_t speech_sample_count,
size_t speech_line_count,
const char **speech_lines) {
xas_drone *drone;
size_t i;
if ((drone = malloc(sizeof(*drone))) == NULL) {
goto error_malloc_drone;
}
if ((drone->bank = xas_bank_new(scene->format,
speech_sample_count,
speech_line_count)) == NULL) {
goto error_bank_new;
}
for (i=0; i<speech_line_count; i++) {
if (record_speech_sample(drone->bank,
i,
speech_speed,
speech_lines[i]) < 0) {
goto error_record_speech_sample;
}
}
if ((drone->obj = xas_spatial_scene_add_bank_player(scene,
position,
drone->bank)) == NULL) {
goto error_spatial_scene_add_bank_player;
}
return drone;
error_spatial_scene_add_bank_player:
error_record_speech_sample:
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);
}
xas_spatial_object *xas_drone_get_spatial_object(xas_drone *drone) {
return drone->obj;
}
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_bass->ctx);
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);
}
void xas_drone_chamber_insert_drone(xas_drone_chamber *chamber,
xas_drone *drone,
size_t index) {
chamber->drones[index] = drone;
}
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;
}
int xas_drone_chamber_seq_speech(xas_drone_chamber *chamber,
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;
}
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(&duration, max, >)) {
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;
}
|