summaryrefslogtreecommitdiff
path: root/opl/dbopl.c
blob: bb7424f62845c0a3d8850f58e76b4d2c1d64e5fb (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
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
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
/*
 *  Copyright (C) 2002-2010  The DOSBox Team
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program 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 General Public License for more details.
 */

//
// Chocolate Doom-related discussion:
//
// This is the DosBox OPL emulator code (src/hardware/dbopl.cpp) r3635,
// converted to C.  The bulk of the work was done using the minus-minus
// script in the Chocolate Doom SVN repository, then the result tweaked
// by hand until working.
//


/*
	DOSBox implementation of a combined Yamaha YMF262 and Yamaha YM3812 emulator.
	Enabling the opl3 bit will switch the emulator to stereo opl3 output instead of regular mono opl2
	Except for the table generation it's all integer math
	Can choose different types of generators, using muls and bigger tables, try different ones for slower platforms
	The generation was based on the MAME implementation but tried to have it use less memory and be faster in general
	MAME uses much bigger envelope tables and this will be the biggest cause of it sounding different at times

	//TODO Don't delay first operator 1 sample in opl3 mode
	//TODO Maybe not use class method pointers but a regular function pointers with operator as first parameter
	//TODO Fix panning for the Percussion channels, would any opl3 player use it and actually really change it though?
	//TODO Check if having the same accuracy in all frequency multipliers sounds better or not

	//DUNNO Keyon in 4op, switch to 2op without keyoff.
*/

/* $Id: dbopl.cpp,v 1.10 2009-06-10 19:54:51 harekiet Exp $ */


#include <math.h>
#include <stdlib.h>
#include <string.h>
//#include "dosbox.h"
#include "dbopl.h"


#define GCC_UNLIKELY(x) x

#define TRUE 1
#define FALSE 0

#ifndef PI
#define PI 3.14159265358979323846
#endif

#define OPLRATE		((double)(14318180.0 / 288.0))
#define TREMOLO_TABLE 52

//Try to use most precision for frequencies
//Else try to keep different waves in synch
//#define WAVE_PRECISION	1
#ifndef WAVE_PRECISION
//Wave bits available in the top of the 32bit range
//Original adlib uses 10.10, we use 10.22
#define WAVE_BITS	10
#else
//Need some extra bits at the top to have room for octaves and frequency multiplier
//We support to 8 times lower rate
//128 * 15 * 8 = 15350, 2^13.9, so need 14 bits
#define WAVE_BITS	14
#endif
#define WAVE_SH		( 32 - WAVE_BITS )
#define WAVE_MASK	( ( 1 << WAVE_SH ) - 1 )

//Use the same accuracy as the waves
#define LFO_SH ( WAVE_SH - 10 )
//LFO is controlled by our tremolo 256 sample limit
#define LFO_MAX ( 256 << ( LFO_SH ) )


//Maximum amount of attenuation bits
//Envelope goes to 511, 9 bits
#if (DBOPL_WAVE == WAVE_TABLEMUL )
//Uses the value directly
#define ENV_BITS	( 9 )
#else
//Add 3 bits here for more accuracy and would have to be shifted up either way
#define ENV_BITS	( 9 )
#endif
//Limits of the envelope with those bits and when the envelope goes silent
#define ENV_MIN		0
#define ENV_EXTRA	( ENV_BITS - 9 )
#define ENV_MAX		( 511 << ENV_EXTRA )
#define ENV_LIMIT	( ( 12 * 256) >> ( 3 - ENV_EXTRA ) )
#define ENV_SILENT( _X_ ) ( (_X_) >= ENV_LIMIT )

//Attack/decay/release rate counter shift
#define RATE_SH		24
#define RATE_MASK	( ( 1 << RATE_SH ) - 1 )
//Has to fit within 16bit lookuptable
#define MUL_SH		16

//Check some ranges
#if ENV_EXTRA > 3
#error Too many envelope bits
#endif

static inline void Operator__SetState(Operator *self, Bit8u s );
static inline Bit32u Chip__ForwardNoise(Chip *self);

// C++'s template<> sure is useful sometimes.

static Channel* Channel__BlockTemplate(Channel *self, Chip* chip,
                                Bit32u samples, Bit32s* output,
                                SynthMode mode );
#define BLOCK_TEMPLATE(mode) \
    static Channel* Channel__BlockTemplate_ ## mode(Channel *self, Chip* chip, \
                                             Bit32u samples, Bit32s* output) \
    { \
       return Channel__BlockTemplate(self, chip, samples, output, mode); \
    }

BLOCK_TEMPLATE(sm2AM)
BLOCK_TEMPLATE(sm2FM)
BLOCK_TEMPLATE(sm3AM)
BLOCK_TEMPLATE(sm3FM)
BLOCK_TEMPLATE(sm3FMFM)
BLOCK_TEMPLATE(sm3AMFM)
BLOCK_TEMPLATE(sm3FMAM)
BLOCK_TEMPLATE(sm3AMAM)
BLOCK_TEMPLATE(sm2Percussion)
BLOCK_TEMPLATE(sm3Percussion)

//How much to substract from the base value for the final attenuation
static const Bit8u KslCreateTable[16] = {
	//0 will always be be lower than 7 * 8
	64, 32, 24, 19, 
	16, 12, 11, 10, 
	 8,  6,  5,  4,
	 3,  2,  1,  0,
};

#define M(_X_) ((Bit8u)( (_X_) * 2))
static const Bit8u FreqCreateTable[16] = {
	M(0.5), M(1 ), M(2 ), M(3 ), M(4 ), M(5 ), M(6 ), M(7 ),
	M(8  ), M(9 ), M(10), M(10), M(12), M(12), M(15), M(15)
};
#undef M

//We're not including the highest attack rate, that gets a special value
static const Bit8u AttackSamplesTable[13] = {
	69, 55, 46, 40,
	35, 29, 23, 20,
	19, 15, 11, 10,
	9
};
//On a real opl these values take 8 samples to reach and are based upon larger tables
static const Bit8u EnvelopeIncreaseTable[13] = {
	4,  5,  6,  7,
	8, 10, 12, 14,
	16, 20, 24, 28,
	32, 
};

#if ( DBOPL_WAVE == WAVE_HANDLER ) || ( DBOPL_WAVE == WAVE_TABLELOG )
static Bit16u ExpTable[ 256 ];
#endif

#if ( DBOPL_WAVE == WAVE_HANDLER )
//PI table used by WAVEHANDLER
static Bit16u SinTable[ 512 ];
#endif

#if ( DBOPL_WAVE > WAVE_HANDLER )
//Layout of the waveform table in 512 entry intervals
//With overlapping waves we reduce the table to half it's size

//	|    |//\\|____|WAV7|//__|/\  |____|/\/\|
//	|\\//|    |    |WAV7|    |  \/|    |    |
//	|06  |0126|17  |7   |3   |4   |4 5 |5   |

//6 is just 0 shifted and masked

static Bit16s WaveTable[ 8 * 512 ];
//Distance into WaveTable the wave starts
static const Bit16u WaveBaseTable[8] = {
	0x000, 0x200, 0x200, 0x800,
	0xa00, 0xc00, 0x100, 0x400,

};
//Mask the counter with this
static const Bit16u WaveMaskTable[8] = {
	1023, 1023, 511, 511,
	1023, 1023, 512, 1023,
};

//Where to start the counter on at keyon
static const Bit16u WaveStartTable[8] = {
	512, 0, 0, 0,
	0, 512, 512, 256,
};
#endif

#if ( DBOPL_WAVE == WAVE_TABLEMUL )
static Bit16u MulTable[ 384 ];
#endif

static Bit8u KslTable[ 8 * 16 ];
static Bit8u TremoloTable[ TREMOLO_TABLE ];
//Start of a channel behind the chip struct start
static Bit16u ChanOffsetTable[32];
//Start of an operator behind the chip struct start
static Bit16u OpOffsetTable[64];

//The lower bits are the shift of the operator vibrato value
//The highest bit is right shifted to generate -1 or 0 for negation
//So taking the highest input value of 7 this gives 3, 7, 3, 0, -3, -7, -3, 0
static const Bit8s VibratoTable[ 8 ] = {	
	1 - 0x00, 0 - 0x00, 1 - 0x00, 30 - 0x00, 
	1 - 0x80, 0 - 0x80, 1 - 0x80, 30 - 0x80 
};

//Shift strength for the ksl value determined by ksl strength
static const Bit8u KslShiftTable[4] = {
	31,1,2,0
};

//Generate a table index and table shift value using input value from a selected rate
static void EnvelopeSelect( Bit8u val, Bit8u *index, Bit8u *shift ) {
	if ( val < 13 * 4 ) {				//Rate 0 - 12
		*shift = 12 - ( val >> 2 );
		*index = val & 3;
	} else if ( val < 15 * 4 ) {		//rate 13 - 14
		*shift = 0;
		*index = val - 12 * 4;
	} else {							//rate 15 and up
		*shift = 0;
		*index = 12;
	}
}

#if ( DBOPL_WAVE == WAVE_HANDLER )
/*
	Generate the different waveforms out of the sine/exponetial table using handlers
*/
static inline Bits MakeVolume( Bitu wave, Bitu volume ) {
	Bitu total = wave + volume;
	Bitu index = total & 0xff;
	Bitu sig = ExpTable[ index ];
	Bitu exp = total >> 8;
#if 0
	//Check if we overflow the 31 shift limit
	if ( exp >= 32 ) {
		LOG_MSG( "WTF %d %d", total, exp );
	}
#endif
	return (sig >> exp);
};

static Bits DB_FASTCALL WaveForm0( Bitu i, Bitu volume ) {
	Bits neg = 0 - (( i >> 9) & 1);//Create ~0 or 0
	Bitu wave = SinTable[i & 511];
	return (MakeVolume( wave, volume ) ^ neg) - neg;
}
static Bits DB_FASTCALL WaveForm1( Bitu i, Bitu volume ) {
	Bit32u wave = SinTable[i & 511];
	wave |= ( ( (i ^ 512 ) & 512) - 1) >> ( 32 - 12 );
	return MakeVolume( wave, volume );
}
static Bits DB_FASTCALL WaveForm2( Bitu i, Bitu volume ) {
	Bitu wave = SinTable[i & 511];
	return MakeVolume( wave, volume );
}
static Bits DB_FASTCALL WaveForm3( Bitu i, Bitu volume ) {
	Bitu wave = SinTable[i & 255];
	wave |= ( ( (i ^ 256 ) & 256) - 1) >> ( 32 - 12 );
	return MakeVolume( wave, volume );
}
static Bits DB_FASTCALL WaveForm4( Bitu i, Bitu volume ) {
	//Twice as fast
	i <<= 1;
	Bits neg = 0 - (( i >> 9) & 1);//Create ~0 or 0
	Bitu wave = SinTable[i & 511];
	wave |= ( ( (i ^ 512 ) & 512) - 1) >> ( 32 - 12 );
	return (MakeVolume( wave, volume ) ^ neg) - neg;
}
static Bits DB_FASTCALL WaveForm5( Bitu i, Bitu volume ) {
	//Twice as fast
	i <<= 1;
	Bitu wave = SinTable[i & 511];
	wave |= ( ( (i ^ 512 ) & 512) - 1) >> ( 32 - 12 );
	return MakeVolume( wave, volume );
}
static Bits DB_FASTCALL WaveForm6( Bitu i, Bitu volume ) {
	Bits neg = 0 - (( i >> 9) & 1);//Create ~0 or 0
	return (MakeVolume( 0, volume ) ^ neg) - neg;
}
static Bits DB_FASTCALL WaveForm7( Bitu i, Bitu volume ) {
	//Negative is reversed here
	Bits neg = (( i >> 9) & 1) - 1;
	Bitu wave = (i << 3);
	//When negative the volume also runs backwards
	wave = ((wave ^ neg) - neg) & 4095;
	return (MakeVolume( wave, volume ) ^ neg) - neg;
}

static const WaveHandler WaveHandlerTable[8] = {
	WaveForm0, WaveForm1, WaveForm2, WaveForm3,
	WaveForm4, WaveForm5, WaveForm6, WaveForm7
};

#endif

/*
	Operator
*/

//We zero out when rate == 0
static inline void Operator__UpdateAttack(Operator *self, const Chip* chip ) {
	Bit8u rate = self->reg60 >> 4;
	if ( rate ) {
		Bit8u val = (rate << 2) + self->ksr;
		self->attackAdd = chip->attackRates[ val ];
		self->rateZero &= ~(1 << ATTACK);
	} else {
		self->attackAdd = 0;
		self->rateZero |= (1 << ATTACK);
	}
}
static inline void Operator__UpdateDecay(Operator *self, const Chip* chip ) {
	Bit8u rate = self->reg60 & 0xf;
	if ( rate ) {
		Bit8u val = (rate << 2) + self->ksr;
		self->decayAdd = chip->linearRates[ val ];
		self->rateZero &= ~(1 << DECAY);
	} else {
		self->decayAdd = 0;
		self->rateZero |= (1 << DECAY);
	}
}
static inline void Operator__UpdateRelease(Operator *self, const Chip* chip ) {
	Bit8u rate = self->reg80 & 0xf;
	if ( rate ) {
		Bit8u val = (rate << 2) + self->ksr;
		self->releaseAdd = chip->linearRates[ val ];
		self->rateZero &= ~(1 << RELEASE);
		if ( !(self->reg20 & MASK_SUSTAIN ) ) {
			self->rateZero &= ~( 1 << SUSTAIN );
		}	
	} else {
		self->rateZero |= (1 << RELEASE);
		self->releaseAdd = 0;
		if ( !(self->reg20 & MASK_SUSTAIN ) ) {
			self->rateZero |= ( 1 << SUSTAIN );
		}	
	}
}

static inline void Operator__UpdateAttenuation(Operator *self) {
	Bit8u kslBase = (Bit8u)((self->chanData >> SHIFT_KSLBASE) & 0xff);
	Bit32u tl = self->reg40 & 0x3f;
	Bit8u kslShift = KslShiftTable[ self->reg40 >> 6 ];
	//Make sure the attenuation goes to the right bits
	self->totalLevel = tl << ( ENV_BITS - 7 );	//Total level goes 2 bits below max
	self->totalLevel += ( kslBase << ENV_EXTRA ) >> kslShift;
}

static void Operator__UpdateFrequency(Operator *self) {
	Bit32u freq = self->chanData & (( 1 << 10 ) - 1);
	Bit32u block = (self->chanData >> 10) & 0xff;
#ifdef WAVE_PRECISION
	block = 7 - block;
	self->waveAdd = ( freq * self->freqMul ) >> block;
#else
	self->waveAdd = ( freq << block ) * self->freqMul;
#endif
	if ( self->reg20 & MASK_VIBRATO ) {
		self->vibStrength = (Bit8u)(freq >> 7);

#ifdef WAVE_PRECISION
		self->vibrato = ( self->vibStrength * self->freqMul ) >> block;
#else
		self->vibrato = ( self->vibStrength << block ) * self->freqMul;
#endif
	} else {
		self->vibStrength = 0;
		self->vibrato = 0;
	}
}

static void Operator__UpdateRates(Operator *self, const Chip* chip ) {
	//Mame seems to reverse this where enabling ksr actually lowers
	//the rate, but pdf manuals says otherwise?
	Bit8u newKsr = (Bit8u)((self->chanData >> SHIFT_KEYCODE) & 0xff);
	if ( !( self->reg20 & MASK_KSR ) ) {
		newKsr >>= 2;
	}
	if ( self->ksr == newKsr )
		return;
	self->ksr = newKsr;
	Operator__UpdateAttack( self, chip );
	Operator__UpdateDecay( self, chip );
	Operator__UpdateRelease( self, chip );
}

static inline Bit32s Operator__RateForward(Operator *self, Bit32u add ) {
	Bit32s ret; // haleyjd: GNUisms out!
	self->rateIndex += add;
	ret = self->rateIndex >> RATE_SH;
	self->rateIndex = self->rateIndex & RATE_MASK;
	return ret;
}

static Bits Operator__TemplateVolume(Operator *self, OperatorState yes) {
	Bit32s vol = self->volume;
	Bit32s change;
	switch ( yes ) {
	case OFF:
		return ENV_MAX;
	case ATTACK:
		change = Operator__RateForward( self, self->attackAdd );
		if ( !change )
			return vol;
		vol += ( (~vol) * change ) >> 3;
		if ( vol < ENV_MIN ) {
			self->volume = ENV_MIN;
			self->rateIndex = 0;
			Operator__SetState( self, DECAY );
			return ENV_MIN;
		}
		break;
	case DECAY:
		vol += Operator__RateForward( self, self->decayAdd );
		if ( GCC_UNLIKELY(vol >= self->sustainLevel) ) {
			//Check if we didn't overshoot max attenuation, then just go off
			if ( GCC_UNLIKELY(vol >= ENV_MAX) ) {
				self->volume = ENV_MAX;
				Operator__SetState( self, OFF );
				return ENV_MAX;
			}
			//Continue as sustain
			self->rateIndex = 0;
			Operator__SetState( self, SUSTAIN );
		}
		break;
	case SUSTAIN:
		if ( self->reg20 & MASK_SUSTAIN ) {
			return vol;
		}
		//In sustain phase, but not sustaining, do regular release
	case RELEASE: 
		vol += Operator__RateForward( self, self->releaseAdd );;
		if ( GCC_UNLIKELY(vol >= ENV_MAX) ) {
			self->volume = ENV_MAX;
			Operator__SetState( self, OFF );
			return ENV_MAX;
		}
		break;
	}
	self->volume = vol;
	return vol;
}

#define TEMPLATE_VOLUME(mode) \
    static Bits Operator__TemplateVolume ## mode(Operator *self) \
    { \
        return Operator__TemplateVolume(self, mode); \
    }

TEMPLATE_VOLUME(OFF)
TEMPLATE_VOLUME(RELEASE)
TEMPLATE_VOLUME(SUSTAIN)
TEMPLATE_VOLUME(ATTACK)
TEMPLATE_VOLUME(DECAY)

static const VolumeHandler VolumeHandlerTable[5] = {
        &Operator__TemplateVolumeOFF,
        &Operator__TemplateVolumeRELEASE,
        &Operator__TemplateVolumeSUSTAIN,
        &Operator__TemplateVolumeDECAY,
        &Operator__TemplateVolumeATTACK,
};

static inline Bitu Operator__ForwardVolume(Operator *self) {
	return self->currentLevel + (self->volHandler)(self);
}


static inline Bitu Operator__ForwardWave(Operator *self) {
	self->waveIndex += self->waveCurrent;	
	return self->waveIndex >> WAVE_SH;
}

static void Operator__Write20(Operator *self, const Chip* chip, Bit8u val ) {
	Bit8u change = (self->reg20 ^ val );
	if ( !change ) 
		return;
	self->reg20 = val;
	//Shift the tremolo bit over the entire register, saved a branch, YES!
	self->tremoloMask = (Bit8s)(val) >> 7;
	self->tremoloMask &= ~(( 1 << ENV_EXTRA ) -1);
	//Update specific features based on changes
	if ( change & MASK_KSR ) {
		Operator__UpdateRates( self, chip );
	}
	//With sustain enable the volume doesn't change
	if ( self->reg20 & MASK_SUSTAIN || ( !self->releaseAdd ) ) {
		self->rateZero |= ( 1 << SUSTAIN );
	} else {
		self->rateZero &= ~( 1 << SUSTAIN );
	}
	//Frequency multiplier or vibrato changed
	if ( change & (0xf | MASK_VIBRATO) ) {
		self->freqMul = chip->freqMul[ val & 0xf ];
		Operator__UpdateFrequency(self);
	}
}

static void Operator__Write40(Operator *self, const Chip *chip, Bit8u val ) {
	if (!(self->reg40 ^ val )) 
		return;
	self->reg40 = val;
	Operator__UpdateAttenuation( self );
}

static void Operator__Write60(Operator *self, const Chip* chip, Bit8u val ) {
	Bit8u change = self->reg60 ^ val;
	self->reg60 = val;
	if ( change & 0x0f ) {
		Operator__UpdateDecay( self, chip );
	}
	if ( change & 0xf0 ) {
		Operator__UpdateAttack( self, chip );
	}
}

static void Operator__Write80(Operator *self, const Chip* chip, Bit8u val ) {
	Bit8u change = (self->reg80 ^ val );
	Bit8u sustain; // haleyjd 09/09/10: GNUisms out!
	if ( !change ) 
		return;
	self->reg80 = val;
	sustain = val >> 4;
	//Turn 0xf into 0x1f
	sustain |= ( sustain + 1) & 0x10;
	self->sustainLevel = sustain << ( ENV_BITS - 5 );
	if ( change & 0x0f ) {
		Operator__UpdateRelease( self, chip );
	}
}

static void Operator__WriteE0(Operator *self, const Chip* chip, Bit8u val ) {
	Bit8u waveForm; // haleyjd 09/09/10: GNUisms out!
	if ( !(self->regE0 ^ val) ) 
		return;
	//in opl3 mode you can always selet 7 waveforms regardless of waveformselect
	waveForm = val & ( ( 0x3 & chip->waveFormMask ) | (0x7 & chip->opl3Active ) );
	self->regE0 = val;
#if( DBOPL_WAVE == WAVE_HANDLER )
	self->waveHandler = WaveHandlerTable[ waveForm ];
#else
	self->waveBase = WaveTable + WaveBaseTable[ waveForm ];
	self->waveStart = WaveStartTable[ waveForm ] << WAVE_SH;
	self->waveMask = WaveMaskTable[ waveForm ];
#endif
}

static inline void Operator__SetState(Operator *self, Bit8u s ) {
	self->state = s;
	self->volHandler = VolumeHandlerTable[ s ];
}

static inline int Operator__Silent(Operator *self) {
	if ( !ENV_SILENT( self->totalLevel + self->volume ) )
		return FALSE;
	if ( !(self->rateZero & ( 1 << self->state ) ) )
		return FALSE;
	return TRUE;
}

static inline void Operator__Prepare(Operator *self, const Chip* chip )  {
	self->currentLevel = self->totalLevel + (chip->tremoloValue & self->tremoloMask);
	self->waveCurrent = self->waveAdd;
	if ( self->vibStrength >> chip->vibratoShift ) {
		Bit32s add = self->vibrato >> chip->vibratoShift;
		//Sign extend over the shift value
		Bit32s neg = chip->vibratoSign;
		//Negate the add with -1 or 0
		add = ( add ^ neg ) - neg; 
		self->waveCurrent += add;
	}
}

static void Operator__KeyOn(Operator *self, Bit8u mask ) {
	if ( !self->keyOn ) {
		//Restart the frequency generator
#if( DBOPL_WAVE > WAVE_HANDLER )
		self->waveIndex = self->waveStart;
#else
		self->waveIndex = 0;
#endif
		self->rateIndex = 0;
		Operator__SetState( self, ATTACK );
	}
	self->keyOn |= mask;
}

static void Operator__KeyOff(Operator *self, Bit8u mask ) {
	self->keyOn &= ~mask;
	if ( !self->keyOn ) {
		if ( self->state != OFF ) {
			Operator__SetState( self, RELEASE );
		}
	}
}

static inline Bits Operator__GetWave(Operator *self, Bitu index, Bitu vol ) {
#if( DBOPL_WAVE == WAVE_HANDLER )
	return self->waveHandler( index, vol << ( 3 - ENV_EXTRA ) );
#elif( DBOPL_WAVE == WAVE_TABLEMUL )
	return(self->waveBase[ index & self->waveMask ] * MulTable[ vol >> ENV_EXTRA ]) >> MUL_SH;
#elif( DBOPL_WAVE == WAVE_TABLELOG )
	Bit32s wave = self->waveBase[ index & self->waveMask ];
	Bit32u total = ( wave & 0x7fff ) + vol << ( 3 - ENV_EXTRA );
	Bit32s sig = ExpTable[ total & 0xff ];
	Bit32u exp = total >> 8;
	Bit32s neg = wave >> 16;
	return((sig ^ neg) - neg) >> exp;
#else
#error "No valid wave routine"
#endif
}

static inline Bits Operator__GetSample(Operator *self, Bits modulation ) {
	Bitu vol = Operator__ForwardVolume(self);
	if ( ENV_SILENT( vol ) ) {
		//Simply forward the wave
		self->waveIndex += self->waveCurrent;
		return 0;
	} else {
		Bitu index = Operator__ForwardWave(self);
		index += modulation;
		return Operator__GetWave( self, index, vol );
	}
}

static void Operator__Operator(Operator *self) {
	self->chanData = 0;
	self->freqMul = 0;
	self->waveIndex = 0;
	self->waveAdd = 0;
	self->waveCurrent = 0;
	self->keyOn = 0;
	self->ksr = 0;
	self->reg20 = 0;
	self->reg40 = 0;
	self->reg60 = 0;
	self->reg80 = 0;
	self->regE0 = 0;
	Operator__SetState( self, OFF );
	self->rateZero = (1 << OFF);
	self->sustainLevel = ENV_MAX;
	self->currentLevel = ENV_MAX;
	self->totalLevel = ENV_MAX;
	self->volume = ENV_MAX;
	self->releaseAdd = 0;
}

/*
	Channel
*/

static void Channel__Channel(Channel *self) {
        Operator__Operator(&self->op[0]);
        Operator__Operator(&self->op[1]);
	self->old[0] = self->old[1] = 0;
	self->chanData = 0;
	self->regB0 = 0;
	self->regC0 = 0;
	self->maskLeft = -1;
	self->maskRight = -1;
	self->feedback = 31;
	self->fourMask = 0;
	self->synthHandler = Channel__BlockTemplate_sm2FM;
};

static inline Operator* Channel__Op( Channel *self, Bitu index ) {
        return &( ( self + (index >> 1) )->op[ index & 1 ]);
}

static void Channel__SetChanData(Channel *self, const Chip* chip, Bit32u data ) {
	Bit32u change = self->chanData ^ data;
	self->chanData = data;
	Channel__Op( self, 0 )->chanData = data;
	Channel__Op( self, 1 )->chanData = data;
	//Since a frequency update triggered this, always update frequency
        Operator__UpdateFrequency(Channel__Op( self, 0 ));
        Operator__UpdateFrequency(Channel__Op( self, 1 ));
	if ( change & ( 0xff << SHIFT_KSLBASE ) ) {
                Operator__UpdateAttenuation(Channel__Op( self, 0 ));
                Operator__UpdateAttenuation(Channel__Op( self, 1 ));
	}
	if ( change & ( 0xff << SHIFT_KEYCODE ) ) {
                Operator__UpdateRates(Channel__Op( self, 0 ), chip);
                Operator__UpdateRates(Channel__Op( self, 1 ), chip);
	}
}

static void Channel__UpdateFrequency(Channel *self, const Chip* chip, Bit8u fourOp ) {
	//Extrace the frequency bits
	Bit32u data = self->chanData & 0xffff;
	Bit32u kslBase = KslTable[ data >> 6 ];
	Bit32u keyCode = ( data & 0x1c00) >> 9;
	if ( chip->reg08 & 0x40 ) {
		keyCode |= ( data & 0x100)>>8;	/* notesel == 1 */
	} else {
		keyCode |= ( data & 0x200)>>9;	/* notesel == 0 */
	}
	//Add the keycode and ksl into the highest bits of chanData
	data |= (keyCode << SHIFT_KEYCODE) | ( kslBase << SHIFT_KSLBASE );
        Channel__SetChanData( self + 0, chip, data );
	if ( fourOp & 0x3f ) {
                Channel__SetChanData( self + 1, chip, data );
	}
}

static void Channel__WriteA0(Channel *self, const Chip* chip, Bit8u val ) {
	Bit8u fourOp = chip->reg104 & chip->opl3Active & self->fourMask;
	Bit32u change; // haleyjd 09/09/10: GNUisms out!
	//Don't handle writes to silent fourop channels
	if ( fourOp > 0x80 )
		return;
	change = (self->chanData ^ val ) & 0xff;
	if ( change ) {
		self->chanData ^= change;
		Channel__UpdateFrequency( self, chip, fourOp );
	}
}

static void Channel__WriteB0(Channel *self, const Chip* chip, Bit8u val ) {
	Bit8u fourOp = chip->reg104 & chip->opl3Active & self->fourMask;
	Bitu change; // haleyjd 09/09/10: GNUisms out!
	//Don't handle writes to silent fourop channels
	if ( fourOp > 0x80 )
		return;
	change = (self->chanData ^ ( val << 8 ) ) & 0x1f00;
	if ( change ) {
		self->chanData ^= change;
		Channel__UpdateFrequency( self, chip, fourOp );
	}
	//Check for a change in the keyon/off state
	if ( !(( val ^ self->regB0) & 0x20))
		return;
	self->regB0 = val;
	if ( val & 0x20 ) {
                Operator__KeyOn( Channel__Op(self, 0), 0x1 );
                Operator__KeyOn( Channel__Op(self, 1), 0x1 );
		if ( fourOp & 0x3f ) {
                        Operator__KeyOn( Channel__Op(self + 1, 0), 1 );
                        Operator__KeyOn( Channel__Op(self + 1, 1), 1 );
		}
	} else {
                Operator__KeyOff( Channel__Op(self, 0), 0x1 );
                Operator__KeyOff( Channel__Op(self, 1), 0x1 );
		if ( fourOp & 0x3f ) {
                        Operator__KeyOff( Channel__Op(self + 1, 0), 1 );
                        Operator__KeyOff( Channel__Op(self + 1, 1), 1 );
		}
	}
}

static void Channel__WriteC0(Channel *self, const Chip* chip, Bit8u val ) {
	Bit8u change = val ^ self->regC0;
	if ( !change )
		return;
	self->regC0 = val;
	self->feedback = ( val >> 1 ) & 7;
	if ( self->feedback ) {
		//We shift the input to the right 10 bit wave index value
		self->feedback = 9 - self->feedback;
	} else {
		self->feedback = 31;
	}
	//Select the new synth mode
	if ( chip->opl3Active ) {
		//4-op mode enabled for this channel
		if ( (chip->reg104 & self->fourMask) & 0x3f ) {
			Channel* chan0, *chan1;
			Bit8u synth; // haleyjd 09/09/10: GNUisms out!
			//Check if it's the 2nd channel in a 4-op
			if ( !(self->fourMask & 0x80 ) ) {
				chan0 = self;
				chan1 = self + 1;
			} else {
				chan0 = self - 1;
				chan1 = self;
			}

			synth = ( (chan0->regC0 & 1) << 0 )| (( chan1->regC0 & 1) << 1 );
			switch ( synth ) {
			case 0:
				chan0->synthHandler = Channel__BlockTemplate_sm3FMFM;
				break;
			case 1:
				chan0->synthHandler = Channel__BlockTemplate_sm3AMFM;
				break;
			case 2:
				chan0->synthHandler = Channel__BlockTemplate_sm3FMAM ;
				break;
			case 3:
				chan0->synthHandler = Channel__BlockTemplate_sm3AMAM ;
				break;
			}
		//Disable updating percussion channels
		} else if ((self->fourMask & 0x40) && ( chip->regBD & 0x20) ) {

		//Regular dual op, am or fm
		} else if ( val & 1 ) {
			self->synthHandler = Channel__BlockTemplate_sm3AM;
		} else {
			self->synthHandler = Channel__BlockTemplate_sm3FM;
		}
		self->maskLeft = ( val & 0x10 ) ? -1 : 0;
		self->maskRight = ( val & 0x20 ) ? -1 : 0;
	//opl2 active
	} else { 
		//Disable updating percussion channels
		if ( (self->fourMask & 0x40) && ( chip->regBD & 0x20 ) ) {

		//Regular dual op, am or fm
		} else if ( val & 1 ) {
			self->synthHandler = Channel__BlockTemplate_sm2AM;
		} else {
			self->synthHandler = Channel__BlockTemplate_sm2FM;
		}
	}
}

static void Channel__ResetC0(Channel *self, const Chip* chip ) {
	Bit8u val = self->regC0;
	self->regC0 ^= 0xff;
	Channel__WriteC0( self, chip, val );
};

static inline void Channel__GeneratePercussion(Channel *self, Chip* chip,
                                               Bit32s* output, int opl3Mode ) {
	Channel* chan = self;

	//BassDrum
	Bit32s mod = (Bit32u)((self->old[0] + self->old[1])) >> self->feedback;
	Bit32s sample; // haleyjd 09/09/10
	Bit32u noiseBit;
	Bit32u c2;
	Bit32u c5;
	Bit32u phaseBit;
	Bit32u hhVol;
	Bit32u sdVol;
	Bit32u tcVol;

	self->old[0] = self->old[1];
	self->old[1] = Operator__GetSample( Channel__Op(self, 0), mod ); 

	//When bassdrum is in AM mode first operator is ignoed
	if ( chan->regC0 & 1 ) {
		mod = 0;
	} else {
		mod = self->old[0];
	}
	sample = Operator__GetSample( Channel__Op(self, 1), mod ); 

	//Precalculate stuff used by other outputs
	noiseBit = Chip__ForwardNoise(chip) & 0x1;
	c2 = Operator__ForwardWave(Channel__Op(self, 2));
	c5 = Operator__ForwardWave(Channel__Op(self, 5));
	phaseBit = (((c2 & 0x88) ^ ((c2<<5) & 0x80)) | ((c5 ^ (c5<<2)) & 0x20)) ? 0x02 : 0x00;

	//Hi-Hat
	hhVol = Operator__ForwardVolume(Channel__Op(self, 2));
	if ( !ENV_SILENT( hhVol ) ) {
		Bit32u hhIndex = (phaseBit<<8) | (0x34 << ( phaseBit ^ (noiseBit << 1 )));
		sample += Operator__GetWave( Channel__Op(self, 2), hhIndex, hhVol );
	}
	//Snare Drum
	sdVol = Operator__ForwardVolume( Channel__Op(self, 3) );
	if ( !ENV_SILENT( sdVol ) ) {
		Bit32u sdIndex = ( 0x100 + (c2 & 0x100) ) ^ ( noiseBit << 8 );
		sample += Operator__GetWave( Channel__Op(self, 3), sdIndex, sdVol );
	}
	//Tom-tom
	sample += Operator__GetSample( Channel__Op(self, 4), 0 );

	//Top-Cymbal
	tcVol = Operator__ForwardVolume(Channel__Op(self, 5));
	if ( !ENV_SILENT( tcVol ) ) {
		Bit32u tcIndex = (1 + phaseBit) << 8;
		sample += Operator__GetWave( Channel__Op(self, 5), tcIndex, tcVol );
	}
	sample <<= 1;
	if ( opl3Mode ) {
		output[0] += sample;
		output[1] += sample;
	} else {
		output[0] += sample;
	}
}

Channel* Channel__BlockTemplate(Channel *self, Chip* chip,
                                Bit32u samples, Bit32s* output,
                                SynthMode mode ) {
        Bitu i;

	switch( mode ) {
	case sm2AM:
	case sm3AM:
		if ( Operator__Silent(Channel__Op(self, 0))
                 && Operator__Silent(Channel__Op(self, 1))) {
			self->old[0] = self->old[1] = 0;
			return(self + 1);
		}
		break;
	case sm2FM:
	case sm3FM:
		if ( Operator__Silent(Channel__Op(self, 1))) {
			self->old[0] = self->old[1] = 0;
			return (self + 1);
		}
		break;
	case sm3FMFM:
		if ( Operator__Silent(Channel__Op(self, 3))) {
			self->old[0] = self->old[1] = 0;
			return (self + 2);
		}
		break;
	case sm3AMFM:
		if ( Operator__Silent( Channel__Op(self, 0) )
                 && Operator__Silent( Channel__Op(self, 3) )) {
			self->old[0] = self->old[1] = 0;
			return (self + 2);
		}
		break;
	case sm3FMAM:
		if ( Operator__Silent( Channel__Op(self, 1))
                 && Operator__Silent( Channel__Op(self, 3))) {
			self->old[0] = self->old[1] = 0;
			return (self + 2);
		}
		break;
	case sm3AMAM:
		if ( Operator__Silent( Channel__Op(self, 0) )
                 && Operator__Silent( Channel__Op(self, 2) )
                 && Operator__Silent( Channel__Op(self, 3) )) {
			self->old[0] = self->old[1] = 0;
			return (self + 2);
		}
		break;

        default:
                abort();
	}
	//Init the operators with the the current vibrato and tremolo values
        Operator__Prepare( Channel__Op( self, 0 ), chip );
        Operator__Prepare( Channel__Op( self, 1 ), chip );
	if ( mode > sm4Start ) {
                Operator__Prepare( Channel__Op( self, 2 ), chip );
                Operator__Prepare( Channel__Op( self, 3 ), chip );
	}
	if ( mode > sm6Start ) {
                Operator__Prepare( Channel__Op( self, 4 ), chip );
                Operator__Prepare( Channel__Op( self, 5 ), chip );
	}
	for ( i = 0; i < samples; i++ ) {
		Bit32s mod; // haleyjd 09/09/10: GNUisms out!
		Bit32s sample;
		Bit32s out0;

		//Early out for percussion handlers
		if ( mode == sm2Percussion ) {
			Channel__GeneratePercussion( self, chip, output + i, FALSE );
			continue;	//Prevent some unitialized value bitching
		} else if ( mode == sm3Percussion ) {
			Channel__GeneratePercussion( self, chip, output + i * 2, TRUE );
			continue;	//Prevent some unitialized value bitching
		}

		//Do unsigned shift so we can shift out all bits but still stay in 10 bit range otherwise
		mod = (Bit32u)((self->old[0] + self->old[1])) >> self->feedback;
		self->old[0] = self->old[1];
		self->old[1] = Operator__GetSample( Channel__Op(self, 0), mod );
		sample = 0;
		out0 = self->old[0];
		if ( mode == sm2AM || mode == sm3AM ) {
			sample = out0 + Operator__GetSample( Channel__Op(self, 1), 0 );
		} else if ( mode == sm2FM || mode == sm3FM ) {
			sample = Operator__GetSample( Channel__Op(self, 1), out0 );
		} else if ( mode == sm3FMFM ) {
			Bits next = Operator__GetSample( Channel__Op(self, 1), out0 );
			next = Operator__GetSample( Channel__Op(self, 2), next );
			sample = Operator__GetSample( Channel__Op(self, 3), next );
		} else if ( mode == sm3AMFM ) {
			Bits next; // haleyjd 09/09/10: GNUisms out!
			sample = out0;
			next = Operator__GetSample( Channel__Op(self, 1), 0 );
			next = Operator__GetSample( Channel__Op(self, 2), next );
			sample += Operator__GetSample( Channel__Op(self, 3), next );
		} else if ( mode == sm3FMAM ) {
			Bits next; // haleyjd 09/09/10: GNUisms out!
			sample = Operator__GetSample( Channel__Op(self, 1), out0 );
			next = Operator__GetSample( Channel__Op(self, 2), 0 );
			sample += Operator__GetSample( Channel__Op(self, 3), next );
		} else if ( mode == sm3AMAM ) {
			Bits next; // haleyjd 09/09/10: GNUisms out!
			sample = out0;
			next = Operator__GetSample( Channel__Op(self, 1), 0 );
			sample += Operator__GetSample( Channel__Op(self, 2), next );
			sample += Operator__GetSample( Channel__Op(self, 3), 0 );
		}
		switch( mode ) {
		case sm2AM:
		case sm2FM:
			output[ i ] += sample;
			break;
		case sm3AM:
		case sm3FM:
		case sm3FMFM:
		case sm3AMFM:
		case sm3FMAM:
		case sm3AMAM:
			output[ i * 2 + 0 ] += sample & self->maskLeft;
			output[ i * 2 + 1 ] += sample & self->maskRight;
			break;
                default:
                        abort();
		}
	}
	switch( mode ) {
	case sm2AM:
	case sm2FM:
	case sm3AM:
	case sm3FM:
		return ( self + 1 );
	case sm3FMFM:
	case sm3AMFM:
	case sm3FMAM:
	case sm3AMAM:
		return ( self + 2 );
	case sm2Percussion:
	case sm3Percussion:
		return( self + 3 );
        default:
                abort();
	}
	return 0;
}

/*
	Chip
*/

void Chip__Chip(Chip *self) {
        int i;

        for (i=0; i<18; ++i) {
                Channel__Channel(&self->chan[i]);
        }

	self->reg08 = 0;
	self->reg04 = 0;
	self->regBD = 0;
	self->reg104 = 0;
	self->opl3Active = 0;
}

static inline Bit32u Chip__ForwardNoise(Chip *self) {
	Bitu count;
	self->noiseCounter += self->noiseAdd;
	count = self->noiseCounter >> LFO_SH;
	self->noiseCounter &= WAVE_MASK;
	for ( ; count > 0; --count ) {
		//Noise calculation from mame
		self->noiseValue ^= ( 0x800302 ) & ( 0 - (self->noiseValue & 1 ) );
		self->noiseValue >>= 1;
	}
	return self->noiseValue;
}

static inline Bit32u Chip__ForwardLFO(Chip *self, Bit32u samples ) {
	Bit32u todo; // haleyjd 09/09/10: GNUisms out!!!!!!
	Bit32u count;

	//Current vibrato value, runs 4x slower than tremolo
	self->vibratoSign = ( VibratoTable[ self->vibratoIndex >> 2] ) >> 7;
	self->vibratoShift = ( VibratoTable[ self->vibratoIndex >> 2] & 7) + self->vibratoStrength; 
	self->tremoloValue = TremoloTable[ self->tremoloIndex ] >> self->tremoloStrength;

	//Check hom many samples there can be done before the value changes
	todo = LFO_MAX - self->lfoCounter;
	count = (todo + self->lfoAdd - 1) / self->lfoAdd;
	if ( count > samples ) {
		count = samples;
		self->lfoCounter += count * self->lfoAdd;
	} else {
		self->lfoCounter += count * self->lfoAdd;
		self->lfoCounter &= (LFO_MAX - 1);
		//Maximum of 7 vibrato value * 4
		self->vibratoIndex = ( self->vibratoIndex + 1 ) & 31;
		//Clip tremolo to the the table size
		if ( self->tremoloIndex + 1 < TREMOLO_TABLE  )
			++self->tremoloIndex;
		else
			self->tremoloIndex = 0;
	}
	return count;
}


static void Chip__WriteBD(Chip *self, Bit8u val ) {
	Bit8u change = self->regBD ^ val;
	if ( !change )
		return;
	self->regBD = val;
	//TODO could do this with shift and xor?
	self->vibratoStrength = (val & 0x40) ? 0x00 : 0x01;
	self->tremoloStrength = (val & 0x80) ? 0x00 : 0x02;
	if ( val & 0x20 ) {
		//Drum was just enabled, make sure channel 6 has the right synth
		if ( change & 0x20 ) {
			if ( self->opl3Active ) {
				self->chan[6].synthHandler
                                    = Channel__BlockTemplate_sm3Percussion; 
			} else {
				self->chan[6].synthHandler
                                    = Channel__BlockTemplate_sm2Percussion;
			}
		}
		//Bass Drum
		if ( val & 0x10 ) {
                        Operator__KeyOn( &self->chan[6].op[0], 0x2 );
                        Operator__KeyOn( &self->chan[6].op[1], 0x2 );
		} else {
                        Operator__KeyOff( &self->chan[6].op[0], 0x2 );
                        Operator__KeyOff( &self->chan[6].op[1], 0x2 );
		}
		//Hi-Hat
		if ( val & 0x1 ) {
                        Operator__KeyOn( &self->chan[7].op[0], 0x2 );
		} else {
                        Operator__KeyOff( &self->chan[7].op[0], 0x2 );
		}
		//Snare
		if ( val & 0x8 ) {
                        Operator__KeyOn( &self->chan[7].op[1], 0x2 );
		} else {
                        Operator__KeyOff( &self->chan[7].op[1], 0x2 );
		}
		//Tom-Tom
		if ( val & 0x4 ) {
                        Operator__KeyOn( &self->chan[8].op[0], 0x2 );
		} else {
                        Operator__KeyOff( &self->chan[8].op[0], 0x2 );
		}
		//Top Cymbal
		if ( val & 0x2 ) {
                        Operator__KeyOn( &self->chan[8].op[1], 0x2 );
		} else {
                        Operator__KeyOff( &self->chan[8].op[1], 0x2 );
		}
	//Toggle keyoffs when we turn off the percussion
	} else if ( change & 0x20 ) {
		//Trigger a reset to setup the original synth handler
                Channel__ResetC0( &self->chan[6], self );
                Operator__KeyOff( &self->chan[6].op[0], 0x2 );
                Operator__KeyOff( &self->chan[6].op[1], 0x2 );
                Operator__KeyOff( &self->chan[7].op[0], 0x2 );
                Operator__KeyOff( &self->chan[7].op[1], 0x2 );
                Operator__KeyOff( &self->chan[8].op[0], 0x2 );
                Operator__KeyOff( &self->chan[8].op[1], 0x2 );
	}
}


#define REGOP( _FUNC_ )															\
	index = ( ( reg >> 3) & 0x20 ) | ( reg & 0x1f );								\
	if ( OpOffsetTable[ index ] ) {													\
		Operator* regOp = (Operator*)( ((char *)self ) + OpOffsetTable[ index ] );	\
                Operator__ ## _FUNC_ (regOp, self, val); \
	}

#define REGCHAN( _FUNC_ )																\
	index = ( ( reg >> 4) & 0x10 ) | ( reg & 0xf );										\
	if ( ChanOffsetTable[ index ] ) {													\
		Channel* regChan = (Channel*)( ((char *)self ) + ChanOffsetTable[ index ] );	\
                Channel__ ## _FUNC_ (regChan, self, val); \
	}

void Chip__WriteReg(Chip *self, Bit32u reg, Bit8u val ) {
	Bitu index;
	switch ( (reg & 0xf0) >> 4 ) {
	case 0x00 >> 4:
		if ( reg == 0x01 ) {
			self->waveFormMask = ( val & 0x20 ) ? 0x7 : 0x0; 
		} else if ( reg == 0x104 ) {
			//Only detect changes in lowest 6 bits
			if ( !((self->reg104 ^ val) & 0x3f) )
				return;
			//Always keep the highest bit enabled, for checking > 0x80
			self->reg104 = 0x80 | ( val & 0x3f );
		} else if ( reg == 0x105 ) {
                        int i;

			//MAME says the real opl3 doesn't reset anything on opl3 disable/enable till the next write in another register
			if ( !((self->opl3Active ^ val) & 1 ) )
				return;
			self->opl3Active = ( val & 1 ) ? 0xff : 0;
			//Update the 0xc0 register for all channels to signal the switch to mono/stereo handlers
			for ( i = 0; i < 18;i++ ) {
                                Channel__ResetC0( &self->chan[i], self );
			}
		} else if ( reg == 0x08 ) {
			self->reg08 = val;
		}
	case 0x10 >> 4:
		break;
	case 0x20 >> 4:
	case 0x30 >> 4:
		REGOP( Write20 );
		break;
	case 0x40 >> 4:
	case 0x50 >> 4:
		REGOP( Write40 );
		break;
	case 0x60 >> 4:
	case 0x70 >> 4:
		REGOP( Write60 );
		break;
	case 0x80 >> 4:
	case 0x90 >> 4:
		REGOP( Write80 );
		break;
	case 0xa0 >> 4:
		REGCHAN( WriteA0 );
		break;
	case 0xb0 >> 4:
		if ( reg == 0xbd ) {
			Chip__WriteBD( self, val );
		} else {
			REGCHAN( WriteB0 );
		}
		break;
	case 0xc0 >> 4:
		REGCHAN( WriteC0 );
	case 0xd0 >> 4:
		break;
	case 0xe0 >> 4:
	case 0xf0 >> 4:
		REGOP( WriteE0 );
		break;
	}
}

Bit32u Chip__WriteAddr(Chip *self, Bit32u port, Bit8u val ) {
	switch ( port & 3 ) {
	case 0:
		return val;
	case 2:
		if ( self->opl3Active || (val == 0x05) )
			return 0x100 | val;
		else
			return val;
	}
	return 0;
}

void Chip__GenerateBlock2(Chip *self, Bitu total, Bit32s* output ) {
	while ( total > 0 ) {
                Channel *ch;
		int count;

		Bit32u samples = Chip__ForwardLFO( self, total );
		memset(output, 0, sizeof(Bit32s) * samples);
		count = 0;
		for ( ch = self->chan; ch < self->chan + 9; ) {
			count++;
			ch = (ch->synthHandler)( ch, self, samples, output );
		}
		total -= samples;
		output += samples;
	}
}

void Chip__GenerateBlock3(Chip *self, Bitu total, Bit32s* output  ) {
	while ( total > 0 ) {
                int count;
                Channel *ch;

		Bit32u samples = Chip__ForwardLFO( self, total );
		memset(output, 0, sizeof(Bit32s) * samples *2);
		count = 0;
		for ( ch = self->chan; ch < self->chan + 18; ) {
			count++;
			ch = (ch->synthHandler)( ch, self, samples, output );
		}
		total -= samples;
		output += samples * 2;
	}
}

void Chip__Setup(Chip *self, Bit32u rate ) {
	double original = OPLRATE;
	Bit32u i;
	Bit32u freqScale; // haleyjd 09/09/10: GNUisms out!
//	double original = rate;
	double scale = original / (double)rate;

	//Noise counter is run at the same precision as general waves
	self->noiseAdd = (Bit32u)( 0.5 + scale * ( 1 << LFO_SH ) );
	self->noiseCounter = 0;
	self->noiseValue = 1;	//Make sure it triggers the noise xor the first time
	//The low frequency oscillation counter
	//Every time his overflows vibrato and tremoloindex are increased
	self->lfoAdd = (Bit32u)( 0.5 + scale * ( 1 << LFO_SH ) );
	self->lfoCounter = 0;
	self->vibratoIndex = 0;
	self->tremoloIndex = 0;

	//With higher octave this gets shifted up
	//-1 since the freqCreateTable = *2
#ifdef WAVE_PRECISION
	double freqScale = ( 1 << 7 ) * scale * ( 1 << ( WAVE_SH - 1 - 10));
	for ( i = 0; i < 16; i++ ) {
		self->freqMul[i] = (Bit32u)( 0.5 + freqScale * FreqCreateTable[ i ] );
	}
#else
	freqScale = (Bit32u)( 0.5 + scale * ( 1 << ( WAVE_SH - 1 - 10)));
	for ( i = 0; i < 16; i++ ) {
		self->freqMul[i] = freqScale * FreqCreateTable[ i ];
	}
#endif

	//-3 since the real envelope takes 8 steps to reach the single value we supply
	for ( i = 0; i < 76; i++ ) {
		Bit8u index, shift;
		EnvelopeSelect( i, &index, &shift );
		self->linearRates[i] = (Bit32u)( scale * (EnvelopeIncreaseTable[ index ] << ( RATE_SH + ENV_EXTRA - shift - 3 )));
	}
	//Generate the best matching attack rate
	for ( i = 0; i < 62; i++ ) {
		Bit8u index, shift;
		Bit32s original; // haleyjd 09/09/10: GNUisms out!
		Bit32s guessAdd;
		Bit32s bestAdd;
		Bit32u bestDiff;
		Bit32u passes;
		EnvelopeSelect( i, &index, &shift );
		//Original amount of samples the attack would take
		original = (Bit32u)( (AttackSamplesTable[ index ] << shift) / scale);
		 
		guessAdd = (Bit32u)( scale * (EnvelopeIncreaseTable[ index ] << ( RATE_SH - shift - 3 )));
		bestAdd = guessAdd;
		bestDiff = 1 << 30;

		for ( passes = 0; passes < 16; passes ++ ) {
			Bit32s volume = ENV_MAX;
			Bit32s samples = 0;
			Bit32u count = 0;
			Bit32s diff;
			Bit32u lDiff;
			while ( volume > 0 && samples < original * 2 ) {
				Bit32s change; // haleyjd 09/09/10
				count += guessAdd;
				change = count >> RATE_SH;
				count &= RATE_MASK;
				if ( GCC_UNLIKELY(change) ) { // less than 1 % 
					volume += ( ~volume * change ) >> 3;
				}
				samples++;

			}
			diff = original - samples;
			lDiff = labs( diff );
			//Init last on first pass
			if ( lDiff < bestDiff ) {
				bestDiff = lDiff;
				bestAdd = guessAdd;
				if ( !bestDiff )
					break;
			}
			//Below our target
			if ( diff < 0 ) {
				//Better than the last time
				Bit32s mul = ((original - diff) << 12) / original;
				guessAdd = ((guessAdd * mul) >> 12);
				guessAdd++;
			} else if ( diff > 0 ) {
				Bit32s mul = ((original - diff) << 12) / original;
				guessAdd = (guessAdd * mul) >> 12;
				guessAdd--;
			}
		}
		self->attackRates[i] = bestAdd;
	}
	for ( i = 62; i < 76; i++ ) {
		//This should provide instant volume maximizing
		self->attackRates[i] = 8 << RATE_SH;
	}
	//Setup the channels with the correct four op flags
	//Channels are accessed through a table so they appear linear here
	self->chan[ 0].fourMask = 0x00 | ( 1 << 0 );
	self->chan[ 1].fourMask = 0x80 | ( 1 << 0 );
	self->chan[ 2].fourMask = 0x00 | ( 1 << 1 );
	self->chan[ 3].fourMask = 0x80 | ( 1 << 1 );
	self->chan[ 4].fourMask = 0x00 | ( 1 << 2 );
	self->chan[ 5].fourMask = 0x80 | ( 1 << 2 );

	self->chan[ 9].fourMask = 0x00 | ( 1 << 3 );
	self->chan[10].fourMask = 0x80 | ( 1 << 3 );
	self->chan[11].fourMask = 0x00 | ( 1 << 4 );
	self->chan[12].fourMask = 0x80 | ( 1 << 4 );
	self->chan[13].fourMask = 0x00 | ( 1 << 5 );
	self->chan[14].fourMask = 0x80 | ( 1 << 5 );

	//mark the percussion channels
	self->chan[ 6].fourMask = 0x40;
	self->chan[ 7].fourMask = 0x40;
	self->chan[ 8].fourMask = 0x40;

	//Clear Everything in opl3 mode
	Chip__WriteReg( self, 0x105, 0x1 );
	for ( i = 0; i < 512; i++ ) {
		if ( i == 0x105 )
			continue;
		Chip__WriteReg( self, i, 0xff );
		Chip__WriteReg( self, i, 0x0 );
	}
	Chip__WriteReg( self, 0x105, 0x0 );
	//Clear everything in opl2 mode
	for ( i = 0; i < 255; i++ ) {
		Chip__WriteReg( self, i, 0xff );
		Chip__WriteReg( self, i, 0x0 );
	}
}

static int doneTables = FALSE;
void DBOPL_InitTables( void ) {
        int i, oct;

	if ( doneTables )
		return;
	doneTables = TRUE;
#if ( DBOPL_WAVE == WAVE_HANDLER ) || ( DBOPL_WAVE == WAVE_TABLELOG )
	//Exponential volume table, same as the real adlib
	for ( i = 0; i < 256; i++ ) {
		//Save them in reverse
		ExpTable[i] = (int)( 0.5 + ( pow(2.0, ( 255 - i) * ( 1.0 /256 ) )-1) * 1024 );
		ExpTable[i] += 1024; //or remove the -1 oh well :)
		//Preshift to the left once so the final volume can shift to the right
		ExpTable[i] *= 2;
	}
#endif
#if ( DBOPL_WAVE == WAVE_HANDLER )
	//Add 0.5 for the trunc rounding of the integer cast
	//Do a PI sinetable instead of the original 0.5 PI
	for ( i = 0; i < 512; i++ ) {
		SinTable[i] = (Bit16s)( 0.5 - log10( sin( (i + 0.5) * (PI / 512.0) ) ) / log10(2.0)*256 );
	}
#endif
#if ( DBOPL_WAVE == WAVE_TABLEMUL )
	//Multiplication based tables
	for ( i = 0; i < 384; i++ ) {
		int s = i * 8;
		//TODO maybe keep some of the precision errors of the original table?
		double val = ( 0.5 + ( pow(2.0, -1.0 + ( 255 - s) * ( 1.0 /256 ) )) * ( 1 << MUL_SH ));
		MulTable[i] = (Bit16u)(val);
	}

	//Sine Wave Base
	for ( i = 0; i < 512; i++ ) {
		WaveTable[ 0x0200 + i ] = (Bit16s)(sin( (i + 0.5) * (PI / 512.0) ) * 4084);
		WaveTable[ 0x0000 + i ] = -WaveTable[ 0x200 + i ];
	}
	//Exponential wave
	for ( i = 0; i < 256; i++ ) {
		WaveTable[ 0x700 + i ] = (Bit16s)( 0.5 + ( pow(2.0, -1.0 + ( 255 - i * 8) * ( 1.0 /256 ) ) ) * 4085 );
		WaveTable[ 0x6ff - i ] = -WaveTable[ 0x700 + i ];
	}
#endif
#if ( DBOPL_WAVE == WAVE_TABLELOG )
	//Sine Wave Base
	for ( i = 0; i < 512; i++ ) {
		WaveTable[ 0x0200 + i ] = (Bit16s)( 0.5 - log10( sin( (i + 0.5) * (PI / 512.0) ) ) / log10(2.0)*256 );
		WaveTable[ 0x0000 + i ] = ((Bit16s)0x8000) | WaveTable[ 0x200 + i];
	}
	//Exponential wave
	for ( i = 0; i < 256; i++ ) {
		WaveTable[ 0x700 + i ] = i * 8;
		WaveTable[ 0x6ff - i ] = ((Bit16s)0x8000) | i * 8;
	} 
#endif

	//	|    |//\\|____|WAV7|//__|/\  |____|/\/\|
	//	|\\//|    |    |WAV7|    |  \/|    |    |
	//	|06  |0126|27  |7   |3   |4   |4 5 |5   |

#if (( DBOPL_WAVE == WAVE_TABLELOG ) || ( DBOPL_WAVE == WAVE_TABLEMUL ))
	for ( i = 0; i < 256; i++ ) {
		//Fill silence gaps
		WaveTable[ 0x400 + i ] = WaveTable[0];
		WaveTable[ 0x500 + i ] = WaveTable[0];
		WaveTable[ 0x900 + i ] = WaveTable[0];
		WaveTable[ 0xc00 + i ] = WaveTable[0];
		WaveTable[ 0xd00 + i ] = WaveTable[0];
		//Replicate sines in other pieces
		WaveTable[ 0x800 + i ] = WaveTable[ 0x200 + i ];
		//double speed sines
		WaveTable[ 0xa00 + i ] = WaveTable[ 0x200 + i * 2 ];
		WaveTable[ 0xb00 + i ] = WaveTable[ 0x000 + i * 2 ];
		WaveTable[ 0xe00 + i ] = WaveTable[ 0x200 + i * 2 ];
		WaveTable[ 0xf00 + i ] = WaveTable[ 0x200 + i * 2 ];
	} 
#endif

	//Create the ksl table
	for ( oct = 0; oct < 8; oct++ ) {
		int base = oct * 8;
		for ( i = 0; i < 16; i++ ) {
			int val = base - KslCreateTable[i];
			if ( val < 0 )
				val = 0;
			//*4 for the final range to match attenuation range
			KslTable[ oct * 16 + i ] = val * 4;
		}
	}
	//Create the Tremolo table, just increase and decrease a triangle wave
	for ( i = 0; i < TREMOLO_TABLE / 2; i++ ) {
		Bit8u val = i << ENV_EXTRA;
		TremoloTable[i] = val;
		TremoloTable[TREMOLO_TABLE - 1 - i] = val;
	}
	//Create a table with offsets of the channels from the start of the chip
	{ // haleyjd 09/09/10: Driving me #$%^@ insane
		Chip *chip = NULL;
		for ( i = 0; i < 32; i++ ) {
			Bitu index = i & 0xf;
			Bitu blah; // haleyjd 09/09/10
			if ( index >= 9 ) {
				ChanOffsetTable[i] = 0;
				continue;
			}
			//Make sure the four op channels follow eachother
			if ( index < 6 ) {
				index = (index % 3) * 2 + ( index / 3 );
			}
			//Add back the bits for highest ones
			if ( i >= 16 )
				index += 9;
			blah = (Bitu) ( &(chip->chan[ index ]) );
			ChanOffsetTable[i] = blah;
		}
		//Same for operators
		for ( i = 0; i < 64; i++ ) {
			Bitu chNum; // haleyjd 09/09/10
			Bitu opNum;
			Bitu blah;
			Channel* chan = NULL;
			if ( i % 8 >= 6 || ( (i / 8) % 4 == 3 ) ) {
				OpOffsetTable[i] = 0;
				continue;
			}
			chNum = (i / 8) * 3 + (i % 8) % 3;
			//Make sure we use 16 and up for the 2nd range to match the chanoffset gap
			if ( chNum >= 12 )
				chNum += 16 - 12;
			opNum = ( i % 8 ) / 3;
			blah = (Bitu) ( &(chan->op[opNum]) );
			OpOffsetTable[i] = ChanOffsetTable[ chNum ] + blah;
		}
#if 0
		//Stupid checks if table's are correct
		for ( Bitu i = 0; i < 18; i++ ) {
			Bit32u find = (Bit16u)( &(chip->chan[ i ]) );
			for ( Bitu c = 0; c < 32; c++ ) {
				if ( ChanOffsetTable[c] == find ) {
					find = 0;
					break;
				}
			}
			if ( find ) {
				find = find;
			}
		}
		for ( Bitu i = 0; i < 36; i++ ) {
			Bit32u find = (Bit16u)( &(chip->chan[ i / 2 ].op[i % 2]) );
			for ( Bitu c = 0; c < 64; c++ ) {
				if ( OpOffsetTable[c] == find ) {
					find = 0;
					break;
				}
			}
			if ( find ) {
				find = find;
			}
		}
#endif
	}
}

/*

Bit32u Handler::WriteAddr( Bit32u port, Bit8u val ) {
	return chip.WriteAddr( port, val );

}
void Handler::WriteReg( Bit32u addr, Bit8u val ) {
	chip.WriteReg( addr, val );
}

void Handler::Generate( MixerChannel* chan, Bitu samples ) {
	Bit32s buffer[ 512 * 2 ];
	if ( GCC_UNLIKELY(samples > 512) )
		samples = 512;
	if ( !chip.opl3Active ) {
		chip.GenerateBlock2( samples, buffer );
		chan->AddSamples_m32( samples, buffer );
	} else {
		chip.GenerateBlock3( samples, buffer );
		chan->AddSamples_s32( samples, buffer );
	}
}

void Handler::Init( Bitu rate ) {
	InitTables();
	chip.Setup( rate );
}
*/