-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathcomposer.cpp
More file actions
646 lines (577 loc) · 24.9 KB
/
Copy pathcomposer.cpp
File metadata and controls
646 lines (577 loc) · 24.9 KB
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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
/*
* Adplug - Replayer for many OPL2/OPL3 audio file formats.
* Copyright (C) 1999 - 2006 Simon Peter, <dn.tlp@gmx.net>, et al.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* composer.cpp - AdLib Visual Composer synth class by OPLx <oplx@yahoo.com>
* with improvements by Stas'M <binarymaster@mail.ru> and Jepael
*
* Source references ADLIB.C from Adlib MSC SDK.
*/
#include <cstring>
#include <algorithm>
#include <binstr.h>
#include "composer.h"
#include "debug.h"
//---------------------------------------------------------
static int16_t const skNrStepPitch = 25; // 25 steps within a half-tone for pitch bend
static uint8_t const skMaxNotes = 96U;
static uint8_t const skCarrierOpOffset = 3U;
static uint8_t const skNumSemitonesInOctave = 12U;
//---------------------------------------------------------
static uint8_t const skOPL2_WaveCtrlBaseAddress = 0x01U; // Test LSI / Enable waveform control
static uint8_t const skOPL2_AaMultiBaseAddress = 0x20U; // Amp Mod / Vibrato / EG type / Key Scaling / Multiple
static uint8_t const skOPL2_KSLTLBaseAddress = 0x40U; // Key scaling level / Operator output level
static uint8_t const skOPL2_ArDrBaseAddress = 0x60U; // Attack Rate / Decay Rate
static uint8_t const skOPL2_SlrrBaseAddress = 0x80U; // Sustain Level / Release Rate
static uint8_t const skOPL2_FreqLoBaseAddress = 0xA0U; // Frequency (low 8 bits)
static uint8_t const skOPL2_KeyOnFreqHiBaseAddress = 0xB0U; // Key On / Octave / Frequency (high 2 bits)
static uint8_t const skOPL2_AmVibRhythmBaseAddress = 0xBDU; // AM depth / Vibrato depth / Rhythm control
static uint8_t const skOPL2_FeedConBaseAddress = 0xC0U; // Feedback strength / Connection type
static uint8_t const skOPL2_WaveformBaseAddress = 0xE0U; // Waveform select
//---------------------------------------------------------
static uint8_t const skOPL2_EnableWaveformSelectMask = 0x20U;
static uint8_t const skOPL2_KeyOnMask = 0x20U;
static uint8_t const skOPL2_RhythmMask = 0x20U;
static uint8_t const skOPL2_KSLMask = 0xC0U;
static uint8_t const skOPL2_TLMask = 0x3FU;
static uint8_t const skOPL2_TLMinLevel = 0x3FU;
static uint8_t const skOPL2_FNumLSBMask = 0xFFU;
static uint8_t const skOPL2_FNumMSBMask = 0x03U;
static uint8_t const skOPL2_FNumMSBShift = 0x08U;
static uint8_t const skOPL2_BlockNumberShift = 0x02U;
//---------------------------------------------------------
static uint8_t const skNoteOctave[skMaxNotes] =
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7
};
//---------------------------------------------------------
static uint8_t const skNoteIndex[skMaxNotes] =
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
};
//---------------------------------------------------------
// Table below generated by initialize_fnum_table function (from Adlib Music SDK).
static uint16_t const skFNumNotes[skNrStepPitch][skNumSemitonesInOctave] =
{
343, 364, 385, 408, 433, 459, 486, 515, 546, 579, 614, 650,
344, 365, 387, 410, 434, 460, 488, 517, 548, 581, 615, 652,
345, 365, 387, 410, 435, 461, 489, 518, 549, 582, 617, 653,
346, 366, 388, 411, 436, 462, 490, 519, 550, 583, 618, 655,
346, 367, 389, 412, 437, 463, 491, 520, 551, 584, 619, 657,
347, 368, 390, 413, 438, 464, 492, 522, 553, 586, 621, 658,
348, 369, 391, 415, 439, 466, 493, 523, 554, 587, 622, 660,
349, 370, 392, 415, 440, 467, 495, 524, 556, 589, 624, 661,
350, 371, 393, 416, 441, 468, 496, 525, 557, 590, 625, 663,
351, 372, 394, 417, 442, 469, 497, 527, 558, 592, 627, 665,
351, 372, 395, 418, 443, 470, 498, 528, 559, 593, 628, 666,
352, 373, 396, 419, 444, 471, 499, 529, 561, 594, 630, 668,
353, 374, 397, 420, 445, 472, 500, 530, 562, 596, 631, 669,
354, 375, 398, 421, 447, 473, 502, 532, 564, 597, 633, 671,
355, 376, 398, 422, 448, 474, 503, 533, 565, 599, 634, 672,
356, 377, 399, 423, 449, 475, 504, 534, 566, 600, 636, 674,
356, 378, 400, 424, 450, 477, 505, 535, 567, 601, 637, 675,
357, 379, 401, 425, 451, 478, 506, 537, 569, 603, 639, 677,
358, 379, 402, 426, 452, 479, 507, 538, 570, 604, 640, 679,
359, 380, 403, 427, 453, 480, 509, 539, 571, 606, 642, 680,
360, 381, 404, 428, 454, 481, 510, 540, 572, 607, 643, 682,
360, 382, 405, 429, 455, 482, 511, 541, 574, 608, 645, 683,
361, 383, 406, 430, 456, 483, 512, 543, 575, 610, 646, 685,
362, 384, 407, 431, 457, 484, 513, 544, 577, 611, 648, 687,
363, 385, 408, 432, 458, 485, 514, 545, 578, 612, 649, 688
};
//---------------------------------------------------------
static uint8_t const drum_op_table[4] = { 0x14, 0x12, 0x15, 0x11 };
//---------------------------------------------------------
int const CcomposerBackend::kSizeofDataRecord = 30;
int const CcomposerBackend::kSilenceNote = -12;
int const CcomposerBackend::kNumMelodicVoices = MAX_VOICES - 2;
int const CcomposerBackend::kNumPercussiveVoices = MAX_VOICES;
int const CcomposerBackend::kBassDrumChannel = 6;
int const CcomposerBackend::kSnareDrumChannel = 7;
int const CcomposerBackend::kTomtomChannel = 8;
int const CcomposerBackend::kTomTomNote = 24;
int const CcomposerBackend::kTomTomToSnare = 7; // 7 half-tones between voice 7 & 8
int const CcomposerBackend::kSnareNote = CcomposerBackend::kTomTomNote + CcomposerBackend::kTomTomToSnare;
//---------------------------------------------------------
char * strup(char *str)
{
char *next = str;
while (*next)
{
*next = toupper((unsigned char)*next);
next++;
}
return str;
}
//---------------------------------------------------------
uint32_t const CcomposerBackend::kMidPitch = 0x2000U;
uint8_t const CcomposerBackend::kMaxVolume = 0x7FU;
/*** public methods **************************************/
CcomposerBackend::CcomposerBackend(Copl * const pNewOpl)
: CPlayer (pNewOpl)
, mpOldFNumFreqPtr (NULL)
, mInstrumentList ()
, mFNumFreqPtrList (kNumPercussiveVoices, skFNumNotes[0])
, mHalfToneOffset (kNumPercussiveVoices, 0)
, mVolumeCache (kNumPercussiveVoices, kMaxVolume)
, mKSLTLCache (kNumPercussiveVoices, 0)
, mNoteCache (kNumPercussiveVoices, 0)
, mKOnOctFNumCache (kNumMelodicVoices, 0)
, mKeyOnCache (kNumPercussiveVoices, false)
, mRhythmMode (0)
, mOldPitchBendLength(~0)
, mPitchRangeStep (skNrStepPitch)
, mOldHalfToneOffset (0)
, mAMVibRhythmCache (0)
{
}
//---------------------------------------------------------
void CcomposerBackend::rewind(int subsong)
{
mHalfToneOffset = TInt16Vector(kNumPercussiveVoices, 0);
mVolumeCache = TUInt8Vector(kNumPercussiveVoices, kMaxVolume);
mKSLTLCache = TUInt8Vector(kNumPercussiveVoices, 0);
mNoteCache = TUInt8Vector(kNumPercussiveVoices, 0);
mKOnOctFNumCache = TUInt8Vector(kNumMelodicVoices, 0);
mKeyOnCache = TBoolVector(kNumPercussiveVoices, false);
opl->init(); // initialize to melodic by default
opl->write(skOPL2_WaveCtrlBaseAddress, skOPL2_EnableWaveformSelectMask); // Enable waveform select
frontend_rewind(subsong);
}
//---------------------------------------------------------
void CcomposerBackend::SetRhythmMode(int const mode)
{
if (mode)
{
mAMVibRhythmCache |= skOPL2_RhythmMask;
opl->write(skOPL2_AmVibRhythmBaseAddress, mAMVibRhythmCache); // Enable rhythm mode
SetFreq(kTomtomChannel, kTomTomNote);
SetFreq(kSnareDrumChannel, kSnareNote);
}
else
{
mAMVibRhythmCache &= ~skOPL2_RhythmMask;
opl->write(skOPL2_AmVibRhythmBaseAddress, mAMVibRhythmCache); // Disable rhythm mode
}
mRhythmMode = mode;
}
//---------------------------------------------------------
void CcomposerBackend::SetNote(int const voice, int const note)
{
if ((voice < kBassDrumChannel) || !mRhythmMode)
{
SetNoteMelodic(voice, note);
}
else
{
SetNotePercussive(voice, note);
}
}
//---------------------------------------------------------
void CcomposerBackend::NoteOn(int const voice, int const note)
{
SetNote(voice, note + kSilenceNote);
}
//---------------------------------------------------------
void CcomposerBackend::NoteOff(int const voice)
{
SetNote(voice, kSilenceNote);
}
//---------------------------------------------------------
void CcomposerBackend::SetNotePercussive(int const voice, int const note)
{
int const channel_bit_mask = 1 << (4-voice+kBassDrumChannel);
mAMVibRhythmCache &= ~channel_bit_mask;
opl->write(skOPL2_AmVibRhythmBaseAddress, mAMVibRhythmCache);
mKeyOnCache[voice] = false;
if (note != kSilenceNote)
{
switch(voice)
{
case kTomtomChannel:
SetFreq(kTomtomChannel, note);
SetFreq(kSnareDrumChannel, note + kTomTomToSnare);
break;
case kBassDrumChannel:
SetFreq(voice, note);
break;
default:
// Does nothing
break;
}
mKeyOnCache[voice] = true;
mAMVibRhythmCache |= channel_bit_mask;
opl->write(skOPL2_AmVibRhythmBaseAddress, mAMVibRhythmCache);
}
}
//---------------------------------------------------------
void CcomposerBackend::SetNoteMelodic(int const voice, int const note)
{
if (voice >= kNumMelodicVoices)
{
AdPlug_LogWrite ("COMPOSER: SetNoteMelodic() voice %d >= %d\n", voice, kNumMelodicVoices);
return;
}
opl->write(skOPL2_KeyOnFreqHiBaseAddress + voice, mKOnOctFNumCache[voice] & ~skOPL2_KeyOnMask);
mKeyOnCache[voice] = false;
if (note != kSilenceNote)
{
SetFreq(voice, note, true);
}
}
//---------------------------------------------------------
void CcomposerBackend::SetPitchRange(uint8_t pitchRange)
{
if (pitchRange > 12)
pitchRange = 12;
if (pitchRange < 1)
pitchRange = 1;
mPitchRangeStep = pitchRange * skNrStepPitch;
}
//---------------------------------------------------------
// From Adlib Music SDK's ADLIB.C ...
void CcomposerBackend::ChangePitch(int voice, uint16_t const pitchBend)
{
int32_t const pitchBendLength = (int32_t)(pitchBend - kMidPitch) * mPitchRangeStep;
if ((voice >= kBassDrumChannel) && mRhythmMode)
{
return;
}
if (mOldPitchBendLength == pitchBendLength)
{
// optimisation ...
mFNumFreqPtrList[voice] = mpOldFNumFreqPtr;
mHalfToneOffset[voice] = mOldHalfToneOffset;
}
else
{
int16_t const pitchStepDir = pitchBendLength / kMidPitch;
int16_t delta;
if (pitchStepDir < 0)
{
int16_t const pitchStepDown = skNrStepPitch - 1 - pitchStepDir;
mOldHalfToneOffset = mHalfToneOffset[voice] = -(pitchStepDown / skNrStepPitch);
delta = (pitchStepDown - skNrStepPitch + 1) % skNrStepPitch;
if (delta)
{
delta = skNrStepPitch - delta;
}
}
else
{
mOldHalfToneOffset = mHalfToneOffset[voice] = pitchStepDir / skNrStepPitch;
delta = pitchStepDir % skNrStepPitch;
}
mpOldFNumFreqPtr = mFNumFreqPtrList[voice] = skFNumNotes[delta];
mOldPitchBendLength = pitchBendLength;
}
SetFreq(voice, mNoteCache[voice], mKeyOnCache[voice]);
}
//---------------------------------------------------------
void CcomposerBackend::SetFreq(int const voice, int const note, bool const keyOn)
{
int const biased_note = std::max(0, std::min((skMaxNotes-1), note + mHalfToneOffset[voice]));
uint16_t const frequency = *(mFNumFreqPtrList[voice] + skNoteIndex[biased_note]);
mNoteCache[voice] = note;
mKeyOnCache[voice] = keyOn;
mKOnOctFNumCache[voice] = (skNoteOctave[biased_note] << skOPL2_BlockNumberShift) | ((frequency >> skOPL2_FNumMSBShift) & skOPL2_FNumMSBMask);
opl->write(skOPL2_FreqLoBaseAddress + voice, frequency & skOPL2_FNumLSBMask);
opl->write(skOPL2_KeyOnFreqHiBaseAddress + voice, mKOnOctFNumCache[voice] | (keyOn ? skOPL2_KeyOnMask : 0x0));
}
//---------------------------------------------------------
uint8_t CcomposerBackend::GetKSLTL(int const voice) const
{
uint16_t kslTL = skOPL2_TLMinLevel - (mKSLTLCache[voice] & skOPL2_TLMask); // amplitude
kslTL = mVolumeCache[voice] * kslTL;
kslTL += kslTL + kMaxVolume; // round off to 0.5
kslTL = skOPL2_TLMinLevel - (kslTL / (2 * kMaxVolume));
kslTL |= mKSLTLCache[voice] & skOPL2_KSLMask;
return static_cast<uint8_t>(kslTL);
}
//---------------------------------------------------------
void CcomposerBackend::SetVolume(int const voice, uint8_t const volume)
{
if (voice >= kNumMelodicVoices && !mRhythmMode)
{
AdPlug_LogWrite ("COMPOSER: SetVolume() !mRhythmMode voice %d >= %d\n", voice, kNumMelodicVoices);
return;
}
uint8_t const op_offset = (voice < kSnareDrumChannel || !mRhythmMode) ? op_table[voice] + skCarrierOpOffset : drum_op_table[voice - kSnareDrumChannel];
mVolumeCache[voice] = volume;
opl->write(skOPL2_KSLTLBaseAddress + op_offset, GetKSLTL(voice));
}
//---------------------------------------------------------
void CcomposerBackend::SetInstrument(int const voice, int const ins_index)
{
if (voice >= kNumMelodicVoices && !mRhythmMode)
{
AdPlug_LogWrite ("COMPOSER: SetInstrument() !mRhythmMode voice %d >= %d\n", voice, kNumMelodicVoices);
return;
}
SInstrumentData const & instrument = mInstrumentList[ins_index].instrument;
send_operator(voice, instrument.modulator, instrument.carrier);
}
//---------------------------------------------------------
void CcomposerBackend::SetDefaultInstrument(int const voice)
{
int index;
uint8_t data[ADLIB_INST_LEN];
if ((voice >= kNumMelodicVoices && !mRhythmMode) ||
(voice >= kNumPercussiveVoices && mRhythmMode))
return;
// definition of the ELECTRIC-PIANO voice (opr0 & opr1)
uint8_t pianoParamsOp0[] =
{ 1, 1, 3, 15, 5, 0, 1, 3, 15, 0, 0, 0, 1, 0 };
uint8_t pianoParamsOp1[] =
{ 0, 1, 1, 15, 7, 0, 2, 4, 0, 0, 0, 1, 0, 0 };
// definition of default percussive voices
uint8_t bdOpr0[] =
{ 0, 0, 0, 10, 4, 0, 8, 12, 11, 0, 0, 0, 1, 0 };
uint8_t bdOpr1[] =
{ 0, 0, 0, 13, 4, 0, 6, 15, 0, 0, 0, 0, 1, 0 };
uint8_t sdOpr[] =
{ 0, 12, 0, 15, 11, 0, 8, 5, 0, 0, 0, 0, 0, 0 };
uint8_t tomOpr[] =
{ 0, 4, 0, 15, 11, 0, 7, 5, 0, 0, 0, 0, 0, 0 };
uint8_t cymbOpr[] =
{ 0, 1, 0, 15, 11, 0, 5, 5, 0, 0, 0, 0, 0, 0 };
uint8_t hhOpr[] =
{ 0, 1, 0, 15, 11, 0, 7, 5, 0, 0, 0, 0, 0, 0 };
// waveform select is always equal to 0 here, so just memset
memset(&data[0], 0, sizeof(data));
for (unsigned int i = 0; i < sizeof(pianoParamsOp0) - 1; i++)
{
if ((voice < kBassDrumChannel) || !mRhythmMode)
{
data[i] = pianoParamsOp0[i];
data[ADLIB_OPER_LEN + i] = pianoParamsOp1[i];
}
else if (voice == kBassDrumChannel)
{
data[i] = bdOpr0[i];
data[ADLIB_OPER_LEN + i] = bdOpr1[i];
}
else if (voice == kSnareDrumChannel)
{
data[i] = sdOpr[i];
}
else if (voice == kTomtomChannel)
{
data[i] = tomOpr[i];
}
else if (voice == kTomtomChannel + 1)
{
data[i] = cymbOpr[i];
}
else if (voice == kTomtomChannel + 2)
{
data[i] = hhOpr[i];
}
}
index = load_instrument_data(&data[0], sizeof(data));
SetInstrument(voice, index);
}
//---------------------------------------------------------
void CcomposerBackend::send_operator(int const voice, SOPL2Op const & modulator, SOPL2Op const & carrier)
{
if ((voice < kSnareDrumChannel) || !mRhythmMode)
{
if (voice >= kNumMelodicVoices)
{
AdPlug_LogWrite ("COMPOSER: send_operator() !mRhythmMode voice %d >= %d\n", voice, kNumMelodicVoices);
return;
}
uint8_t const op_offset = op_table[voice];
opl->write(skOPL2_AaMultiBaseAddress + op_offset, modulator.ammulti);
opl->write(skOPL2_KSLTLBaseAddress + op_offset, modulator.ksltl);
opl->write(skOPL2_ArDrBaseAddress + op_offset, modulator.ardr);
opl->write(skOPL2_SlrrBaseAddress + op_offset, modulator.slrr);
opl->write(skOPL2_FeedConBaseAddress + voice , modulator.fbc);
opl->write(skOPL2_WaveformBaseAddress + op_offset, modulator.waveform);
mKSLTLCache[voice] = carrier.ksltl;
opl->write(skOPL2_AaMultiBaseAddress + op_offset + skCarrierOpOffset, carrier.ammulti);
opl->write(skOPL2_KSLTLBaseAddress + op_offset + skCarrierOpOffset, GetKSLTL(voice));
opl->write(skOPL2_ArDrBaseAddress + op_offset + skCarrierOpOffset, carrier.ardr);
opl->write(skOPL2_SlrrBaseAddress + op_offset + skCarrierOpOffset, carrier.slrr);
opl->write(skOPL2_WaveformBaseAddress + op_offset + skCarrierOpOffset, carrier.waveform);
}
else
{
uint8_t const op_offset = drum_op_table[voice-kSnareDrumChannel];
mKSLTLCache[voice] = modulator.ksltl;
opl->write(skOPL2_AaMultiBaseAddress + op_offset, modulator.ammulti);
opl->write(skOPL2_KSLTLBaseAddress + op_offset, GetKSLTL(voice));
opl->write(skOPL2_ArDrBaseAddress + op_offset, modulator.ardr);
opl->write(skOPL2_SlrrBaseAddress + op_offset, modulator.slrr);
opl->write(skOPL2_WaveformBaseAddress + op_offset, modulator.waveform);
}
}
//---------------------------------------------------------
bool CcomposerBackend::load_bnk_info(binistream *f, SBnkHeader & header)
{
header.version_major = static_cast<uint8_t>(f->readInt(1));
header.version_minor = static_cast<uint8_t>(f->readInt(1));
f->readString(header.signature, BNK_SIGNATURE_SIZE);
header.number_of_list_entries_used = static_cast<uint16_t>(f->readInt(2));
header.total_number_of_list_entries = static_cast<uint16_t>(f->readInt(2));
header.abs_offset_of_name_list = static_cast<int32>(f->readInt(4));
header.abs_offset_of_data = static_cast<int32>(f->readInt(4));
f->seek(header.abs_offset_of_name_list, binio::Set);
std::string prev;
header.case_sensitive = false;
TInstrumentNames & ins_name_list = header.ins_name_list;
ins_name_list.reserve(header.number_of_list_entries_used);
for (uint16_t i = 0; i < header.total_number_of_list_entries; ++i)
{
SInstrumentName instrument;
instrument.index = static_cast<uint16_t>(f->readInt(2));
instrument.record_used = static_cast<uint8_t>(f->readInt(1));
f->readString(instrument.name, INS_MAX_NAME_SIZE);
instrument.name[INS_MAX_NAME_SIZE - 1] = 0;
if (!instrument.record_used)
continue;
ins_name_list.push_back(instrument);
if (!header.case_sensitive)
{
if (!prev.empty() && stricmp(prev.c_str(), instrument.name) > 0)
{
header.case_sensitive = true;
}
prev = instrument.name;
}
}
return true;
}
//---------------------------------------------------------
int CcomposerBackend::load_bnk_instrument(binistream *f, SBnkHeader const & header, std::string const & name)
{
TInstrumentNames const & ins_name_list = header.ins_name_list;
int const ins_index = get_ins_index(name);
if (ins_index != -1)
{
return ins_index;
}
SInstrument usedInstrument;
usedInstrument.name = name;
char ncs[INS_MAX_NAME_SIZE];
if (header.case_sensitive)
{
// assuming a bank with case sensitive names stores them in uppercase
// this is true for implay.bnk at least
strncpy(ncs, name.c_str(), INS_MAX_NAME_SIZE - 1);
ncs[INS_MAX_NAME_SIZE - 1] = 0;
strup(ncs);
}
typedef TInstrumentNames::const_iterator TInsIter;
typedef std::pair<TInsIter, TInsIter> TInsIterPair;
TInsIterPair const range = std::equal_range(ins_name_list.begin(),
ins_name_list.end(),
header.case_sensitive ? std::string(ncs) : name,
StringCompare(header.case_sensitive));
if (range.first != range.second)
{
long int const seekOffs = header.abs_offset_of_data + (range.first->index * kSizeofDataRecord);
f->seek(seekOffs, binio::Set);
read_bnk_instrument(f, usedInstrument.instrument, false);
}
else
{
if (bnk_return_failure)
return ins_index;
// set up default instrument data here
memset(&usedInstrument.instrument, 0, sizeof(SInstrumentData));
}
mInstrumentList.push_back(usedInstrument);
return mInstrumentList.size()-1;
}
//---------------------------------------------------------
int CcomposerBackend::load_instrument_data(uint8_t *data, size_t size)
{
if (size > ADLIB_INST_LEN)
size = ADLIB_INST_LEN;
binisstream f(data, size);
SInstrument i;
read_bnk_instrument(&f, i.instrument, true);
for (size_t index = 0; index < mInstrumentList.size(); ++index)
{
if (memcmp(&mInstrumentList[index].instrument, &i.instrument, sizeof(SInstrumentData)) == 0)
{
return index;
}
}
mInstrumentList.push_back(i);
return mInstrumentList.size()-1;
}
//---------------------------------------------------------
int CcomposerBackend::get_ins_index(std::string const & name) const
{
for (size_t index = 0; index < mInstrumentList.size(); ++index)
{
if (stricmp(mInstrumentList[index].name.c_str(), name.c_str()) == 0)
{
return index;
}
}
return -1;
}
//---------------------------------------------------------
void CcomposerBackend::read_bnk_instrument(binistream * f, SInstrumentData & instrument, bool raw)
{
instrument.mode = static_cast<uint8_t>(raw ? 0 : f->readInt(1));
instrument.voice_number = static_cast<uint8_t>(raw ? 0 : f->readInt(1));
read_fm_operator(f, instrument.modulator);
read_fm_operator(f, instrument.carrier);
instrument.modulator.waveform = static_cast<uint8_t>(f->readInt(1));
instrument.carrier.waveform = static_cast<uint8_t>(f->readInt(1));
}
//---------------------------------------------------------
void CcomposerBackend::read_fm_operator(binistream *f, SOPL2Op &opl2_op)
{
SFMOperator fm_op;
fm_op.key_scale_level = static_cast<uint8_t>(f->readInt(1));
fm_op.freq_multiplier = static_cast<uint8_t>(f->readInt(1));
fm_op.feed_back = static_cast<uint8_t>(f->readInt(1));
fm_op.attack_rate = static_cast<uint8_t>(f->readInt(1));
fm_op.sustain_level = static_cast<uint8_t>(f->readInt(1));
fm_op.sustaining_sound = static_cast<uint8_t>(f->readInt(1));
fm_op.decay_rate = static_cast<uint8_t>(f->readInt(1));
fm_op.release_rate = static_cast<uint8_t>(f->readInt(1));
fm_op.output_level = static_cast<uint8_t>(f->readInt(1));
fm_op.amplitude_vibrato = static_cast<uint8_t>(f->readInt(1));
fm_op.frequency_vibrato = static_cast<uint8_t>(f->readInt(1));
fm_op.envelope_scaling = static_cast<uint8_t>(f->readInt(1));
fm_op.fm_type = static_cast<uint8_t>(f->readInt(1));
opl2_op.ammulti = fm_op.amplitude_vibrato << 7 | fm_op.frequency_vibrato << 6 | fm_op.sustaining_sound << 5 | fm_op.envelope_scaling << 4 | fm_op.freq_multiplier;
opl2_op.ksltl = fm_op.key_scale_level << 6 | fm_op.output_level;
opl2_op.ardr = fm_op.attack_rate << 4 | fm_op.decay_rate;
opl2_op.slrr = fm_op.sustain_level << 4 | fm_op.release_rate;
opl2_op.fbc = fm_op.feed_back << 1 | (fm_op.fm_type ^ 1);
}