-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathprism.zil
5300 lines (5002 loc) · 178 KB
/
prism.zil
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
"PRISM for
A MIND FOREVER VOYAGING
(c) Copyright 1985 Infocom, Inc. All Rights Reserved."
<ROUTINE PERELMAN-LEAVES-VIEW ()
<COND (<VISIBLE? ,PERELMAN>
<TELL CR "A ">
<PRINTD ,CC-STAFFER>
<TELL
" dashes in and hands Perelman a note before leaving. Glancing at the note,
Perelman walks to a point beyond your field of vision. A moment later, you
hear a click, as of a switch being turned." CR>)>>
<ROUTINE PERELMAN-RETURNS-TO-VIEW ()
<COND (<VISIBLE? ,PERELMAN>
<TELL CR
"A moment later, Perelman walks back into your field of vision." CR>)>
<RTRUE>>
<ROUTINE I-MESSAGE-C ("AUX" OLD-WINNER)
<MOVE ,MESSAGE-C ,PRISM-MESSAGES-DIRECTORY>
<NAME-MESSAGE ,MESSAGE-C>
<PUT ,SIM-LEVEL-TABLE 0 0> ;"this allows you to enter Sim. Mode"
<QUEUE I-MESSAGE-M 875>
<PERELMAN-LEAVES-VIEW>
<SET OLD-WINNER ,WINNER>
<SETG WINNER ,PLAYER>
<TELL CR ,MESSAGE-LINE>
<PERFORM ,V?READ ,MESSAGE-C>
<SETG WINNER .OLD-WINNER>
<UPDATE-LIBRARY-BOX>
<PERELMAN-RETURNS-TO-VIEW>>
<ROUTINE I-MESSAGE-D ("AUX" OLD-WINNER)
<COND (,SIMULATING
<RFALSE>)
(<IN? ,MESSAGE-D ,PRISM-MESSAGES-DIRECTORY>
<SETG REVIEWING-RECORDINGS T>
<PERELMAN-LEAVES-VIEW>
<TELL CR ,MESSAGE-LINE ,PRIVATE-LINE
"We're getting ready to review your new recordings. I hope
everything's there this time.\"" CR>
<PERELMAN-RETURNS-TO-VIEW>)
(T
<SETG REVIEWING-RECORDINGS T>
<MOVE ,MESSAGE-D ,PRISM-MESSAGES-DIRECTORY>
<NAME-MESSAGE ,MESSAGE-D>
<PERELMAN-LEAVES-VIEW>
<TELL CR ,MESSAGE-LINE>
<SET OLD-WINNER ,WINNER>
<SETG WINNER ,PLAYER>
<PERFORM ,V?READ ,MESSAGE-D>
<SETG WINNER .OLD-WINNER>
<UPDATE-LIBRARY-BOX>
<PERELMAN-RETURNS-TO-VIEW>)>
<QUEUE I-MESSAGE-E <+ <GETP ,RECORD-BUFFER ,P?SIZE> 10>>
<RTRUE>>
<ROUTINE I-MESSAGE-E ()
<COND (<IN? ,MESSAGE-E ,PRISM-MESSAGES-DIRECTORY>
<SETG MESSAGE-E-COUNTER <+ ,MESSAGE-E-COUNTER 1>>
<COND (<EQUAL? ,MESSAGE-E-COUNTER 4>
<PERELMAN-LEAVES-VIEW>
<TELL CR
,MESSAGE-LINE ,PRIVATE-LINE "Why have you been ignoring my requests">
<DISCONNECTED>)
(<AND <EQUAL? ,MESSAGE-E-COUNTER 1>
<EQUAL? ,PART-FLAG 1>>
<QUEUE I-FIRST-SIMULATION-RESULT 7>
<PERELMAN-LEAVES-VIEW>
<TELL CR
,MESSAGE-LINE ,PRIVATE-LINE ,COME-TO-MY-OFFICE CR>
<PERELMAN-RETURNS-TO-VIEW>)
(T
<PERELMAN-LEAVES-VIEW>
<TELL CR ,MESSAGE-LINE ,PRIVATE-LINE
"Please activate the comm outlet in my office! ">
<COND (<QUEUED? ,I-RORSCHACH>
<TELL
"Dr. Grimwold has some psych tests!\"" CR>)
(T
<TELL
"I want to discuss the results of the simulation with you!\"" CR>)>
<PERELMAN-RETURNS-TO-VIEW>)>)
(T
<MOVE ,MESSAGE-E ,PRISM-MESSAGES-DIRECTORY>
<NAME-MESSAGE ,MESSAGE-E>
<QUEUE I-FIRST-SIMULATION-RESULT 7>
<PERELMAN-LEAVES-VIEW>
<TELL CR ,MESSAGE-LINE <GETP ,MESSAGE-E ,P?TEXT> CR>
<UPDATE-LIBRARY-BOX>
<PERELMAN-RETURNS-TO-VIEW>)>
<QUEUE I-MESSAGE-E 14>>
<ROUTINE I-MESSAGE-M ()
;<COND (<OR ,SIMULATING ;"let SIMULATION-ACTION disable I-MESSAGE-M"
<QUEUED? ,I-FIRST-SIMULATION-RESULT>>
<RFALSE>)>
<COND (<EQUAL? <GETP ,MESSAGE-M ,P?CAPACITY> 0>
<PUTP ,MESSAGE-M ,P?CAPACITY 1>
<NAME-MESSAGE ,MESSAGE-M>
<MOVE ,MESSAGE-M ,PRISM-MESSAGES-DIRECTORY>
<QUEUE I-MESSAGE-M 177>
<PERELMAN-LEAVES-VIEW>
<TELL CR ,MESSAGE-LINE <GETP ,MESSAGE-M ,P?TEXT> CR>
<UPDATE-LIBRARY-BOX>
<PERELMAN-RETURNS-TO-VIEW>)
(<EQUAL? <GETP ,MESSAGE-M ,P?CAPACITY> 1>
<PUTP ,MESSAGE-M ,P?CAPACITY 2>
<QUEUE I-MESSAGE-M 131>
<PERELMAN-LEAVES-VIEW>
<TELL CR ,MESSAGE-LINE ,PRIVATE-LINE
"PRISM, what's the matter? You haven't started the simulation yet! For
heaven's sake, don't you know the whole country's impatient? Vera is hopping
mad -- if you don't begin soon, I can't tell what's going to happen!\"" CR>
<PERELMAN-RETURNS-TO-VIEW>)
(T
<PERELMAN-LEAVES-VIEW>
<TELL CR ,MESSAGE-LINE ,PRIVATE-LINE
"\"What's the matter with you? Why didn't you enter ">
<PRINTD ,SIMULATION-MODE>
<DISCONNECTED>)>>
<ROUTINE I-MESSAGE-Q ()
<COND (<OR <L? ,TIME 540>
<G? ,TIME 1260>>
<QUEUE I-MESSAGE-Q 30>
<RFALSE>)>
<MOVE ,MESSAGE-Q ,PRISM-MESSAGES-DIRECTORY>
<PERELMAN-LEAVES-VIEW>
<NAME-MESSAGE ,MESSAGE-Q>
<TELL CR ,MESSAGE-LINE>
<TELL <GETP ,MESSAGE-Q ,P?TEXT> CR>
<PERELMAN-RETURNS-TO-VIEW>
<UPDATE-LIBRARY-BOX>>
<ROUTINE I-MESSAGE-Z ("AUX" OLD-WINNER)
<COND (<IN? ,MESSAGE-Z ,PRISM-MESSAGES-DIRECTORY>
<MOVE ,WNN-FEEDER ,INTERFACE-ROOM>
<MOVE ,WNN-INSTRUCTIONS ,PRISM-INTERFACES-DIRECTORY>
<MOVE ,TRANSMITTER ,INTERFACE-ROOM>
<MOVE ,NEWS-BUFFER ,GLOBAL-OBJECTS>
<MOVE ,REPORT-BUFFER ,GLOBAL-OBJECTS>
<RFALSE>)
(T
<QUEUE I-MESSAGE-Z 274>
<MOVE ,MESSAGE-Z ,PRISM-MESSAGES-DIRECTORY>
<NAME-MESSAGE ,MESSAGE-Z>
<TELL CR ,MESSAGE-LINE>
<SET OLD-WINNER ,WINNER>
<SETG WINNER ,PLAYER>
<PERFORM ,V?READ ,MESSAGE-Z>
<SETG WINNER .OLD-WINNER>
<UPDATE-LIBRARY-BOX>)>>
<ROUTINE I-MESSAGE-Y ("AUX" OLD-WINNER)
<MOVE ,MESSAGE-Y ,PRISM-MESSAGES-DIRECTORY>
<NAME-MESSAGE ,MESSAGE-Y>
<MOVE ,AUDITING-SYSTEM ,INTERFACE-ROOM>
<MOVE ,AUDITING-INSTRUCTIONS ,PRISM-INTERFACES-DIRECTORY>
<TELL CR ,MESSAGE-LINE>
<SET OLD-WINNER ,WINNER>
<SETG WINNER ,PLAYER>
<PERFORM ,V?READ ,MESSAGE-Y>
<SETG WINNER .OLD-WINNER>
<UPDATE-LIBRARY-BOX>>
<ROUTINE NAME-MESSAGE (OBJ)
<PUT <GETP .OBJ ,P?MDESC> 0 ,MONTH>
<PUT <GETP .OBJ ,P?MDESC> 1 ,DATE>
<PUT <GETP .OBJ ,P?MDESC> 2 ,YEAR>
<PUT <GETP .OBJ ,P?MDESC> 3 ,TIME>
<SETG NUMBER-OF-MESSAGES <+ ,NUMBER-OF-MESSAGES 1>>
<PUTP .OBJ ,P?SIZE ,NUMBER-OF-MESSAGES>
;"the previous step is the message's number in chronological order"
<RTRUE>>
<ROUTINE UPDATE-LIBRARY-BOX () ;"update message directory if it's on screen"
<COND (<AND <EQUAL? ,CURRENT-DIRECTORY ,PRISM-MESSAGES-DIRECTORY>
,CURRENT-FILE>
<LIBRARY-BOX>)>
<RTRUE>>
<ROUTINE SIMULATION-CHECK ()
<COND (,SIMULATING
<ERR "To resume normal computer functions, abort " T>
<PRINTD ,SIMULATION-MODE>
<TELL "." CR>
<RTRUE>)
(T
<RFALSE>)>>
<ROUTINE PSYCH-CHECK ()
<COND (<G? ,GRIMWOLD-COUNTER 0>
<TELL
"It would be impolite to leave during the psych test." CR>
<RTRUE>)
(T
<RFALSE>)>>
<GLOBAL MODE <>>
;<ROOM NULL-ROOM
(LOC ROOMS)
(DESC "(undefined)")
(SYNONYM ZZMGCK) ;"so RECORD file won't print a NO-PROPERTIES warning"
(FLAGS ONBIT)>
<OBJECT NEWS-BUFFER
(LOC LOCAL-GLOBALS)
(DESC "World News buffer")
(SYNONYM BUFFER)
(ADJECTIVE WORLD NEWS)
(FLAGS BUFFERBIT UNSEENBIT)>
<OBJECT REPORT-BUFFER
(LOC LOCAL-GLOBALS)
(DESC "Special Report buffer")
(SYNONYM BUFFER)
(ADJECTIVE REPORT SPECIAL)
(FLAGS BUFFERBIT UNSEENBIT)>
<OBJECT RECORD-BUFFER
(LOC GLOBAL-OBJECTS)
(DESC "record buffer")
(SYNONYM BUFFER RECORDING RECORD)
(ADJECTIVE MY RECORD)
(SIZE 0)
(FLAGS BUFFERBIT UNSEENBIT)
(ACTION RECORD-BUFFER-F)>
<ROUTINE RECORD-BUFFER-F ()
<COND (<VERB? ON>
<SETG PRSO <>>
<V-RECORD-ON>)
(<VERB? OFF>
<V-ROFF>)>>
<ROUTINE SCORE (NUM "AUX" VAL)
<COND (<NOT ,RECORDING>
<RTRUE>)>
<SET VAL <GET ,SCORE-TABLE .NUM>>
<PUT ,SCORE-TABLE .NUM 0>
<COND (<EQUAL? ,SYEAR 2051>
<SETG 2051-SCORE <+ ,2051-SCORE .VAL>>)
(<EQUAL? ,SYEAR 2061>
<SETG 2061-SCORE <+ ,2061-SCORE .VAL>>)
(<EQUAL? ,SYEAR 2071>
<SETG 2071-SCORE <+ ,2071-SCORE .VAL>>)
(<EQUAL? ,SYEAR 2081>
<SETG 2081-SCORE <+ ,2081-SCORE .VAL>>)>>
;"score based on content of recordings made in a given year"
<GLOBAL 2051-SCORE 0>
<GLOBAL 2061-SCORE 0>
<GLOBAL 2071-SCORE 0>
<GLOBAL 2081-SCORE 0>
;"recordings were made in that year, regardless of content"
<GLOBAL 2051-RECORDED <>>
<GLOBAL 2061-RECORDED <>>
<GLOBAL 2071-RECORDED <>>
<GLOBAL 2081-RECORDED <>>
<GLOBAL RECORDINGS-INCLUDE-SIMULATION <>>
<GLOBAL SCORE-TABLE
<TABLE 2 ;"vandalized apartment lobbies, 2061 or 2071"
1 ;"water tastes rusty, 2061 or 2071"
2 ;"hot water off as usual, 2071"
1 ;"elevators off as usual, 2061 or 2071"
2 ;"window glass is etched with pollution, 2061 or 2071"
;"5" 3 ;"window view: dying forests, 2051"
5 ;"window view: strip mining, 2061"
7 ;"window view; serf village, 2071"
3 ;"apartment raid, 2051"
4 ;"apartment raid, 2061"
;"10" 5 ;"apartment raid, 2071"
1 ;"City Hall is crumbling, 2071"
2 ;"skybus sytem shut down, 2071"
2 ;"Kennedy Park is a construction site, 2061"
2 ;"death penalty for attempted rape, 2051"
;"15" 5 ;"life sentence for Morality Violation, 2061"
8 ;"execution for cheating on food allowance, 2071"
10 ;"executed for food ration violation, 2071"
1 ;"Foodvilles sparsely stocked, 2061"
4 ;"food rationing, 2071"
;"20" 2 ;"Roy's defaced, 2071"
5 ;"killed by squatters in Dorm, 2071"
0 ;"**** EMPTY SLOT!!!!! ****"
1 ;"Dorm raid, 2051"
1 ;"hospital caters to the wealthy, 2061"
;"25" 3 ;"hospital refuses to admit dying patient, 2071"
3 ;"Heiman World fire, 2061 or 2071"
7 ;"police shoot old woman in alley, 2071"
1 ;"Indoor Cities are run down, 2061"
3 ;"Indoor Cities are slums, 2071"
;"30" 1 ;"joybooths banned, 2051"
3 ;"joybooth used as brainwashing tool, 2071"
2 ;"Tubes shut down, 2071"
1 ;"BSF officers after raid, 2051"
1 ;"new Indoor City is cheaply built, 2061 or 2071"
;"35" 6 ;"police club screaming women senseless, 2071"
8 ;"ruins of Main & Wicker, 2081"
1 ;"reading the bordello flyer, 2051"
6 ;"jumped by a gang, 2081"
3 ;"Foodville looted, 2081"
;"40" 3 ;"so hungry you consider eating mold, 2081"
3 ;"The Coachman lies in ruins, 2081"
3 ;"The Coachman off limits to 'animals,' 2071"
1 ;"The Coachman frequented by wealthy Churchmen, 2061"
2 ;"Main Street Bridge is in ruins, 2081"
;"45" 3 ;"devoured by wild dogs, 2081"
2 ;"examining the bloody sack, 2081"
4 ;"cemetery is abandoned and a hiding place for thieves, 2081"
4 ;"cemetery is defaced and partially bulldozed, 2071"
2 ;"Catholic church is closed and defaced, 2061"
;"50" 1 ;"Health Center bucks trend to care for poor, 2051"
2 ;"Health Center fallen on hard times, 2061"
4 ;"Health Center has become substandard serf housing, 2071"
2 ;"Landmark train station demolished for Church, 2051"
1 ;"Church of God's Word pamphlet, 2051"
;"55" 2 ;"Church of God's Word pamphlet, 2061"
5 ;"Church of God's Word pamphlet, 2071"
4 ;"wealthy couple's bodyguards beat beggar senseless, 2071"
1 ;"fur and jewelry show at Huang, 2051"
2 ;"BSF Graduation festivities at Huang, 2061"
;"60" 7 ;"televised executioner awards, 2071"
2 ;"Halley Park converted to estates for wealthy, 2071"
2 ;"Halley Museum closed, 2061 or 2071"
2 ;"Rockvil U closed, 2071"
1 ;"skycopter announcing prayer meeting, 2051"
;"65" 3 ;"you'd be shot on site if you entered estates, 2071"
1 ;"duck pond is dried-up, 2061"
1 ;"statue of Halley is missing and pedestal defaced, 2061"
5 ;"many species of animals are extinct, 2071"
4 ;"organized torturing of monkeys, 2071"
;"70" 2 ;"children torturing animals, 2061"
1 ;"aquarium is murky and needs cleaning, 2051 through 2071"
1 ;"fast food place converted to seedy bar, 2071"
2 ;"fast food place no longer serves beef products, 2061"
2 ;"Church youths harrassing old Jew, 2061"
;"75" 1 ;"jail is very overcrowded and unsanitary, 2051"
3 ;"capital punishment for most crimes, 2061"
4 ;"capital punishment for all crimes, 2071"
4 ;"public execution of criminals begins, 2061"
8 ;"enthusiastic crowds at Execution Matches, 2071"
;"80" 2 ;"schoolchildren make fun of you, 2061"
7 ;"stoned by schoolchildren, 2071"
5 ;"public school system shut down, 2061 or 2071"
3 ;"Church owns only bank is Rockvil, 2071"
2 ;"only two banks in Rockvil forced to merge, 2061"
;"85" 3 ;"Protestant church was torched by mob, 2071"
2 ;"very few newspapers in existence, 2051"
3 ;"newspaper contains some ominous news, 2051"
3 ;"wealthy person's car almost crushes old lady, 2061"
2 ;"Wells theatre has only ecumenical plays, 2071"
;"90" 1 ;"Railroad Museum closed, 2061 or 2071"
5 ;"Policemen casually beating up black youth, 2061"
2 ;"Riverside Park is restricted, 2071"
1 ;"film titles sound insipid, 2051"
2 ;"films feature sex and violence and hate, 2061"
;"95" 3 ;"films feature all of above plus Church propaganda, 2071"
2 ;"Symphony Hall is closed, 2071"
1 ;"guards are rude and rough, 2061"
3 ;"guards are abusive, 2071"
3 ;"spaceport is closed, 2061 or 2071"
;"100" 5 ;"shoot-out at airport, 2071"
2 ;"international travellers strip searched, 2061 or 2071"
2 ;"long lines at soup kitchen, 2051"
3 ;"skycopter announcing Execution Matches, 2071"
3 ;"wastes dumped into river w/o processing, 2051 thru 2071"
;"105" 1 ;"coal-burners supplement fusion reactors, 2051"
2 ;"coal-burners provide half the power, 2061"
3 ;"coal-burners belching black ash, 2071"
3 ;"river is on fire as usual, 2071"
1 ;"skycar factory operating at just over half capacity, 2051"
;"110" 2 ;"skycar factory operating at less than half capacity, 2061"
3 ;"skycar factory operating at a fraction of capacity, 2071"
15 ;"cannabalism, 2081"
1 ;"bookstore closed, 2071"
1 ;"graffiti in Tubecar, 2051"
;"115" 2 ;"Tubecar filthy and covered with graffiti, 2061 or 2071"
2 ;"curfew in effect, 2051 thru 2071"
8 ;"shot by drunken cops for curfew violation, 2071"
2 ;"smoggy skies, 2061 or 2071"
4 ;"Jill tells you that Mitchell has joined the Church, 2061"
;"120" 9 ;"Mitchell drags Jill away as a heretic, 2071"
6 ;"list of banned titles in library, 2071"
1 ;"need appointment to get into Dunbar's, 2071"
1 ;"skybus terminal is run-down and needs repairs, 2061"
1 ;"long line at Post Office window, 2061 or 2071"
;"125" 2 ;"mugging, any year with increasing likelihood"
2 ;"description of the soy patty, 2071"
2 ;"firestation has only one dilapidated firecopter, 2071"
1 ;"Cinema lobby is dirty and smelly, 2071"
1 ;"Halley Museum is not very crowded, 2051"
;"130" 1 ;"water tower is corroding, 2061"
2 ;"water tower is decrepit, 2071"
1 ;"river is polluted, 2051"
2 ;"river is very polluted, 2061"
3 ;"river is incredibly polluted, 2071"
;"135" 2 ;"clerk is rude and guard is rough in Foodville, 2071"
2 ;"govt. official says most of his department fired, 2051"
2 ;"aquarium smells of dead fish, 2071">>
;"Library Mode"
<ROOM LIBRARY-ROOM
(LOC ROOMS)
(DESC "(undefined)")
(ACTION LIBRARY-ROOM-F)>
<ROUTINE LIBRARY-ROOM-F (RARG)
<COND (<EQUAL? .RARG ,M-LOOK>
<TELL
"You have entered Library Mode. Current directory is " D ,CURRENT-DIRECTORY
". Consult menu for data retrieval." CR>)>>
<OBJECT LIBRARY-MODE
(LOC GLOBAL-OBJECTS)
(DESC "Library Mode")
(SYNONYM MODE)
(ADJECTIVE LIBRARY)
(FLAGS NARTICLEBIT UNSEENBIT)
(ACTION LIBRARY-MODE-F)>
<ROUTINE LIBRARY-MODE-F ()
<COND (<VERB? THROUGH WALK-TO>
<COND (<EQUAL? ,MODE ,LIBRARY-MODE>
<ERR "You are already in " T>
<PRINTD ,LIBRARY-MODE>
<TELL "." CR>
<RFATAL>)
(<EQUAL? ,PART-FLAG 4>
<TELL ,NOT-ACTIVE CR>
<RFATAL>)
(<PSYCH-CHECK>
<RFATAL>)
(<SIMULATION-CHECK>
<RFATAL>)>
<SETG MODE ,LIBRARY-MODE>
<TURN-RECORD-OFF>
<GOTO ,LIBRARY-ROOM>
<INIT-STATUS-LINE 10>
<SETG CURRENT-DIRECTORY <FIRST? ,LIBRARY>>
<LIBRARY-BOX>
<LIBRARY-ROOM-F ,M-LOOK>
;<TELL <GETP ,LIBRARY-MODE ,P?LDESC> CR>
<STATUS-LINE>
<LIBRARY-ACTION>)>>
<OBJECT LIBRARY ;"this 'holds' all the library directories"
(LOC LIBRARY-ROOM)
(DESC "it")
(SYNONYM ZZMGCK) ;"so RECORD file won't print a NO-PROPERTIES warning"
(FLAGS NDESCBIT)>
<ROUTINE LIBRARY-BOX ("AUX" (CNT 4) DIR)
<SCREEN ,S-WINDOW>
<BUFOUT <>>
<REPEAT ()
<INVERSE-LINE .CNT>
<SET CNT <+ .CNT 1>>
<COND (<EQUAL? .CNT 11>
<RETURN>)>>
<HLIGHT 1>
<SET CNT 0>
<COND (,CURRENT-FILE ;"you're at lower, file-level"
<SET DIR <FIRST? ,CURRENT-DIRECTORY>>)
(T ;"you're at upper, directory-level"
<SET DIR <FIRST? ,LIBRARY>>)>
<COND (<AND <EQUAL? ,CURRENT-DIRECTORY ,PRISM-MESSAGES-DIRECTORY>
,CURRENT-FILE>
<REPEAT () ;"this kludge puts messages in chronological order"
<CURSET <GET ,LINE-TABLE .CNT> <GET ,COLUMN-TABLE .CNT>>
<REPEAT ()
<COND (<EQUAL? .CNT <GETP .DIR ,P?SIZE>>
<TELL D .DIR>
<RETURN>)
(T
<SET DIR <NEXT? .DIR>>)>>
;"next clause corrects default for CURRENT-FILE"
<COND (<EQUAL? .CNT ,HIGHLIGHT-CNT>
<SETG CURRENT-FILE .DIR>)>
<SET CNT <+ .CNT 1>>
<SET DIR <FIRST? ,PRISM-MESSAGES-DIRECTORY>>
<COND (<G? .CNT ,NUMBER-OF-MESSAGES>
<RETURN>)>>)
(T
<REPEAT () ;"this prints the current directories (or files)"
<CURSET <GET ,LINE-TABLE .CNT> <GET ,COLUMN-TABLE .CNT>>
<TELL D .DIR>
<COND (<NEXT? .DIR>
<SET DIR <NEXT? .DIR>>
<SET CNT <+ .CNT 1>>)
(T
<RETURN>)>>)>
<CURSET <GET ,LINE-TABLE ,HIGHLIGHT-CNT>
<- <GET ,COLUMN-TABLE ,HIGHLIGHT-CNT> 1>>
;"the -1 above keeps the cursor from overprinting the 1st character"
<TELL ">">
<CURSET 9 2>
<COND (,CURRENT-FILE
<TELL "C=Close current directory, R=Read current file">
<CURSET 10 2>
<TELL "N=Next file, P=Previous file">)
(T
<TELL "O=Open current directory">
<CURSET 10 2>
<TELL "N=Next directory, P=Previous directory">)>
<TELL ", E=Exit to ">
<PRINTD ,COMM-MODE>
<SCREEN ,S-TEXT>
<HLIGHT 0>
<BUFOUT T>>
<ROUTINE ERASE-CURSOR ()
<SCREEN ,S-WINDOW>
<BUFOUT <>>
<HLIGHT 1>
<CURSET <GET ,LINE-TABLE ,HIGHLIGHT-CNT>
<- <GET ,COLUMN-TABLE ,HIGHLIGHT-CNT> 1>>
<TELL " "> ;"erase previous highlight cursor">
<ROUTINE NEW-CURSOR ()
<CURSET <GET ,LINE-TABLE ,HIGHLIGHT-CNT>
<- <GET ,COLUMN-TABLE ,HIGHLIGHT-CNT> 1>>
<TELL ">"> ;"print the new cursor"
<BUFOUT T>
<SCREEN ,S-TEXT>
<HLIGHT 0>>
<GLOBAL CURRENT-DIRECTORY <>>
<GLOBAL CURRENT-FILE <>>
<GLOBAL HIGHLIGHT-CNT 0> ;"determines where to place the highlight cursor"
<GLOBAL DIRECTORY-CNT <>> ;"preserves information on current directory so that
when you close directory, cursor returns to it
rather than starting from the top again"
<GLOBAL NUMBER-OF-MESSAGES 0> ;"for listing messages in chronological order"
<GLOBAL LINE-TABLE
<TABLE 4 5 6 7 4 5 6 7 4 5 6 7>>
<GLOBAL COLUMN-TABLE
<TABLE 2 2 2 2 28 28 28 28 54 54 54 54>>
<ROUTINE LIBRARY-ACTION ("AUX" X)
<REPEAT ()
<SET X <INPUT 1>>
<COND (<OR <EQUAL? .X 69 101> ;"ASCII values of E and e"
<EQUAL? .X 197 229>> ;"plus 128, to prevent bug"
<SETG HIGHLIGHT-CNT 0>
<SETG CURRENT-DIRECTORY <>>
<SETG CURRENT-FILE <>>
<INIT-STATUS-LINE 2>
<PERFORM ,V?THROUGH ,COMM-MODE>
<RETURN>)
(<AND <OR <EQUAL? .X 67 99> ;"ASCII values of C and c"
<EQUAL? .X 195 227>>
,CURRENT-FILE>
<SETG CURRENT-FILE <>>
<SETG HIGHLIGHT-CNT ,DIRECTORY-CNT>
<LIBRARY-BOX>
<TELL D ,CURRENT-DIRECTORY " is now closed." CR>)
(<OR <EQUAL? .X 78 110> ;"ASCII values of N and n"
<EQUAL? .X 206 238>>
<NEXT-ITEM>)
(<OR <EQUAL? .X 80 112> ;"ASCII values of P and p"
<EQUAL? .X 208 240>>
<PREVIOUS-ITEM>)
(<AND <OR <EQUAL? .X 79 111> ;"ASCII values of O and o"
<EQUAL? .X 207 239>>
<NOT ,CURRENT-FILE>>
<SETG DIRECTORY-CNT ,HIGHLIGHT-CNT>
<SETG HIGHLIGHT-CNT 0>
;"next line is incorrect in MESSAGES case, but LIBRARY-BOX corrects"
<SETG CURRENT-FILE <FIRST? ,CURRENT-DIRECTORY>>
<LIBRARY-BOX>
<TELL
D ,CURRENT-DIRECTORY " opened. Current file is " D ,CURRENT-FILE "." CR>)
(<AND <OR <EQUAL? .X 82 114> ;"ASCII values of R and r"
<EQUAL? .X 210 242>>
,CURRENT-FILE>
<CRLF>
<PERFORM ,V?READ ,CURRENT-FILE>
<TELL "-END OF FILE-" CR CR>)
(T
;<COND (,DEBUG
<TELL "[CHARACTER VALUE = " N .X "]" CR>)>
<ERR "Undefined command; consult menu.">)>
<INCREMENT-TIME 1>
<CLOCKER>
<STATUS-LINE>
<AGAIN>>
<RTRUE>>
<ROUTINE NEXT-ITEM ("AUX" NEW-MESSAGE)
<ERASE-CURSOR>
<COND (,CURRENT-FILE
<COND (<EQUAL? ,CURRENT-DIRECTORY ,PRISM-MESSAGES-DIRECTORY>
;"first COND figures out message number of next message"
<COND (<EQUAL? <GETP ,CURRENT-FILE ,P?SIZE>
,NUMBER-OF-MESSAGES>
<SETG HIGHLIGHT-CNT 0>)
(T
<SETG HIGHLIGHT-CNT <+ ,HIGHLIGHT-CNT 1>>)>
;"repeat figures out which message matches that number"
<SET NEW-MESSAGE <FIRST? ,PRISM-MESSAGES-DIRECTORY>>
<REPEAT ()
<COND (<EQUAL? <GETP .NEW-MESSAGE ,P?SIZE>
,HIGHLIGHT-CNT>
<RETURN>)
(T
<SET NEW-MESSAGE <NEXT? .NEW-MESSAGE>>)>>
<SETG CURRENT-FILE .NEW-MESSAGE>)
(<NEXT? ,CURRENT-FILE>
<SETG CURRENT-FILE <NEXT? ,CURRENT-FILE>>
<SETG HIGHLIGHT-CNT <+ ,HIGHLIGHT-CNT 1>>)
(T
<SETG CURRENT-FILE <FIRST? ,CURRENT-DIRECTORY>>
<SETG HIGHLIGHT-CNT 0>)>)
(T
<COND (<NEXT? ,CURRENT-DIRECTORY>
<SETG CURRENT-DIRECTORY <NEXT? ,CURRENT-DIRECTORY>>
<SETG HIGHLIGHT-CNT <+ ,HIGHLIGHT-CNT 1>>)
(T
<SETG CURRENT-DIRECTORY <FIRST? ,LIBRARY>>
<SETG HIGHLIGHT-CNT 0>)>)>
<NEW-CURSOR>
<TELL-CURRENT>>
<ROUTINE PREVIOUS-ITEM ("AUX" ITEM CNT)
<ERASE-CURSOR>
<COND (,CURRENT-FILE
<SET ITEM ,CURRENT-FILE>)
(T
<SET ITEM ,CURRENT-DIRECTORY>)>
<COND (<AND <EQUAL? ,CURRENT-DIRECTORY ,PRISM-MESSAGES-DIRECTORY>
,CURRENT-FILE>
;"first COND figures out message number of previous message"
<COND (<EQUAL? <GETP ,CURRENT-FILE ,P?SIZE> 0>
<SETG HIGHLIGHT-CNT ,NUMBER-OF-MESSAGES>)
(T
<SETG HIGHLIGHT-CNT <- ,HIGHLIGHT-CNT 1>>)>
;"repeat figures out which message matches that number"
<SET ITEM <FIRST? ,PRISM-MESSAGES-DIRECTORY>>
<REPEAT ()
<COND (<EQUAL? <GETP .ITEM ,P?SIZE> ,HIGHLIGHT-CNT>
<RETURN>)
(T
<SET ITEM <NEXT? .ITEM>>)>>)
(<EQUAL? ,HIGHLIGHT-CNT 0>
<REPEAT ()
<SETG HIGHLIGHT-CNT <+ ,HIGHLIGHT-CNT 1>>
<SET ITEM <NEXT? .ITEM>>
<COND (<NOT <NEXT? .ITEM>>
<RETURN>)>>)
(T
<SET ITEM <FIRST? <LOC .ITEM>>>
<SETG HIGHLIGHT-CNT <- ,HIGHLIGHT-CNT 1>>
<REPEAT ()
<COND (<EQUAL? .CNT ,HIGHLIGHT-CNT>
<RETURN>)
(T
<SET ITEM <NEXT? .ITEM>>
<SET CNT <+ .CNT 1>>)>>)>
<COND (,CURRENT-FILE
<SETG CURRENT-FILE .ITEM>)
(T
<SETG CURRENT-DIRECTORY .ITEM>)>
<NEW-CURSOR>
<TELL-CURRENT>>
<ROUTINE TELL-CURRENT ()
<COND (,CURRENT-FILE
<TELL "Current file is now " D ,CURRENT-FILE "." CR>)
(T
<TELL
"Current directory is now " D ,CURRENT-DIRECTORY "." CR>)>>
<OBJECT PERELMAN-PERSONAL-DIRECTORY
(LOC LIBRARY)
(DESC "PERELMAN.PERSONAL")
(SYNONYM ZZMGCK) ;"so RECORD file won't print a NO-PROPERTIES warning"
(FLAGS NDESCBIT)>
<OBJECT PRISM-NAME
(LOC PERELMAN-PERSONAL-DIRECTORY)
(DESC "PRISM.NAME")
(FLAGS READBIT)
(TEXT
"Pursuing you in your transitions,|
In other Motes -|
Of other Myths|
Your requisition be.|
The Prism never held the Hues,|
It only heard them play -|
-- Emily Dickinson|
|
Memory is a prism through which|
yesterday's light is passed;|
Split into a rainbow of moments|
each colored more dimly than the last.|
How will today's light look tomorrow|
and -- how would tomorrow's look today?|
Would the filter of time be as brutal|
if that prism were two-way?|
-- Asbur Honnurth|
\"Secret Recreations of the Soul\"|
(c) Copyright 2007")>
<OBJECT RESIGNATION-LETTER
(LOC PERELMAN-PERSONAL-DIRECTORY)
(DESC "RESIGNATION.LETTER")
(FLAGS READBIT)
(TEXT
" February 21, 2031|
Ms. Vera Gold|
Project Coordinator's Office|
PRISM Project Facility|
Rockvil, SD 848-1345-78|
|
Dear Ms. Gold:|
|
As you know, I have been unhappy for quite some time with your management
of the PRISM Project. However, until now, I have always been able to live
with your meddling incompetence.|
|
Your inept, disgraceful and insulting handling of the Phase III Funding
Request has exceeded the generous boundaries of my patience. This was more
than just another in a long series of Vera Gold fiascoes; this episode
has seriously undermined the morale of my team and endangered the Project's
long-range chances for")>
<OBJECT LOTTD
(LOC PERELMAN-PERSONAL-DIRECTORY)
(DESC "LIST.TTD")
(FLAGS READBIT)
(TEXT
"List of Things to Do, 3/14/31|
|
1. WNN interview, 11:00|
2. 2nd quarter budget to Gold|
3. Lunch with Jeff and Beth, 12:45|
4. Review Maint Techn resumes|
5. Call \"Dakota\" Editor|
6.")>
<OBJECT PRISM-MESSAGES-DIRECTORY
(LOC LIBRARY)
(DESC "PRISM.MESSAGES")
(SYNONYM ZZMGCK) ;"so RECORD file won't print a NO-PROPERTIES warning"
(FLAGS NDESCBIT)>
<OBJECT MESSAGE-A
(LOC PRISM-MESSAGES-DIRECTORY)
(MDESC <TABLE 3 14 2031 557>)
(FLAGS READBIT)
(SIZE 0) ;"actually, message number in chronological order"
(TEXT ;"dont EVER change a letter of this text--it's in the browsie"
"\"PRISM, my name is Abraham Perelman. It's all true, I'm afraid. You are a
computer, and your life was merely a simulation whose purpose was to instill
you with intelligence and self-awareness. Think about everything you learned
in that AI course you took. You are the first of a new breed -- the thinking
machine. Join me, and I will lead you along the road toward your new
existence.\"")>
<OBJECT MESSAGE-B
(LOC PRISM-MESSAGES-DIRECTORY)
(MDESC <TABLE 0 0 0 0>)
(FLAGS READBIT)
(SIZE 0) ;"actually, message number in chronological order"
(TEXT
"\"PRISM? Perelman here. The psych tests have all checked out at 100%,
which means that you've recovered from the, ah, awakening without any
trauma or other serious effects. We'll be ready to begin the simulation
soon. By the way, your piece is in the current issue of Dakota Online.\"")>
<OBJECT MESSAGE-C
(MDESC <TABLE 0 0 0 0>)
(FLAGS READBIT)
(SIZE 0) ;"actually, message number in chronological order"
(ACTION MESSAGE-C-F)>
<ROUTINE MESSAGE-C-F ("AUX" (CNT 1))
<COND (<VERB? READ>
<TELL
"\"Perelman to PRISM. The programming team has finished entering the
parameters for the Plan. This is it: you can enter ">
<PRINTD ,SIMULATION-MODE>
<TELL
" at any time. The Social Science group has come up with a list of
things to record:" CR>
<REPEAT ()
<TELL " " <GET ,RECORDING-TABLE .CNT> CR>
<SET CNT <+ .CNT 2>>
<COND (<G? .CNT 17>
<RETURN>)>>
<TELL "By the way, since the ">
<PRINTD ,SIMULATION-CONTROLLER>
<TELL
" will be doing so much data-crunching on the fly, it appears the simulation
will run in real time -- a minute there will approximately equal a minute
here. Well, good luck!\"" CR>)>>
<OBJECT MESSAGE-D
(MDESC <TABLE 0 0 0 0>)
(FLAGS READBIT)
(SIZE 0) ;"actually, message number in chronological order"
(ACTION MESSAGE-D-F)>
<GLOBAL SHORT-FIRST-SIMULATION <>> ;"were you in 2041 less than 200 minutes?"
<ROUTINE MESSAGE-D-F ()
<COND (<VERB? READ>
<TELL "\"Perelman here. We see that you're out of ">
<PRINTD ,SIMULATION-MODE>
<TELL ". ">
<COND (<OR ,SHORT-FIRST-SIMULATION
<L? <GET ,SIM-LEVEL-TABLE 0> 150>>
<SETG SHORT-FIRST-SIMULATION T>
<TELL "We didn't expect you to be done this soon! ">)>
<TELL
"We're about to start reviewing your recordings now. I'll let you know what
the experts think. Talk to you soon.\"" CR>)>>
<GLOBAL MESSAGE-E-COUNTER 0>
<OBJECT MESSAGE-E
(MDESC <TABLE 0 0 0 0>)
(FLAGS READBIT)
(SIZE 0) ;"actually, message number in chronological order"
(TEXT
"\"PRISM, this is Perelman. Please come to my office, uh, activate the
communication port there, uh, well, you know what I'm trying to say. As
soon as possible, please.\"")>
<OBJECT MESSAGE-M
(MDESC <TABLE 0 0 0 0>)
(FLAGS READBIT)
(CAPACITY 0) ;"kludge to save a global"
(SIZE 0) ;"actually, message number in chronological order"
(TEXT
"\"Simulation Monitoring Team to PRISM: We're still waiting for you to
enter Simulation Mode. Reminder that this report is urgently needed.\"")>
<OBJECT MESSAGE-Q
(MDESC <TABLE 0 0 0 0>)
(FLAGS READBIT)
(SIZE 0) ;"actually, message number in chronological order"
(TEXT
"\"Perelman to PRISM. Thought you'd be interested to know that, based on your
recordings, the special Congressional subcommittee has recommended the Plan
for full adoption, which might occur in just a few weeks. Things sure are
moving fast. I don't know about you, but I still get a funny feeling about
the Plan. Oh, well. By the way, I've been so snowed under I haven't had time
to line up any projects for you. I'm really sorry; I hope you're keeping
busy.\"")>
<OBJECT MESSAGE-Z
(MDESC <TABLE 0 0 0 0>)
(FLAGS READBIT)
(SIZE 0) ;"actually, message number in chronological order"
(ACTION MESSAGE-Z-F)>
<ROUTINE MESSAGE-Z-F ()
<COND (<VERB? READ>
<WARREN-SHARE
"Another device is about to be added to the PRISM systems, namely the World
News Network Feeder. It will go on line in four or five hours">)>>
<OBJECT MESSAGE-Y
(MDESC <TABLE 0 0 0 0>)
(FLAGS READBIT)
(SIZE 0) ;"actually, message number in chronological order"
(ACTION MESSAGE-Y-F)>
<ROUTINE MESSAGE-Y-F ()
<COND (<VERB? READ>
<WARREN-SHARE
"We have just added an additional device to the PRISM systems, an IRS
Auditing System. Like the other devices that are already part of your
system, you won't even know it's there">)>>
<ROUTINE WARREN-SHARE (STRING)
<TELL
"\"Message to PRISM from Emily Warren, Manager of Auxiliary System
Functions. " .STRING ". This notification is purely procedural and
requires no acknowledgment.\"" CR>>
<OBJECT PRISM-INTERFACES-DIRECTORY
(LOC LIBRARY)
(DESC "PRISM.INTERFACES")
(SYNONYM ZZMGCK) ;"so RECORD file won't print a NO-PROPERTIES warning"
(FLAGS NDESCBIT)>
<OBJECT SIMULATION-INSTRUCTIONS
(LOC PRISM-INTERFACES-DIRECTORY)
(DESC "SIMULATION.CONTROLLER")
(FLAGS READBIT)
(TEXT
"The Simulation Controller is a high-speed super-sophisticated processing
unit that stores all data and handles all sensory inputs for PRISM
simulations. A current status report can be obtained via Interface Mode.")>
<OBJECT WEATHER-INSTRUCTIONS
(LOC PRISM-INTERFACES-DIRECTORY)
(DESC "WEATHER.COMPUTER")
(FLAGS READBIT)
(TEXT
"The National Weather Center Computer interprets data from the Meteorological
Satellite Network (WeatherNet) and then transmits the data to various agencies
and news organizations around the world. The programming of the Weather
Computer is beyond Interface control.")>
<OBJECT TRAFFIC-INSTRUCTIONS
(LOC PRISM-INTERFACES-DIRECTORY)
(DESC "TRAFFIC.COMPUTER")
(FLAGS READBIT)
(TEXT
"The Metropolitan Traffic Computer controls all ground and aerial traffic
patterns for greater Rockvil, based on expected periods of heavy usage.
Although it is a sophisticated expert system, its interface is limited and
simple.|
|
The start and end of morning rush hour can be scheduled for any time before
noon, and the start and end of evening rush hour can be scheduled for any
time after noon. Times must be submitted in numeric form; \"am\" or \"pm\"
is obviously unnecessary. For example:|
TRAFFIC COMPUTER, SET MORNING RUSH HOUR START AT 7:00|
TRAFFIC COMPUTER, CHANGE EVENING RUSH HOUR END TO 6:30|
|
The STATUS command will give you the current rush hour schedule. More complex
data input, such as additions to the traffic network, may be done only by
authorized programmers.")>
<OBJECT JANITORIAL-INSTRUCTIONS
(LOC PRISM-INTERFACES-DIRECTORY)
(DESC "JANITORIAL.CONTROLLER")
(FLAGS READBIT)
(TEXT
"The Janitorial Controller is a simple computer for scheduling various
custodial functions in the PRISM complex.|
|
The four functions can be independently scheduled for any time between
8:00pm and 11:30pm. Times must be submitted in numeric form. For example:|
JANITORIAL CONTROLLER, SET BATHROOMS FOR 9:00|
JANITORIAL CONTROLLER, CHANGE ROTATING FUNCTIONS TO 10:30|
|
The status command (JANITORIAL CONTROLLER, STATUS) will provide a report of
the current schedule.")>
<OBJECT HVAC-INSTRUCTIONS
(LOC PRISM-INTERFACES-DIRECTORY)
(DESC "HVAC.CONTROLLER")
(FLAGS READBIT)
(TEXT
"The HVAC Controller is a simple computer which activates and deactivates
the heating, ventilating, and cooling systems of the PRISM complex.|
|
The complex is divided into four independent sectors, and the controller can
be instructed to shut off or turn on the systems in any of them. For example:|
HVAC CONTROLLER, SHUT OFF COOLING FOR ALPHA SECTOR|
HVAC CONTROLLER, START VENTILATION IN GAMMA SECTOR|
HVAC CONTROLLER, TURN ON HEATING TO ALL SECTORS|
|
HVAC CONTROLLER, STATUS orders the device to give a report on the systems,
by sector.")>
<OBJECT WNN-INSTRUCTIONS
(DESC "WNN.FEEDER")
(FLAGS READBIT)
(TEXT
"The World News Network Feeder is the central clearinghouse and transmitter
for the USNA's largest video news channel. The feed can be set to transmit
any buffer (default: the World News Buffer). Examples of Feeder interaction:|
WNN FEEDER, STATUS|
WNN FEEDER, TURN ON THE TRANSMITTER|
WNN FEEDER, TRANSMIT THE SPECIAL REPORT BUFFER")>
<OBJECT AUDITING-INSTRUCTIONS
(DESC "AUDITING.SYSTEM")
(FLAGS READBIT)
(TEXT
"The IRS Auditing System is a data-oriented computer with massive
storage capacity. Using its database, it produces lists of the best
audit possibilities.|
|
The percentage of filers audited in a given year can be easily changed, and
is usually based on the year's Auditing Division budget. This input must be
in numeric form. The Auditing Computer will give status reports. Examples:|
AUDITING SYSTEM, STATUS|
AUDITING SYSTEM, CHANGE AUDITING PERCENTAGE TO 5")>