Skip to content

Latest commit

 

History

History
609 lines (531 loc) · 15.3 KB

instrum.c

File metadata and controls

609 lines (531 loc) · 15.3 KB
 
Oct 21, 1999
Oct 21, 1999
1
/*
Oct 18, 2017
Oct 18, 2017
2
Oct 21, 1999
Oct 21, 1999
3
4
5
6
TiMidity -- Experimental MIDI to WAVE converter
Copyright (C) 1995 Tuukka Toivonen <toivonen@clinet.fi>
This program is free software; you can redistribute it and/or modify
Dec 31, 2011
Dec 31, 2011
7
it under the terms of the Perl Artistic License, available in COPYING.
Oct 18, 2017
Oct 18, 2017
8
9
10
11
12
13
14
15
16
17
instrum.c
Code to load and unload GUS-compatible instrument patches.
*/
#if HAVE_CONFIG_H
# include <config.h>
#endif
Oct 21, 1999
Oct 21, 1999
18
19
20
21
22
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
Oct 18, 2017
Oct 18, 2017
23
24
25
26
#include "SDL.h"
#include "timidity.h"
#include "options.h"
Oct 21, 1999
Oct 21, 1999
27
28
29
30
#include "common.h"
#include "instrum.h"
#include "resample.h"
#include "tables.h"
Aug 21, 2004
Aug 21, 2004
31
Oct 21, 1999
Oct 21, 1999
32
33
34
35
36
37
38
39
static void free_instrument(Instrument *ip)
{
Sample *sp;
int i;
if (!ip) return;
for (i=0; i<ip->samples; i++)
{
sp=&(ip->sample[i]);
Oct 18, 2017
Oct 18, 2017
40
free(sp->data);
Oct 21, 1999
Oct 21, 1999
41
42
43
44
45
}
free(ip->sample);
free(ip);
}
Oct 18, 2017
Oct 18, 2017
46
static void free_bank(MidiSong *song, int dr, int b)
Oct 21, 1999
Oct 21, 1999
47
48
{
int i;
Oct 18, 2017
Oct 18, 2017
49
50
51
ToneBank *bank=((dr) ? song->drumset[b] : song->tonebank[b]);
for (i=0; i<MAXBANK; i++)
if (bank->instrument[i])
Aug 21, 2004
Aug 21, 2004
52
{
Oct 18, 2017
Oct 18, 2017
53
54
55
56
/* Not that this could ever happen, of course */
if (bank->instrument[i] != MAGIC_LOAD_INSTRUMENT)
free_instrument(bank->instrument[i]);
bank->instrument[i]=0;
Aug 21, 2004
Aug 21, 2004
57
58
59
}
}
Oct 18, 2017
Oct 18, 2017
60
static Sint32 convert_envelope_rate(MidiSong *song, Uint8 rate)
Aug 21, 2004
Aug 21, 2004
61
{
Oct 18, 2017
Oct 18, 2017
62
63
64
65
66
Sint32 r;
r = 3 - ((rate >> 6) & 0x3);
r *= 3;
r = (Sint32) (rate & 0x3f) << r; /* 6.9 fixed point */
Aug 21, 2004
Aug 21, 2004
67
68
/* 15.15 fixed point. */
Oct 18, 2017
Oct 18, 2017
69
r = ((r * 44100) / song->rate) * song->control_ratio;
Aug 21, 2004
Aug 21, 2004
70
Oct 18, 2017
Oct 18, 2017
71
72
73
74
75
#ifdef FAST_DECAY
return r << 10;
#else
return r << 9;
#endif
Oct 21, 1999
Oct 21, 1999
76
77
}
Oct 18, 2017
Oct 18, 2017
78
static Sint32 convert_envelope_offset(Uint8 offset)
Oct 21, 1999
Oct 21, 1999
79
80
81
82
83
84
85
86
{
/* This is not too good... Can anyone tell me what these values mean?
Are they GUS-style "exponential" volumes? And what does that mean? */
/* 15.15 fixed point */
return offset << (7+15);
}
Oct 18, 2017
Oct 18, 2017
87
static Sint32 convert_tremolo_sweep(MidiSong *song, Uint8 sweep)
Oct 21, 1999
Oct 21, 1999
88
89
90
91
92
{
if (!sweep)
return 0;
return
Oct 18, 2017
Oct 18, 2017
93
94
((song->control_ratio * SWEEP_TUNING) << SWEEP_SHIFT) /
(song->rate * sweep);
Oct 21, 1999
Oct 21, 1999
95
96
}
Oct 18, 2017
Oct 18, 2017
97
98
static Sint32 convert_vibrato_sweep(MidiSong *song, Uint8 sweep,
Sint32 vib_control_ratio)
Oct 21, 1999
Oct 21, 1999
99
100
101
102
103
{
if (!sweep)
return 0;
return
Oct 18, 2017
Oct 18, 2017
104
105
(Sint32) (FSCALE((double) (vib_control_ratio) * SWEEP_TUNING, SWEEP_SHIFT)
/ (double)(song->rate * sweep));
Oct 21, 1999
Oct 21, 1999
106
107
108
109
/* this was overflowing with seashore.pat
((vib_control_ratio * SWEEP_TUNING) << SWEEP_SHIFT) /
Oct 18, 2017
Oct 18, 2017
110
(song->rate * sweep); */
Oct 21, 1999
Oct 21, 1999
111
112
}
Oct 18, 2017
Oct 18, 2017
113
static Sint32 convert_tremolo_rate(MidiSong *song, Uint8 rate)
Oct 21, 1999
Oct 21, 1999
114
115
{
return
Oct 18, 2017
Oct 18, 2017
116
117
((SINE_CYCLE_LENGTH * song->control_ratio * rate) << RATE_SHIFT) /
(TREMOLO_RATE_TUNING * song->rate);
Oct 21, 1999
Oct 21, 1999
118
119
}
Oct 18, 2017
Oct 18, 2017
120
static Sint32 convert_vibrato_rate(MidiSong *song, Uint8 rate)
Oct 21, 1999
Oct 21, 1999
121
122
123
{
/* Return a suitable vibrato_control_ratio value */
return
Oct 18, 2017
Oct 18, 2017
124
(VIBRATO_RATE_TUNING * song->rate) /
Oct 21, 1999
Oct 21, 1999
125
126
127
(rate * 2 * VIBRATO_SAMPLE_INCREMENTS);
}
Oct 18, 2017
Oct 18, 2017
128
static void reverse_data(Sint16 *sp, Sint32 ls, Sint32 le)
Oct 21, 1999
Oct 21, 1999
129
{
Oct 18, 2017
Oct 18, 2017
130
Sint16 s, *ep=sp+le;
Oct 21, 1999
Oct 21, 1999
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
sp+=ls;
le-=ls;
le/=2;
while (le--)
{
s=*sp;
*sp++=*ep;
*ep--=s;
}
}
/*
If panning or note_to_use != -1, it will be used for all samples,
instead of the sample-specific values in the instrument file.
For note_to_use, any value <0 or >127 will be forced to 0.
For other parameters, 1 means yes, 0 means no, other values are
undefined.
TODO: do reverse loops right */
Oct 18, 2017
Oct 18, 2017
152
153
static Instrument *load_instrument(MidiSong *song, char *name, int percussion,
int panning, int amp, int note_to_use,
Oct 21, 1999
Oct 21, 1999
154
int strip_loop, int strip_envelope,
Oct 18, 2017
Oct 18, 2017
155
int strip_tail)
Oct 21, 1999
Oct 21, 1999
156
157
{
Instrument *ip;
Oct 18, 2017
Oct 18, 2017
158
159
160
Sample *sp;
SDL_RWops *rw;
char tmp[1024];
Oct 21, 1999
Oct 21, 1999
161
162
163
164
165
166
int i,j,noluck=0;
static char *patch_ext[] = PATCH_EXT_LIST;
if (!name) return 0;
/* Open patch file */
Oct 18, 2017
Oct 18, 2017
167
if ((rw=open_file(name)) == NULL)
Oct 21, 1999
Oct 21, 1999
168
169
170
171
172
{
noluck=1;
/* Try with various extensions */
for (i=0; patch_ext[i]; i++)
{
Oct 18, 2017
Oct 18, 2017
173
if (strlen(name)+strlen(patch_ext[i])<1024)
Oct 21, 1999
Oct 21, 1999
174
{
Oct 18, 2017
Oct 18, 2017
175
176
177
strcpy(tmp, name);
strcat(tmp, patch_ext[i]);
if ((rw=open_file(tmp)) != NULL)
Oct 21, 1999
Oct 21, 1999
178
179
180
181
182
183
184
185
186
187
{
noluck=0;
break;
}
}
}
}
if (noluck)
{
Oct 18, 2017
Oct 18, 2017
188
SNDDBG(("Instrument `%s' can't be found.\n", name));
Oct 21, 1999
Oct 21, 1999
189
190
191
return 0;
}
Oct 18, 2017
Oct 18, 2017
192
SNDDBG(("Loading instrument %s\n", tmp));
Oct 21, 1999
Oct 21, 1999
193
194
195
196
/* Read some headers and do cursory sanity checks. There are loads
of magic offsets. This could be rewritten... */
Oct 18, 2017
Oct 18, 2017
197
if ((239 != SDL_RWread(rw, tmp, 1, 239)) ||
Oct 21, 1999
Oct 21, 1999
198
199
200
201
(memcmp(tmp, "GF1PATCH110\0ID#000002", 22) &&
memcmp(tmp, "GF1PATCH100\0ID#000002", 22))) /* don't know what the
differences are */
{
Oct 18, 2017
Oct 18, 2017
202
SNDDBG(("%s: not an instrument\n", name));
Oct 21, 2017
Oct 21, 2017
203
SDL_RWclose(rw);
Oct 21, 1999
Oct 21, 1999
204
205
return 0;
}
Oct 18, 2017
Oct 18, 2017
206
Oct 21, 1999
Oct 21, 1999
207
208
209
if (tmp[82] != 1 && tmp[82] != 0) /* instruments. To some patch makers,
0 means 1 */
{
Oct 18, 2017
Oct 18, 2017
210
SNDDBG(("Can't handle patches with %d instruments\n", tmp[82]));
Oct 21, 2017
Oct 21, 2017
211
SDL_RWclose(rw);
Oct 21, 1999
Oct 21, 1999
212
213
214
215
216
return 0;
}
if (tmp[151] != 1 && tmp[151] != 0) /* layers. What's a layer? */
{
Oct 18, 2017
Oct 18, 2017
217
SNDDBG(("Can't handle instruments with %d layers\n", tmp[151]));
Oct 21, 2017
Oct 21, 2017
218
SDL_RWclose(rw);
Oct 21, 1999
Oct 21, 1999
219
220
221
return 0;
}
Oct 18, 2017
Oct 18, 2017
222
223
224
225
ip=safe_malloc(sizeof(Instrument));
ip->samples = tmp[198];
ip->sample = safe_malloc(sizeof(Sample) * ip->samples);
for (i=0; i<ip->samples; i++)
Oct 21, 1999
Oct 21, 1999
226
{
Aug 21, 2004
Aug 21, 2004
227
Oct 18, 2017
Oct 18, 2017
228
229
230
231
Uint8 fractions;
Sint32 tmplong;
Uint16 tmpshort;
Uint8 tmpchar;
Oct 21, 1999
Oct 21, 1999
232
233
#define READ_CHAR(thing) \
Oct 18, 2017
Oct 18, 2017
234
if (1 != SDL_RWread(rw, &tmpchar, 1, 1)) goto fail; \
Oct 21, 1999
Oct 21, 1999
235
236
thing = tmpchar;
#define READ_SHORT(thing) \
Oct 18, 2017
Oct 18, 2017
237
238
if (1 != SDL_RWread(rw, &tmpshort, 2, 1)) goto fail; \
thing = SDL_SwapLE16(tmpshort);
Oct 21, 1999
Oct 21, 1999
239
#define READ_LONG(thing) \
Oct 18, 2017
Oct 18, 2017
240
241
if (1 != SDL_RWread(rw, &tmplong, 4, 1)) goto fail; \
thing = SDL_SwapLE32(tmplong);
Oct 21, 1999
Oct 21, 1999
242
Oct 18, 2017
Oct 18, 2017
243
244
245
SDL_RWseek(rw, 7, RW_SEEK_CUR); /* Skip the wave name */
if (1 != SDL_RWread(rw, &fractions, 1, 1))
Oct 21, 1999
Oct 21, 1999
246
247
{
fail:
Oct 18, 2017
Oct 18, 2017
248
SNDDBG(("Error reading sample %d\n", i));
Oct 21, 1999
Oct 21, 1999
249
for (j=0; j<i; j++)
Oct 18, 2017
Oct 18, 2017
250
251
free(ip->sample[j].data);
free(ip->sample);
Oct 21, 1999
Oct 21, 1999
252
free(ip);
Oct 21, 2017
Oct 21, 2017
253
SDL_RWclose(rw);
Oct 21, 1999
Oct 21, 1999
254
255
256
return 0;
}
Oct 18, 2017
Oct 18, 2017
257
258
sp=&(ip->sample[i]);
Oct 21, 1999
Oct 21, 1999
259
260
261
262
263
264
265
READ_LONG(sp->data_length);
READ_LONG(sp->loop_start);
READ_LONG(sp->loop_end);
READ_SHORT(sp->sample_rate);
READ_LONG(sp->low_freq);
READ_LONG(sp->high_freq);
READ_LONG(sp->root_freq);
Oct 18, 2017
Oct 18, 2017
266
267
SDL_RWseek(rw, 2, RW_SEEK_CUR); /* Why have a "root frequency" and then
* "tuning"?? */
Oct 21, 1999
Oct 21, 1999
268
269
270
271
272
273
READ_CHAR(tmp[0]);
if (panning==-1)
sp->panning = (tmp[0] * 8 + 4) & 0x7f;
else
Oct 18, 2017
Oct 18, 2017
274
sp->panning=(Uint8)(panning & 0x7F);
Aug 21, 2004
Aug 21, 2004
275
Oct 21, 1999
Oct 21, 1999
276
/* envelope, tremolo, and vibrato */
Oct 18, 2017
Oct 18, 2017
277
if (18 != SDL_RWread(rw, tmp, 1, 18)) goto fail;
Oct 21, 1999
Oct 21, 1999
278
279
280
281
282
if (!tmp[13] || !tmp[14])
{
sp->tremolo_sweep_increment=
sp->tremolo_phase_increment=sp->tremolo_depth=0;
Oct 18, 2017
Oct 18, 2017
283
SNDDBG((" * no tremolo\n"));
Oct 21, 1999
Oct 21, 1999
284
285
286
}
else
{
Oct 18, 2017
Oct 18, 2017
287
288
sp->tremolo_sweep_increment=convert_tremolo_sweep(song, tmp[12]);
sp->tremolo_phase_increment=convert_tremolo_rate(song, tmp[13]);
Oct 21, 1999
Oct 21, 1999
289
sp->tremolo_depth=tmp[14];
Oct 18, 2017
Oct 18, 2017
290
SNDDBG((" * tremolo: sweep %d, phase %d, depth %d\n",
Oct 21, 1999
Oct 21, 1999
291
sp->tremolo_sweep_increment, sp->tremolo_phase_increment,
Oct 18, 2017
Oct 18, 2017
292
sp->tremolo_depth));
Oct 21, 1999
Oct 21, 1999
293
294
295
296
297
298
}
if (!tmp[16] || !tmp[17])
{
sp->vibrato_sweep_increment=
sp->vibrato_control_ratio=sp->vibrato_depth=0;
Oct 18, 2017
Oct 18, 2017
299
SNDDBG((" * no vibrato\n"));
Oct 21, 1999
Oct 21, 1999
300
301
302
}
else
{
Oct 18, 2017
Oct 18, 2017
303
sp->vibrato_control_ratio=convert_vibrato_rate(song, tmp[16]);
Oct 21, 1999
Oct 21, 1999
304
sp->vibrato_sweep_increment=
Oct 18, 2017
Oct 18, 2017
305
convert_vibrato_sweep(song, tmp[15], sp->vibrato_control_ratio);
Oct 21, 1999
Oct 21, 1999
306
sp->vibrato_depth=tmp[17];
Oct 18, 2017
Oct 18, 2017
307
SNDDBG((" * vibrato: sweep %d, ctl %d, depth %d\n",
Oct 21, 1999
Oct 21, 1999
308
sp->vibrato_sweep_increment, sp->vibrato_control_ratio,
Oct 18, 2017
Oct 18, 2017
309
sp->vibrato_depth));
Oct 21, 1999
Oct 21, 1999
310
311
312
313
}
READ_CHAR(sp->modes);
Oct 18, 2017
Oct 18, 2017
314
315
316
317
SDL_RWseek(rw, 40, RW_SEEK_CUR); /* skip the useless scale frequency, scale
factor (what's it mean?), and reserved
space */
Oct 21, 1999
Oct 21, 1999
318
319
320
/* Mark this as a fixed-pitch instrument if such a deed is desired. */
if (note_to_use!=-1)
Oct 18, 2017
Oct 18, 2017
321
sp->note_to_use=(Uint8)(note_to_use);
Oct 21, 1999
Oct 21, 1999
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
else
sp->note_to_use=0;
/* seashore.pat in the Midia patch set has no Sustain. I don't
understand why, and fixing it by adding the Sustain flag to
all looped patches probably breaks something else. We do it
anyway. */
if (sp->modes & MODES_LOOPING)
sp->modes |= MODES_SUSTAIN;
/* Strip any loops and envelopes we're permitted to */
if ((strip_loop==1) &&
(sp->modes & (MODES_SUSTAIN | MODES_LOOPING |
MODES_PINGPONG | MODES_REVERSE)))
{
Oct 18, 2017
Oct 18, 2017
338
SNDDBG((" - Removing loop and/or sustain\n"));
Oct 21, 1999
Oct 21, 1999
339
340
341
342
343
344
sp->modes &=~(MODES_SUSTAIN | MODES_LOOPING |
MODES_PINGPONG | MODES_REVERSE);
}
if (strip_envelope==1)
{
Oct 21, 2017
Oct 21, 2017
345
if (sp->modes & MODES_ENVELOPE) {
Oct 18, 2017
Oct 18, 2017
346
SNDDBG((" - Removing envelope\n"));
Oct 21, 2017
Oct 21, 2017
347
}
Oct 21, 1999
Oct 21, 1999
348
349
350
351
352
353
354
355
356
357
sp->modes &= ~MODES_ENVELOPE;
}
else if (strip_envelope != 0)
{
/* Have to make a guess. */
if (!(sp->modes & (MODES_LOOPING | MODES_PINGPONG | MODES_REVERSE)))
{
/* No loop? Then what's there to sustain? No envelope needed
either... */
sp->modes &= ~(MODES_SUSTAIN|MODES_ENVELOPE);
Oct 18, 2017
Oct 18, 2017
358
SNDDBG((" - No loop, removing sustain and envelope\n"));
Oct 21, 1999
Oct 21, 1999
359
360
361
362
363
364
}
else if (!memcmp(tmp, "??????", 6) || tmp[11] >= 100)
{
/* Envelope rates all maxed out? Envelope end at a high "offset"?
That's a weird envelope. Take it out. */
sp->modes &= ~MODES_ENVELOPE;
Oct 18, 2017
Oct 18, 2017
365
SNDDBG((" - Weirdness, removing envelope\n"));
Oct 21, 1999
Oct 21, 1999
366
367
368
369
370
371
372
373
}
else if (!(sp->modes & MODES_SUSTAIN))
{
/* No sustain? Then no envelope. I don't know if this is
justified, but patches without sustain usually don't need the
envelope either... at least the Gravis ones. They're mostly
drums. I think. */
sp->modes &= ~MODES_ENVELOPE;
Oct 18, 2017
Oct 18, 2017
374
SNDDBG((" - No sustain, removing envelope\n"));
Oct 21, 1999
Oct 21, 1999
375
376
377
}
}
Oct 18, 2017
Oct 18, 2017
378
for (j=0; j<6; j++)
Oct 21, 1999
Oct 21, 1999
379
380
{
sp->envelope_rate[j]=
Oct 18, 2017
Oct 18, 2017
381
convert_envelope_rate(song, tmp[j]);
Oct 21, 1999
Oct 21, 1999
382
383
384
385
386
sp->envelope_offset[j]=
convert_envelope_offset(tmp[6+j]);
}
/* Then read the sample data */
Oct 21, 2017
Oct 21, 2017
387
sp->data = (sample_t *) safe_malloc(sp->data_length+4);
Oct 18, 2017
Oct 18, 2017
388
if (1 != SDL_RWread(rw, sp->data, sp->data_length, 1))
Oct 21, 1999
Oct 21, 1999
389
390
391
392
goto fail;
if (!(sp->modes & MODES_16BIT)) /* convert to 16-bit data */
{
Oct 21, 2017
Oct 21, 2017
393
Sint32 k=sp->data_length;
Oct 18, 2017
Oct 18, 2017
394
Uint8 *cp=(Uint8 *)(sp->data);
Oct 21, 2017
Oct 21, 2017
395
Uint16 *tmp16,*new16;
Oct 21, 1999
Oct 21, 1999
396
397
398
sp->data_length *= 2;
sp->loop_start *= 2;
sp->loop_end *= 2;
Oct 21, 2017
Oct 21, 2017
399
400
401
402
403
tmp16 = new16 = (Uint16 *) safe_malloc(sp->data_length+4);
while (k--)
*tmp16++ = (Uint16)(*cp++) << 8;
free(sp->data);
sp->data = (sample_t *)new16;
Oct 21, 1999
Oct 21, 1999
404
}
Apr 30, 2006
Apr 30, 2006
405
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
Oct 21, 1999
Oct 21, 1999
406
407
408
else
/* convert to machine byte order */
{
Oct 21, 2017
Oct 21, 2017
409
410
411
412
413
414
Sint32 k=sp->data_length/2;
Sint16 *tmp16=(Sint16 *)sp->data,s;
while (k--)
{
s=SDL_SwapLE16(*tmp16);
*tmp16++=s;
Oct 21, 1999
Oct 21, 1999
415
416
417
418
419
420
}
}
#endif
if (sp->modes & MODES_UNSIGNED) /* convert to signed data */
{
Oct 21, 2017
Oct 21, 2017
421
422
423
424
Sint32 k=sp->data_length/2;
Sint16 *tmp16=(Sint16 *)sp->data;
while (k--)
*tmp16++ ^= 0x8000;
Oct 21, 1999
Oct 21, 1999
425
426
427
428
429
}
/* Reverse reverse loops and pass them off as normal loops */
if (sp->modes & MODES_REVERSE)
{
Oct 18, 2017
Oct 18, 2017
430
Sint32 t;
Oct 21, 1999
Oct 21, 1999
431
432
433
/* The GUS apparently plays reverse loops by reversing the
whole sample. We do the same because the GUS does not SUCK. */
Oct 18, 2017
Oct 18, 2017
434
435
SNDDBG(("Reverse loop in %s\n", name));
reverse_data((Sint16 *)sp->data, 0, sp->data_length/2);
Oct 21, 1999
Oct 21, 1999
436
437
438
439
440
441
442
443
444
445
446
t=sp->loop_start;
sp->loop_start=sp->data_length - sp->loop_end;
sp->loop_end=sp->data_length - t;
sp->modes &= ~MODES_REVERSE;
sp->modes |= MODES_LOOPING; /* just in case */
}
#ifdef ADJUST_SAMPLE_VOLUMES
if (amp!=-1)
Oct 18, 2017
Oct 18, 2017
447
sp->volume=(float)((amp) / 100.0);
Oct 21, 1999
Oct 21, 1999
448
449
450
451
452
else
{
/* Try to determine a volume scaling factor for the sample.
This is a very crude adjustment, but things sound more
balanced with it. Still, this should be a runtime option. */
Oct 21, 2017
Oct 21, 2017
453
Sint32 k=sp->data_length/2;
Oct 18, 2017
Oct 18, 2017
454
Sint16 maxamp=0,a;
Oct 21, 2017
Oct 21, 2017
455
456
Sint16 *tmp16=(Sint16 *)sp->data;
while (k--)
Oct 21, 1999
Oct 21, 1999
457
{
Oct 21, 2017
Oct 21, 2017
458
a=*tmp16++;
Oct 21, 1999
Oct 21, 1999
459
460
461
462
if (a<0) a=-a;
if (a>maxamp)
maxamp=a;
}
Oct 18, 2017
Oct 18, 2017
463
464
sp->volume=(float)(32768.0 / maxamp);
SNDDBG((" * volume comp: %f\n", sp->volume));
Oct 21, 1999
Oct 21, 1999
465
466
467
468
469
470
471
472
473
474
475
476
}
#else
if (amp!=-1)
sp->volume=(double)(amp) / 100.0;
else
sp->volume=1.0;
#endif
sp->data_length /= 2; /* These are in bytes. Convert into samples. */
sp->loop_start /= 2;
sp->loop_end /= 2;
Oct 21, 2017
Oct 21, 2017
477
478
479
480
/* initialize the added extra sample space (see the +4 bytes in
allocation) using the last actual sample: */
sp->data[sp->data_length] = sp->data[sp->data_length+1] = 0;
Oct 21, 1999
Oct 21, 1999
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
/* Then fractional samples */
sp->data_length <<= FRACTION_BITS;
sp->loop_start <<= FRACTION_BITS;
sp->loop_end <<= FRACTION_BITS;
/* Adjust for fractional loop points. This is a guess. Does anyone
know what "fractions" really stands for? */
sp->loop_start |=
(fractions & 0x0F) << (FRACTION_BITS-4);
sp->loop_end |=
((fractions>>4) & 0x0F) << (FRACTION_BITS-4);
/* If this instrument will always be played on the same note,
and it's not looped, we can resample it now. */
if (sp->note_to_use && !(sp->modes & MODES_LOOPING))
Oct 18, 2017
Oct 18, 2017
496
pre_resample(song, sp);
Oct 21, 1999
Oct 21, 1999
497
498
499
500
if (strip_tail==1)
{
/* Let's not really, just say we did. */
Oct 18, 2017
Oct 18, 2017
501
SNDDBG((" - Stripping tail\n"));
Oct 21, 1999
Oct 21, 1999
502
503
sp->data_length = sp->loop_end;
}
Oct 18, 2017
Oct 18, 2017
504
}
Oct 21, 1999
Oct 21, 1999
505
Oct 18, 2017
Oct 18, 2017
506
507
SDL_RWclose(rw);
return ip;
Oct 21, 1999
Oct 21, 1999
508
509
}
Oct 18, 2017
Oct 18, 2017
510
static int fill_bank(MidiSong *song, int dr, int b)
Oct 21, 1999
Oct 21, 1999
511
512
{
int i, errors=0;
Oct 18, 2017
Oct 18, 2017
513
ToneBank *bank=((dr) ? song->drumset[b] : song->tonebank[b]);
Oct 21, 1999
Oct 21, 1999
514
515
if (!bank)
{
Oct 18, 2017
Oct 18, 2017
516
517
SNDDBG(("Huh. Tried to load instruments in non-existent %s %d\n",
(dr) ? "drumset" : "tone bank", b));
Oct 21, 1999
Oct 21, 1999
518
519
return 0;
}
Oct 18, 2017
Oct 18, 2017
520
for (i=0; i<MAXBANK; i++)
Oct 21, 1999
Oct 21, 1999
521
{
Oct 18, 2017
Oct 18, 2017
522
if (bank->instrument[i]==MAGIC_LOAD_INSTRUMENT)
Oct 21, 1999
Oct 21, 1999
523
524
525
{
if (!(bank->tone[i].name))
{
Oct 18, 2017
Oct 18, 2017
526
SNDDBG(("No instrument mapped to %s %d, program %d%s\n",
Oct 21, 1999
Oct 21, 1999
527
(dr)? "drum set" : "tone bank", b, i,
Oct 18, 2017
Oct 18, 2017
528
(b!=0) ? "" : " - this instrument will not be heard"));
Oct 21, 1999
Oct 21, 1999
529
530
531
532
533
534
if (b!=0)
{
/* Mark the corresponding instrument in the default
bank / drumset for loading (if it isn't already) */
if (!dr)
{
Oct 18, 2017
Oct 18, 2017
535
536
if (!(song->tonebank[0]->instrument[i]))
song->tonebank[0]->instrument[i] =
Oct 21, 1999
Oct 21, 1999
537
538
539
540
MAGIC_LOAD_INSTRUMENT;
}
else
{
Oct 18, 2017
Oct 18, 2017
541
542
if (!(song->drumset[0]->instrument[i]))
song->drumset[0]->instrument[i] =
Oct 21, 1999
Oct 21, 1999
543
544
545
MAGIC_LOAD_INSTRUMENT;
}
}
Oct 18, 2017
Oct 18, 2017
546
bank->instrument[i] = 0;
Oct 21, 1999
Oct 21, 1999
547
548
errors++;
}
Oct 18, 2017
Oct 18, 2017
549
550
551
else if (!(bank->instrument[i] =
load_instrument(song,
bank->tone[i].name,
Oct 21, 1999
Oct 21, 1999
552
553
554
555
(dr) ? 1 : 0,
bank->tone[i].pan,
bank->tone[i].amp,
(bank->tone[i].note!=-1) ?
Oct 18, 2017
Oct 18, 2017
556
557
bank->tone[i].note :
((dr) ? i : -1),
Oct 21, 1999
Oct 21, 1999
558
559
560
561
562
563
(bank->tone[i].strip_loop!=-1) ?
bank->tone[i].strip_loop :
((dr) ? 1 : -1),
(bank->tone[i].strip_envelope != -1) ?
bank->tone[i].strip_envelope :
((dr) ? 1 : -1),
Oct 18, 2017
Oct 18, 2017
564
bank->tone[i].strip_tail )))
Oct 21, 1999
Oct 21, 1999
565
{
Oct 18, 2017
Oct 18, 2017
566
SNDDBG(("Couldn't load instrument %s (%s %d, program %d)\n",
Oct 21, 1999
Oct 21, 1999
567
bank->tone[i].name,
Oct 18, 2017
Oct 18, 2017
568
(dr)? "drum set" : "tone bank", b, i));
Oct 21, 1999
Oct 21, 1999
569
570
571
572
573
574
575
errors++;
}
}
}
return errors;
}
Oct 18, 2017
Oct 18, 2017
576
int load_missing_instruments(MidiSong *song)
Oct 21, 1999
Oct 21, 1999
577
{
Aug 21, 2004
Aug 21, 2004
578
int i=MAXBANK,errors=0;
Oct 21, 1999
Oct 21, 1999
579
580
while (i--)
{
Oct 18, 2017
Oct 18, 2017
581
582
583
584
if (song->tonebank[i])
errors+=fill_bank(song,0,i);
if (song->drumset[i])
errors+=fill_bank(song,1,i);
Oct 21, 1999
Oct 21, 1999
585
586
587
588
}
return errors;
}
Oct 18, 2017
Oct 18, 2017
589
void free_instruments(MidiSong *song)
Oct 21, 1999
Oct 21, 1999
590
{
Oct 18, 2017
Oct 18, 2017
591
int i=MAXBANK;
Oct 21, 1999
Oct 21, 1999
592
593
while(i--)
{
Oct 18, 2017
Oct 18, 2017
594
595
596
597
if (song->tonebank[i])
free_bank(song, 0, i);
if (song->drumset[i])
free_bank(song, 1, i);
Oct 21, 1999
Oct 21, 1999
598
599
600
}
}
Oct 18, 2017
Oct 18, 2017
601
int set_default_instrument(MidiSong *song, char *name)
Oct 21, 1999
Oct 21, 1999
602
{
Oct 18, 2017
Oct 18, 2017
603
604
Instrument *ip;
if (!(ip=load_instrument(song, name, 0, -1, -1, -1, 0, 0, 0)))
Oct 21, 1999
Oct 21, 1999
605
return -1;
Oct 18, 2017
Oct 18, 2017
606
607
song->default_instrument = ip;
song->default_program = SPECIAL_PROGRAM;
Oct 21, 1999
Oct 21, 1999
608
609
return 0;
}