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
|
;Copyright (c) 1990-2012 by Neil Dodwell
;Released with permission from Neil Dodwell under GPLv2
;See LICENSE file for full license text
Zoomonoff proc near
cmp watchingtime,0
jnz blank
cmp pointermode,2
jz blank
cmp commandtype,222
jz alreadyonoff
mov commandtype,222
mov al,39
call commandonly
alreadyonoff: mov ax,mousebutton
cmp ax,oldbutton
jz nozoomonoff
and ax,1
jnz dozoomonoff
nozoomonoff: ret
dozoomonoff: mov al,zoomon
xor al,1
mov zoomon,al
call createpanel
mov newobs,0
call drawfloor
call printsprites
call reelsonscreen
call showicon
call getunderzoom
call undertextline
mov al,39
call commandonly
call readmouse
call worktoscreenm
ret
endp
Saveload proc near
if demo
call dosreturn
ret
else
cmp watchingtime,0
jnz blank
cmp pointermode,2
jz blank
cmp commandtype,253
jz alreadyops
mov commandtype,253
mov al,43
call commandonly
alreadyops: mov ax,mousebutton
cmp ax,oldbutton
jz noops
and ax,1
jz noops
call dosaveload
noops: ret
endif
endp
Dosaveload proc near
mov pointerframe,0
mov textaddressx,70
mov textaddressy,182-8
mov textlen,181
mov manisoffscreen,1
call clearwork
call createpanel2
call undertextline
call getridofall ;reels
call loadsavebox
call showopbox
call showmainops
call worktoscreen ;2
jmp donefirstops
restartops: call showopbox
call showmainops
call worktoscreenm
donefirstops: mov getback,0
waitops:
cmp quitrequested, 0
jnz justret
call readmouse
call showpointer
call vsync
call dumppointer
call dumptextline
call delpointer
mov bx,offset cs:opslist
call checkcoords
cmp getback,0
jz waitops
cmp getback,2
jz restartops
mov textaddressx,13
mov textaddressy,182
mov textlen,240
cmp getback,4
jz justret
call getridoftemp
call restoreall ;reels
call redrawmainscrn
call worktoscreenm
mov commandtype,200
justret: mov manisoffscreen,0
ret
opslist: dw opsx+59,opsx+114,opsy+30,opsy+76,getbackfromops
dw opsx+10,opsx+77,opsy+10,opsy+59,dosreturn
dw opsx+128,opsx+190,opsy+16,opsy+100,discops
dw 0,320,0,200,blank
dw 0ffffh
endp
Getbackfromops proc near
cmp mandead,2
jz opsblock1
call getback1
ret
opsblock1: call blank
ret
endp
Showmainops proc near
mov ds,tempgraphics
mov di,opsx+10
mov bx,opsy+10
mov al,8
mov ah,0
call showframe
mov ds,tempgraphics
mov di,opsx+59
mov bx,opsy+30
mov al,7
mov ah,0
call showframe
mov ds,tempgraphics
mov di,opsx+128+4
mov bx,opsy+12
mov al,1
mov ah,0
call showframe
ret
endp
Showdiscops proc near
mov ds,tempgraphics
mov di,opsx+128+4
mov bx,opsy+12
mov al,1
mov ah,0
call showframe
mov ds,tempgraphics
mov di,opsx+10
mov bx,opsy+10
mov al,9
mov ah,0
call showframe
mov ds,tempgraphics
mov di,opsx+59
mov bx,opsy+30
mov al,10
mov ah,0
call showframe
mov ds,tempgraphics
mov di,opsx+176+2
mov bx,opsy+60-4
mov al,5
mov ah,0
call showframe
ret
endp
Loadsavebox proc near
mov dx,offset cs:icongraphics8
call loadintotemp
ret
endp
Loadgame proc near
cmp commandtype,246
jz alreadyload
mov commandtype,246
mov al,41
call commandonly
alreadyload: mov ax,mousebutton
cmp ax,oldbutton
jz noload
cmp ax,1
jz doload
noload: ret
doload: mov loadingorsave,1
call showopbox
call showloadops
mov currentslot,0
call showslots
call shownames
mov pointerframe,0
call worktoscreenm
call namestoold
mov getback,0
loadops:
cmp quitrequested, 0
jnz quitloaded
call delpointer
call readmouse
call showpointer
call vsync
call dumppointer
call dumptextline
mov bx,offset cs:loadlist
call checkcoords
cmp getback,0
jz loadops
cmp getback,2
jz quitloaded
call getridoftemp
;call clearnoreels
mov dx,seg madeuproomdat
mov es,dx
mov bx,offset es:madeuproomdat
call startloading
call loadroomssample
mov roomloaded,1
mov newlocation,255
call clearsprites
call initman
call initrain
mov textaddressx,13
mov textaddressy,182
mov textlen,240
call startup
call worktoscreen
mov getback,4
quitloaded: ret
loadlist: dw opsx+176,opsx+192,opsy+60,opsy+76,getbacktoops
dw opsx+128,opsx+190,opsy+12,opsy+100,actualload
dw opsx+2,opsx+92,opsy+4,opsy+81,selectslot
dw 0,320,0,200,blank
dw 0ffffh
endp
Getbacktoops proc near
cmp commandtype,201
jz alreadygetops
mov commandtype,201
mov al,42
call commandonly
alreadygetops: mov ax,mousebutton
cmp ax,oldbutton
jz nogetbackops
and ax,1
jnz dogetbackops
nogetbackops: ret
dogetbackops: call oldtonames
mov getback,2
ret
endp
Discops proc near
cmp commandtype,249
jz alreadydiscops
mov commandtype,249
mov al,43
call commandonly
alreadydiscops: mov ax,mousebutton
cmp ax,oldbutton
jz nodiscops
and ax,1
jnz dodiscops
nodiscops: ret
dodiscops: call scanfornames
mov loadingorsave,2
call showopbox
call showdiscops
mov currentslot,0
call worktoscreenm
mov getback,0
discopsloop:
cmp quitrequested, 0
jnz quitdiscops
call delpointer
call readmouse
call showpointer
call vsync
call dumppointer
call dumptextline
mov bx,offset cs:discopslist
call checkcoords
cmp getback,0
jz discopsloop
quitdiscops:
ret
discopslist: dw opsx+59,opsx+114,opsy+30,opsy+76,loadgame
dw opsx+10,opsx+79,opsy+10,opsy+59,savegame
dw opsx+176,opsx+192,opsy+60,opsy+76,getbacktoops
dw 0,320,0,200,blank
dw 0ffffh
endp
Savegame proc near
cmp mandead,2
jnz cansaveok
call blank
ret
cansaveok: cmp commandtype,247
jz alreadysave
mov commandtype,247
mov al,44
call commandonly
alreadysave: mov ax,mousebutton
and ax,1
jnz dosave
ret
dosave: mov loadingorsave,2
call showopbox
call showsaveops
mov currentslot,0
call showslots
call shownames
call worktoscreenm
call namestoold
mov bufferin,0
mov bufferout,0
mov getback,0
saveops:
cmp quitrequested, 0
jnz quitsavegame
call delpointer
call checkinput
call readmouse
call showpointer
call vsync
call dumppointer
call dumptextline
mov bx,offset cs:savelist
call checkcoords
cmp getback,0
jz saveops
quitsavegame:
ret
savelist: dw opsx+176,opsx+192,opsy+60,opsy+76,getbacktoops
dw opsx+128,opsx+190,opsy+12,opsy+100,actualsave
dw opsx+2,opsx+92,opsy+4,opsy+81,selectslot
dw 0,320,0,200,blank
dw 0ffffh
endp
Actualsave proc near
cmp commandtype,222
jz alreadyactsave
mov commandtype,222
mov al,44
call commandonly
alreadyactsave: mov ax,mousebutton
and ax,1
jz noactsave
mov dx,seg savenames
mov ds,dx
mov si,offset savenames
mov al,currentslot
mov ah,0
mov cx,17
mul cx
add si,ax
inc si
cmp byte ptr [si],0
jz noactsave
mov al,location
mov ah,0
mov cx,32
mul cx
push cs
pop ds
mov si,offset cs:roomdata
add si,ax
mov di,offset cs:madeuproomdat
mov bx,di
push cs
pop es
mov cx,16
rep movsw
mov al,roomssample
mov [es:bx+13],al
mov al,mapx
mov [es:bx+15],al
mov al,mapy
mov [es:bx+16],al
mov al,liftflag
mov [es:bx+20],al
mov al,manspath
mov [es:bx+21],al
mov al,facing
mov [es:bx+22],al
mov al,255
mov [es:bx+27],al
call saveposition
call getridoftemp
call restoreall ;reels
mov textaddressx,13
mov textaddressy,182
mov textlen,240
call redrawmainscrn
call worktoscreenm
mov getback,4
noactsave: ret
endp
Actualload proc near
cmp commandtype,221
jz alreadyactload
mov commandtype,221
mov al,41
call commandonly
alreadyactload: mov ax,mousebutton
cmp ax,oldbutton
jz notactload
cmp ax,1
jnz notactload
mov dx,seg savenames
mov ds,dx
mov si,offset savenames
mov al,currentslot
mov ah,0
mov cx,17
mul cx
add si,ax
inc si
cmp byte ptr [si],0
jz notactload
call loadposition
mov getback,1
notactload: ret
endp
Selectslot2 proc near
cmp mousebutton,0
jz noselslot2
mov loadingorsave,2
noselslot2: call selectslot
ret
endp
Checkinput proc near
cmp loadingorsave,3
jz nokeypress
call readkey
mov al,currentkey
cmp al,0
jz nokeypress
cmp al,13
jnz notret
mov loadingorsave,3
jmp afterkey
notret: cmp al,8
jnz nodel2
cmp cursorpos,0
jz nokeypress
call getnamepos
dec cursorpos
mov byte ptr [es:bx],0
mov byte ptr [es:bx+1],1
jmp afterkey
nodel2: ;cmp al,32
;jz spacepress
;cmp al,"A"
;jc nokeypress
;cmp al,"Z"+1
;jnc nokeypress
spacepress: cmp cursorpos,14
jz nokeypress
call getnamepos
inc cursorpos
mov al,currentkey
mov [es:bx+1],al
mov byte ptr [es:bx+2],0
mov byte ptr [es:bx+3],1
jmp afterkey
nokeypress: ret
afterkey: call showopbox
call shownames
call showslots
call showsaveops
call worktoscreenm
ret
endp
Getnamepos proc near
mov al,currentslot
mov ah,0
mov cx,17
mul cx
mov dx,seg savenames
mov es,dx
mov bx,offset es:savenames
add bx,ax
mov al,cursorpos
mov ah,0
add bx,ax
ret
endp
Showopbox proc near
mov ds,tempgraphics
mov di,opsx
mov bx,opsy
mov al,0
mov ah,0
call showframe
mov ds,tempgraphics
mov di,opsx
mov bx,opsy+55
mov al,4
mov ah,0
call showframe
ret
endp
Showloadops proc near
mov ds,tempgraphics
mov di,opsx+128+4
mov bx,opsy+12
mov al,1
mov ah,0
call showframe
mov ds,tempgraphics
mov di,opsx+176+2
mov bx,opsy+60-4
mov al,5
mov ah,0
call showframe
mov di,opsx+104
mov bx,opsy+14
mov al,55
mov dl,101
call printmessage
ret
endp
Showsaveops proc near
mov ds,tempgraphics
mov di,opsx+128+4
mov bx,opsy+12
mov al,1
mov ah,0
call showframe
mov ds,tempgraphics
mov di,opsx+176+2
mov bx,opsy+60-4
mov al,5
mov ah,0
call showframe
mov di,opsx+104
mov bx,opsy+14
mov al,54
mov dl,101
call printmessage
ret
endp
Selectslot proc near
cmp commandtype,244
jz alreadysel
mov commandtype,244
mov al,45
call commandonly
alreadysel: mov ax,mousebutton
cmp ax,1
jnz noselslot
cmp ax,oldbutton
jz noselslot
cmp loadingorsave,3
jnz notnocurs
dec loadingorsave
notnocurs: call oldtonames
mov ax,mousey
sub ax,opsy+4
mov cl,-1
getslotnum: inc cl
sub ax,11
jnc getslotnum
mov currentslot,cl
call delpointer
call showopbox
call showslots
call shownames
cmp loadingorsave,1
jz isloadmode
call showsaveops
call readmouse
call showpointer
call worktoscreen
call delpointer
ret
isloadmode: call showloadops
call readmouse
call showpointer
call worktoscreen
call delpointer
ret
noselslot: ret
endp
Showslots proc near
mov di,opsx+7
mov bx,opsy+8
mov al,2
mov ds,tempgraphics
mov ah,0
call showframe
mov di,opsx+10
mov bx,opsy+11
mov cl,0
slotloop: push cx di bx
cmp cl,currentslot
jnz nomatchslot
mov al,3
mov ds,tempgraphics
mov ah,0
call showframe
nomatchslot: pop bx di cx
add bx,10
inc cl
cmp cl,7
jnz slotloop
ret
endp
Shownames proc near
mov dx,seg savenames
mov es,dx
mov si,offset es:savenames+1
mov di,opsx+21
mov bx,opsy+10
mov cl,0
shownameloop: push cx di es bx si
mov al,4
cmp cl,currentslot
jnz nomatchslot2
cmp loadingorsave,2
jnz loadmode
mov dx,si
mov cx,15
add si,15
zerostill: dec si
dec cl
cmp byte ptr [es:si],1
jnz foundcharacter
jmp zerostill
foundcharacter: mov cursorpos,cl
mov byte ptr [es:si],"/"
mov byte ptr [es:si+1],0
push si
mov si,dx
mov dl,200
mov ah,0
call printdirect
pop si
mov byte ptr [es:si],0
mov byte ptr [es:si+1],1
jmp afterprintname
loadmode: mov al,0
mov dl,200
mov ah,0
mov charshift,91
call printdirect
mov charshift,0
jmp afterprintname
nomatchslot2: mov dl,200
mov ah,0
call printdirect
afterprintname: pop si bx es di cx
add si,17
add bx,10
inc cl
cmp cl,7
jnz shownameloop
ret
endp
Dosreturn proc near
cmp commandtype,250
jz alreadydos
mov commandtype,250
mov al,46
call commandonly
alreadydos: mov ax,mousebutton
and ax,1
jz nodos
quickquit2: call soundend
call removeemm
quickquit: if recording
call saverec
mov bx,rechandle
mov ah,3eh
int 21h
endif
if playback
mov bx,rechandle
mov ah,3eh
int 21h
endif
call resetkeyboard
mov bl,31h
mov al,0
mov ah,12h
int 10h
call vsync
mov ah,0
mov al,3
int 10h
call error
mov ax,4c00h
int 21h
ret
endp
Error proc near
cmp gameerror,1
jz error1
cmp gameerror,2
jz error2
cmp gameerror,3
jz error3
cmp gameerror,4
jz error4
cmp gameerror,5
jz error5
cmp gameerror,6
jz error6
cmp gameerror,7
jz error7
cmp gameerror,8
jz error8
ret
error1: mov dx,offset cs:gameerror1
jmp generalerror
error2: mov ax,soundbaseadd
sub ax,200h
mov cl,4
shr ax,cl
add al,"0"
mov bx,offset cs:error2patch
mov [cs:bx+1],al
mov dx,offset cs:gameerror2
call generalerror
mov dx,offset cs:gameinfo
jmp generalerror
error3: mov dx,offset cs:gameerror3
jmp generalerror
error4: mov dx,offset cs:gameerror4
jmp generalerror
error5: mov dx,offset cs:gameerror5
jmp generalerror
error6: mov al,soundint
add al,"0"
mov bx,offset cs:error6patch
mov [cs:bx],al
mov dx,offset cs:gameerror6
call generalerror
mov dx,offset cs:gameinfo
jmp generalerror
error7: mov dx,offset cs:gameerror7
jmp generalerror
error8: mov dx,offset cs:gameerror8
jmp generalerror
generalerror: mov ah,9h
push cs
pop ds
int 21h
ret
nodos: ret
gameerror1: db 13,10,13,10
db "Dreamweb has an Error:",13,10
db "Unable to allocate Expanded Memory."
db 13,10,13,10
db 24h
gameerror2: db 13,10,13,10
db "Dreamweb has an Error:",13,10
db "Sound Blaster card not found at address "
error2patch: db "220 Hex."
db 13,10,13,10
db 24h
gameerror3: db 13,10,13,10
db "Dreamweb has an Error:",13,10
db "Out of Base Memory."
db 13,10,13,10
db 24h
gameerror4: db 13,10,13,10
db "Dreamweb has an Error:",13,10
db "Memory Deallocation problem."
db 13,10,13,10
db 24h
gameerror5: db 13,10,13,10
db "Dreamweb has an Error:",13,10
db "At least 590K of base memory is required."
db 13,10,13,10
db 24h
gameerror6: db 13,10,13,10
db "Dreamweb has an Error:",13,10
db "Sound Blaster not found on interupt "
error6patch: db "0"
db 13,10,13,10
db 24h
gameerror7: db 13,10,13,10
db "Dreamweb has an Error:",13,10
db "Unable to select EMM page."
db 13,10,13,10
db 24h
gameerror8: db 13,10,13,10
db "Dreamweb has an Error:",13,10
db "File not found.c"
error8patch: db 13,10,13,10
db 24h
gameinfo: db "Dreamweb looks for Sound Blaster information in",13,10
db "the BLASTER environment variable (in your AUTOEXEC.BAT)",13,10
db 13,10,"If this is not found then IRQ 7, DMA channel 1 and base",13,10
db "address 220h are assumed.",13,10,13,10
db "To alter any or all of these settings you can specify them",13,10
db "on the command line. For example:",13,10,13,10
db "Type DREAMWEB I7 A220 D1 to run Dreamweb on IRQ 7, DMA",13,10
db " channel 1 and base address 220h"
db 13,10
db " DREAMWEB I5 to run Dreamweb on IRQ 5 and",13,10
db " default address of 220h, DMA 1",13,10
db 13,10
db 24h
endgametext1: db 13,10,13,10
db "Try the Dreamweb CD in your stereo....",13,10
db 13,10,13,10
db 24h
endp
Namestoold proc near
push cs
pop ds
mov si,offset cs:savenames
mov di,zoomspace
mov es,buffers
mov cx,17*4
rep movsb
ret
endp
Oldtonames proc near
push cs
pop es
mov di,offset cs:savenames
mov si,zoomspace
mov ds,buffers
mov cx,17*4
rep movsb
ret
endp
Savefilewrite proc near
mov bx,handle
mov ah,40h
int 21h
ret
endp
Savefileread proc near
mov bx,handle
mov ah,3fh
int 21h
ret
endp
Saveposition proc near
call makeheader
mov al,currentslot
mov ah,0
push ax
mov cx,13
mul cx
mov dx,seg savefiles
mov ds,dx
mov dx,offset savefiles
add dx,ax
call openforsave
mov dx,seg fileheader
mov ds,dx
mov dx,offset fileheader
mov cx,headerlen
call savefilewrite
mov dx,seg fileheader
mov es,dx
mov di,offset es:filedata
pop ax
mov cx,17
mul cx
mov dx,seg savenames
mov ds,dx
mov dx,offset savenames
add dx,ax
call saveseg
mov dx,seg startvars
mov ds,dx
mov dx,offset startvars
call saveseg
mov ds,extras
mov dx,exframedata
call saveseg
mov ds,buffers
mov dx,listofchanges
call saveseg
mov dx,seg madeuproomdat
mov ds,dx
mov dx,offset madeuproomdat
call saveseg
mov dx,seg reelroutines
mov ds,dx
mov dx,offset reelroutines
call saveseg
fquit: call closefile
ret
endp
Loadposition proc near
mov timecount,0
call clearchanges
mov al,currentslot
mov ah,0
push ax
mov cx,13
mul cx
mov dx,seg savefiles
mov ds,dx
mov dx,offset savefiles
add dx,ax
if cd
call openfilefromc
else
call openfile
endif
push cs
pop ds
mov dx,offset cs:fileheader
mov cx,headerlen
call savefileread
push cs
pop es
mov di,offset cs:filedata
pop ax
mov cx,17
mul cx
mov dx,seg savenames
mov ds,dx
mov dx,offset savenames
add dx,ax
call loadseg
mov dx,seg startvars
mov ds,dx
mov dx,offset startvars
call loadseg
mov ds,extras
mov dx,exframedata
call loadseg
mov ds,buffers
mov dx,listofchanges
call loadseg
mov dx,seg madeuproomdat
mov ds,dx
mov dx,offset madeuproomdat
call loadseg
push cs
pop ds
mov dx,offset cs:reelroutines
call loadseg
call closefile
ret
endp
Loadseg proc near
mov bx,handle
mov ax,[es:di]
add di,2
push di
push es
mov cx,ax
mov ah,3fh
int 21h
pop es
pop di
ret
endp
Makeheader proc near
mov dx,seg fileheader
mov es,dx
mov di,offset es:filedata
mov ax,17
call storeit
mov ax,lengthofvars
call storeit
mov ax,lengthofextra
call storeit
mov ax,numchanges*4
call storeit
mov ax,48
call storeit
mov ax,lenofreelrouts
call storeit
ret
endp
Storeit proc near
cmp ax,0
jnz isntblank
inc ax
isntblank: stosw
ret
endp
Saveseg proc near
mov cx,[es:di]
add di,2
push di es
mov bx,handle
mov ah,40h
int 21h
pop es di
ret
endp
Findlen proc near
dec bx
add bx,ax
nextone: cmp cl,[bx]
jnz foundlen
dec bx
dec ax
cmp ax,0
jnz nextone
foundlen: ret
endp
Scanfornames proc near
mov dx,seg savenames
mov es,dx
mov di,offset es:savenames
mov dx,seg savefiles
mov ds,dx
mov dx,offset savefiles
mov cx,7
scanloop: push es ds di dx cx
if cd
call openfilefromc
else
call openfilenocheck
endif
jc notexist
pop cx
inc ch
push cx
push di es
mov dx,seg fileheader
mov ds,dx
mov dx,offset fileheader
mov cx,headerlen
call savefileread
mov dx,seg fileheader
mov es,dx
mov di,offset es:filedata
pop ds dx
call loadseg
mov bx,handle
call closefile
notexist: pop cx dx di ds es
add dx,13
add di,17
dec cl
jnz scanloop
mov al,ch
ret
endp
Decide proc near
call setmode
call loadpalfromiff
call clearpalette
mov pointermode,0
mov watchingtime,0
mov pointerframe,0
mov textaddressx,70
mov textaddressy,182-8
mov textlen,181
mov manisoffscreen,1
call loadsavebox
call showdecisions
call worktoscreen
call fadescreenup
mov getback,0
waitdecide:
cmp quitrequested, 0
jz $1
ret
$1:
call readmouse
call showpointer
call vsync
call dumppointer
call dumptextline
call delpointer
mov bx,offset cs:decidelist
call checkcoords
cmp getback,0
jz waitdecide
cmp getback,4
jz hasloadedroom
call getridoftemp
hasloadedroom: mov textaddressx,13
mov textaddressy,182
mov textlen,240
ret
decidelist: dw opsx+69,opsx+124,opsy+30,opsy+76,newgame
dw opsx+20,opsx+87,opsy+10,opsy+59,dosreturn
dw opsx+123,opsx+190,opsy+10,opsy+59,loadold
dw 0,320,0,200,blank
dw 0ffffh
endp
Showdecisions proc near
call createpanel2
call showopbox
mov ds,tempgraphics
mov di,opsx+17
mov bx,opsy+13
mov al,6
mov ah,0
call showframe
call undertextline
ret
endp
Newgame proc near
cmp commandtype,251
jz alreadynewgame
mov commandtype,251
mov al,47
call commandonly
alreadynewgame: mov ax,mousebutton
cmp ax,1
jnz nonewgame
mov getback,3
nonewgame: ret
endp
Loadold proc near
cmp commandtype,252
jz alreadyloadold
mov commandtype,252
mov al,48
call commandonly
alreadyloadold: mov ax,mousebutton
and ax,1
jz noloadold
call doload
cmp getback,4
jz noloadold
cmp quitrequested, 0
jnz noloadold
call showdecisions
call worktoscreenm
mov getback,0
noloadold: ret
endp
|