-
Notifications
You must be signed in to change notification settings - Fork 2
/
fluid.fl
631 lines (565 loc) · 18.5 KB
/
fluid.fl
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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
# data file for the Fltk User Interface Designer (fluid)
version 1.0304
header_name {.h}
code_name {.cxx}
decl {\#include "ti_lpc.h"} {public global
}
decl {int mode;} {public local
}
decl {int aud_pos;} {public local
}
decl {float aud_gain;} {public local
}
decl {bool use_interp;} {public local
}
decl {bool use_filter;} {public local
}
decl {int srate;} {public local
}
decl {int srate_au;} {public local
}
decl {int au_aud_gain;} {public local
}
decl {string au_fname;} {public local
}
Function {main_window()} {open
} {
Fl_Window {} {
label ti_lpc_app open
xywh {626 79 990 970} type Double labelsize 11 resizable visible
} {
Fl_Menu_Bar meMain {open
xywh {0 0 990 20}
} {}
Fl_Button {} {
label Sel
callback cb_bt_romfile_sel
tooltip {select a vsm rom, may need to do this twice, some roms came in pairs} xywh {952 25 35 20} labelsize 11
}
Fl_Button {} {
label Play
callback cb_bt_play
tooltip {play current lpc data} xywh {5 70 40 20} labelsize 11
}
Fl_Button {} {
label Stop
callback cb_bt_stop
tooltip {stop playing lpc data} xywh {50 70 40 20} labelsize 11
}
Fl_Input fi_romfname {
label {rom0:}
callback cb_fi_romfname
tooltip {enter a rom filename for addr: 0x0000 (16KB), remember roms are paired, so select both together} xywh {45 25 905 20} labelsize 11 when 1 textsize 11
}
Fl_Value_Slider fvs_aud_gain {
label gain
callback cb_fvs_aud_gain
tooltip {adj audio level to sound hardware} xywh {940 391 25 94} labelsize 9 minimum 300 maximum 0 textsize 7
}
Fl_Text_Editor te_romaddr {
label { }
tooltip {lpc addresses from rom (hex), hit Enter button to add to this, right click on an address to render audio} xywh {840 197 50 178}
class mytexteditor2
}
Fl_Text_Editor te_lpcdata {
label {LPC hex byte strings}
tooltip {lpc hex byte stream, one stream per line, right click on a line to render audio} xywh {245 196 595 180} labelsize 12 align 5
class mytexteditor
}
Fl_Text_Editor te_wordlist {
label {Speak Spell's Rom Contents (UK/USA)} selected
tooltip {word lists read from both roms (only valid for Speak & Spell rom pairs), right click on an address on the left to render audio} xywh {5 196 240 180} labelsize 12 align 5
class mytexteditor2
}
Fl_Text_Editor te_chirp {
label {tms5xxx code table}
tooltip {enter hex byte (or decimal number) strings, one line per param, chirp wfm, energy, pitch count, pitch, 10 lattice iir filter(k0-->k9) lookup codes, click on buttons at right to see some examples (chirp=10,-5,... for decimal, chirp_hx=0A,0xa,... for hex)} xywh {5 398 910 222} labelsize 13 align 5
}
Fl_Input fi_romaddr {
label {addr:}
callback cb_fi_romaddr
tooltip {enter a rom address to utter (hex)} xywh {840 176 50 20} labelsize 11 when 10 textsize 11
}
Fl_Button {} {
label AEdit
callback cb_bt_open_audio_editor
tooltip {open audio editor, edit script/bat to start your favourite audio editor, see: Linux: 'open_audio_editor.sh', Win: 'open_audio_editor.bat'} xywh {937 95 50 20} labelsize 11
}
Fl_Check_Button ck_interp {
label interp
callback cb_ck_interp
tooltip {select to enable interpolation of lpc parameters within each frame} xywh {330 75 55 15} down_box DOWN_BOX labelsize 11
}
Fl_Check_Button ck_filter {
label filter
callback cb_ck_filter
tooltip {enable lattice iir filtering - the articulatory path beyond the vocal chords} xywh {275 75 50 15} down_box DOWN_BOX labelsize 11
}
Fl_Value_Input fi_srate {
label {pc srate:}
callback cb_fi_srate
tooltip {set this to match the current samplerate of pc's audio hardware, if incorrectly set, you will get pitch and duration errors (chipmunk/slomo)} xywh {445 72 65 20} labelsize 11 textsize 11
}
Fl_Group fluid_gph1 {open
xywh {5 620 970 320}
} {}
Fl_Button {} {
label {+}
callback cb_bt_addr_plus
tooltip {go up one address and play} xywh {893 223 15 15} labelsize 8
}
Fl_Button {} {
label {-}
callback cb_bt_addr_minus
tooltip {go down one address and play} xywh {893 238 15 15} labelsize 9
}
Fl_Button {} {
label {+4}
callback cb_bt_addr_plus4
tooltip {go up 4 addresses and play} xywh {911 223 19 15} labelsize 8
}
Fl_Button {} {
label {-4}
callback cb_bt_addr_minus4
tooltip {go down 4 addresses and play} xywh {911 238 19 15} labelsize 8
}
Fl_Input fi_romfname1 {
label {rom1:}
callback cb_fi_romfname1
tooltip {enter a 2nd rom filename for addr: 0x4000 (16KB), remember roms are paired, so select both together} xywh {45 46 905 20} labelsize 11 when 1 textsize 11
}
Fl_Button {} {
label Sel
callback cb_bt_romfile1_sel
tooltip {select a vsm rom, may need to do this twice, some roms came in pairs} xywh {952 46 35 20} labelsize 11
}
Fl_Input fi_lpc_hex {
label {lpc hex:}
callback cb_fi_lpc_hex
tooltip {lpc hex byte stream (from last rendering), click play on right to re-render audio} xywh {65 133 825 20} labelsize 11 when 1 textsize 11
}
Fl_Button {} {
label Play
callback cb_bt_play_lpc_hex
tooltip {play lpc hex data} xywh {893 133 40 20} labelsize 11
}
Fl_Check_Button ck_pitch_6bits {
label pitch6bits
callback cb_ck_pitch_6bits
tooltip {unticked is 5bits 'pitch_count=32', ticked is 6bits 'pitch_count=64', see the tms5xxxx code table editbox} xywh {180 75 85 15} down_box DOWN_BOX labelsize 11 deactivate
}
Fl_Value_Input fi_srate_au {
label {au srate:}
callback cb_fi_srate_au
tooltip {sample rate to use when saving the .au audio file} xywh {725 96 58 19} labelsize 12 textsize 11
}
Fl_Value_Slider fvs_au_aud_gain {
label {au file gain}
callback cb_fvs_au_aud_gain
tooltip {set the audio gain when saving to audio file, 100 is unity} xywh {785 95 150 21} type Horizontal box UP_BOX labelsize 9 maximum 300 value 100 textsize 7
}
Fl_Input fi_au_fname {
label {au fname:}
tooltip {enter .au filename to save audio into} xywh {66 96 560 20} labelsize 11 when 1 textsize 11
}
Fl_Button {} {
label tms5100
callback cb_bt_tms5100
tooltip {select TMS5xxx chip version and its specific codes for: chirp, engery, pitch and lattice iir filter coeffs} xywh {918 509 65 20} labelsize 11
}
Fl_Button {} {
label tms5220
callback cb_bt_tms5220
tooltip {select TMS5xxx chip version and its specific codes for: chirp, engery, pitch and lattice iir filter coeffs} xywh {918 581 65 20} labelsize 11
}
Fl_Button {} {
label {+last}
callback cb_bt_addr_plus_last
tooltip {add last rendered byte count to address and play, this does not work well for words that have text bytes before their lpc byte strings, it's not easy to discern between text bytes and lpc strings without a table of rom's organisation} xywh {954 238 33 15} labelsize 9
}
Fl_Button {} {
label tms5200
callback cb_bt_tms5200
tooltip {select TMS5xxx chip version and its specific codes for: chirp, engery, pitch and lattice iir filter coeffs} xywh {918 557 65 20} labelsize 11
}
Fl_Input fi_lpc_decimal {
label {lpc decml:}
callback cb_fi_lpc_decimal
tooltip {lpc decimal number stream (from last rendering), click play on right to re-render audio} xywh {65 153 825 20} labelsize 11 when 1 textsize 11
}
Fl_Button {} {
label Play
callback cb_bt_play_lpc_decimal
tooltip {play lpc decimal data} xywh {893 153 40 20} labelsize 11
}
Fl_Button {} {
label {B.File}
callback cb_bt_play_lpc_file
tooltip {play lpc hex data from a binary file} xywh {935 133 40 20} labelsize 11
}
Fl_Button {} {
label Play
callback cb_bt_addr_play
tooltip {play lpc at address} xywh {893 177 40 20} labelsize 11
}
Fl_Button {} {
label Enter
callback cb_bt_addr_enter
tooltip {enter address in list} xywh {934 177 40 20} labelsize 11
}
Fl_Input fi_addr_step_delay {
label {delay:}
user_data 1
callback cb_fi_addr_step_combo
tooltip {delay in secs between auto address stepping, e.g: 0.5} xywh {926 297 45 20} labelsize 11 when 10 textsize 11
}
Fl_Input fi_addr_step_delta {
label {delta:}
user_data 0
callback cb_fi_addr_step_combo
tooltip {amount to auto address step by (decimal), e.g: 2 or -1} xywh {926 318 45 20} labelsize 11 when 10 textsize 11
}
Fl_Button {} {
label Start
user_data 0
callback cb_bt_addr_step_combo
tooltip {start auto address stepping} xywh {893 342 36 17} labelsize 9
}
Fl_Button {} {
label Stop
user_data 1
callback cb_bt_addr_step_combo
tooltip {stop auto address stepping} xywh {932 342 35 17} labelsize 9
}
Fl_Input fi_addr_step_count {
label {count:}
user_data 2
callback cb_fi_addr_step_combo
tooltip {count of the number of auto address steps attempted} xywh {932 361 45 20} labelsize 11 when 10 textsize 11
}
Fl_Box bx_addr_step_led {
xywh {970 345 12 12} box BORDER_BOX
}
Fl_Input fi_addr_snd_end {
label {snd end:}
tooltip {approx end address reached in rom after speech was sounded (in hex), could be out by a few bytes, will show number of bytes parsed (a hex count) if sounding from a hex string, i.e. not from a rom address} xywh {941 200 46 20} labelsize 11 when 10 textsize 11
}
Fl_Button {} {
label {-}
user_data 0
callback cb_bt_addr_dec_inc_val
tooltip {dec address by defined amount} xywh {893 258 15 15} labelsize 9
}
Fl_Input fi_addr_dec_inc_val {
tooltip {enter a value to dec/inc address by (decimal)} xywh {911 255 44 20} labelsize 11 when 10 textsize 11 resizable
}
Fl_Button {} {
label {+}
user_data 1
callback cb_bt_addr_dec_inc_val
tooltip {inc address by defined amount} xywh {958 258 15 15} labelsize 9
}
Fl_Button {} {
label {+8}
callback cb_bt_addr_plus8
tooltip {go up 8 addresses and play} xywh {933 223 19 15} labelsize 8
}
Fl_Button {} {
label {-8}
callback cb_bt_addr_minus8
tooltip {go down 8 addresses and play} xywh {933 238 19 15} labelsize 8
}
Fl_Box {} {
label {Auto Step}
tooltip {Address auto stepping, enter params and hit Start button} xywh {905 281 70 15} labelsize 9
}
Fl_Button {} {
label {@<-}
user_data 0
callback cb_bt_addr_hist_prev_next
tooltip {previous address history} xywh {744 174 24 20} labelsize 8
}
Fl_Button {} {
label {@->}
user_data 1
callback cb_bt_addr_hist_prev_next
tooltip {next address history} xywh {771 174 24 20} labelsize 8
}
Fl_Box bx_addr_hist_label {
label {addr history (????/????):}
tooltip {Address auto stepping, enter params and hit Start button} xywh {605 175 135 15} labelsize 11
}
Fl_Button {} {
label tms5110
callback cb_bt_tms5110
tooltip {select TMS5xxx chip version and its specific codes for: chirp, engery, pitch and lattice iir filter coeffs} xywh {918 533 65 20} labelsize 11
}
Fl_Button {} {
label Load
user_data 0
callback cb_bt_hex_byte_text_file
tooltip {load lpc hex byte strings from text file} xywh {377 180 45 15} labelsize 9
}
Fl_Button {} {
label Save
user_data 1
callback cb_bt_hex_byte_text_file
tooltip {save lpc hex byte strings to text file} xywh {425 180 45 15} labelsize 9
}
Fl_Button {} {
label Load
user_data 0
callback cb_bt_tms_code_tables_text_file
tooltip {load tms code table from text file} xywh {147 382 45 15} labelsize 9
}
Fl_Button {} {
label Save
user_data 1
callback cb_bt_tms_code_tables_text_file
tooltip {save tms code table to text file} xywh {195 382 45 15} labelsize 9
}
Fl_Button {} {
label Sel
callback cb_bt_aufile_sel
tooltip {select .au audio file} xywh {628 96 35 20} labelsize 11
}
}
code {tb_lpcdata = new Fl_Text_Buffer;
te_lpcdata->buffer( tb_lpcdata );
te_lpcdata->textsize(12);
te_lpcdata->textfont(4);} {}
code {tb_romaddr = new Fl_Text_Buffer;
te_romaddr->buffer( tb_romaddr );
te_romaddr->textsize(12);
te_romaddr->textfont(4);} {}
code {tb_wordlist = new Fl_Text_Buffer;
te_wordlist->buffer( tb_wordlist );
te_wordlist->textsize(12);
te_wordlist->textfont(4);
te_wordlist->id0 = 1;} {}
code {tb_chirp = new Fl_Text_Buffer;
te_chirp->buffer( tb_chirp );
te_chirp->textsize(12);
te_chirp->textfont(4);} {}
}
Function {cb_bt_romfile_sel(Fl_Widget*, void*)} {open return_type void
} {
code {select_rom_file();} {}
}
Function {cb_bt_romfile1_sel(Fl_Widget*, void*)} {open
} {
code {select_rom1_file();} {}
}
Function {cb_fi_romfname(Fl_Widget*, void*)} {open
} {
code {printf("romfname\\n");} {}
}
Function {cb_fi_romfname1(Fl_Widget*, void*)} {open
} {
code {printf("romfname1\\n");} {}
}
Function {cb_bt_play(Fl_Widget*, void*)} {open
} {
code {printf("play\\n");
say_lpc_str(fi_lpc_hex->value());
//talk.say_repeat();} {}
}
Function {cb_bt_stop(Fl_Widget*, void*)} {open return_type void
} {
code {printf("stop\\n");
stop_play();} {}
}
decl {Fl_Text_Buffer *tb_lpcdata;} {public local
}
decl {Fl_Text_Buffer *tb_romaddr;} {public local
}
decl {Fl_Text_Buffer *tb_wordlist;} {public local
}
decl {Fl_Text_Buffer *tb_chirp;} {public local
}
Function {cb_fvs_aud_gain(Fl_Widget *w, void*)} {open
} {
code {Fl_Value_Slider *o=(Fl_Value_Slider*)w;
aud_gain = o->value();
printf("aud_gain: %.2f\\n",aud_gain);} {}
}
Function {cb_bt_open_audio_editor(Fl_Widget*, void*)} {open return_type void
} {
code {printf("cb_bt_open_audio_editor()\\n");
cb_open_audio_editor_actual();} {}
}
Function {cb_fi_romaddr(Fl_Widget *w, void *v)} {open return_type void
} {
code {printf("cb_fi_romaddr()\\n");
Fl_Input *o=(Fl_Input*)w;
string s1 = o->value();
unsigned int addr;
sscanf( s1.c_str(), "%x", &addr );
printf("addr: %x\\n", addr );
addr_add_history( addr );
talk.say_tmc0580( vsm, addr );} {}
}
Function {cb_ck_interp(Fl_Widget *w, void *v)} {open return_type void
} {
code {Fl_Check_Button *o=(Fl_Check_Button*)w;
if( o->value()) use_interp = 1;
else use_interp = 0;
printf("cb_ck_interp(): %d\\n", use_interp );
say_lpc_str(fi_lpc_hex->value());
//talk.say_repeat();} {}
}
Function {cb_ck_filter(Fl_Widget *w, void *v)} {open return_type void
} {
code {Fl_Check_Button *o=(Fl_Check_Button*)w;
if( o->value()) use_filter = 1;
else use_filter = 0;
printf("cb_ck_filter(): %d\\n", use_filter );
say_lpc_str(fi_lpc_hex->value());
//talk.say_repeat();} {}
}
Function {cb_fi_srate(Fl_Widget *w, void *v)} {open return_type void
} {
code {Fl_Value_Input *o=(Fl_Value_Input*)w;
printf("cb_fi_srate(): %d\\n", srate );
int sr = o->value();
set_new_srate( sr );
say_lpc_str(fi_lpc_hex->value());
//talk.say_repeat();} {}
}
Function {cb_bt_addr_plus(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_addr_plus\\n");
modify_addr( 1 );
addr_add_history( last_say_offset );
talk.say_repeat();} {}
}
Function {cb_bt_addr_minus(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_addr_minus\\n");
modify_addr(-1);
addr_add_history( last_say_offset );
talk.say_repeat();} {}
}
Function {cb_bt_addr_plus4(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_addr_plus4\\n");
modify_addr(4);
addr_add_history( last_say_offset );
talk.say_repeat();} {}
}
Function {cb_bt_addr_minus4(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_addr_minus4\\n");
modify_addr(-4);
addr_add_history( last_say_offset );
talk.say_repeat();} {}
}
Function {cb_bt_addr_plus_last(Fl_Widget*w, void*v)} {open
} {
code {printf("cb_bt_addr_plus_last\\n");
cb_bt_addr_plus_last_actual( w, v );} {}
}
Function {cb_fi_lpc_hex(Fl_Widget *w, void *v)} {open
} {
code {printf("cb_fi_lpc_hex()\\n");
cb_fi_lpc_hex_actual();
//Fl_Input *o=(Fl_Input*)w;
//string s1 = o->value();
//say_lpc_str( s1 );} {}
}
Function {cb_fi_lpc_decimal(Fl_Widget *w, void *v)} {open
} {
code {printf("cb_fi_lpc_decimal()\\n");
cb_fi_lpc_decimal_actual();
//Fl_Input *o=(Fl_Input*)w;
//string s1 = o->value();
//say_lpc_str( s1 );} {}
}
Function {cb_bt_play_lpc_hex(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_play_lpc_hex()\\n");
cb_bt_play_lpc_hex_actual();} {}
}
Function {cb_bt_play_lpc_decimal(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_play_lpc_decimal()\\n");
cb_bt_play_lpc_decimal_actual();} {}
}
Function {cb_ck_pitch_6bits(Fl_Widget*w, void*v)} {open
} {
code {Fl_Check_Button *o=(Fl_Check_Button*)w;
if( o->value()) bperiod_6bits = 1;
else bperiod_6bits = 0;
printf("cb_ck_period_6bits: %d\\n", bperiod_6bits );
say_lpc_str(fi_lpc_hex->value());
//talk.say_repeat();} {}
}
Function {cb_fi_srate_au(Fl_Widget *w, void *v)} {open return_type void
} {
code {Fl_Value_Input *o=(Fl_Value_Input*)w;
printf("cb_fi_srate_au(): %d\\n", srate );
int sr = o->value();
set_new_srate_au( sr );
//talk.say_repeat();} {}
}
Function {cb_fvs_au_aud_gain(Fl_Widget *w, void*)} {open
} {
code {Fl_Value_Slider *o=(Fl_Value_Slider*)w;
au_aud_gain = o->value();
printf("au_aud_gain: %d\\n",au_aud_gain);} {}
}
Function {cb_bt_tms5100(Fl_Widget *w, void*)} {open
} {
code {printf("cb_bt_tms5100\\n");
cb_bt_tms5100_actual();} {}
}
Function {cb_bt_tms5110(Fl_Widget *w, void*)} {open
} {
code {printf("cb_bt_tms5110\\n");
cb_bt_tms5110_actual();} {}
}
Function {cb_bt_tms5200(Fl_Widget *w, void*)} {open
} {
code {printf("cb_bt_tms5200\\n");
cb_bt_tms5200_actual();} {}
}
Function {cb_bt_tms5220(Fl_Widget *w, void*)} {open
} {
code {printf("cb_bt_tms5220\\n");
cb_bt_tms5220_actual();} {}
}
Function {cb_bt_play_lpc_file(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_play_lpc_file()\\n");
cb_bt_play_lpc_file_actual();} {}
}
Function {cb_bt_addr_play(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_addr_play\\n");
modify_addr( 0 );
talk.say_repeat();} {}
}
Function {cb_bt_addr_enter(Fl_Widget*w, void*v)} {open
} {
code {printf("cb_bt_addr_enter\\n");
cb_bt_addr_enter_actual( w, v );
talk.say_repeat();} {}
}
Function {cb_bt_addr_plus8(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_addr_plus8\\n");
modify_addr(8);
addr_add_history( last_say_offset );
talk.say_repeat();} {}
}
Function {cb_bt_addr_minus8(Fl_Widget*, void*)} {open
} {
code {printf("cb_bt_addr_minus8\\n");
modify_addr(-8);
addr_add_history( last_say_offset );
talk.say_repeat();} {}
}
Function {cb_bt_aufile_sel(Fl_Widget*, void*)} {open return_type void
} {
code {select_au_file();} {}
}