-
Notifications
You must be signed in to change notification settings - Fork 12
/
IT_MUSIC.ASM
7481 lines (5424 loc) · 225 KB
/
IT_MUSIC.ASM
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
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Music Module ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
.386
.387
include switch.inc
include network.inc
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Externals ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Extrn D_GotoStartingDirectory:Far
Extrn D_SetDriveDirectoryFar:Far
Extrn D_GetFileName:Far
Extrn D_Showtime:Far
Extrn E_EMSAvailable:Far
Extrn E_SaveEMSPageFrame:Far
Extrn E_RestoreEMSPageFrame:Far
Extrn E_UnInitEMS:Far
Extrn E_AllocateEMS:Far
Extrn E_MapEMSMemory:Far
Extrn E_GetEMSPageFrame:Far
Extrn E_ReleaseEMS:Far
Extrn E_AllocateBlockEMS:Far, E_ReleaseBlockEMS:Far
Extrn E_MapAlignedBlockEMS:Far
Extrn E_GetInternalEMSHandle:Far
Extrn I_TagInstrument:Far
Extrn I_TagSample:Far
Extrn O1_OutOfSoundCardMemoryList:Far
Extrn M_FunctionHandler:Far
Extrn M_Object1List:Far
Extrn Network_UpdatePatternIfIdle:Far
Extrn PE_GetCurrentPattern:Far
Extrn PE_FillHeader:Far
Extrn S_GetDestination:Far
Extrn S_UnInitScreen:Far
Extrn S_DirectDrawString:Far
Extrn S_DrawString:Far
Extrn S_SetDirectMode:Far
Extrn S_SaveScreen:Far
Extrn S_RestoreScreen:Far
Extrn S_DrawBox:Far
Extrn S_DrawString:Far
Extrn S_UpdateScreen:Far
Extrn S_DrawSmallBox:Far
Extrn F_DrawHeader:Far
Extrn K_GetKey:Far
Extrn StartClock:Far
Extrn SetInfoLine:Far, SetInfoLine2:Far
Extrn M_Object1List:Far
Extrn MaxRow
Extrn IdleUpdateInfoLine:Far
Extrn GlobalKeyList:Far
Extrn GetEnvironment:Far
Extrn MIDIBufferEmpty:Far, MIDISend:Far, MIDI_ClearTable:Far
Extrn O1_ShowTime
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Globals ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Global Music_GetDisplayVariables:Far
Global Music_AutoDetectSoundCard:Far
Global Music_Poll:Far
Global Music_ReinitSoundCard:Far
Global Music_InitMusic:Far
Global Music_UnInitMusic:Far
Global Music_GetSongSegment:Far
Global Music_GetInstrumentMode:Far
Global Music_ReleasePattern:Far
Global Music_GetPattern:Far
Global Music_GetPatternLocation:Far
Global Music_GetPatternLocationNoCount:Far
Global Music_AllocatePattern:Far
Global Music_AllocateSample:Far
Global Music_IncreaseSpeed:Far
Global Music_DecreaseSpeed:Far
Global Music_GetOutputWaveform:Far
Global Music_PlayPartSong:Far
Global Music_GetPatternLength:Far
Global Music_ShowAutodetectSoundcard:Far
Global Music_GetWaveForm:Far
Global Music_ToggleOrderUpdate:Far
Global Music_NextOrder:Far
Global Music_LastOrder:Far
Global Music_SetSoundCard:Far
Global Music_SetDMA:Far
Global Music_SetMixSpeed:Far
Global Music_SetIRQ:Far
Global Music_SetAddress:Far
Global Music_SetLimit:Far
Global Music_ReverseChannels:Far
Global Music_GetNumChannels:Far
Global Music_InitStereo:Far
Global Music_ReleaseSample:Far
Global Music_ReleaseAllSamples:Far
Global Music_ReleaseAllPatterns:Far
Global Music_ClearSampleName:Far
Global Music_ClearAllSampleNames:Far
Global Music_GetNumberOfSamples:Far
Global Music_GetNumberOfInstruments:Far
Global Music_ClearInstrument:Far
Global Music_ClearAllInstruments:Far
Global Music_GetHostChannelInformationTable:Far
Global Music_GetSlaveChannelInformationTable:Far
Global Music_SetGlobalVolume:Far
Global Music_InitMuteTable:Far
Global Music_UnmuteAll:Far
Global Music_GetPlayMode:Far
Global Music_GetPlayMode2:Far
Global Music_PlayPattern:Far
Global Music_PlaySample:Far
Global Music_PlayNote:Far
Global Music_Stop:Far
Global Music_PlaySong:Far
Global Music_ToggleChannel:Far
Global Music_SoloChannel:Far
Global Music_InitMixTable:Far
Global Music_GetSampleLocation:Far
Global Music_UpdatePatternOffset:Far
Global Music_AssignSampleToInstrument:Far
Global Music_KBPlaySong:Far
Global Music_IncreaseVolume:Far
Global Music_DecreaseVolume:Far
Global Music_SetSoundCardDriver:Far
Global Music_RegetLoopInformation:Far
Global Music_SoundCardLoadSample:Far
Global Music_SoundCardLoadAllSamples:Far
Global Music_GetFreeSoundCardMemory:Far
Global Music_GetPitchTable:Far
Global Music_GetMIDIDataArea:Far
Global Music_ToggleReverse:Far
Global Music_PatternStorage:Far
Global Music_GetDriverScreen:Far
Global Music_GetLastChannel:Far
Global SongDataArea:Word
Global MixDataArea:Word
Global Music_GetDriverVariable:Far, Music_SetDriverVariable:Far
Public Music_GetDelay
Public Music_SetNextOrder
Public Music_TimeSong
Public Music_ShowTime
Public Music_SaveMIDIConfig
Public MIDIDataArea
Public Music_ToggleSoloInstrument, Music_ToggleSoloSample
Extrn PE_GetLastInstrument:Far
Public CurrentPattern
;ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
;
; Functions for playing control
; Music_PlaySong........ parameters, AX = order
; Music_Stop............ parameters, None
; Music_PlayPattern..... parameters, AX = pattern, BX = number of rows, CX = row
; Music_ToggleChannel... parameters, AX = channel
; Music_SoloChannel..... parameters, AX = channel
;
Segment SongData PARA Public 'Data'
EndS
Segment Music DWORD Public 'Code' USE16
Assume CS:Music
CREATENEWLOGFILE EQU 0
include debug.inc
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Variables ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
HOSTCHANNELSIZE EQU 80
SLAVECHANNELSIZE EQU 128
MAXSLAVECHANNELS EQU 256
NONOTE EQU 0FDh
MIDICOMMAND_START EQU 0
MIDICOMMAND_STOP EQU 20h
MIDICOMMAND_TICK EQU 40h
MIDICOMMAND_PLAYNOTE EQU 60h
MIDICOMMAND_STOPNOTE EQU 80h
MIDICOMMAND_CHANGEVOLUME EQU 0A0h
MIDICOMMAND_CHANGEPAN EQU 0C0h
MIDICOMMAND_BANKSELECT EQU 0E0h
MIDICOMMAND_PROGRAMSELECT EQU 100h
MIDICOMMAND_CHANGEPITCH EQU 0FFFFh
FineSineData Label Byte
DB 0, 2, 3, 5, 6, 8, 9, 11, 12, 14, 16, 17, 19, 20, 22, 23
DB 24, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 41, 42, 43, 44
DB 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 56, 57, 58, 59
DB 59, 60, 60, 61, 61, 62, 62, 62, 63, 63, 63, 64, 64, 64, 64, 64
DB 64, 64, 64, 64, 64, 64, 63, 63, 63, 62, 62, 62, 61, 61, 60, 60
DB 59, 59, 58, 57, 56, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46
DB 45, 44, 43, 42, 41, 39, 38, 37, 36, 34, 33, 32, 30, 29, 27, 26
DB 24, 23, 22, 20, 19, 17, 16, 14, 12, 11, 9, 8, 6, 5, 3, 2
DB 0, -2, -3, -5, -6, -8, -9,-11,-12,-14,-16,-17,-19,-20,-22,-23
DB -24,-26,-27,-29,-30,-32,-33,-34,-36,-37,-38,-39,-41,-42,-43,-44
DB -45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-56,-57,-58,-59
DB -59,-60,-60,-61,-61,-62,-62,-62,-63,-63,-63,-64,-64,-64,-64,-64
DB -64,-64,-64,-64,-64,-64,-63,-63,-63,-62,-62,-62,-61,-61,-60,-60
DB -59,-59,-58,-57,-56,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46
DB -45,-44,-43,-42,-41,-39,-38,-37,-36,-34,-33,-32,-30,-29,-27,-26
DB -24,-23,-22,-20,-19,-17,-16,-14,-12,-11, -9, -8, -6, -5, -3, -2
FineRampDownData Label Byte
DB 64, 63, 63, 62, 62, 61, 61, 60, 60, 59, 59, 58, 58, 57, 57, 56
DB 56, 55, 55, 54, 54, 53, 53, 52, 52, 51, 51, 50, 50, 49, 49, 48
DB 48, 47, 47, 46, 46, 45, 45, 44, 44, 43, 43, 42, 42, 41, 41, 40
DB 40, 39, 39, 38, 38, 37, 37, 36, 36, 35, 35, 34, 34, 33, 33, 32
DB 32, 31, 31, 30, 30, 29, 29, 28, 28, 27, 27, 26, 26, 25, 25, 24
DB 24, 23, 23, 22, 22, 21, 21, 20, 20, 19, 19, 18, 18, 17, 17, 16
DB 16, 15, 15, 14, 14, 13, 13, 12, 12, 11, 11, 10, 10, 9, 9, 8
DB 8, 7, 7, 6, 6, 5, 5, 4, 4, 3, 3, 2, 2, 1, 1, 0
DB 0, -1, -1, -2, -2, -3, -3, -4, -4, -5, -5, -6, -6, -7, -7, -8
DB -8, -9, -9,-10,-10,-11,-11,-12,-12,-13,-13,-14,-14,-15,-15,-16
DB -16,-17,-17,-18,-18,-19,-19,-20,-20,-21,-21,-22,-22,-23,-23,-24
DB -24,-25,-25,-26,-26,-27,-27,-28,-28,-29,-29,-30,-30,-31,-31,-32
DB -32,-33,-33,-34,-34,-35,-35,-36,-36,-37,-37,-38,-38,-39,-39,-40
DB -40,-41,-41,-42,-42,-43,-43,-44,-44,-45,-45,-46,-46,-47,-47,-48
DB -48,-49,-49,-50,-50,-51,-51,-52,-52,-53,-53,-54,-54,-55,-55,-56
DB -56,-57,-57,-58,-58,-59,-59,-60,-60,-61,-61,-62,-62,-63,-63,-64
FineSquareWave Label Byte
DB 128 Dup (64), 128 Dup (0)
EmptyPattern Label
DW 64, 64, 0, 0
DB 64 Dup (0)
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Zero globals.
LastSample DW 0
PlayMode DW 0 ; Playmode 0 = Freeplay
; Playmode 1 = Pattern
; Playmode 2 = Song
CurrentOrder DW 0 ; } Must follow
CurrentPattern DW 0 ; }
CurrentRow DW 0 ; }
ProcessOrder DW 0
ProcessRow DW 0
BytesToMix DW 0 ; = Bytes per frame
PatternOffset DW 0
PatternSegment DW 0
BreakRow DW 0
RowDelay DB 0 ; } Must join on.
RowDelayOn DB 0 ; }
PatternArray DB 0
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
ALIGN 4
PitchDepthConstant DD 98304.0
HostChannelInformationTable DB 64*HOSTCHANNELSIZE Dup(?)
SlaveChannelInformationTable DB MAXSLAVECHANNELS*SLAVECHANNELSIZE Dup(?)
MuteChannelTable DB 64 Dup (?)
ChannelCountTable DB 400 Dup (?)
;AllocateCount1 DB 0
;AllocateCount2 DB 0
;AllocateCount3 DB 0
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
ALIGN 2
PatternDataSegment DW ?
CurrentEditPattern DW ?
PatternEditMaxRow DW ?
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
NumberOfRows DW 64 ; Non zero globals
CurrentTick DW 6
CurrentSpeed DW 6
ProcessTick DW 0
Tempo DB 125
GlobalVolume DB 128
NumChannels DW 256
SoloSample DB 0FFh ; * ORDER IS IMPORTANT
SoloInstrument DB 0FFh ; * ORDER IS IMPORTANT
AllocateNumChannels DW 0
AllocateSlaveOffset DW 0
LastSlaveChannel DW 0
DecodeExpectedPattern DW 0FFFEh
DecodeExpectedRow DW 0FFFEh
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
CmdLineNumChannels DW 0FFFFh
DriverRequiredVariables Label ; * ORDER IS IMPORTANT
BasePort DW 0FFFFh ; * ORDER IS IMPORTANT
IRQ DW 0FFFFh ; * ORDER IS IMPORTANT
DMA DW 0FFFFh ; * ORDER IS IMPORTANT
CmdLineMixSpeed DW 0 ; * ORDER IS IMPORTANT
SongDataArea DW SongData ; * ORDER IS IMPORTANT
MIDIDataArea DW SongData + 4076
CmdLineDMASize DW 1024 ; default
ReverseChannels DB 0
InstrumentHeader Label Byte
DB "IMPI"
DB 19 Dup (0), 60, 128, 32+128, 34 Dup (0)
DB 0, 0FFh, 0FFh, 0FFh
DB 0, 0, 1, 0, 2, 0, 3, 0, 4, 0
DB 5, 0, 6, 0, 7, 0, 8, 0, 9, 0
DB 10, 0, 11, 0, 12, 0, 13, 0, 14, 0
DB 15, 0, 16, 0, 17, 0, 18, 0, 19, 0
DB 20, 0, 21, 0, 22, 0, 23, 0, 24, 0
DB 25, 0, 26, 0, 27, 0, 28, 0, 29, 0
DB 30, 0, 31, 0, 32, 0, 33, 0, 34, 0
DB 35, 0, 36, 0, 37, 0, 38, 0, 39, 0
DB 40, 0, 41, 0, 42, 0, 43, 0, 44, 0
DB 45, 0, 46, 0, 47, 0, 48, 0, 49, 0
DB 50, 0, 51, 0, 52, 0, 53, 0, 54, 0
DB 55, 0, 56, 0, 57, 0, 58, 0, 59, 0
DB 60, 0, 61, 0, 62, 0, 63, 0, 64, 0
DB 65, 0, 66, 0, 67, 0, 68, 0, 69, 0
DB 70, 0, 71, 0, 72, 0, 73, 0, 74, 0
DB 75, 0, 76, 0, 77, 0, 78, 0, 79, 0
DB 80, 0, 81, 0, 82, 0, 83, 0, 84, 0
DB 85, 0, 86, 0, 87, 0, 88, 0, 89, 0
DB 90, 0, 91, 0, 92, 0, 93, 0, 94, 0
DB 95, 0, 96, 0, 97, 0, 98, 0, 99, 0
DB 100, 0, 101, 0, 102, 0, 103, 0, 104, 0
DB 105, 0, 106, 0, 107, 0, 108, 0, 109, 0
DB 110, 0, 111, 0, 112, 0, 113, 0, 114, 0
DB 115, 0, 116, 0, 117, 0, 118, 0, 119, 0
DB 0, 2, 4 Dup (0), 64, 0, 0, 64, 100, 0, 70 Dup (0)
DB 0, 2, 4 Dup (0), 0, 0, 0, 0, 100, 0, 70 Dup (0)
DB 0, 2, 4 Dup (0), 0, 0, 0, 0, 100, 0, 70 Dup (0)
DB 7 Dup (0)
SampleHeader Label Byte
DB "IMPS", 13 Dup (0), 64, 0, 64, 40 Dup (0)
DW 8363
DB 18 Dup (0)
MidiPitchSendString DB 65h, 0, 64h, 0, 06
PatternLooping DB 0
PatternStorage DB 1 ; 0 = conventional only
; 1 = selective
; 2 = EMS only.
PrepareSamplesMsg DB "Preparing Samples", 0
ReverseMsg DB "Left/right outputs reversed", 0
NoSoundCardMsg DB " No sound card detected", 0
MIDIConfigFileName DB "ITMIDI.CFG", 0
OrderUpdateEnabledMsg DB "Order list unlocked", 0
OrderUpdateDisabledMsg DB "Order list locked", 0
OrderLockFlag DB 0
UnsoloMsg DB "Solo disabled", 0
SoloSampleMsg DB "Solo sample ", 0FDh, "D", 0
SoloInstrumentMsg DB "Solo instrument ", 0FDh, "D", 0
IFDEF DEBUG
LoadDriverMessage DB "Loading driver:", 0
UnableToReadFileMessage DB "Unable to read file", 0
DetectingMessage DB "Testing driver", 0
ScreenOffset DW 0
ENDIF
PCSpeakerDriver DB "ITPCSPKR.DRV", 0
SBDriver DB "ITSB.DRV", 0
SB2Driver DB "ITSB2.DRV", 0
SBProDriver DB "ITSBPRO.DRV", 0
SB16Driver DB "ITSB16.DRV", 0
AWE32Driver DB "ITAWE32.DRV", 0
GUSDriver DB "ITGUS.DRV", 0
InterwaveDriver DB "ITIW.DRV", 0
PASDriver DB "ITPAS.DRV", 0
PAS16Driver DB "ITPAS16.DRV", 0
WSSDriver DB "ITWSS.DRV", 0
ESSDriver DB "ITES1868.DRV", 0
MIDIDriver DB "ITMPU401.DRV", 0
EWSCodecDriver DB "ITEWSCOD.DRV", 0
VIVOCodecDriver DB "ITVIVO.DRV", 0
ST97PCICodecDriver DB "ITSTCODE.DRV", 0
WAVDriver DB "ITWAV.DRV", 0
MIDDriver DB "ITMID.DRV", 0
VSoundMMXDriver DB "ITVSOUND.MMX", 0
VSoundDriver DB "ITVSOUND.DRV", 0
DefaultDriver DB "ITSOUND.DRV", 0
DriverNameTable Label
DW 0FFFFh
DW Offset PAS16Driver, SB16Driver
DW Offset InterwaveDriver, Offset GUSDriver
DW Offset AWE32Driver, Offset SBProDriver
DW Offset SBDriver, Offset PCSpeakerDriver
DW Offset SB2Driver, Offset PASDriver
DW Offset WAVDriver, Offset WSSDriver
DW Offset ESSDriver, MIDIDriver
DW Offset EWSCodecDriver, VIVOCodecDriver
DW Offset ST97PCICodecDriver, Offset MIDDRIVER
DW Offset DefaultDriver, Offset VSoundMMXDriver
DW Offset VSoundDriver
DriverName DD 0
DriverDetectionOrder DW 19, 20, 21, 17, 16, 15, 13, 1, 10, 2, 12, 3, 4, 5, 6, 9, 7, 8, 0FFFFh
DriverSoundCard DW 0, 8, 7, 9, 6
DW 2, 5, 4, 3, 10
DW 1, 12, 13, 15, 16
DW 0, 0, 0, 0, 14
DW 11, 18
ALIGN 4
PitchTable Label DWord
DW 2048, 0, 2170, 0, 2299, 0, 2435, 0, 2580, 0, 2734, 0
DW 2896, 0, 3069, 0, 3251, 0, 3444, 0, 3649, 0, 3866, 0
DW 4096, 0, 4340, 0, 4598, 0, 4871, 0, 5161, 0, 5468, 0
DW 5793, 0, 6137, 0, 6502, 0, 6889, 0, 7298, 0, 7732, 0
DW 8192, 0, 8679, 0, 9195, 0, 9742, 0, 10321, 0, 10935, 0
DW 11585, 0, 12274, 0, 13004, 0, 13777, 0, 14596, 0, 15464, 0
DW 16384, 0, 17358, 0, 18390, 0, 19484, 0, 20643, 0, 21870, 0
DW 23170, 0, 24548, 0, 26008, 0, 27554, 0, 29193, 0, 30929, 0
DW 32768, 0, 34716, 0, 36781, 0, 38968, 0, 41285, 0, 43740, 0
DW 46341, 0, 49097, 0, 52016, 0, 55109, 0, 58386, 0, 61858, 0
DW 0, 1, 3897, 1, 8026, 1, 12400, 1, 17034, 1, 21944, 1
DW 27146, 1, 32657, 1, 38496, 1, 44682, 1, 51236, 1, 58179, 1
DW 0, 2, 7794, 2, 16051, 2, 24800, 2, 34068, 2, 43888, 2
DW 54292, 2, 65314, 2, 11456, 3, 23828, 3, 36936, 3, 50823, 3
DW 0, 4, 15588, 4, 32103, 4, 49600, 4, 2601, 5, 22240, 5
DW 43048, 5, 65092, 5, 22912, 6, 47656, 6, 8336, 7, 36110, 7
DW 0, 8, 31176, 8, 64205, 8, 33663, 9, 5201, 10, 44481, 10
DW 20559, 11, 64648, 11, 45823, 12, 29776, 13, 16671, 14, 6684, 15
DW 0, 16, 62352, 16, 62875, 17, 1790, 19, 10403, 20, 23425, 21
DW 41118, 22, 63761, 23, 26111, 25, 59552, 26, 33342, 28, 13368, 30
; Pitch extention for loading some XIs
DW 0, 32, 59167, 33, 60214, 35, 3580, 38, 20806, 40, 46850, 42
DW 16701, 45, 61986, 47, 52221, 50, 53567, 53, 1148, 57, 26736, 60
IF USEFPUCODE
FPSave DB 128 Dup (0)
Const_14317456 DD 14317456.0
Const1_On_768 DD 3AAAAAABh
SlideValue DW 0
NewControlWord DW 7Fh
ELSE
FineLinearSlideUpTable Label
DW 0, 1, 59, 1, 118, 1, 178, 1, 237, 1 ; 0->4
DW 296, 1, 356, 1, 415, 1, 475, 1, 535, 1 ; 5->9
DW 594, 1, 654, 1, 714, 1, 773, 1, 833, 1 ; 10->14
DW 893, 1 ; 15
LinearSlideUpTable Label ; Value = 2^(Val/192)
DW 0, 1, 237, 1, 475, 1, 714, 1, 953, 1 ; 0->4
DW 1194, 1, 1435, 1, 1677, 1, 1920, 1, 2164, 1 ; 5->9
DW 2409, 1, 2655, 1, 2902, 1, 3149, 1, 3397, 1 ; 10->14
DW 3647, 1, 3897, 1, 4148, 1, 4400, 1, 4653, 1 ; 15->19
DW 4907, 1, 5157, 1, 5417, 1, 5674, 1, 5932, 1 ; 20->24
DW 6190, 1, 6449, 1, 6710, 1, 6971, 1, 7233, 1 ; 25->29
DW 7496, 1, 7761, 1, 8026, 1, 8292, 1, 8559, 1 ; 30->34
DW 8027, 1, 9096, 1, 9366, 1, 9636, 1, 9908, 1 ; 35->39
DW 10181, 1, 10455, 1, 10730, 1, 11006, 1, 11283,1 ; 40->44
DW 11560, 1, 11839, 1, 12119, 1, 12400, 1, 12682,1 ; 45->49
DW 12965, 1, 13249, 1, 13533, 1, 13819, 1, 14106,1 ; 50->54
DW 14394, 1, 14684, 1, 14974, 1, 15265, 1, 15557,1 ; 55->59
DW 15850, 1, 16145, 1, 16440, 1, 16737, 1, 17034,1 ; 60->64
DW 17333, 1, 17633, 1, 17933, 1, 18235, 1, 18538,1 ; 65->69
DW 18842, 1, 19147, 1, 19454, 1, 19761, 1, 20070,1 ; 70->74
DW 20379, 1, 20690, 1, 21002, 1, 21315, 1, 21629,1 ; 75->79
DW 21944, 1, 22260, 1, 22578, 1, 22897, 1, 23216,1 ; 80->84
DW 23537, 1, 23860, 1, 24183, 1, 24507, 1, 24833,1 ; 85->89
DW 25160, 1, 25488, 1, 25817, 1, 26148, 1, 26479,1 ; 90->94
DW 26812, 1, 27146, 1, 27481, 1, 27818, 1, 28155,1 ; 95->99
DW 28494, 1, 28834, 1, 29175, 1, 29518, 1, 29862,1 ; 100->104
DW 30207, 1, 30553, 1, 30900, 1, 31248, 1, 31599,1 ; 105->109
DW 31951, 1, 32303, 1, 32657, 1, 33012, 1, 33369,1 ; 110->114
DW 33726, 1, 34085, 1, 34446, 1, 34807, 1, 35170,1 ; 115->119
DW 35534, 1, 35900, 1, 36267, 1, 36635, 1, 37004,1 ; 120->124
DW 37375, 1, 37747, 1, 38121, 1, 38496, 1, 38872,1 ; 125->129
DW 39250, 1, 39629, 1, 40009, 1, 40391, 1, 40774,1 ; 130->134
DW 41158, 1, 41544, 1, 41932, 1, 42320, 1, 42710,1 ; 135->139
DW 43102, 1, 43495, 1, 43889, 1, 44285, 1, 44682,1 ; 140->144
DW 45081, 1, 45481, 1, 45882, 1, 46285, 1, 46690,1 ; 145->149
DW 47095, 1, 47503, 1, 47917, 1, 48322, 1, 48734,1 ; 150->154
DW 49147, 1, 49562, 1, 49978, 1, 50396, 1, 50815,1 ; 155->159
DW 51236, 1, 51658, 1, 52082, 1, 52507, 1, 52934,1 ; 160->164
DW 53363, 1, 53793, 1, 54224, 1, 54658, 1, 55092,1 ; 165->169
DW 55529, 1, 55966, 1, 56406, 1, 56847, 1, 57289,1 ; 170->174
DW 57734, 1, 58179, 1, 58627, 1, 59076, 1, 59527,1 ; 175->179
DW 59979, 1, 60433, 1, 60889, 1, 61346, 1, 61805,1 ; 180->184
DW 62265, 1, 62727, 1, 63191, 1, 63657, 1, 64124,1 ; 185->189
DW 64593, 1, 65064, 1, 0, 2, 474, 2, 950, 2 ; 190->194
DW 1427, 2, 1906, 2, 2387, 2, 2870, 2, 3355, 2 ; 195->199
DW 3841, 2, 4327, 2, 4818, 2, 5310, 2, 5803, 2 ; 200->204
DW 6298, 2, 6795, 2, 7294, 2, 7794, 2, 8296, 2 ; 205->209
DW 8800, 2, 9306, 2, 9814, 2, 10323, 2, 10835,2 ; 210->214
DW 11348, 2, 11863, 2, 12380, 2, 12899, 2, 13419,2 ; 215->219
DW 13942, 2, 14467, 2, 14993, 2, 15521, 2, 16051,2 ; 220->224
DW 16583, 2, 17117, 2, 17653, 2, 18191, 2, 18731,2 ; 225->229
DW 19273, 2, 19817, 2, 20362, 2, 20910, 2, 21460,2 ; 230->234
DW 22011, 2, 22565, 2, 23121, 2, 23678, 2, 24238,2 ; 235->239
DW 24800, 2, 25363, 2, 25929, 2, 25497, 2, 27067,2 ; 240->244
DW 27639, 2, 28213, 2, 28789, 2, 29367, 2, 29947,2 ; 245->249
DW 30530, 2, 31114, 2, 31701, 2, 32289, 2, 32880, 2 ; 250->254
DW 33473, 2, 34068, 2 ; 255->256
FineLinearSlideDownTable Label
DW 65535, 65477, 65418, 65359, 65300, 65241, 65182, 65359 ; 0->7
DW 65065, 65006, 64947, 64888, 64830, 64772, 64713, 64645 ; 8->15
LinearSlideDownTable Label
DW 65535, 65300, 65065, 64830, 64596, 64364, 64132, 63901 ; 0->7
DW 63670, 63441, 63212, 62984, 62757, 62531, 62306, 62081 ; 8->15
DW 61858, 61635, 61413, 61191, 60971, 60751, 60532, 60314 ; 16->23
DW 60097, 59880, 59664, 59449, 59235, 59022, 58809, 58597 ; 24->31
DW 58386, 58176, 57966, 57757, 57549, 57341, 57135, 56929 ; 32->39
DW 56724, 56519, 56316, 56113, 55911, 55709, 55508, 55308 ; 40->47
DW 55109, 54910, 54713, 54515, 54319, 54123, 53928, 53734 ; 48->55
DW 53540, 53347, 53155, 52963, 52773, 52582, 52393, 52204 ; 56->63
DW 52016, 51829, 51642, 51456, 51270, 51085, 50901, 50718 ; 64->71
DW 50535, 50353, 50172, 49991, 49811, 49631, 49452, 49274 ; 72->79
DW 49097, 48920, 48743, 48568, 48393, 48128, 48044, 47871 ; 80->87
DW 47699, 47527, 47356, 47185, 47015, 46846, 46677, 46509 ; 88->95
DW 46341, 46174, 46008, 45842, 45677, 45512, 45348, 45185 ; 96->103
DW 45022, 44859, 44698, 44537, 44376, 44216, 44057, 43898 ;104->111
DW 43740, 43582, 43425, 43269, 43113, 42958, 42803, 42649 ;112->119
DW 42495, 42342, 42189, 42037, 41886, 41735, 41584, 41434 ;120->127
DW 41285, 41136, 40988, 40840, 40639, 40566, 40400, 40253 ;128->135
DW 40110, 39965, 39821, 39678, 39535, 39392, 39250, 39109 ;136->143
DW 38968, 38828, 38688, 38548, 38409, 38271, 38133, 37996 ;144->151
DW 37859, 37722, 37586, 37451, 37316, 37181, 37047, 36914 ;152->159
DW 36781, 36648, 36516, 36385, 36254, 36123, 35993, 35863 ;160->167
DW 35734, 35605, 35477, 35349, 35221, 35095, 34968, 34842 ;168->175
DW 34716, 34591, 34467, 34343, 34219, 34095, 33973, 33850 ;176->183
DW 33728, 33607, 33486, 33365, 33245, 33125, 33005, 32887 ;184->191
DW 32768, 32650, 32532, 32415, 32298, 32182, 32066, 31950 ;192->199
DW 31835, 31720, 31606, 31492, 31379, 31266, 31153, 31041 ;200->207
DW 30929, 30817, 30706, 30596, 30485, 30376, 30226, 30157 ;208->215
DW 30048, 29940, 29832, 29725, 29618, 29511, 29405, 29299 ;216->223
DW 29193, 29088, 28983, 28879, 28774, 28671, 28567, 28464 ;224->231
DW 28362, 28260, 28158, 28056, 27955, 27855, 27754, 27654 ;232->239
DW 27554, 27455, 27356, 27258, 27159, 27062, 26964, 26867 ;240->247
DW 26770, 26674, 26577, 26482, 26386, 26291, 26196, 26102 ;248->255
DW 26008 ; 256
ENDIF ; USEFPUCODE
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
InitCommandTable Label Word
DW Offset InitNoCommand, Offset InitCommandA
DW Offset InitCommandB, Offset InitCommandC
DW Offset InitCommandD, Offset InitCommandE
DW Offset InitCommandF, Offset InitCommandG
DW Offset InitCommandH, Offset InitCommandI
DW Offset InitCommandJ, Offset InitCommandK
DW Offset InitCommandL, Offset InitCommandM
DW Offset InitCommandN, Offset InitCommandO
DW Offset InitCommandP, Offset InitCommandQ
DW Offset InitCommandR, Offset InitCommandS
DW Offset InitCommandT, Offset InitCommandU
DW Offset InitCommandV, Offset InitCommandW
DW Offset InitCommandX, Offset InitCommandY
DW Offset InitCommandZ, Offset InitNoCommand
DW Offset InitNoCommand, Offset InitNoCommand
DW Offset InitNoCommand, Offset InitNoCommand
CommandTable Label Word
DW Offset NoCommand, Offset NoCommand
DW Offset NoCommand, Offset NoCommand
DW Offset CommandD, Offset CommandE
DW Offset CommandF, Offset CommandG
DW Offset CommandH, Offset CommandI
DW Offset CommandJ, Offset CommandK
DW Offset CommandL, Offset NoCommand
DW Offset CommandN, Offset NoCommand
DW Offset CommandP, Offset CommandQ
DW Offset CommandR, Offset CommandS
DW Offset CommandT, Offset CommandH
DW Offset NoCommand, Offset CommandW
DW Offset NoCommand, Offset CommandY
DW Offset NoCommand, Offset NoCommand
DW Offset NoCommand, Offset NoCommand
VolumeEffectTable Label Word
DW Offset NoCommand, Offset NoCommand ; Last 2 of command
; table + VolumeComA
; and VolumeComB
DW Offset VolumeCommandC, Offset VolumeCommandD
DW Offset VolumeCommandE, Offset VolumeCommandF
DW Offset VolumeCommandG, Offset CommandH
RetrigOffsets Label
DW CommandQ_0, CommandQ_1, CommandQ_2, CommandQ_3
DW CommandQ_4, CommandQ_5, CommandQ_6, CommandQ_7
DW CommandQ_8, CommandQ_9, CommandQ_A, CommandQ_B
DW CommandQ_C, CommandQ_D, CommandQ_E, CommandQ_F
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Sound Driver Data ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
IF OLDDRIVER
DriverID DB "Impulse Tracker Sound Driver"
ELSE
DriverID DB "Impulse Tracker Advanced Sound Driver"
ENDIF
ALIGN 2
SoundDriverSegment DW 0
;*******************
DriverVariableTable Label
DriverMaxChannels DW 32
StopEndOfPlaySection DW 0
DefaultChannels DW 32
DriverFlags DW 0 ; Bit 1 = MIDI Out supported
; Bit 2 = Hiqual
; Bit 3 = Output waveform data available
IF OLDDRIVER
DB 64 - ($ - DriverVariableTable) Dup (0)
ELSE
DB 16 - ($ - DriverVariableTable) Dup (0)
ENDIF
ALIGN 4
StartDriverFunctions Label
DriverDetectCard DD 0
DriverInitSound DD 0
DriverReinitSound DD 0
DriverUninitSound DD 0
DriverPoll DD 0
DriverSetTempo DD 0
DriverSetMixVolume DD 0
DriverSetStereo DD 0
DriverLoadSample DD 0
DriverReleaseSample DD 0
DriverResetMemory DD 0
DriverGetStatus DD 0
DriverSoundCardScreen DD 0
DriverGetVariable DD 0
DriverSetVariable DD 0
DriverMIDIOut DD 0
DriverGetWaveform DD 0
EndDriverFunctions Label
IF OLDDRIVER
DD 63-(EndDriverFunctions-StartDriverFunctions)/4 Dup (0)
ELSE
DD 31-(EndDriverFunctions-StartDriverFunctions)/4 Dup (0)
ENDIF
DW 0
DriverLength DW 0
DriverRequiredFunctions Label
DD DWord Ptr Update
DD DWord Ptr Music_GetSampleHeader
DD DWord Ptr Music_GetSampleLocation
DD DWord Ptr Music_FarUpdateSampleLocation
DD DWord Ptr E_GetEMSPageFrame
DD DWord Ptr E_SaveEMSPageFrame
DD DWord Ptr E_RestoreEMSPageFrame
DD DWord Ptr Music_GetTempo
DD DWord Ptr M_FunctionHandler
DD DWord Ptr SetInfoLine2
DD DWord Ptr Music_SoundCardLoadAllSamples
DD DWord Ptr GlobalKeyList
DD DWord Ptr IdleUpdateInfoLine
DD DWord Ptr F_DrawHeader
DD DWord Ptr PE_FillHeader
DD DWord Ptr D_GotoStartingDirectory
DD DWord Ptr D_GetFileName
DD DWord Ptr D_SetDriveDirectoryFar
DD DWord Ptr Music_Stop
DD DWord Ptr GetEnvironment
DD DWord Ptr Music_GetSlaveChannelInformationTable
DD DWord Ptr RecalculateAllVolumes
DD DWord Ptr MIDIBufferEmpty
DD DWord Ptr MIDISend
DD DWord Ptr S_GetDestination
DD DWord Ptr S_DrawString
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Functions ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Command/Effect (call it what you like) information here!! ³
;³ ³
;³ For initialisation, DS:DI points to host channel data. ³
;³ Registers for use: All except DS:DI & ES (points to SongDataSegment) ³
;³ ³
;³ For update, DS:DI points to host channel data. ³
;³ Registers for use: AX, BX, DX, ES, SI ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Proc RecalculateAllVolumes Far
Mov CX, NumChannels
Mov SI, Offset SlaveChannelInformationTable
RecalculateAllVolumes1:
Or Byte Ptr [SI], 18
Add SI, SLAVECHANNELSIZE
Dec CX
JNZ RecalculateAllVolumes1
Ret
EndP RecalculateAllVolumes
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc InitPlayInstrument ; BX = instrument offset
Push ECX
Mov [SI+30h], BX ; InsOffset
Mov AL, [ES:BX+11h] ; NNA
Mov [SI+3Bh], AL
Mov AX, [ES:BX+12h] ; DCT and DCA
Mov [SI+28h], AX
Mov AX, [DI+0Ch] ; MCh and MPr
Test AL, AL
JZ InitPlayInstrumentNoMIDI
Mov [SI+3Ch], AX
Mov AX, [ES:BX+3Eh] ; MidiBank
Mov [SI+3Eh], AX
Mov AL, [DI+3]
Mov [SI+0Bh], AL
InitPlayInstrumentNoMIDI:
Mov DX, [DI+2Eh] ; ChannelVol=DH, Pan=DL
Mov AL, [ES:BX+19h] ; Instrument pan
Mov [SI+23h], DH
Test AL, 80h
JNZ AllocatePan1
Mov DL, AL
AllocatePan1:
Push BX ; Check for sample pan
Mov BL, [DI+0Fh]
And BX, 0FFh
JZ InitPlayInstrumentNoSamplePan
Add BX, BX
Mov BX, [ES:64910+BX] ; BX = sample offset
Mov AL, [ES:BX+2Fh]
Test AL, AL
JNS InitPlayInstrumentNoSamplePan
And AL, 7Fh
Mov DL, AL
InitPlayInstrumentNoSamplePan:
Pop BX
Cmp DL, 100
JE AllocatePanSurround
Xor DH, DH
Mov AL, [DI+3] ; Note
Mov CX, [ES:BX+16h] ; Pitch pan separation
Sub AL, CH
IMul CL
SAR AX, 3
Add AX, DX
JS AllocatePan2
Cmp AX, 64
JBE AllocatePan3
Mov AL, 64
Jmp AllocatePan3
AllocatePan2:
Xor AL, AL
Jmp AllocatePan3
AllocatePanSurround:
Mov AL, 100
AllocatePan3:
Mov AH, AL
Xor ECX, ECX ; Envelope init
Mov [SI+2Ah], AX ; Write panning
Mov [SI+58h], ECX
Mov [SI+5Ch], CX
Mov [SI+60h], ECX
Mov [SI+68h], ECX
Mov [SI+6Ch], CX
Mov [SI+70h], ECX
Mov [SI+78h], ECX
Mov [SI+7Ch], CX
Mov DWord Ptr [SI+50h], 400000h ; 64*65536
Mov AH, [ES:BX+1D4h]
Mov AL, [ES:BX+182h]
And AX, 101h
ShL AH, 1
Or AH, AL
Mov AL, [ES:BX+130h]
ShL AH, 1
And AL, 1
Or AH, AL
ShL AH, 4
Or AX, 133h
Mov Word Ptr [SI], AX
Push DI
Mov DI, LastSlaveChannel
Test DI, DI
JZ InitInstrumentCarry
InitInstrumentVolumeCarry:
Mov AL, [ES:BX+130h]
And AL, 9
Cmp AL, 9
JNE InitInstrumentPanCarry
; Transfer volume data
Mov ECX, [DI+50h]
Mov EDX, [DI+54h]
Mov [SI+50h], ECX
Mov [SI+54h], EDX
Mov ECX, [DI+58h]
Mov DX, [DI+5Ch]
Mov [SI+58h], ECX
Mov [SI+5Ch], DX
InitInstrumentPanCarry:
Mov AL, [ES:BX+182h]
And AL, 9
Cmp AL, 9
JNE InitInstrumentPitchCarry
; Transfer pan data
Mov ECX, [DI+60h]
Mov EDX, [DI+64h]
Mov [SI+60h], ECX
Mov [SI+64h], EDX
Mov ECX, [DI+68h]
Mov DX, [DI+6Ch]
Mov [SI+68h], ECX
Mov [SI+6Ch], DX
InitInstrumentPitchCarry:
Mov AL, [ES:BX+1D4h]
And AL, 9
Cmp AL, 9
JNE InitInstrumentCarry
; Transfer pitch data
Mov ECX, [DI+70h]
Mov EDX, [DI+74h]
Mov [SI+70h], ECX
Mov [SI+74h], EDX
Mov ECX, [DI+78h]
Mov DX, [DI+7Ch]
Mov [SI+78h], ECX
Mov [SI+7Ch], DX
InitInstrumentCarry:
Pop DI
Or Byte Ptr [DI], 80h ; Apply random volume/pan
Cmp Byte Ptr [DI+0Ch], 0
JNE InitPlayInstrumentNoSample
Push BX
Mov BX, [ES:BX+3Ah] ; Initial filter cutoff
; If IFC bit 7 == 1, then set filter cutoff
Mov Word Ptr [SI+3Eh], 0FFh
; Test BL, 8080h
; JNZ InitPlayInstrumentFilter
;
;; No filters, reset devices.
; Mov BL, 7Fh
; Call SetFilterCutoff
; Xor BL, BL
; Call SetFilterResonance
;
; Jmp InitPlayInstrumentFilterResonance
;
;InitPlayInstrumentFilter:
Test BL, BL
JNS InitPlayInstrumentFilterCutoff
And BL, 7Fh
; Mov [SI+3Eh], BL
Call SetFilterCutoff
InitPlayInstrumentFilterCutoff:
; If IFR bit 7 == 1, then set filter resonance
Test BX, BX
JNS InitPlayInstrumentFilterResonance
Mov BL, BH
And BL, 7Fh
Mov [SI+3Fh], BL
Call SetFilterResonance
InitPlayInstrumentFilterResonance:
Pop BX
InitPlayInstrumentNoSample:
Pop ECX
Ret
EndP InitPlayInstrument
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc ApplyRandomValues
Mov SI, [DI+24h]
Mov BX, [SI+30h]
And Byte Ptr [DI], Not 80h
Call Random ; AL = -128->+127