Skip to content

Latest commit

 

History

History
2762 lines (2190 loc) · 73.5 KB

mplayer.c

File metadata and controls

2762 lines (2190 loc) · 73.5 KB
 
Oct 21, 1999
Oct 21, 1999
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
/*
--> The Protracker Player Driver
-> Part of the SPLAYER pack for MikMod 3.0
The protracker driver supports all base Protracker 3.x commands and fea-
tures.
*/
#include <string.h>
#include <stdarg.h>
#include "mikmod.h"
static void DoNNAEffects(UBYTE dat);
/* Set forbid to 1 when you want to modify any of the pf->sngpos, pf->patpos etc. */
/* variables and clear it when you're done. This prevents getting strange */
/* results due to intermediate interrupts. */
UNIMOD *pf; /* <- this modfile is being played */
static SWORD mp_channel; /* channel it's working on */
static MP_CONTROL *a; /* current AUDTMP it's working on */
static int isfirst;
static MP_VOICE aout_dummy;
UWORD mytab[12] =
{ 1712*16, 1616*16, 1524*16, 1440*16, 1356*16, 1280*16,
1208*16, 1140*16, 1076*16, 1016*16, 960*16, 907*16
};
UBYTE VibratoTable[32] =
{ 0,24,49,74,97,120,141,161,
180,197,212,224,235,244,250,253,
255,253,250,244,235,224,212,197,
180,161,141,120,97,74,49,24
};
UBYTE avibtab[128] =
{ 0,1,3,4,6,7,9,10,12,14,15,17,18,20,21,23,
24,25,27,28,30,31,32,34,35,36,38,39,40,41,42,44,
45,46,47,48,49,50,51,52,53,54,54,55,56,57,57,58,
59,59,60,60,61,61,62,62,62,63,63,63,63,63,63,63,
64,63,63,63,63,63,63,63,62,62,62,61,61,60,60,59,
59,58,57,57,56,55,54,54,53,52,51,50,49,48,47,46,
45,44,42,41,40,39,38,36,35,34,32,31,30,28,27,25,
24,23,21,20,18,17,15,14,12,10,9,7,6,4,3,1
};
/* ** Triton's linear periods to frequency translation table (for */
/* ** Fast Tracker 2 [XM] modules): */
ULONG lintab[768] =
{ 535232,534749,534266,533784,533303,532822,532341,531861,
531381,530902,530423,529944,529466,528988,528511,528034,
527558,527082,526607,526131,525657,525183,524709,524236,
523763,523290,522818,522346,521875,521404,520934,520464,
519994,519525,519057,518588,518121,517653,517186,516720,
516253,515788,515322,514858,514393,513929,513465,513002,
512539,512077,511615,511154,510692,510232,509771,509312,
508852,508393,507934,507476,507018,506561,506104,505647,
505191,504735,504280,503825,503371,502917,502463,502010,
501557,501104,500652,500201,499749,499298,498848,498398,
497948,497499,497050,496602,496154,495706,495259,494812,
494366,493920,493474,493029,492585,492140,491696,491253,
490809,490367,489924,489482,489041,488600,488159,487718,
487278,486839,486400,485961,485522,485084,484647,484210,
483773,483336,482900,482465,482029,481595,481160,480726,
480292,479859,479426,478994,478562,478130,477699,477268,
476837,476407,475977,475548,475119,474690,474262,473834,
473407,472979,472553,472126,471701,471275,470850,470425,
470001,469577,469153,468730,468307,467884,467462,467041,
466619,466198,465778,465358,464938,464518,464099,463681,
463262,462844,462427,462010,461593,461177,460760,460345,
459930,459515,459100,458686,458272,457859,457446,457033,
456621,456209,455797,455386,454975,454565,454155,453745,
453336,452927,452518,452110,451702,451294,450887,450481,
450074,449668,449262,448857,448452,448048,447644,447240,
446836,446433,446030,445628,445226,444824,444423,444022,
443622,443221,442821,442422,442023,441624,441226,440828,
440430,440033,439636,439239,438843,438447,438051,437656,
437261,436867,436473,436079,435686,435293,434900,434508,
434116,433724,433333,432942,432551,432161,431771,431382,
430992,430604,430215,429827,429439,429052,428665,428278,
427892,427506,427120,426735,426350,425965,425581,425197,
424813,424430,424047,423665,423283,422901,422519,422138,
421757,421377,420997,420617,420237,419858,419479,419101,
418723,418345,417968,417591,417214,416838,416462,416086,
415711,415336,414961,414586,414212,413839,413465,413092,
412720,412347,411975,411604,411232,410862,410491,410121,
409751,409381,409012,408643,408274,407906,407538,407170,
406803,406436,406069,405703,405337,404971,404606,404241,
403876,403512,403148,402784,402421,402058,401695,401333,
400970,400609,400247,399886,399525,399165,398805,398445,
398086,397727,397368,397009,396651,396293,395936,395579,
395222,394865,394509,394153,393798,393442,393087,392733,
392378,392024,391671,391317,390964,390612,390259,389907,
389556,389204,388853,388502,388152,387802,387452,387102,
386753,386404,386056,385707,385359,385012,384664,384317,
383971,383624,383278,382932,382587,382242,381897,381552,
381208,380864,380521,380177,379834,379492,379149,378807,
378466,378124,377783,377442,377102,376762,376422,376082,
375743,375404,375065,374727,374389,374051,373714,373377,
373040,372703,372367,372031,371695,371360,371025,370690,
370356,370022,369688,369355,369021,368688,368356,368023,
367691,367360,367028,366697,366366,366036,365706,365376,
365046,364717,364388,364059,363731,363403,363075,362747,
362420,362093,361766,361440,361114,360788,360463,360137,
359813,359488,359164,358840,358516,358193,357869,357547,
357224,356902,356580,356258,355937,355616,355295,354974,
354654,354334,354014,353695,353376,353057,352739,352420,
352103,351785,351468,351150,350834,350517,350201,349885,
349569,349254,348939,348624,348310,347995,347682,347368,
347055,346741,346429,346116,345804,345492,345180,344869,
344558,344247,343936,343626,343316,343006,342697,342388,
342079,341770,341462,341154,340846,340539,340231,339924,
339618,339311,339005,338700,338394,338089,337784,337479,
337175,336870,336566,336263,335959,335656,335354,335051,
334749,334447,334145,333844,333542,333242,332941,332641,
332341,332041,331741,331442,331143,330844,330546,330247,
329950,329652,329355,329057,328761,328464,328168,327872,
327576,327280,326985,326690,326395,326101,325807,325513,
325219,324926,324633,324340,324047,323755,323463,323171,
322879,322588,322297,322006,321716,321426,321136,320846,
320557,320267,319978,319690,319401,319113,318825,318538,
318250,317963,317676,317390,317103,316817,316532,316246,
315961,315676,315391,315106,314822,314538,314254,313971,
313688,313405,313122,312839,312557,312275,311994,311712,
311431,311150,310869,310589,310309,310029,309749,309470,
309190,308911,308633,308354,308076,307798,307521,307243,
306966,306689,306412,306136,305860,305584,305308,305033,
304758,304483,304208,303934,303659,303385,303112,302838,
302565,302292,302019,301747,301475,301203,300931,300660,
300388,300117,299847,299576,299306,299036,298766,298497,
298227,297958,297689,297421,297153,296884,296617,296349,
296082,295815,295548,295281,295015,294749,294483,294217,
293952,293686,293421,293157,292892,292628,292364,292100,
291837,291574,291311,291048,290785,290523,290261,289999,
289737,289476,289215,288954,288693,288433,288173,287913,
287653,287393,287134,286875,286616,286358,286099,285841,
285583,285326,285068,284811,284554,284298,284041,283785,
283529,283273,283017,282762,282507,282252,281998,281743,
281489,281235,280981,280728,280475,280222,279969,279716,
279464,279212,278960,278708,278457,278206,277955,277704,
277453,277203,276953,276703,276453,276204,275955,275706,
275457,275209,274960,274712,274465,274217,273970,273722,
273476,273229,272982,272736,272490,272244,271999,271753,
271508,271263,271018,270774,270530,270286,270042,269798,
269555,269312,269069,268826,268583,268341,268099,267857
};
#define LOGFAC 2*16
UWORD logtab[104] =
{ LOGFAC*907,LOGFAC*900,LOGFAC*894,LOGFAC*887,LOGFAC*881,LOGFAC*875,LOGFAC*868,LOGFAC*862,
LOGFAC*856,LOGFAC*850,LOGFAC*844,LOGFAC*838,LOGFAC*832,LOGFAC*826,LOGFAC*820,LOGFAC*814,
LOGFAC*808,LOGFAC*802,LOGFAC*796,LOGFAC*791,LOGFAC*785,LOGFAC*779,LOGFAC*774,LOGFAC*768,
LOGFAC*762,LOGFAC*757,LOGFAC*752,LOGFAC*746,LOGFAC*741,LOGFAC*736,LOGFAC*730,LOGFAC*725,
LOGFAC*720,LOGFAC*715,LOGFAC*709,LOGFAC*704,LOGFAC*699,LOGFAC*694,LOGFAC*689,LOGFAC*684,
LOGFAC*678,LOGFAC*675,LOGFAC*670,LOGFAC*665,LOGFAC*660,LOGFAC*655,LOGFAC*651,LOGFAC*646,
LOGFAC*640,LOGFAC*636,LOGFAC*632,LOGFAC*628,LOGFAC*623,LOGFAC*619,LOGFAC*614,LOGFAC*610,
LOGFAC*604,LOGFAC*601,LOGFAC*597,LOGFAC*592,LOGFAC*588,LOGFAC*584,LOGFAC*580,LOGFAC*575,
LOGFAC*570,LOGFAC*567,LOGFAC*563,LOGFAC*559,LOGFAC*555,LOGFAC*551,LOGFAC*547,LOGFAC*543,
LOGFAC*538,LOGFAC*535,LOGFAC*532,LOGFAC*528,LOGFAC*524,LOGFAC*520,LOGFAC*516,LOGFAC*513,
LOGFAC*508,LOGFAC*505,LOGFAC*502,LOGFAC*498,LOGFAC*494,LOGFAC*491,LOGFAC*487,LOGFAC*484,
LOGFAC*480,LOGFAC*477,LOGFAC*474,LOGFAC*470,LOGFAC*467,LOGFAC*463,LOGFAC*460,LOGFAC*457,
LOGFAC*453,LOGFAC*450,LOGFAC*447,LOGFAC*443,LOGFAC*440,LOGFAC*437,LOGFAC*434,LOGFAC*431
};
SBYTE PanbrelloTable[256] =
{ 0,2,3,5,6,8,9,11,12,14,16,17,19,20,22,23,
24,26,27,29,30,32,33,34,36,37,38,39,41,42,43,44,
45,46,47,48,49,50,51,52,53,54,55,56,56,57,58,59,
59,60,60,61,61,62,62,62,63,63,63,64,64,64,64,64,
64,64,64,64,64,64,63,63,63,62,62,62,61,61,60,60,
59,59,58,57,56,56,55,54,53,52,51,50,49,48,47,46,
45,44,43,42,41,39,38,37,36,34,33,32,30,29,27,26,
24,23,22,20,19,17,16,14,12,11,9,8,6,5,3,2,
0,-2,-3,-5,-6,-8,-9,-11,-12,-14,-16,-17,-19,-20,-22,-23,
-24,-26,-27,-29,-30,-32,-33,-34,-36,-37,-38,-39,-41,-42,-43,-44,
-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-56,-57,-58,-59,
-59,-60,-60,-61,-61,-62,-62,-62,-63,-63,-63,-64,-64,-64,-64,-64,
-64,-64,-64,-64,-64,-64,-63,-63,-63,-62,-62,-62,-61,-61,-60,-60,
-59,-59,-58,-57,-56,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,
-45,-44,-43,-42,-41,-39,-38,-37,-36,-34,-33,-32,-30,-29,-27,-26,
-24,-23,-22,-20,-19,-17,-16,-14,-12,-11,-9,-8,-6,-5,-3,-2
};
/* New Note Action Scoring System:
---------------------------------
1) total-volume (fadevol, chanvol, volume) is the main scorer.
2) a looping sample is a bonus x2
3) a forground channel is a bonus x4
4) an active envelope with keyoff is a handicap -x2
*/
static int MP_FindEmptyChannel(int curchan) /* returns mp_control index of free channel */
{
MP_VOICE *a;
ULONG t,k,tvol,p,pp;
/*for(t=md_sngchn; t; t--, audpool++)
{ if(audpool == md_sngchn) audpool = 0;
if(!(pf->voice[audpool].kick) && Voice_Stopped(audpool))
{ audpool++;
return audpool-1;
}
}*/
for(t=0; t<md_sngchn; t++)
{ if(!(pf->voice[t].kick) && Voice_Stopped(t))
{ return t;
}
}
tvol = 0xffffffUL; t = 0; p = 0; a = pf->voice;
for(k=0; k<md_sngchn; k++, a++)
{ if(!a->kick)
{ pp = a->totalvol << ((a->s->flags & SF_LOOP) ? 1 : 0);
if((a->master!=NULL) && (a==a->master->slave))
pp <<= 2;
/*if(a->volflg & EF_ON)
{ if(a->volflg & (EF_SUSTAIN | EF_LOOP))
{ if(a->keyoff & KEY_OFF)
{ pp >>= 1;
if(a->venv.env[a->venv.end].val < 32) pp>>=1;
} else
pp <<= 1;
} else pp <<= 1;
}*/
if(pp < tvol)
{ tvol = pp;
t = k;
}
}
}
if(tvol>8000*7) return -1; /*mp_channel; */
return t;
}
static SWORD Interpolate(SWORD p, SWORD p1, SWORD p2, SWORD v1, SWORD v2)
{
SWORD dp,dv,di;
if(p1==p2) return v1;
dv = v2-v1;
dp = p2-p1;
di = p-p1;
return v1 + ((SLONG)(di*dv) / dp);
}
UWORD getlinearperiod(UBYTE note, ULONG fine)
{
return((10L*12*16*4)-((ULONG)note*16*4)-(fine/2)+64);
}
static UWORD getlogperiod(UBYTE note,ULONG fine)
{
UBYTE n,o;
UWORD p1,p2;
ULONG i;
n = note%12;
o = note/12;
i = (n<<3) + (fine>>4); /* n*8 + fine/16 */
p1 = logtab[i];
p2 = logtab[i+1];
return(Interpolate(fine/16,0,15,p1,p2)>>o);
}
static UWORD getoldperiod(UBYTE note, ULONG speed)
{
UBYTE n, o;
ULONG period;
if(!speed) return 4242; /* <- prevent divide overflow.. (42 eheh) */
n = note % 12;
o = note / 12;
period = ((8363l*(ULONG)mytab[n]) >> o ) / speed;
return period;
}
static UWORD GetPeriod(UBYTE note, ULONG speed)
{
if(pf->flags & UF_XMPERIODS)
return (pf->flags & UF_LINEAR) ? getlinearperiod(note,speed) : getlogperiod(note,speed);
return getoldperiod(note,speed);
}
static SWORD InterpolateEnv(SWORD p, ENVPT *a, ENVPT *b)
{
return(Interpolate(p,a->pos,b->pos,a->val,b->val));
}
static SWORD DoPan(SWORD envpan, SWORD pan)
{
return(pan + (((envpan-128)*(128-abs(pan-128)))/128));
}
static void StartEnvelope(ENVPR *t, UBYTE flg, UBYTE pts, UBYTE susbeg, UBYTE susend, UBYTE beg, UBYTE end, ENVPT *p, UBYTE keyoff)
{
t->flg = flg;
t->pts = pts;
t->susbeg = susbeg;
t->susend = susend;
t->beg = beg;
t->end = end;
t->env = p;
t->p = 0;
t->a = 0;
t->b = ((t->flg & EF_SUSTAIN) && !(keyoff & KEY_OFF)) ? 0 : 1;
}
static SWORD ProcessEnvelope(ENVPR *t, SWORD v, UBYTE keyoff)
/* This procedure processes all envelope types, include volume, pitch, and */
/* panning. Envelopes are defined by a set of points, each with a magnitude */
/* [relating either to volume, panniong position, or pitch modifier] and a */
/* tick position. */
/* */
/* Envelopes work in the following manner: */
/* */
/* (a) Each tick the envelope is moved a point further in its progression. */
/* 1. For an accurate progression, magnitudes between two envelope points */
/* are interpolated. */
/* */
/* (b) When progression reaches a defined point on the envelope, values */
/* are shifted to interpolate between this point and the next, */
/* and checks for loops or envelope end are done. */
/* */
/* Misc: */
/* Sustain loops are loops that are only active as long as the keyoff */
/* flag is clear. When a volume envelope terminates, so does the current */
/* fadeout. */
{
if(t->flg & EF_ON)
{ UBYTE a, b; /* actual points in the envelope */
UWORD p; /* the 'tick counter' - real point being played */
a = t->a;
b = t->b;
p = t->p;
/* compute the current envelope value between points a and b */
if(a == b)
v = t->env[a].val;
else
v = InterpolateEnv(p, &t->env[a], &t->env[b]);
p++;
/* pointer reached point b? */
if(p >= t->env[b].pos)
{ a = b++; /* shift points a and b */
/* Check for loops, sustain loops, or end of envelope. */
if((t->flg & EF_SUSTAIN) && !(keyoff & KEY_OFF) && (b > t->susend))
{ a = t->susbeg;
if(t->susbeg == t->susend) b = a; else b = a + 1;
p = t->env[a].pos;
} else if((t->flg & EF_LOOP) && (b > t->end))
{ a = t->beg;
if(t->beg == t->end) b = a; else b = a + 1;
p = t->env[a].pos;
} else
{ if(b >= t->pts)
{ if((t->flg & EF_VOLENV) && (mp_channel != -1))
{ pf->voice[mp_channel].keyoff |= KEY_FADE;
if(v==0)
pf->voice[mp_channel].fadevol = 0;
}
b--; p--;
}
}
}
t->a = a;
t->b = b;
t->p = p;
}
return v;
}
ULONG getfrequency(UBYTE flags, ULONG period)
/* XM linear period to frequency conversion */
{
ULONG result;
if(flags & UF_LINEAR)
result = lintab[period % 768] >> (period / 768);
else
result = (8363L*1712L) / period;
return result;
}
static void DoEEffects(UBYTE dat)
{
UBYTE nib;
nib = dat & 0xf;
switch(dat>>4)
{ case 0x0: /* filter toggle, not supported */
break;
case 0x1: /* fineslide up */
if(!pf->vbtick) a->tmpperiod-=(nib<<2);
break;
case 0x2: /* fineslide dn */
if(!pf->vbtick) a->tmpperiod+=(nib<<2);
break;
case 0x3: /* glissando ctrl */
a->glissando = nib;
break;
case 0x4: /* set vibrato waveform */
a->wavecontrol &= 0xf0;
a->wavecontrol |= nib;
break;
case 0x5: /* set finetune */
/* a->speed=finetune[nib]; */
/* a->tmpperiod=GetPeriod(a->note,pf->samples[a->sample].transpose,a->speed); */
break;
case 0x6: /* set patternloop */
if(pf->vbtick) break;
/* hmm.. this one is a real kludge. But now it */
/* works */
if(nib) /* set reppos or repcnt ? */
{ /* set repcnt, so check if repcnt already is set, */
/* which means we are already looping */
if(pf->pat_repcnt > 0)
pf->pat_repcnt--; /* already looping, decrease counter */
else
pf->pat_repcnt = nib; /* not yet looping, so set repcnt */
if(pf->pat_repcnt) /* jump to reppos if repcnt>0 */
pf->patpos = pf->pat_reppos;
} else
{ pf->pat_reppos = pf->patpos-1; /* set reppos */
}
break;
case 0x7: /* set tremolo waveform */
a->wavecontrol &= 0x0f;
a->wavecontrol |= nib << 4;
break;
case 0x8: /* set panning */
if(pf->panflag)
{ if(nib<=8) nib*=16; else nib*=17;
a->panning = nib;
pf->panning[mp_channel] = nib;
}
break;
case 0x9: /* retrig note */
/* only retrigger if */
/* data nibble > 0 */
if(nib > 0)
{ if(a->retrig==0)
{ /* when retrig counter reaches 0, */
/* reset counter and restart the sample */
a->kick = 1;
a->retrig = nib;
}
a->retrig--; /* countdown */
}
break;
case 0xa: /* fine volume slide up */
if(pf->vbtick) break;
a->tmpvolume += nib;
if(a->tmpvolume > 64) a->tmpvolume = 64;
break;
case 0xb: /* fine volume slide dn */
if(pf->vbtick) break;
a->tmpvolume -= nib;
if(a->tmpvolume < 0) a->tmpvolume = 0;
break;
case 0xc: /* cut note */
/* When pf->vbtick reaches the cut-note value, */
/* turn the volume to zero ( Just like */
/* on the amiga) */
if(pf->vbtick>=nib)
a->tmpvolume = 0; /* just turn the volume down */
break;
case 0xd: /* note delay */
/* delay the start of the */
/* sample until pf->vbtick==nib */
if(pf->vbtick==nib)
{ /*a->kick = 1; */
a->notedelay = 0;
} else if(pf->vbtick==0)
{ /*a->kick = 0; */
a->notedelay = 1;
}
break;
case 0xe: /* pattern delay */
if(pf->vbtick) break;
if(!pf->patdly2) pf->patdly = nib+1; /* only once (when pf->vbtick=0) */
break;
case 0xf: /* invert loop, not supported */
break;
}
}
static void DoVibrato(void)
{
UBYTE q;
UWORD temp;
q = (a->vibpos>>2)&0x1f;
switch(a->wavecontrol&3)
{ case 0: /* sine */
temp = VibratoTable[q];
break;
case 1: /* ramp down */
q<<=3;
if(a->vibpos<0) q = 255-q;
temp = q;
break;
case 2: /* square wave */
temp = 255;
break;
case 3: /* Evil random wave */
temp = rand() & 255;
break;
}
temp*=a->vibdepth;
temp>>=7;
temp<<=2;
if(a->vibpos>=0)
a->period = a->tmpperiod+temp;
else
a->period = a->tmpperiod-temp;
if(pf->vbtick) a->vibpos+=a->vibspd; /* do not update when pf->vbtick==0 */
}
static void DoTremolo(void)
{
UBYTE q;
UWORD temp;
q = (a->trmpos>>2) & 0x1f;
switch((a->wavecontrol>>4) & 3)
{ case 0: /* sine */
temp = VibratoTable[q];
break;
case 1: /* ramp down */
q<<=3;
if(a->trmpos<0) q = 255-q;
temp = q;
break;
case 2: /* square wave */
temp = 255;
break;
case 3: /* Evil random wave */
temp = rand() & 255;
break;
}
temp *= a->trmdepth;
temp >>= 6;
if(a->trmpos >= 0)
{ a->volume = a->tmpvolume + temp;
if(a->volume > 64) a->volume = 64;
} else
{ a->volume = a->tmpvolume - temp;
if(a->volume < 0) a->volume = 0;
}
if(pf->vbtick) a->trmpos+=a->trmspd; /* do not update when pf->vbtick==0 */
}
static void DoVolSlide(UBYTE dat)
{
if(!pf->vbtick) return; /* do not update when pf->vbtick==0 */
a->tmpvolume += dat >> 4; /* volume slide */
a->tmpvolume -= dat & 0xf;
if(a->tmpvolume < 0) a->tmpvolume = 0;
if(a->tmpvolume > 64) a->tmpvolume = 64;
}
static void DoToneSlide(void)
{
int dist;
if(a->period==0) return;
if(!pf->vbtick)
{ a->tmpperiod = a->period;
return;
}
/* We have to slide a->period towards a->wantedperiod, so */
/* compute the difference between those two values */
dist = a->period-a->wantedperiod;
if( dist==0 || a->portspeed>abs(dist) ) /* if they are equal or if portamentospeed is too big */
a->period = a->wantedperiod; /* make tmpperiod equal tperiod */
else if(dist>0) /* dist>0 ? */
a->period-=a->portspeed; /* then slide up */
else
a->period+=a->portspeed; /* dist<0 -> slide down */
a->tmpperiod = a->period;
}
static void DoPTEffect0(UBYTE dat)
{
UBYTE note;
note = a->note;
if(dat!=0)
{ switch(pf->vbtick%3)
{ case 1:
note+=(dat>>4); break;
case 2:
note+=(dat&0xf); break;
}
a->period = GetPeriod(note,a->speed);
a->ownper = 1;
}
}
/* ----------------------------------------- */
/* --> ScreamTreacker 3 Specific Effects <-- */
/* ----------------------------------------- */
static void DoS3MVolSlide(UBYTE inf)
{
UBYTE lo, hi;
if(inf) a->s3mvolslide = inf;
inf = a->s3mvolslide;
lo = inf & 0xf;
hi = inf >> 4;
if(hi==0) a->tmpvolume -= lo;
else if(lo==0) a->tmpvolume += hi;
else if(hi==0xf)
{ if(!pf->vbtick) a->tmpvolume -= lo;
} else if(lo==0xf)
{ if(!pf->vbtick) a->tmpvolume += hi;
}
if(a->tmpvolume < 0) a->tmpvolume = 0;
if(a->tmpvolume > 64) a->tmpvolume = 64;
}
static void DoS3MSlideDn(UBYTE inf)
{
UBYTE hi,lo;
if(inf!=0) a->slidespeed = inf;
else inf = a->slidespeed;
hi = inf>>4;
lo = inf&0xf;
if(hi==0xf)
{ if(!pf->vbtick) a->tmpperiod+=(UWORD)lo<<2;
} else if(hi==0xe)
{ if(!pf->vbtick) a->tmpperiod+=lo;
} else
{ if(pf->vbtick) a->tmpperiod+=(UWORD)inf<<2;
}
}
static void DoS3MSlideUp(UBYTE inf)
{
UBYTE hi,lo;
if(inf!=0) a->slidespeed = inf;
else inf = a->slidespeed;
hi = inf>>4;
lo = inf&0xf;
if(hi==0xf)
{ if(!pf->vbtick) a->tmpperiod-=(UWORD)lo<<2;
} else if(hi==0xe)
{ if(!pf->vbtick) a->tmpperiod-=lo;
} else
{ if(pf->vbtick) a->tmpperiod-=(UWORD)inf<<2;
}
}
static void DoS3MTremor(UBYTE inf)
{
UBYTE on,off;
if(inf!=0) a->s3mtronof = inf;
else inf = a->s3mtronof;
if(!pf->vbtick) return;
on = (inf>>4)+1;
off = (inf&0xf)+1;
a->s3mtremor %= (on+off);
a->volume = (a->s3mtremor < on ) ? a->tmpvolume : 0;
a->s3mtremor++;
}
static void DoS3MRetrig(UBYTE inf)
{
UBYTE hi,lo;
hi = inf >> 4;
lo = inf & 0xf;
if(inf)
{ a->s3mrtgslide = hi;
a->s3mrtgspeed = lo;
}
/* only retrigger if */
/* lo nibble > 0 */
if(a->s3mrtgspeed > 0)
{ if(a->retrig == 0)
{ /* when retrig counter reaches 0, */
/* reset counter and restart the sample */
if(!a->kick) a->kick = 2;
a->retrig = a->s3mrtgspeed;
if(pf->vbtick) /* don't slide on first retrig */
{ switch(a->s3mrtgslide)
{ case 1:
case 2:
case 3:
case 4:
case 5:
a->tmpvolume-=(1<<(a->s3mrtgslide-1));
break;
case 6:
a->tmpvolume = (2*a->tmpvolume)/3;
break;
case 7:
a->tmpvolume = a->tmpvolume>>1;
break;
case 9:
case 0xa:
case 0xb:
case 0xc:
case 0xd:
a->tmpvolume+=(1<<(a->s3mrtgslide-9));
break;
case 0xe:
a->tmpvolume=(3*a->tmpvolume)/2;
break;
case 0xf:
a->tmpvolume=a->tmpvolume<<1;
break;
}
if(a->tmpvolume<0) a->tmpvolume = 0;
if(a->tmpvolume>64) a->tmpvolume = 64;
}
}
a->retrig--; /* countdown */
}
}
static void DoS3MSpeed(UBYTE speed)
{
if(pf->vbtick || pf->patdly2) return;
if(speed)
{ pf->sngspd = speed;
pf->vbtick = 0;
}
}
static void DoS3MTempo(UBYTE tempo)
{
if(pf->vbtick || pf->patdly2) return;
pf->bpm = tempo;
}
static void DoS3MFineVibrato(void)
{
UBYTE q;
UWORD temp;
q = (a->vibpos>>2)&0x1f;
switch(a->wavecontrol&3)
{ case 0: /* sine */
temp=VibratoTable[q];
break;
case 1: /* ramp down */
q<<=3;
if(a->vibpos<0) q=255-q;
temp=q;
break;
case 2: /* square wave */
temp=255;
break;
case 3: /* evil random */
temp = rand() & 255; /* (range 0 to 255) */
}
temp*=a->vibdepth;
temp>>=8;
if(a->vibpos>=0)
a->period = a->tmpperiod+temp;
else
a->period = a->tmpperiod-temp;
a->vibpos += a->vibspd;
}
static void DoS3MTremolo(void)
{
UBYTE q;
UWORD temp;
q = (a->trmpos>>2)&0x1f;
switch((a->wavecontrol>>4)&3)
{ case 0: /* sine */
temp = VibratoTable[q];
break;
case 1: /* ramp down */
q<<=3;
if(a->trmpos<0) q = 255-q;
temp = q;
break;
case 2: /* square wave */
temp=255;
break;
case 3: /* evil random */
temp = rand() & 255; /* (range 0 to 255) */
}
temp*=a->trmdepth;
temp>>=7;
if(a->trmpos>=0)
{ a->volume = a->tmpvolume + temp;
if(a->volume>64) a->volume = 64;
} else
{ a->volume = a->tmpvolume - temp;
if(a->volume<0) a->volume = 0;
}
if(pf->vbtick) a->trmpos += a->trmspd; /* do not update when pf->vbtick==0 */
}
/* -------------------------------------- */
/* --> FastTracker 2 Specific Effects <-- */
/* -------------------------------------- */
static void DoXMVolSlide(UBYTE inf)
{
UBYTE lo,hi;
if(inf)
a->s3mvolslide = inf;
inf = a->s3mvolslide;
if(!pf->vbtick) return;
lo = inf&0xf;
hi = inf>>4;
if(hi==0)
a->tmpvolume-=lo;
else
a->tmpvolume+=hi;
if(a->tmpvolume<0) a->tmpvolume=0;
else if(a->tmpvolume>64) a->tmpvolume=64;
}
static void DoXMGlobalSlide(UBYTE inf)
{
if(pf->vbtick)
{ if(inf) pf->globalslide=inf; else inf=pf->globalslide;
if(inf & 0xf0) inf &= 0xf0;
pf->volume = pf->volume + ((inf >> 4) - (inf & 0xf))*2;
if(pf->volume<0) pf->volume = 0;
else if(pf->volume>128) pf->volume = 128;
}
}
static void DoXMPanSlide(UBYTE inf)
{
UBYTE lo,hi;
SWORD pan;
if(inf!=0) a->pansspd = inf;
else inf = a->pansspd;
if(!pf->vbtick) return;
lo = inf & 0xf;
hi = inf >> 4;
/* slide right has absolute priority: */
if(hi) lo = 0;
pan = (a->panning == PAN_SURROUND) ? 128 : a->panning;
pan -= lo;