-
Notifications
You must be signed in to change notification settings - Fork 23
/
IT_NET.ASM
2722 lines (1968 loc) · 77.6 KB
/
IT_NET.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
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Network Module ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Jumps
.386P
include switch.inc
IF NETWORKENABLED
SHOWQUEUESIZE EQU 0
NUMREQUIREDVARIABLES EQU 16 ; Number of bytes required from IT.EXE by Driver
NUMREQUIREDFUNCTIONS EQU 32 ; Number of functions (DD Offsets) required by
; Network driver
NUMPROVIDEDVARIABLES EQU 16 ; Number of bytes provided from driver to IT.EXE
NUMPROVIDEDFUNCTIONS EQU 16 ; Number of functions (DW Offsets) provided by
; Network driver
; Has to handle:
; 1. Loading the network driver
; 2. Messages to/from network driver/buffering, etc.
; Interface
;ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
;³ Externals ³
;ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
Extrn D_ClearFileName:Far
Extrn E_AllocateEMS:Far
Extrn E_ReleaseEMS:Far
Extrn E_MapEMSMemory:Far
Extrn E_GetEMSPageFrame:Far
Extrn E_GetEMSVersion:Far
; Extrn E_SavePageFrame:Far
; Extrn E_RestorePageFrame:Far
Extrn F_DrawHeader:Far
Extrn Glbl_SetCurrentMode:Far
Extrn Glbl_GetCurrentMode:Far
Extrn I_MapEnvelope:Far
Extrn M_FunctionDivider:Far
Extrn M_FunctionHandler:Far
Extrn M_Object1List:Far
Extrn Music_GetPatternLocation:Far ; Returns AX = handle
; EBX = segment:offset
; DL = type.
; CX = pattern length
Extrn Music_GetPatternLocationNoCount:Far ; Returns AX = handle
; EBX = segment:offset
; DL = type.
Extrn Music_ReleasePattern:Far ; Requires AX = pattern
Extrn Music_AllocatePattern:Far ; SI = pattern, DX = length
Extrn Music_UpdatePatternOffset:Far
Extrn Music_ReleaseAllSamples:Far
Extrn Music_AllocateSample:Far
Extrn Music_Stop:Far
Extrn Music_ReleaseSample:Far
Extrn IdleUpdateInfoLine:Far
Extrn SetInfoLine:Far
Extrn SetInfoLine2:Far
Extrn GetTimerCounter:Far
Extrn O1_LoadNetworkDriver:Far
Extrn O1_NetworkErrorList:Far
Extrn GlobalKeyList
Extrn PE_FillHeader:Far
Extrn PE_NewPattern:Far
Extrn PEFunction_OutOfMemoryMessage:Far
Extrn PEFunction_StoreCurrentPattern:Far
Extrn PE_GetLastInstrument:Far
Extrn S_GetDestination:Far
Extrn S_DrawString:Far
Extrn S_SaveScreen:Far
Extrn S_RestoreScreen:Far
Segment Object1 BYTE Public 'Data'
EndS
Segment SongData PARA Public 'Data'
EndS
Segment SongData PARA Public 'Data'
EndS
;ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Public Network_DriverScreen
Public Network_DrawDriverScreen
Public Network_PreDriverScreen
Public Network_PostDriverScreen
Public Network_Shutdown
Public Network_Poll
Public Network_GetSendQueue ; Returns ES:DI
Public Network_FinishedSendQueue ; Finished with send queue
Public Network_AddWordToQueue
Public Network_UpdatePattern
Public Network_UpdatePatternIfIdle
Public Network_EnsureNoNetwork
Public Network_SendSampleHeader
Public Network_SendInstrumentHeader
Public Network_QueueSampleData
Public Network_SendSongDataInformation
;ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
;
; Not used?
;
;Segment Network BYTE Public 'Code' USE16
; Assume CS:Network, DS:Nothing, ES:Nothing
;EndS
;
;ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Segment DiskData PARA Public 'Data'
EndS
;ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Segment Pattern BYTE Public 'Code' USE16
Extrn PatternDataArea:Word
Extrn PatternNumber:Word
Extrn Modified:Byte
Extrn PatternModified:Byte
Extrn MaxRow:Word
EndS
Segment Music BYTE Public 'Code' USE16
Extrn CurrentOrder:Word
Extrn CurrentPattern:Word
Extrn CurrentRow:Word
EndS
Segment Disk DWORD Public 'Code' USE16
Assume CS:Disk, DS:Nothing, ES:Nothing
Extrn DiskDataArea:Word
Extrn D_GotoStartingDirectory:Far
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
;******************** THESE BLOCKS CANNOT CHANGE ORDER ************************
Label NetworkRequiredVariables
DD DWord Ptr GlobalKeyList
DD DWord Ptr IdleUpdateInfoLine
DW DiskData
DB NUMREQUIREDVARIABLES - ($-Offset NetworkRequiredVariables) Dup (0)
Label NetworkRequiredFunctions
DD DWord Ptr Network_UnloadDriver
DD DWord Ptr M_FunctionHandler
DD DWord Ptr M_FunctionDivider
DD DWord Ptr Network_ReceiveData
DD DWord Ptr Network_SendData
DD DWord Ptr Network_EstablishConnection
DD DWord Ptr D_GotoStartingDirectory
DD DWord Ptr GetTimerCounter
DD DWord Ptr SetInfoLine2
DD DWord Ptr F_DrawHeader
DD DWord Ptr PE_FillHeader
DD DWord Ptr S_GetDestination
DD DWord Ptr S_DrawString
DD DWord Ptr S_SaveScreen
DD DWord Ptr S_RestoreScreen
DD DWord Ptr Glbl_GetCurrentMode
DD DWord Ptr Network_NewConnection
DD DWord Ptr Network_DecodeUserName
DD NUMREQUIREDFUNCTIONS - ($-Offset NetworkrequiredFunctions)/4 Dup (0)
Label NetworkDriverVariables Byte
DB NUMPROVIDEDVARIABLES - ($-Offset NetworkDriverVariables) Dup (0)
Label NetworkDriverFunctions DWord
NetworkDriver_Initialise DD Network_EmptyFunction
NetworkDriver_Shutdown DD Network_EmptyFunction
NetworkDriver_Screen DD Network_EmptyFunction
NetworkDriver_Update DD Network_EmptyFunction
NetworkDriver_ConnectionStatus DD Network_EmptyFunction
DD NUMPROVIDEDFUNCTIONS - ($-Offset NetworkDriverFunctions)/4 Dup (0)
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
DriverIdentification DB "Impulse Tracker Network Driver"
DriverMask DB "IT*.NET", 0
NoDriverMsg DB "No Network Drivers Found", 0
NetworkDriverUnloaded DB "Network driver unloaded", 0
IF SHOWQUEUESIZE
DebugMessage DB "SendQueueSize: ", 0FDh, "D", 0
ENDIF
; NetworkOverflowMessage DB "Network Overflow: Driver Unloaded", 0
ALIGN 2
NumDrivers DW 0
CurrentDriver DW 0
TopDriver DW 0
DriverSegment DW 0
EMS_SENDBUFFERPAGE EQU (0*100h + 4)
LastReceiveCX DW 0
NetworkEMSHandle DW 0 ; 384kb -> 64kb = receive buffer 1a
; 64kb = receive buffer 1b
; 64kb = receive buffer 2a
; 64kb = receive buffer 2b
; 64kb = receive buffer 3a
; 64kb = receive buffer 3b
NetworkSendEMSHandle DW 0 ; 64kb, separated for Win9x's
; inattention to the int-flag.
SendQueueSegment DW 0 ; MUST be adjacent
SendDataQueueTail DW 0 ; MUST be adjacent
SendDataQueueHead DW 0 ; MUST be adjacent
Destination DB 0 ; MUST be adjacent
DriverValidated DB 0 ; MUST be adjacent
SendBufferRemaining DW 0 ; MUST be adjacent
SendBufferOffset DW 0 ; MUST be adjacent
PatternDataUpdated DW 50 Dup (0) ; Bit table of pattern numbers
Label NetworkKeys Byte
DB 0
DW 1C8h ; Up arrow
DW Network_Up
DB 0
DW 1D0h ; Down arrow
DW Network_Down
DB 0
DW 11Ch
DW Network_LoadDriver
DB 0FFh
EMSTransferTable Label
TransferLength DW 0, 0
SourceType DB 0
SourceHandle DW 0
SourceOffset DD 0
DestinationType DB 0
DestinationHandle DW 0
DestinationOffset DD 0
PatternModifiedTable DB 200 Dup (0) ; Bit field for 200 patterns
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_EmptyFunction Far
Xor AX, AX
Ret
EndP Network_EmptyFunction
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_DriverScreen Far
; If no network driver loaded, show load screen
; If driver loaded, then call driver's screen interface
Mov AL, 24
Call Glbl_SetCurrentMode
Push CS
Pop DS
Assume DS:Disk
Cmp [DriverSegment], 0
JE Network_DriverScreen1
Jmp [NetworkDriver_Screen]
Network_DriverScreen1:
Call D_GotoStartingDirectory
; Clear data area.
Mov ES, [DiskDataArea]
Mov CX, 32768
Xor DI, DI
Xor AX, AX
Rep StosW ; Clear diskdata Area...
Mov [NumDrivers], AX
Mov [CurrentDriver], AX
Mov [TopDriver], AX
; Now shift DTA to DS:64000
Push DS
Push ES
Pop DS
Mov DX, 64000
Mov AH, 1Ah
Int 21h ; Shift DTA address..
Pop DS
; Load file names.
Mov DX, Offset DriverMask ; Wanna search for IT*.NET
Xor CX, CX ; Normal File types
Mov AH, 4Eh
Network_DriverScreenLoadFileNames1:
Int 21h
JC Network_DriverScreenLoadFileNamesEnd
Push DS
Push ES
Pop DS ; DS = Diskdata
; OK.. have the file.
; Open it and read the first 128 bytes in from it.
; Check for identification string. If all OK, then copy details into
; network list.
Mov AX, 3D00h
Mov DX, 64000+1Eh ; Filename
Int 21h
JC Network_DriverScreenLoadFileNext
Mov BX, AX ; File handle.
; Read first 128 bytes of file
Mov AH, 3Fh
Mov CX, 128
Mov DX, 65000
Mov DI, DX
Int 21h ; Read file.
JC Network_DriverScreenLoadFileNextClose
; Check for matching ID
Mov SI, Offset DriverIdentification
Mov CX, 30
SegCS RepE CmpSB
JNE Network_DriverScreenLoadFileNextClose
; Have a matching driver!
; Copy filename and Header.
Mov DI, [CS:NumDrivers]
Inc [CS:NumDrivers]
ShL DI, 7 ; Deposit information at 128*DI
Mov CX, 13
Mov SI, 64000+1Eh
Rep MovsB
Mov SI, 65000+64
Mov CX, 32
Rep MovsW
Network_DriverScreenLoadFileNextClose:
Mov AH, 3Eh
Int 21h
Network_DriverScreenLoadFileNext:
Pop DS
Mov AH, 4Fh
Jmp Network_DriverScreenLoadFileNames1
Network_DriverScreenLoadFileNamesEnd:
; OK.. jump to network screen list
Mov AX, 5
Mov SI, 1
Mov CX, Object1
Mov DX, Offset O1_LoadNetworkDriver
Ret
EndP Network_DriverScreen
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_DrawDriverScreen Far
Push CS
Pop DS
Assume DS:Disk
Call S_GetDestination ; Gets ES
Cmp [NumDrivers], 0
JNE Network_DrawDriverScreen1
Mov DI, (27+29*80)*2 ; (6, 13)
Mov SI, Offset NoDriverMsg
Mov AH, 3
Call S_DrawString
Ret
Network_DrawDriverScreen1:
Mov AX, 168+200h
Mov DI, (13*80+15)*2
Mov CX, 36
Network_DrawDriverScreen2:
StosW
Add DI, 158
Loop Network_DrawDriverScreen2
Mov SI, [TopDriver]
Mov DX, [NumDrivers]
Mov BX, [CurrentDriver]
; Need to make sure they're within bounds.
Cmp BX, SI
JAE Network_DrawDriverScreenClip1
Mov SI, BX
Network_DrawDriverScreenClip1:
LEA DI, [SI+35]
Cmp BX, DI
JBE Network_DrawDriverScreenClip2
LEA SI, [BX-35]
Network_DrawDriverScreenClip2:
Mov DI, (13*80+2)*2
Mov [TopDriver], SI
Sub DX, SI
JZ Network_DrawDriverScreenEnd
ShL SI, 7
Mov DS, [DiskDataArea]
Assume DS:Nothing
Cmp DX, 36
JB Network_DrawDriverScreenClip
Mov DX, 36
Network_DrawDriverScreenClip:
Mov AH, 3
Mov CX, 13
Network_DrawDriverScreenFileNames:
LodsB
StosW
Loop Network_DrawDriverScreenFileNames
; Add DI, 2
ScasW
Mov CX, 62
Network_DrawDriverScreenDriverName:
LodsB
StosW
Loop Network_DrawDriverScreenDriverName
Add SI, 128-62-13
Add DI, 8
Dec DX
JNZ Network_DrawDriverScreenClip
Network_DrawDriverScreenEnd:
Ret
EndP Network_DrawDriverScreen
Assume DS:Nothing
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_PreDriverScreen Far
Push CS
Pop DS
Assume DS:Disk
Cmp [NumDrivers], 0
JE Network_PreDriverScreenEnd
Mov AX, [CurrentDriver]
Sub AX, [TopDriver]
Add AX, 13
Mov BX, 160
Mul BX
Call S_GetDestination
LEA DI, [EAX+4]
Mov CX, 76
Network_PreDriverScreen1:
Mov AX, [ES:DI]
Mov AH, 30h
Cmp CX, 76-13
JNE Network_PreDriverScreen2
Mov AH, 32h
Network_PreDriverScreen2:
StosW
Loop Network_PreDriverScreen1
Network_PreDriverScreenEnd:
Ret
EndP Network_PreDriverScreen
Assume DS:Nothing
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_Up Far
Assume DS:Disk
Sub [CurrentDriver], 1
AdC [CurrentDriver], 0
Mov AX, 1
Ret
EndP Network_Up
Assume DS:Nothing
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_Down Far
Mov AX, [CurrentDriver]
Inc AX
Cmp AX, [NumDrivers]
JAE Network_Down1
Mov [CurrentDriver], AX
Network_Down1:
Mov AX, 1
Ret
EndP Network_Down
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_PostDriverScreen Far
; Has to handle up, down, Enter.
Push CS
Pop DS
Assume DS:Disk
Mov SI, Offset NetworkKeys
Call M_FunctionDivider
JC Network_PostDriverScreen1
Jmp [Word Ptr SI]
Network_PostDriverScreen1:
Xor AX, AX
Ret
EndP Network_PostDriverScreen
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_LoadDriver Far
Assume DS:Disk
; Allocate EMS memory buffers first
Cmp NetworkEMSHandle, 1
JAE Network_LoadDriverMemoryAlreadyAllocated
Call E_GetEMSVersion
Cmp AL, 40h
JB Network_LoadDriverInsufficientMemory
; Carry flag set -> essential allocation
StC
Mov EAX, 384*1024
Call E_AllocateEMS
Test AX, AX
JNZ Network_LoadDriverMemoryOK
Network_LoadDriverInsufficientMemory:
Jmp PEFunction_OutOfMemoryMessage
Network_LoadDriverMemoryOK:
Mov NetworkEMSHandle, AX
Network_LoadDriverMemoryAlreadyAllocated:
Cmp NetworkSendEMSHandle, 1
JAE Network_LoadDriverSendEMSHandleAlreadyAllocated
Mov EAX, 64*1024
Call E_AllocateEMS
Test AX, AX
JZ Network_LoadDriverInsufficientMemory
Mov NetworkSendEMSHandle, AX
Network_LoadDriverSendEMSHandleAlreadyAllocated:
Cmp SendqueueSegment, 0
JNE Network_LoadDriverMemoryAlreadyAllocated2
Mov AH, 48h
Mov BX, 1024
Int 21h ; Allocate 16kb of memory for the SendQueue
JC Network_LoadDriverInsufficientMemory
Mov SendQueueSegment, AX
Network_LoadDriverMemoryAlreadyAllocated2:
Xor EAX, EAX
Mov DWord Ptr [SendDataQueueTail], EAX
Mov DWord Ptr [Destination], EAX
Mov AX, [NumDrivers]
Mov DX, [CurrentDriver]
Test AX, AX
JNZ Network_LoadDriver1
Ret
Network_LoadDriver1:
ShL DX, 7
Mov DS, [DiskDataArea]
Assume DS:Nothing
Mov DI, DX
; Try allocating memory first.
Mov BX, [DI+13+62] ; Bytes to read
Mov AH, 48h
Add BX, 15
ShR BX, 4 ; BX = number of parags required.
Int 21h
JNC Network_LoadDriver2
Jmp PEFunction_OutOfMemoryMessage
Network_LoadDriver2:
Mov ES, AX
Mov [CS:DriverSegment], AX
Mov AX, 3D00h
Int 21h ; Open file
JC Network_LoadDriver3
Mov BX, AX
Mov AX, 4200h
Xor CX, CX
Mov DX, 128
Int 21h
JC Network_LoadDriver4
Mov AH, 3Fh
Mov CX, [DI+13+62]
Mov DS, [CS:DriverSegment]
Xor DX, DX
Int 21h ; Read driver
JC Network_LoadDriver4
Push CS
Pop DS
Assume DS:Disk
Mov AH, 3Fh
Mov CX, NUMPROVIDEDVARIABLES
Mov DX, Offset NetworkDriverVariables
Int 21h
JC Network_LoadDriver4
Mov AH, 3Fh
Mov CX, NUMPROVIDEDFUNCTIONS*2
Mov DX, Offset NetworkDriverFunctions+NUMPROVIDEDFUNCTIONS*2
Int 21h
JC Network_LoadDriver4
Mov AH, 3Eh
Int 21h ; Close file.
; Setup tables
Mov SI, Offset NetworkRequiredVariables
Xor DI, DI
Mov CX, NUMREQUIREDVARIABLES+4*NUMREQUIREDFUNCTIONS
Rep MovsB
Mov AX, ES
Push DS
Pop ES
Mov SI, DX
Mov DI, Offset NetworkDriverFunctions
Mov CX, NUMPROVIDEDFUNCTIONS
ShL EAX, 16
Network_LoadDriver5:
LodsW
StosD
Loop Network_LoadDriver5
; Initialise Send/Receive buffers.
Mov DX, CS:NetworkEMSHandle
Mov CL, 512/16
Mov CH, 28
Call E_GetEMSPageFrame
Mov ES, AX
Network_InitialiseBuffers1:
Call E_MapEMSMemory
Mov DWord Ptr [ES:65532], 0
Sub CH, 4
JNS Network_InitialiseBuffers1
; Should jump to network initialise function now.
Jmp NetworkDriver_Initialise
Assume DS:Nothing
Network_LoadDriver4:
Mov AH, 3Eh
Int 21h
Network_LoadDriver3:
Jmp Network_UnloadDriver
EndP Network_LoadDriver
Assume DS:Nothing
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_UnloadDriver Far
Push CS
Push CS
Pop DS
Pop ES
Assume DS:Disk
Mov SI, Offset NetworkDriverUnloaded
Call SetInfoLine
Mov AH, 49h
Mov ES, [DriverSegment]
Int 21h
Mov [DriverSegment], 0
Mov AH, 49h
Mov ES, SendQueueSegment
Int 21h
Mov SendQueueSegment, 0
Push CS
Pop ES
Mov AX, CS
ShL EAX, 16
Mov AX, Offset Network_EmptyFunction
Mov DI, Offset NetworkDriverFunctions
Mov CX, NUMPROVIDEDFUNCTIONS
Rep StosD
Jmp Network_DriverScreen
EndP Network_UnloadDriver
Assume DS:Nothing
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; PatternCycle DW 0
Proc Network_Poll Far
Comment ~
Mov AX, CS:PatternCycle
Inc AX
Cmp AX, 200
JB Network_Poll1
Xor AX, AX
Network_Poll1:
Mov CS:PatternCycle, AX
Call Network_UpdatePatternIfIdle
~
Jmp NetworkDriver_Update
EndP Network_Poll
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_DecodeUserName Far ; Given DS:SI = name
; CX = count (including key)
Test CX, CX
JZ Network_DecodeUserName3
Mov BX, CX
Xor DX, DX
Network_DecodeUserName1:
LodsB
Add DL, AL
StosB
Xor DH, DL
Loop Network_DecodeUserName1
Add DX, 0FFFFh
JC Network_UnloadDriver
Sub SI, BX
Mov CX, BX
Xor AH, AH
Network_DecodeUserName2:
LodsB
Add AH, AL
XChg AL, AH
Xor AL, 0AAh
RoR AL, 2
Mov [SI-1], AL
Loop Network_DecodeUserName2
Network_DecodeUserName3:
Mov CS:DriverValidated, 1
Network_DecodeUserNameEnd:
Ret
EndP Network_DecodeUserName
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_Shutdown Far
Mov AX, CS:NetworkEMSHandle
Test AX, AX
JZ Network_Shutdown1
Call E_ReleaseEMS
Network_Shutdown1:
Mov AX, CS:NetworkSendEMSHandle
Test AX, AX
JZ Network_Shutdown2
Call E_ReleaseEMS
Network_Shutdown2:
Jmp NetworkDriver_Shutdown
EndP Network_Shutdown
;ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
;
; Internal structures
; -------------------
;
; SendBuffer is the raw data to transmit:
; Offset Size Contents Notes
; 0 DWord Block Header ID 'JLNP' - "J.L. Network Protocol"
; 4 Word Block Size Byte count, includes headers
; and CRC check.
; 6 Byte Block Type
; 7 <...> Data Maximum of 65000 bytes
; <Data+7> Word CRC Calculated
;
; Block types.
;
; SendQueue contains a queue of objects to transmit.
; Structure:
; Offset Size Contents Notes
; 0 Byte Destination 0=all, 1-3=specific, others=ignore
; 1 Byte Object Type
; 2 <> Data
;
; Object types:
; 0: Partial pattern data
; Extra data: Pattern Number (1), Bounding Box (4), Data
; 1: Entire pattern
; Extra data: Pattern Number (1), Data (Compressed)
; 2: Request pattern
; Extra data: Pattern Number (1)
; 3: SongData information (includes order list + song parameters)
; Extra data: Length (2), Offset (2)
; 4: Instrument information
; Extra data: Instrument Number (1)
; 5: Sample information
; Extra data: Sample Number (1)
; 6: Pattern Length
; Extra data: Pattern Number (1), New MaxRow (1)
; 7: Delete sample
; Extra data: Sample Number (1)
; 8: New sample - sends length also
; Extra data: Sample Number (1)
; 9: Sample Data
; Extra data: Sample Number (1), Offset (4)
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_CalculateCRC
; Calculates CRC and appends 6 byte header
; Given ES = EMSSegment
; Given DI = end of data written
Push DS
Push ES
Pop DS
Mov CX, DI
Xor SI, SI
LEA BX, [DI+2]
Xor DX, DX
Mov Word Ptr [SI+4], BX
Xor AX, AX
Mov DWord Ptr [SI], 'JLNP'
Network_CalculateCRC1:
LodsB
Add DH, AL
Xor DL, DH
Loop Network_CalculateCRC1
; Have DH = sum, DL = xor of running sum.
; Want to have DX = 0 after next two bytes
; second last byte = DL-DH
; last byte = -DL
Sub AH, DL ; AH = -DL
Sub DL, DH ; DL = DL-DH
Mov AL, DL ; AL = DL-DH
StosW
Mov CS:SendBufferOffset, 0
Mov CS:SendBufferRemaining, BX
Pop DS
Ret
EndP Network_CalculateCRC
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Proc Network_GetSendBufferPage Near
; Returns AX = EMSPageFrame
Push CX
Push DX
Mov CX, EMS_SENDBUFFERPAGE
Mov DX, CS:NetworkSendEMSHandle
Call E_MapEMSMemory
Call E_GetEMSPageFrame
Pop DX
Pop CX
Ret
EndP Network_GetSendBufferPage
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
; Send Procedure Jump Table
; Each procedure is given DS:SI = Send queue data
; ES:DI = Send buffer
; Each procedure only need write to ES:DI.
; Count of bytes is taken from return value of DI, CRC+Header will be appended
; Can use AX, BX, CX, DX, DS, SI
; Must update CS:SendDataQueueHead
NUMBEROFBLOCKTYPES EQU 10
ConvertQueueObjectTypes DW Offset SendNetworkBlock0
DW Offset SendNetworkBlock1
DW Offset SendNetworkBlock2