aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/dreamgen.h
blob: d7cf4677e3f1a7082212fb74cfa839aac36bfd08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
#ifndef TASMRECOVER_DREAMGEN_STUBS_H__
#define TASMRECOVER_DREAMGEN_STUBS_H__

/* PLEASE DO NOT MODIFY THIS FILE. ALL CHANGES WILL BE LOST! LOOK FOR README FOR DETAILS */


#include "dreamweb/runtime.h"

namespace DreamGen {

class DreamGenContext : public Context {
public:
	void __start();
	void __dispatch_call(uint16 addr);

	const static uint16 kStartvars = 0;
	const static uint16 kProgresspoints = 1;
	const static uint16 kWatchon = 2;
	const static uint16 kShadeson = 3;
	const static uint16 kSecondcount = 4;
	const static uint16 kMinutecount = 5;
	const static uint16 kHourcount = 6;
	const static uint16 kZoomon = 7;
	const static uint16 kLocation = 8;
	const static uint16 kExpos = 9;
	const static uint16 kExframepos = 10;
	const static uint16 kExtextpos = 12;
	const static uint16 kCard1money = 14;
	const static uint16 kListpos = 16;
	const static uint16 kRyanpage = 18;
	const static uint16 kWatchingtime = 19;
	const static uint16 kReeltowatch = 21;
	const static uint16 kEndwatchreel = 23;
	const static uint16 kSpeedcount = 25;
	const static uint16 kWatchspeed = 26;
	const static uint16 kReeltohold = 27;
	const static uint16 kEndofholdreel = 29;
	const static uint16 kWatchmode = 31;
	const static uint16 kDestafterhold = 32;
	const static uint16 kNewsitem = 33;
	const static uint16 kLiftflag = 34;
	const static uint16 kLiftpath = 35;
	const static uint16 kLockstatus = 36;
	const static uint16 kDoorpath = 37;
	const static uint16 kCounttoopen = 38;
	const static uint16 kCounttoclose = 39;
	const static uint16 kRockstardead = 40;
	const static uint16 kGeneraldead = 41;
	const static uint16 kSartaindead = 42;
	const static uint16 kAidedead = 43;
	const static uint16 kBeenmugged = 44;
	const static uint16 kGunpassflag = 45;
	const static uint16 kCanmovealtar = 46;
	const static uint16 kTalkedtoattendant = 47;
	const static uint16 kTalkedtosparky = 48;
	const static uint16 kTalkedtoboss = 49;
	const static uint16 kTalkedtorecep = 50;
	const static uint16 kCardpassflag = 51;
	const static uint16 kMadmanflag = 52;
	const static uint16 kKeeperflag = 53;
	const static uint16 kLasttrigger = 54;
	const static uint16 kMandead = 55;
	const static uint16 kSeed = 56;
	const static uint16 kNeedtotravel = 59;
	const static uint16 kThroughdoor = 60;
	const static uint16 kNewobs = 61;
	const static uint16 kRyanon = 62;
	const static uint16 kCombatcount = 63;
	const static uint16 kLastweapon = 64;
	const static uint16 kDreamnumber = 65;
	const static uint16 kRoomafterdream = 66;
	const static uint16 kShakecounter = 67;
	const static uint16 kSpeechcount = 68;
	const static uint16 kCharshift = 69;
	const static uint16 kKerning = 71;
	const static uint16 kBrightness = 72;
	const static uint16 kRoomloaded = 73;
	const static uint16 kDidzoom = 74;
	const static uint16 kLinespacing = 75;
	const static uint16 kTextaddressx = 77;
	const static uint16 kTextaddressy = 79;
	const static uint16 kTextlen = 81;
	const static uint16 kLastxpos = 82;
	const static uint16 kIcontop = 84;
	const static uint16 kIconleft = 86;
	const static uint16 kItemframe = 88;
	const static uint16 kItemtotran = 89;
	const static uint16 kRoomad = 90;
	const static uint16 kOldsubject = 92;
	const static uint16 kWithobject = 94;
	const static uint16 kWithtype = 95;
	const static uint16 kLookcounter = 96;
	const static uint16 kCommand = 98;
	const static uint16 kCommandtype = 99;
	const static uint16 kOldcommandtype = 100;
	const static uint16 kObjecttype = 101;
	const static uint16 kGetback = 102;
	const static uint16 kInvopen = 103;
	const static uint16 kMainmode = 104;
	const static uint16 kPickup = 105;
	const static uint16 kLastinvpos = 106;
	const static uint16 kExamagain = 107;
	const static uint16 kNewtextline = 108;
	const static uint16 kOpenedob = 109;
	const static uint16 kOpenedtype = 110;
	const static uint16 kOldmapadx = 111;
	const static uint16 kOldmapady = 113;
	const static uint16 kMapadx = 115;
	const static uint16 kMapady = 117;
	const static uint16 kMapoffsetx = 119;
	const static uint16 kMapoffsety = 121;
	const static uint16 kMapxstart = 123;
	const static uint16 kMapystart = 125;
	const static uint16 kMapxsize = 127;
	const static uint16 kMapysize = 128;
	const static uint16 kHavedoneobs = 129;
	const static uint16 kManisoffscreen = 130;
	const static uint16 kRainspace = 131;
	const static uint16 kFacing = 132;
	const static uint16 kLeavedirection = 133;
	const static uint16 kTurntoface = 134;
	const static uint16 kTurndirection = 135;
	const static uint16 kMaintimer = 136;
	const static uint16 kIntrocount = 138;
	const static uint16 kArrowad = 139;
	const static uint16 kCurrentkey = 141;
	const static uint16 kOldkey = 142;
	const static uint16 kUseddirection = 143;
	const static uint16 kCurrentkey2 = 144;
	const static uint16 kTimercount = 145;
	const static uint16 kOldtimercount = 146;
	const static uint16 kMapx = 147;
	const static uint16 kMapy = 148;
	const static uint16 kNewscreen = 149;
	const static uint16 kRyanx = 150;
	const static uint16 kRyany = 151;
	const static uint16 kLastflag = 152;
	const static uint16 kLastflagex = 153;
	const static uint16 kFlagx = 154;
	const static uint16 kFlagy = 155;
	const static uint16 kCurrentex = 156;
	const static uint16 kCurrentfree = 157;
	const static uint16 kCurrentframe = 158;
	const static uint16 kFramesad = 160;
	const static uint16 kDataad = 162;
	const static uint16 kFrsegment = 164;
	const static uint16 kObjectx = 166;
	const static uint16 kObjecty = 168;
	const static uint16 kOffsetx = 170;
	const static uint16 kOffsety = 172;
	const static uint16 kSavesize = 174;
	const static uint16 kSavesource = 176;
	const static uint16 kSavex = 178;
	const static uint16 kSavey = 179;
	const static uint16 kCurrentob = 180;
	const static uint16 kPriority = 181;
	const static uint16 kDestpos = 182;
	const static uint16 kReallocation = 183;
	const static uint16 kRoomnum = 184;
	const static uint16 kNowinnewroom = 185;
	const static uint16 kResetmanxy = 186;
	const static uint16 kNewlocation = 187;
	const static uint16 kAutolocation = 188;
	const static uint16 kMustload = 189;
	const static uint16 kAnswered = 190;
	const static uint16 kSaidno = 191;
	const static uint16 kDoorcheck1 = 192;
	const static uint16 kDoorcheck2 = 193;
	const static uint16 kDoorcheck3 = 194;
	const static uint16 kDoorcheck4 = 195;
	const static uint16 kMousex = 196;
	const static uint16 kMousey = 198;
	const static uint16 kMousebutton = 200;
	const static uint16 kMousebutton1 = 202;
	const static uint16 kMousebutton2 = 204;
	const static uint16 kMousebutton3 = 206;
	const static uint16 kMousebutton4 = 208;
	const static uint16 kOldbutton = 210;
	const static uint16 kOldx = 212;
	const static uint16 kOldy = 214;
	const static uint16 kLastbutton = 216;
	const static uint16 kOldpointerx = 218;
	const static uint16 kOldpointery = 220;
	const static uint16 kDelherex = 222;
	const static uint16 kDelherey = 224;
	const static uint16 kPointerxs = 226;
	const static uint16 kPointerys = 227;
	const static uint16 kDelxs = 228;
	const static uint16 kDelys = 229;
	const static uint16 kPointerframe = 230;
	const static uint16 kPointerpower = 231;
	const static uint16 kAuxpointerframe = 232;
	const static uint16 kPointermode = 233;
	const static uint16 kPointerspeed = 234;
	const static uint16 kPointercount = 235;
	const static uint16 kInmaparea = 236;
	const static uint16 kReelpointer = 237;
	const static uint16 kSlotdata = 239;
	const static uint16 kThisslot = 240;
	const static uint16 kSlotflags = 241;
	const static uint16 kTakeoff = 242;
	const static uint16 kTalkmode = 244;
	const static uint16 kTalkpos = 245;
	const static uint16 kCharacter = 246;
	const static uint16 kPersondata = 247;
	const static uint16 kTalknum = 249;
	const static uint16 kNumberinroom = 250;
	const static uint16 kCurrentcel = 251;
	const static uint16 kOldselection = 252;
	const static uint16 kStopwalking = 253;
	const static uint16 kMouseon = 254;
	const static uint16 kPlayed = 255;
	const static uint16 kTimer1 = 257;
	const static uint16 kTimer2 = 258;
	const static uint16 kTimer3 = 259;
	const static uint16 kWholetimer = 260;
	const static uint16 kTimer1to = 262;
	const static uint16 kTimer2to = 263;
	const static uint16 kTimer3to = 264;
	const static uint16 kWatchdump = 265;
	const static uint16 kCurrentset = 266;
	const static uint16 kLogonum = 268;
	const static uint16 kOldlogonum = 269;
	const static uint16 kNewlogonum = 270;
	const static uint16 kNetseg = 271;
	const static uint16 kNetpoint = 273;
	const static uint16 kKeynum = 275;
	const static uint16 kCursorstate = 276;
	const static uint16 kPressed = 277;
	const static uint16 kPresspointer = 278;
	const static uint16 kGraphicpress = 280;
	const static uint16 kPresscount = 281;
	const static uint16 kKeypadax = 282;
	const static uint16 kKeypadcx = 284;
	const static uint16 kLightcount = 286;
	const static uint16 kFolderpage = 287;
	const static uint16 kDiarypage = 288;
	const static uint16 kMenucount = 289;
	const static uint16 kSymboltopx = 290;
	const static uint16 kSymboltopnum = 291;
	const static uint16 kSymboltopdir = 292;
	const static uint16 kSymbolbotx = 293;
	const static uint16 kSymbolbotnum = 294;
	const static uint16 kSymbolbotdir = 295;
	const static uint16 kSymboltolight = 296;
	const static uint16 kSymbol1 = 297;
	const static uint16 kSymbol2 = 298;
	const static uint16 kSymbol3 = 299;
	const static uint16 kSymbolnum = 300;
	const static uint16 kDumpx = 301;
	const static uint16 kDumpy = 303;
	const static uint16 kWalkandexam = 305;
	const static uint16 kWalkexamtype = 306;
	const static uint16 kWalkexamnum = 307;
	const static uint16 kCursloc = 308;
	const static uint16 kCurslocx = 310;
	const static uint16 kCurslocy = 312;
	const static uint16 kCurpos = 314;
	const static uint16 kMonadx = 316;
	const static uint16 kMonady = 318;
	const static uint16 kGotfrom = 320;
	const static uint16 kMonsource = 322;
	const static uint16 kNumtodo = 324;
	const static uint16 kTimecount = 326;
	const static uint16 kCounttotimed = 328;
	const static uint16 kTimedseg = 330;
	const static uint16 kTimedoffset = 332;
	const static uint16 kTimedy = 334;
	const static uint16 kTimedx = 335;
	const static uint16 kNeedtodumptimed = 336;
	const static uint16 kHandle = 337;
	const static uint16 kLoadingorsave = 339;
	const static uint16 kCurrentslot = 340;
	const static uint16 kCursorpos = 341;
	const static uint16 kColourpos = 342;
	const static uint16 kFadedirection = 343;
	const static uint16 kNumtofade = 344;
	const static uint16 kFadecount = 345;
	const static uint16 kAddtogreen = 346;
	const static uint16 kAddtored = 347;
	const static uint16 kAddtoblue = 348;
	const static uint16 kLastsoundreel = 349;
	const static uint16 kSoundbuffer = 351;
	const static uint16 kSoundbufferad = 353;
	const static uint16 kSoundbufferpage = 355;
	const static uint16 kSoundtimes = 356;
	const static uint16 kNeedsoundbuff = 357;
	const static uint16 kOldint9seg = 358;
	const static uint16 kOldint9add = 360;
	const static uint16 kOldint8seg = 362;
	const static uint16 kOldint8add = 364;
	const static uint16 kOldsoundintseg = 366;
	const static uint16 kOldsoundintadd = 368;
	const static uint16 kSoundbaseadd = 370;
	const static uint16 kDsp_status = 372;
	const static uint16 kDsp_write = 374;
	const static uint16 kDmaaddress = 376;
	const static uint16 kSoundint = 377;
	const static uint16 kSounddmachannel = 378;
	const static uint16 kSampleplaying = 379;
	const static uint16 kTestresult = 380;
	const static uint16 kCurrentirq = 381;
	const static uint16 kSpeechloaded = 382;
	const static uint16 kSpeechlength = 383;
	const static uint16 kVolume = 385;
	const static uint16 kVolumeto = 386;
	const static uint16 kVolumedirection = 387;
	const static uint16 kVolumecount = 388;
	const static uint16 kPlayblock = 389;
	const static uint16 kWongame = 390;
	const static uint16 kLasthardkey = 391;
	const static uint16 kBufferin = 392;
	const static uint16 kBufferout = 394;
	const static uint16 kExtras = 396;
	const static uint16 kWorkspace = 398;
	const static uint16 kMapstore = 400;
	const static uint16 kCharset1 = 402;
	const static uint16 kTempcharset = 404;
	const static uint16 kIcons1 = 406;
	const static uint16 kIcons2 = 408;
	const static uint16 kBuffers = 410;
	const static uint16 kMainsprites = 412;
	const static uint16 kBackdrop = 414;
	const static uint16 kMapdata = 416;
	const static uint16 kSounddata = 418;
	const static uint16 kSounddata2 = 420;
	const static uint16 kRecordspace = 422;
	const static uint16 kFreedat = 424;
	const static uint16 kSetdat = 426;
	const static uint16 kReel1 = 428;
	const static uint16 kReel2 = 430;
	const static uint16 kReel3 = 432;
	const static uint16 kRoomdesc = 434;
	const static uint16 kFreedesc = 436;
	const static uint16 kSetdesc = 438;
	const static uint16 kBlockdesc = 440;
	const static uint16 kSetframes = 442;
	const static uint16 kFreeframes = 444;
	const static uint16 kPeople = 446;
	const static uint16 kReels = 448;
	const static uint16 kCommandtext = 450;
	const static uint16 kPuzzletext = 452;
	const static uint16 kTraveltext = 454;
	const static uint16 kTempgraphics = 456;
	const static uint16 kTempgraphics2 = 458;
	const static uint16 kTempgraphics3 = 460;
	const static uint16 kTempsprites = 462;
	const static uint16 kTextfile1 = 464;
	const static uint16 kTextfile2 = 466;
	const static uint16 kTextfile3 = 468;
	const static uint16 kBlinkframe = 470;
	const static uint16 kBlinkcount = 471;
	const static uint16 kReasseschanges = 472;
	const static uint16 kPointerspath = 473;
	const static uint16 kManspath = 474;
	const static uint16 kPointerfirstpath = 475;
	const static uint16 kFinaldest = 476;
	const static uint16 kDestination = 477;
	const static uint16 kLinestartx = 478;
	const static uint16 kLinestarty = 480;
	const static uint16 kLineendx = 482;
	const static uint16 kLineendy = 484;
	const static uint16 kIncrement1 = 486;
	const static uint16 kIncrement2 = 488;
	const static uint16 kLineroutine = 490;
	const static uint16 kLinepointer = 491;
	const static uint16 kLinedirection = 492;
	const static uint16 kLinelength = 493;
	const static uint16 kLiftsoundcount = 494;
	const static uint16 kEmmhandle = 495;
	const static uint16 kEmmpageframe = 497;
	const static uint16 kEmmhardwarepage = 499;
	const static uint16 kCh0emmpage = 500;
	const static uint16 kCh0offset = 502;
	const static uint16 kCh0blockstocopy = 504;
	const static uint16 kCh0playing = 506;
	const static uint16 kCh0repeat = 507;
	const static uint16 kCh0oldemmpage = 508;
	const static uint16 kCh0oldoffset = 510;
	const static uint16 kCh0oldblockstocopy = 512;
	const static uint16 kCh1playing = 514;
	const static uint16 kCh1emmpage = 515;
	const static uint16 kCh1offset = 517;
	const static uint16 kCh1blockstocopy = 519;
	const static uint16 kCh1blocksplayed = 521;
	const static uint16 kSoundbufferwrite = 523;
	const static uint16 kSoundemmpage = 525;
	const static uint16 kSpeechemmpage = 527;
	const static uint16 kCurrentsample = 529;
	const static uint16 kRoomssample = 530;
	const static uint16 kGameerror = 531;
	const static uint16 kHowmuchalloc = 532;
	const static uint16 kReelroutines = 534;
	const static uint16 kReelcalls = 991;
	const static uint16 kRoombyroom = 1214;
	const static uint16 kR0 = 1326;
	const static uint16 kR1 = 1327;
	const static uint16 kR2 = 1331;
	const static uint16 kR6 = 1350;
	const static uint16 kR8 = 1357;
	const static uint16 kR9 = 1373;
	const static uint16 kR10 = 1380;
	const static uint16 kR11 = 1384;
	const static uint16 kR12 = 1388;
	const static uint16 kR13 = 1392;
	const static uint16 kR14 = 1405;
	const static uint16 kR20 = 1439;
	const static uint16 kR22 = 1461;
	const static uint16 kR23 = 1492;
	const static uint16 kR25 = 1505;
	const static uint16 kR26 = 1527;
	const static uint16 kR27 = 1549;
	const static uint16 kR28 = 1574;
	const static uint16 kR29 = 1593;
	const static uint16 kR45 = 1609;
	const static uint16 kR46 = 1616;
	const static uint16 kR47 = 1653;
	const static uint16 kR52 = 1666;
	const static uint16 kR53 = 1670;
	const static uint16 kR55 = 1677;
	const static uint16 kSpritename1 = 1819;
	const static uint16 kSpritename3 = 1832;
	const static uint16 kIdname = 1845;
	const static uint16 kCharacterset1 = 1857;
	const static uint16 kCharacterset2 = 1870;
	const static uint16 kCharacterset3 = 1883;
	const static uint16 kSamplename = 1896;
	const static uint16 kBasicsample = 1909;
	const static uint16 kIcongraphics0 = 1922;
	const static uint16 kIcongraphics1 = 1935;
	const static uint16 kExtragraphics1 = 1948;
	const static uint16 kIcongraphics8 = 1961;
	const static uint16 kMongraphicname = 1974;
	const static uint16 kMongraphics2 = 1987;
	const static uint16 kCityname = 2000;
	const static uint16 kTravelgraphic1 = 2013;
	const static uint16 kTravelgraphic2 = 2026;
	const static uint16 kDiarygraphic = 2039;
	const static uint16 kMonitorfile1 = 2052;
	const static uint16 kMonitorfile2 = 2065;
	const static uint16 kMonitorfile10 = 2078;
	const static uint16 kMonitorfile11 = 2091;
	const static uint16 kMonitorfile12 = 2104;
	const static uint16 kMonitorfile13 = 2117;
	const static uint16 kMonitorfile20 = 2130;
	const static uint16 kMonitorfile21 = 2143;
	const static uint16 kMonitorfile22 = 2156;
	const static uint16 kMonitorfile23 = 2169;
	const static uint16 kMonitorfile24 = 2182;
	const static uint16 kFoldertext = 2195;
	const static uint16 kDiarytext = 2208;
	const static uint16 kPuzzletextname = 2221;
	const static uint16 kTraveltextname = 2234;
	const static uint16 kIntrotextname = 2247;
	const static uint16 kEndtextname = 2260;
	const static uint16 kCommandtextname = 2273;
	const static uint16 kVolumetabname = 2286;
	const static uint16 kFoldergraphic1 = 2299;
	const static uint16 kFoldergraphic2 = 2312;
	const static uint16 kFoldergraphic3 = 2325;
	const static uint16 kSymbolgraphic = 2338;
	const static uint16 kGungraphic = 2351;
	const static uint16 kMonkface = 2364;
	const static uint16 kTitle0graphics = 2377;
	const static uint16 kTitle1graphics = 2390;
	const static uint16 kTitle2graphics = 2403;
	const static uint16 kTitle3graphics = 2416;
	const static uint16 kTitle4graphics = 2429;
	const static uint16 kTitle5graphics = 2442;
	const static uint16 kTitle6graphics = 2455;
	const static uint16 kTitle7graphics = 2468;
	const static uint16 kPalettescreen = 2481;
	const static uint16 kCurrentfile = 2970;
	const static uint16 kDmaaddresses = 5118;
	const static uint16 kFileheader = 6091;
	const static uint16 kFiledata = 6141;
	const static uint16 kExtradata = 6181;
	const static uint16 kRoomdata = 6187;
	const static uint16 kMadeuproomdat = 7979;
	const static uint16 kRoomscango = 8011;
	const static uint16 kRoompics = 8027;
	const static uint16 kOplist = 8042;
	const static uint16 kInputline = 8045;
	const static uint16 kLinedata = 8173;
	const static uint16 kPresslist = 8573;
	const static uint16 kSavenames = 8579;
	const static uint16 kSavefiles = 8698;
	const static uint16 kRecname = 8789;
	const static uint16 kQuitrequested = 8802;
	const static uint16 kStak = 8803;
	const static uint16 kBlocktextdat = (0);
	const static uint16 kPersonframes = (0);
	const static uint16 kDebuglevel1 = (0);
	const static uint16 kDebuglevel2 = (0);
	const static uint16 kPlayback = (0);
	const static uint16 kMap = (0);
	const static uint16 kSettextdat = (0);
	const static uint16 kSpanish = (0);
	const static uint16 kFramedata = (0);
	const static uint16 kRecording = (0);
	const static uint16 kFlags = (0);
	const static uint16 kGerman = (0);
	const static uint16 kTextunder = (0);
	const static uint16 kForeign = (0);
	const static uint16 kPathdata = (0);
	const static uint16 kDemo = (0);
	const static uint16 kExframedata = (0);
	const static uint16 kIntextdat = (0);
	const static uint16 kFreetextdat = (0);
	const static uint16 kFrframedata = (0);
	const static uint16 kSettext = (0+(130*2));
	const static uint16 kOpeninvlist = (0+(180*10));
	const static uint16 kRyaninvlist = (0+(180*10)+32);
	const static uint16 kPointerback = (0+(180*10)+32+60);
	const static uint16 kMapflags = (0+(180*10)+32+60+(32*32));
	const static uint16 kStartpal = (0+(180*10)+32+60+(32*32)+(11*10*3));
	const static uint16 kEndpal = (0+(180*10)+32+60+(32*32)+(11*10*3)+768);
	const static uint16 kMaingamepal = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768);
	const static uint16 kSpritetable = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768);
	const static uint16 kSetlist = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32));
	const static uint16 kFreelist = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5));
	const static uint16 kExlist = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5));
	const static uint16 kPeoplelist = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5)+(100*5));
	const static uint16 kZoomspace = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5)+(100*5)+(12*5));
	const static uint16 kPrintedlist = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5)+(100*5)+(12*5)+(46*40));
	const static uint16 kListofchanges = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5)+(100*5)+(12*5)+(46*40)+(5*80));
	const static uint16 kUndertimedtext = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5)+(100*5)+(12*5)+(46*40)+(5*80)+(250*4));
	const static uint16 kRainlist = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5)+(100*5)+(12*5)+(46*40)+(5*80)+(250*4)+(256*24));
	const static uint16 kInitialreelrouts = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5)+(100*5)+(12*5)+(46*40)+(5*80)+(250*4)+(256*24)+(6*64));
	const static uint16 kInitialvars = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5)+(100*5)+(12*5)+(46*40)+(5*80)+(250*4)+(256*24)+(6*64)+991-534);
	const static uint16 kLengthofbuffer = (0+(180*10)+32+60+(32*32)+(11*10*3)+768+768+768+(32*32)+(128*5)+(80*5)+(100*5)+(12*5)+(46*40)+(5*80)+(250*4)+(256*24)+(6*64)+991-534+68-0);
	const static uint16 kReellist = (0+(36*144));
	const static uint16 kIntext = (0+(38*2));
	const static uint16 kLengthofmap = (0+(66*60));
	const static uint16 kFreetext = (0+(82*2));
	const static uint16 kBlocktext = (0+(98*2));
	const static uint16 kBlocks = (0+192);
	const static uint16 kFrframes = (0+2080);
	const static uint16 kExframes = (0+2080);
	const static uint16 kFrames = (0+2080);
	const static uint16 kExdata = (0+2080+30000);
	const static uint16 kExtextdat = (0+2080+30000+(16*114));
	const static uint16 kExtext = (0+2080+30000+(16*114)+((114+2)*2));
	const static uint16 kLengthofextra = (0+2080+30000+(16*114)+((114+2)*2)+18000);
	const static uint16 kPersontxtdat = (0+24);
	const static uint16 kPersontext = (0+24+(1026*2));
	const static uint16 kInputport = (0x63);
	const static uint16 kCd = (1);
	const static uint16 kUndertextsizey = (10);
	const static uint16 kNumexobjects = (114);
	const static uint16 kZoomy = (132);
	const static uint16 kFreedatlen = (16*80);
	const static uint16 kUndertextsizex = (180);
	const static uint16 kExtextlen = (18000);
	const static uint16 kLenofmapstore = (22*8*20*8);
	const static uint16 kUndertimedysize = (24);
	const static uint16 kNumchanges = (250);
	const static uint16 kExframeslen = (30000);
	const static uint16 kTablesize = (32);
	const static uint16 kScreenwidth = (320);
	const static uint16 kKeypadx = (36+112);
	const static uint16 kItempicsize = (44);
	const static uint16 kDiaryy = (48+12);
	const static uint16 kOpsy = (52);
	const static uint16 kSymboly = (56);
	const static uint16 kInventy = (58);
	const static uint16 kMenuy = (60);
	const static uint16 kOpsx = (60);
	const static uint16 kMaplength = (60);
	const static uint16 kHeaderlen = (6187-6091);
	const static uint16 kSymbolx = (64);
	const static uint16 kSetdatlen = (64*128);
	const static uint16 kMapwidth = (66);
	const static uint16 kTextstart = (66*2);
	const static uint16 kMaplen = (66*60);
	const static uint16 kDiaryx = (68+24);
	const static uint16 kLengthofvars = (68-0);
	const static uint16 kKeypady = (72);
	const static uint16 kZoomx = (8);
	const static uint16 kInventx = (80);
	const static uint16 kMenux = (80+40);
	const static uint16 kLenofreelrouts = (991-534);

	void bothchannels();
	void usewire();
	void getnamepos();
	void drawitall();
	void clearstartpal();
	void femalefan();
	void greyscalesum();
	void showgamereel();
	void identifyob();
	void trysoundalloc();
	void uselighter();
	void showmenu();
	void usepoolreader();
	void showgroup();
	void startdmablock();
	void useopenbox();
	void clearbuffers();
	void neterror();
	void storeit();
	void lockeddoorway();
	void isitworn();
	void putundertimed();
	void dumpmap();
	void multidump();
	void channel0only();
	void worktoscreenm();
	void removeemm();
	void mansatstill();
	void getobtextstart();
	void loadfolder();
	void decide();
	void dumppointer();
	void reelsonscreen();
	void getridofreels();
	void readkey();
	void louis();
	void entrytexts();
	void getreelstart();
	void buttonenter();
	void checkinput();
	void crosshair();
	void bresenhams();
	void getbackfromops();
	void frameoutv();
	void restoreall();
	void screenupdate();
	void addlength();
	void usetimedtext();
	void putundercentre();
	void checkobjectsize();
	void commandonly();
	void adjustlen();
	void deallocatemem();
	void mainscreen();
	void watchreel();
	void showfolder();
	void turnanypathoff();
	void openfilefromc();
	void gettime();
	void clearwork();
	void loadtraveltext();
	void worktoscreen();
	void getexpos();
	void fadedos();
	void multiget();
	void fadeupmonfirst();
	void drawfloor();
	void loadkeypad();
	void findsource();
	void clearendpal();
	void findtext1();
	void isryanholding();
	void interupttest();
	void usecashcard();
	void usewall();
	void opentomb();
	void buttonfour();
	void dosometalk();
	void lockmon();
	void dochange();
	void getanyaddir();
	void showsaveops();
	void intromonks1();
	void resetlocation();
	void oldtonames();
	void showdiscops();
	void advisor();
	void additionaltext();
	void kernchars();
	void othersmoker();
	void autosetwalk();
	void setuptimedtemp();
	void blocknametext();
	void useelevator5();
	void useelevator4();
	void useelevator1();
	void attendant();
	void useelevator3();
	void useelevator2();
	void buttonone();
	void keyboardread();
	void deltextline();
	void entercode();
	void getopenedsize();
	void getpersframe();
	void doshake();
	void resetkeyboard();
	void showpanel();
	void soundstartup();
	void slabdoora();
	void fadeupyellows();
	void slabdoorc();
	void slabdoorb();
	void slabdoore();
	void slabdoord();
	void adjustup();
	void readsetdata();
	void loadintotemp();
	void loadintroroom();
	void saveseg();
	void showblink();
	void mousecall();
	void train();
	void watchcount();
	void fadedownmon();
	void loadcart();
	void splitintolines();
	void bartender();
	void eden();
	void showdiary();
	void purgealocation();
	void updatepeople();
	void slabdoorf();
	void addtopeoplelist();
	void hangoncurs();
	void sparkydrip();
	void compare();
	void printcurs();
	void convertkey();
	void outofopen();
	void dealwithspecial();
	void dircom();
	void liftsprite();
	void dumpkeypad();
	void dumpzoom();
	void endgameseq();
	void cancelch0();
	void setbotleft();
	void findfirstpath();
	void showallfree();
	void loadold();
	void loadtempcharset();
	void useslab();
	void aboutturn();
	void usealtar();
	void createpanel2();
	void turnonpower();
	void manasleep2();
	void moretalk();
	void printslow();
	void loadroom();
	void starttalk();
	void delchar();
	void getanyad();
	void endgame();
	void monprint();
	void usepipe();
	void startloading();
	void getunderzoom();
	void candles();
	void backobject();
	void rollendcredits2();
	void reminders();
	void selectslot2();
	void runtap();
	void domix();
	void priesttext();
	void paneltomap();
	void obname();
	void getridoftemp3();
	void getridoftemp2();
	void usebalcony();
	void runendseq();
	void dumpdiarykeys();
	void disablesoundint();
	void checkifset();
	void showallex();
	void showrain();
	void openpoolboss();
	void buttontwo();
	void fillopen();
	void delsprite();
	void getroomspaths();
	void dumptextline();
	void fadescreendownhalf();
	void useplate();
	void candles1();
	void lookininterface();
	void manasleep();
	void isitdescribed();
	void hotelbell();
	void loadspeech();
	void cls();
	void printsprites();
	void dumptimedtext();
	void showallobs();
	void getnumber();
	void adjustleft();
	void calledenslift();
	void useclearbox();
	void entryanims();
	void nextfolder();
	void getfreead();
	void showarrows();
	void walkintoroom();
	void getridoftemptext();
	void printoutermon();
	void setuppit();
	void showpcx();
	void showdecisions();
	void checkspeed();
	void printchar();
	void showkeypad();
	void obtoinv();
	void removeobfrominv();
	void usecoveredbox();
	void openyourneighbour();
	void fadescreenuphalf();
	void getridoftempcharset();
	void heavy();
	void endpaltostart();
	void showkeys();
	void usekey();
	void locklighton();
	void useladderb();
	void spriteupdate();
	void usetempcharset();
	void discops();
	void printdirect();
	void delthisone();
	void makebackob();
	void middlepanel();
	void dumpwatch();
	void saveload();
	void monitorlogo();
	void loadposition();
	void wornerror();
	void entersymbol();
	void showword();
	void dirfile();
	void setmode();
	void walktotext();
	void pickupconts();
	void locklightoff();
	void wearwatch();
	void runintroseq();
	void doblocks();
	void showbyte();
	void allpalette();
	void findormake();
	void nextsymbol();
	void monks2text();
	void poolguard();
	void clearpalette();
	void cantdrop();
	void maptopanel();
	void calcmapad();
	void getridofall();
	void copper();
	void folderhints();
	void openhoteldoor();
	void removesetobject();
	void checkifperson();
	void frameoutfx();
	void blank();
	void drinker();
	void nextcolon();
	void placefreeobject();
	void delpointer();
	void loopchannel0();
	void initrain();
	void showleftpage();
	void rockstar();
	void adjustright();
	void putunderzoom();
	void vsync();
	void showseconduse();
	void turnpathoff();
	void findinvpos();
	void usetext();
	void hangonpq();
	void liftnoise();
	void workoutframes();
	void getbackfromob();
	void dumpsymbox();
	void loadgame();
	void getridoftemp();
	void showcity();
	void dumpsymbol();
	void disablepath();
	void buttonsix();
	void intro2text();
	void showouterpad();
	void getkeyandlogo();
	void selectob();
	void checkcoords();
	void dumpmenu();
	void chewy();
	void accesslighton();
	void dosreturn();
	void titles();
	void quickquit();
	void showpointer();
	void usecooker();
	void loadmenu();
	void checkforemm();
	void checkifpathison();
	void smallcandle();
	void receptionist();
	void selectslot();
	void edenscdplayer();
	void readoneblock();
	void fadeupmon();
	void paltoendpal();
	void fadetowhite();
	void textformonk();
	void loadsavebox();
	void fadescreenup();
	void soundend();
	void redes();
	void errormessage1();
	void clearchanges();
	void errormessage3();
	void deletetaken();
	void putundermenu();
	void checkifex();
	void intromagic2();
	void findobname();
	void edeninbath();
	void intromagic1();
	void showdiarypage();
	void useshield();
	void getbacktoops();
	void rollendcredits();
	void intro1text();
	void getmapad();
	void playchannel1();
	void playchannel0();
	void usemon();
	void steady();
	void pixelcheckset();
	void reexfrominv();
	void fillspace();
	void talk();
	void usedryer();
	void dumpeverything();
	void usehatch();
	void zoom();
	void outofinv();
	void viewfolder();
	void walking();
	void diarykeyp();
	void readabyte();
	void showframe();
	void random();
	void obicons();
	void frameoutbh();
	void channel1only();
	void playguitar();
	void lastfolder();
	void transfermap();
	void showreelframe();
	void showmonk();
	void diarykeyn();
	void set16colpalette();
	void convicons();
	void interviewer();
	void sparky();
	void purgeanitem();
	void madman();
	void createpanel();
	void turnpathon();
	void showmainops();
	void madmanstelly();
	void constant();
	void loadroomssample();
	void getblockofpixel();
	void paltostartpal();
	void bossman();
	void getridofpit();
	void convnum();
	void nothelderror();
	void readheader();
	void getsetad();
	void getyad();
	void reconstruct();
	void soldier1();
	void getundercentre();
	void checkforexit();
	void loadseg();
	void makeheader();
	void setkeyboardint();
	void priest();
	void readmouse();
	void powerlighton();
	void savefilewrite();
	void printmessage2();
	void loadnews();
	void rollem();
	void makeworn();
	void examineobtext();
	void startup();
	void savegame();
	void startpaltoend();
	void showicon();
	void findopenpos();
	void describeob();
	void deleteexframe();
	void folderexit();
	void useplinth();
	void wheelsound();
	void actualsave();
	void autolook();
	void checkbasemem();
	void transfertext();
	void searchforsame();
	void enablesoundint();
	void getback1();
	void setlocation();
	void fadefromwhite();
	void animpointer();
	void usewindow();
	void wearshades();
	void onedigit();
	void pitinterupt();
	void deleverything();
	void fadescreendown();
	void findxyfrompath();
	void namestoold();
	void getxad();
	void openinv();
	void lookatplace();
	void useaxe();
	void examineob();
	void buttonnought();
	void useelvdoor();
	void putbackobstuff();
	void useladder();
	void realcredits();
	void handclap();
	void smokebloke();
	void showexit();
	void printundermon();
	void buttonnine();
	void findallopen();
	void loadintotemp3();
	void loadintotemp2();
	void gamer();
	void personnametext();
	void quitsymbol();
	void readfromfile();
	void initialinv();
	void showslots();
	void dofade();
	void hangon();
	void settopright();
	void findsetobject();
	void singlekey();
	void seecommandtail();
	void getundertimed();
	void hangone();
	void carparkdrip();
	void usediary();
	void deleteexobject();
	void frameoutnm();
	void moneypoke();
	void destselect();
	void restoreems();
	void lastdest();
	void removefreeobject();
	void trapdoor();
	void openlouis();
	void buttonthree();
	void getundermenu();
	void randomnumber();
	void lookatcard();
	void helicopter();
	void scrollmonitor();
	void setsoundoff();
	void setpickup();
	void dropobject();
	void printmessage();
	void reexfromopen();
	void fillryan();
	void loadtemptext();
	void usestereo();
	void showcurrentfile();
	void copyname();
	void look();
	void setmouse();
	void checkone();
	void transferinv();
	void candles2();
	void pickupob();
	void error();
	void showopbox();
	void clearbeforeload();
	void biblequote();
	void doload();
	void afterintroroom();
	void blockget();
	void usetrainer();
	void allocatework();
	void addtopresslist();
	void walkandexamine();
	void dmaend();
	void quickquit2();
	void twodigitnum();
	void madmantext();
	void dumpcurrent();
	void textforend();
	void showdiarykeys();
	void dontloadseg();
	void madmode();
	void intro3text();
	void allocatemem();
	void sortoutmap();
	void doorway();
	void useopened();
	void inventory();
	void powerlightoff();
	void getroomdata();
	void showoutermenu();
	void signon();
	void deleteextext();
	void foghornsound();
	void showrightpage();
	void openhoteldoor2();
	void examicon();
	void showgun();
	void switchryanon();
	void louischair();
	void saveems();
	void locationpic();
	void getflagunderp();
	void dolook();
	void opentvdoor();
	void triggermessage();
	void finalframe();
	void plotreel();
	void swapwithopen();
	void makesprite();
	void dreamweb();
	void droperror();
	void openfilenocheck();
	void calledensdlift();
	void checkinside();
	void gates();
	void selectlocation();
	void showwatch();
	void turnanypathon();
	void restorereels();
	void setwalk();
	void printboth();
	void useroutine();
	void zoomicon();
	void hotelcontrol();
	void findpathofpoint();
	void issetobonmap();
	void getdestinfo();
	void drunk();
	void dumpblink();
	void setuptimeduse();
	void grafittidoor();
	void input();
	void nextdest();
	void getdimension();
	void makecaps();
	void read();
	void fadescreenups();
	void checkdest();
	void initman();
	void loadpalfromiff();
	void facerightway();
	void startup1();
	void findlen();
	void showsymbol();
	void mugger();
	void atmospheres();
	void out22c();
	void loadpersonal();
	void gettingshot();
	void settopleft();
	void searchforstring();
	void clearsprites();
	void obpicture();
	void selectopenob();
	void widedoor();
	void security();
	void printasprite();
	void buttonfive();
	void soundonreels();
	void usegun();
	void autoappear();
	void findnextcolon();
	void readmouse4();
	void openryan();
	void readmouse1();
	void showman();
	void readmouse2();
	void newplace();
	void movemap();
	void loadsample();
	void usecardreader1();
	void usecardreader2();
	void usecardreader3();
	void tattooman();
	void usehandle();
	void quitkey();
	void openfile();
	void usecharset1();
	void makenextblock();
	void showpuztext();
	void addalong();
	void width160();
	void incryanpage();
	void dodoor();
	void eraseoldobs();
	void buttoneight();
	void opensarters();
	void findexobject();
	void errormessage2();
	void usechurchhole();
	void searchforfiles();
	void monkspeaking();
	void fadecalculation();
	void waitframes();
	void clearrest();
	void getreelframeax();
	void barwoman();
	void roomname();
	void credits();
	void madmanrun();
	void randomnum1();
	void keeper();
	void afternewroom();
	void getexad();
	void aide();
	void openforsave();
	void closefile();
	void delcurs();
	void randomaccess();
	void calcfrframe();
	void intromagic3();
	void initialmoncols();
	void checkforshake();
	void usebuttona();
	void cancelch1();
	void getnextword();
	void generalerror();
	void actualload();
	void allocateload();
	void saveposition();
	void mode640x480();
	void openeden();
	void execcommand();
	void obsthatdothings();
	void updatesymbolbot();
	void findpuztext();
	void usechurchgate();
	void monkandryan();
	void allocatebuffers();
	void swapwithinv();
	void usecontrol();
	void buttonseven();
	void redrawmainscrn();
	void finishedwalking();
	void findallryan();
	void channel0tran();
	void buttonpress();
	void parseblaster();
	void callhotellift();
	void makemainscreen();
	void intromonks2();
	void usewinch();
	void setbotright();
	void readmouse3();
	void showfirstuse();
	void setupemm();
	void usefullcart();
	void transfertoex();
	void getlocation();
	void geteitherad();
	void placesetobject();
	void drawflags();
	void zoomonoff();
	void updatesymboltop();
	void showryanpage();
	void printlogo();
	void allpointer();
	void checksoundint();
	void clearreels();
	void malefan();
	void dosaveload();
	void createname();
	void readcitypic();
	void getpersontext();
	void intoinv();
	void showtime();
	void parser();
	void hangonw();
	void intro();
	void hangonp();
	void fadescreendowns();
	void showloadops();
	void getridoftempsp();
	void scanfornames();
	void setallchanges();
	void newgame();
	void examinventory();
	void standardload();
	void undertextline();
	void findroominloc();
	void sitdowninbar();
	void shownames();
	void savefileread();
	void emergencypurge();
	void usemenu();
	void alleybarksound();
	void usecart();
	void intromusic();
	void makename();
	void processtrigger();
	void monmessage();
	void readdesticon();
	void randomnum2();
	void loadsecondsample();
	void transfercontoex();
	void multiput();
	void isitright();
	void businessman();
	void switchryanoff();
	void commandwithob();
	void panelicons1();
	void adjustdown();
	void withwhat();
	void openob();
	void createfile();
	void userailing();
	void accesslightoff();
	void usehole();
	void useobject();
	void mainman();
	void volumeadjust();
	void checkiffree();
};
}

#endif