Merge from emacs--rel--22
[bpt/emacs.git] / lisp / play / dunnet.el
1 ;;; dunnet.el --- text adventure for Emacs -*- byte-compile-warnings: nil -*-
2
3 ;; Copyright (C) 1992, 1993, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: Ron Schnell <ronnie@driver-aces.com>
7 ;; Created: 25 Jul 1992
8 ;; Version: 2.01
9 ;; Keywords: games
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
27
28 ;;; Commentary:
29
30 ;; This game can be run in batch mode. To do this, use:
31 ;; emacs -batch -l dunnet
32
33 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34 ;;; The log file should be set for your system, and it must
35 ;;; be writable by all.
36
37 ;;; Code:
38
39 (defgroup dunnet nil
40 "Text adventure for Emacs."
41 :prefix "dun-"
42 :group 'games)
43
44 (defcustom dun-log-file "/usr/local/dunnet.score"
45 "Name of file to store score information for dunnet."
46 :type 'file
47 :group 'dunnet)
48
49 ;;;; Mode definitions for interactive mode
50
51 (define-derived-mode dun-mode text-mode "Dungeon"
52 "Major mode for running dunnet."
53 (make-local-variable 'scroll-step)
54 (setq scroll-step 2))
55
56 (defun dun-parse (arg)
57 "Function called when return is pressed in interactive mode to parse line."
58 (interactive "*p")
59 (beginning-of-line)
60 (let ((beg (1+ (point)))
61 line)
62 (end-of-line)
63 (if (and (not (= beg (point))) (not (< (point) beg))
64 (string= ">" (buffer-substring (- beg 1) beg)))
65 (progn
66 (setq line (downcase (buffer-substring beg (point))))
67 (princ line)
68 (if (eq (dun-vparse dun-ignore dun-verblist line) -1)
69 (dun-mprinc "I don't understand that.\n")))
70 (goto-char (point-max))
71 (dun-mprinc "\n")))
72 (dun-messages))
73
74 (defun dun-messages ()
75 (if dun-dead
76 (text-mode)
77 (if (eq dungeon-mode 'dungeon)
78 (progn
79 (if (not (= room dun-current-room))
80 (progn
81 (dun-describe-room dun-current-room)
82 (setq room dun-current-room)))
83 (dun-fix-screen)
84 (dun-mprinc ">")))))
85
86 \f
87 ;;;###autoload
88 (defun dunnet ()
89 "Switch to *dungeon* buffer and start game."
90 (interactive)
91 (switch-to-buffer "*dungeon*")
92 (dun-mode)
93 (setq dun-dead nil)
94 (setq room 0)
95 (dun-messages))
96
97 ;;;;
98 ;;;; This section contains all of the verbs and commands.
99 ;;;;
100
101 ;;; Give long description of room if haven't been there yet. Otherwise
102 ;;; short. Also give long if we were called with negative room number.
103
104 (defun dun-describe-room (room)
105 (if (and (not (member (abs room) dun-light-rooms))
106 (not (member obj-lamp dun-inventory)))
107 (dun-mprincl "It is pitch dark. You are likely to be eaten by a grue.")
108 (dun-mprincl (cadr (nth (abs room) dun-rooms)))
109 (if (and (and (or (member room dun-visited)
110 (string= dun-mode "dun-superb")) (> room 0))
111 (not (string= dun-mode "long")))
112 nil
113 (dun-mprinc (car (nth (abs room) dun-rooms)))
114 (dun-mprinc "\n"))
115 (if (not (string= dun-mode "long"))
116 (if (not (member (abs room) dun-visited))
117 (setq dun-visited (append (list (abs room)) dun-visited))))
118 (dolist (xobjs (nth dun-current-room dun-room-objects))
119 (if (= xobjs obj-special)
120 (dun-special-object)
121 (if (>= xobjs 0)
122 (dun-mprincl (car (nth xobjs dun-objects)))
123 (if (not (and (= xobjs obj-bus) dun-inbus))
124 (progn
125 (dun-mprincl (car (nth (abs xobjs) dun-perm-objects)))))))
126 (if (and (= xobjs obj-jar) dun-jar)
127 (progn
128 (dun-mprincl "The jar contains:")
129 (dolist (x dun-jar)
130 (dun-mprinc " ")
131 (dun-mprincl (car (nth x dun-objects)))))))
132 (if (and (member obj-bus (nth dun-current-room dun-room-objects)) dun-inbus)
133 (dun-mprincl "You are on the bus."))))
134
135 ;;; There is a special object in the room. This object's description,
136 ;;; or lack thereof, depends on certain conditions.
137
138 (defun dun-special-object ()
139 (if (= dun-current-room computer-room)
140 (if dun-computer
141 (dun-mprincl
142 "The panel lights are flashing in a seemingly organized pattern.")
143 (dun-mprincl "The panel lights are steady and motionless.")))
144
145 (if (and (= dun-current-room red-room)
146 (not (member obj-towel (nth red-room dun-room-objects))))
147 (dun-mprincl "There is a hole in the floor here."))
148
149 (if (and (= dun-current-room marine-life-area) dun-black)
150 (dun-mprincl
151 "The room is lit by a black light, causing the fish, and some of
152 your objects, to give off an eerie glow."))
153 (if (and (= dun-current-room fourth-vermont-intersection) dun-hole)
154 (progn
155 (if (not dun-inbus)
156 (progn
157 (dun-mprincl"You fall into a hole in the ground.")
158 (setq dun-current-room vermont-station)
159 (dun-describe-room vermont-station))
160 (progn
161 (dun-mprincl
162 "The bus falls down a hole in the ground and explodes.")
163 (dun-die "burning")))))
164
165 (if (> dun-current-room endgame-computer-room)
166 (progn
167 (if (not dun-correct-answer)
168 (dun-endgame-question)
169 (dun-mprincl "Your question is:")
170 (dun-mprincl dun-endgame-question))))
171
172 (if (= dun-current-room sauna)
173 (progn
174 (dun-mprincl (nth dun-sauna-level '(
175 "It is normal room temperature in here."
176 "It is luke warm in here."
177 "It is comfortably hot in here."
178 "It is refreshingly hot in here."
179 "You are dead now.")))
180 (if (= dun-sauna-level 3)
181 (progn
182 (if (or (member obj-rms dun-inventory)
183 (member obj-rms (nth dun-current-room dun-room-objects)))
184 (progn
185 (dun-mprincl
186 "You notice the wax on your statuette beginning to melt, until it completely
187 melts off. You are left with a beautiful diamond!")
188 (if (member obj-rms dun-inventory)
189 (progn
190 (dun-remove-obj-from-inven obj-rms)
191 (setq dun-inventory (append dun-inventory
192 (list obj-diamond))))
193 (dun-remove-obj-from-room dun-current-room obj-rms)
194 (dun-replace dun-room-objects dun-current-room
195 (append (nth dun-current-room dun-room-objects)
196 (list obj-diamond))))))
197 (if (or (member obj-floppy dun-inventory)
198 (member obj-floppy (nth dun-current-room dun-room-objects)))
199 (progn
200 (dun-mprincl
201 "You notice your floppy disk beginning to melt. As you grab for it, the
202 disk bursts into flames, and disintegrates.")
203 (dun-remove-obj-from-inven obj-floppy)
204 (dun-remove-obj-from-room dun-current-room obj-floppy))))))))
205
206
207 (defun dun-die (murderer)
208 (dun-mprinc "\n")
209 (if murderer
210 (dun-mprincl "You are dead."))
211 (dun-do-logfile 'dun-die murderer)
212 (dun-score nil)
213 (setq dun-dead t))
214
215 (defun dun-quit (args)
216 (dun-die nil))
217
218 ;;; Print every object in player's inventory. Special case for the jar,
219 ;;; as we must also print what is in it.
220
221 (defun dun-inven (args)
222 (dun-mprinc "You currently have:")
223 (dun-mprinc "\n")
224 (dolist (curobj dun-inventory)
225 (if curobj
226 (progn
227 (dun-mprincl (cadr (nth curobj dun-objects)))
228 (if (and (= curobj obj-jar) dun-jar)
229 (progn
230 (dun-mprincl "The jar contains:")
231 (dolist (x dun-jar)
232 (dun-mprinc " ")
233 (dun-mprincl (cadr (nth x dun-objects))))))))))
234
235 (defun dun-shake (obj)
236 (let (objnum)
237 (when (setq objnum (dun-objnum-from-args-std obj))
238 (if (member objnum dun-inventory)
239 (progn
240 ;;; If shaking anything will do anything, put here.
241 (dun-mprinc "Shaking ")
242 (dun-mprinc (downcase (cadr (nth objnum dun-objects))))
243 (dun-mprinc " seems to have no effect.")
244 (dun-mprinc "\n")
245 )
246 (if (and (not (member objnum (nth dun-current-room dun-room-silents)))
247 (not (member objnum (nth dun-current-room dun-room-objects))))
248 (dun-mprincl "I don't see that here.")
249 ;;; Shaking trees can be deadly
250 (if (= objnum obj-tree)
251 (progn
252 (dun-mprinc
253 "You begin to shake a tree, and notice a coconut begin to fall from the air.
254 As you try to get your hand up to block it, you feel the impact as it lands
255 on your head.")
256 (dun-die "a coconut"))
257 (if (= objnum obj-bear)
258 (progn
259 (dun-mprinc
260 "As you go up to the bear, it removes your head and places it on the ground.")
261 (dun-die "a bear"))
262 (if (< objnum 0)
263 (dun-mprincl "You cannot shake that.")
264 (dun-mprincl "You don't have that.")))))))))
265
266
267 (defun dun-drop (obj)
268 (if dun-inbus
269 (dun-mprincl "You can't drop anything while on the bus.")
270 (let (objnum ptr)
271 (when (setq objnum (dun-objnum-from-args-std obj))
272 (if (not (setq ptr (member objnum dun-inventory)))
273 (dun-mprincl "You don't have that.")
274 (progn
275 (dun-remove-obj-from-inven objnum)
276 (dun-replace dun-room-objects dun-current-room
277 (append (nth dun-current-room dun-room-objects)
278 (list objnum)))
279 (dun-mprincl "Done.")
280 (if (member objnum (list obj-food obj-weight obj-jar))
281 (dun-drop-check objnum))))))))
282
283 ;;; Dropping certain things causes things to happen.
284
285 (defun dun-drop-check (objnum)
286 (if (and (= objnum obj-food) (= room bear-hangout)
287 (member obj-bear (nth bear-hangout dun-room-objects)))
288 (progn
289 (dun-mprincl
290 "The bear takes the food and runs away with it. He left something behind.")
291 (dun-remove-obj-from-room dun-current-room obj-bear)
292 (dun-remove-obj-from-room dun-current-room obj-food)
293 (dun-replace dun-room-objects dun-current-room
294 (append (nth dun-current-room dun-room-objects)
295 (list obj-key)))))
296
297 (if (and (= objnum obj-jar) (member obj-nitric dun-jar)
298 (member obj-glycerine dun-jar))
299 (progn
300 (dun-mprincl
301 "As the jar impacts the ground it explodes into many pieces.")
302 (setq dun-jar nil)
303 (dun-remove-obj-from-room dun-current-room obj-jar)
304 (if (= dun-current-room fourth-vermont-intersection)
305 (progn
306 (setq dun-hole t)
307 (setq dun-current-room vermont-station)
308 (dun-mprincl
309 "The explosion causes a hole to open up in the ground, which you fall
310 through.")))))
311
312 (if (and (= objnum obj-weight) (= dun-current-room maze-button-room))
313 (dun-mprincl "A passageway opens.")))
314
315 ;;; Give long description of current room, or an object.
316
317 (defun dun-examine (obj)
318 (let (objnum)
319 (setq objnum (dun-objnum-from-args obj))
320 (if (eq objnum obj-special)
321 (dun-describe-room (* dun-current-room -1))
322 (if (and (eq objnum obj-computer)
323 (member obj-pc (nth dun-current-room dun-room-silents)))
324 (dun-examine '("pc"))
325 (if (eq objnum nil)
326 (dun-mprincl "I don't know what that is.")
327 (if (and (not (member objnum
328 (nth dun-current-room dun-room-objects)))
329 (not (and (member obj-jar dun-inventory)
330 (member objnum dun-jar)))
331 (not (member objnum
332 (nth dun-current-room dun-room-silents)))
333 (not (member objnum dun-inventory)))
334 (dun-mprincl "I don't see that here.")
335 (if (>= objnum 0)
336 (if (and (= objnum obj-bone)
337 (= dun-current-room marine-life-area) dun-black)
338 (dun-mprincl
339 "In this light you can see some writing on the bone. It says:
340 For an explosive time, go to Fourth St. and Vermont.")
341 (if (nth objnum dun-physobj-desc)
342 (dun-mprincl (nth objnum dun-physobj-desc))
343 (dun-mprincl "I see nothing special about that.")))
344 (if (nth (abs objnum) dun-permobj-desc)
345 (progn
346 (dun-mprincl (nth (abs objnum) dun-permobj-desc)))
347 (dun-mprincl "I see nothing special about that.")))))))))
348
349 (defun dun-take (obj)
350 (setq obj (dun-firstword obj))
351 (if (not obj)
352 (dun-mprincl "You must supply an object.")
353 (if (string= obj "all")
354 (let (gotsome)
355 (if dun-inbus
356 (dun-mprincl "You can't take anything while on the bus.")
357 (setq gotsome nil)
358 (dolist (x (nth dun-current-room dun-room-objects))
359 (if (and (>= x 0) (not (= x obj-special)))
360 (progn
361 (setq gotsome t)
362 (dun-mprinc (cadr (nth x dun-objects)))
363 (dun-mprinc ": ")
364 (dun-take-object x))))
365 (if (not gotsome)
366 (dun-mprincl "Nothing to take."))))
367 (let (objnum)
368 (setq objnum (cdr (assq (intern obj) dun-objnames)))
369 (if (eq objnum nil)
370 (progn
371 (dun-mprinc "I don't know what that is.")
372 (dun-mprinc "\n"))
373 (if (and dun-inbus (not (and (member objnum dun-jar)
374 (member obj-jar dun-inventory))))
375 (dun-mprincl "You can't take anything while on the bus.")
376 (dun-take-object objnum)))))))
377
378 (defun dun-take-object (objnum)
379 (if (and (member objnum dun-jar) (member obj-jar dun-inventory))
380 (let (newjar)
381 (dun-mprincl "You remove it from the jar.")
382 (setq newjar nil)
383 (dolist (x dun-jar)
384 (if (not (= x objnum))
385 (setq newjar (append newjar (list x)))))
386 (setq dun-jar newjar)
387 (setq dun-inventory (append dun-inventory (list objnum))))
388 (if (not (member objnum (nth dun-current-room dun-room-objects)))
389 (if (not (member objnum (nth dun-current-room dun-room-silents)))
390 (dun-mprinc "I do not see that here.")
391 (dun-try-take objnum))
392 (if (>= objnum 0)
393 (progn
394 (if (and (car dun-inventory)
395 (> (+ (dun-inven-weight) (nth objnum dun-object-lbs)) 11))
396 (dun-mprinc "Your load would be too heavy.")
397 (setq dun-inventory (append dun-inventory (list objnum)))
398 (dun-remove-obj-from-room dun-current-room objnum)
399 (dun-mprinc "Taken. ")
400 (if (and (= objnum obj-towel) (= dun-current-room red-room))
401 (dun-mprinc
402 "Taking the towel reveals a hole in the floor."))))
403 (dun-try-take objnum)))
404 (dun-mprinc "\n")))
405
406 (defun dun-inven-weight ()
407 (let (total)
408 (setq total 0)
409 (dolist (x dun-jar)
410 (setq total (+ total (nth x dun-object-lbs))))
411 (dolist (x dun-inventory)
412 (setq total (+ total (nth x dun-object-lbs)))) total))
413
414 ;;; We try to take an object that is untakable. Print a message
415 ;;; depending on what it is.
416
417 (defun dun-try-take (obj)
418 (dun-mprinc "You cannot take that."))
419
420 (defun dun-dig (args)
421 (if dun-inbus
422 (dun-mprincl "Digging here reveals nothing.")
423 (if (not (member 0 dun-inventory))
424 (dun-mprincl "You have nothing with which to dig.")
425 (if (not (nth dun-current-room dun-diggables))
426 (dun-mprincl "Digging here reveals nothing.")
427 (dun-mprincl "I think you found something.")
428 (dun-replace dun-room-objects dun-current-room
429 (append (nth dun-current-room dun-room-objects)
430 (nth dun-current-room dun-diggables)))
431 (dun-replace dun-diggables dun-current-room nil)))))
432
433 (defun dun-climb (obj)
434 (let (objnum)
435 (setq objnum (dun-objnum-from-args obj))
436 (cond ((not objnum)
437 (dun-mprincl "I don't know what that object is."))
438 ((and (not (eq objnum obj-special))
439 (not (member objnum (nth dun-current-room dun-room-objects)))
440 (not (member objnum (nth dun-current-room dun-room-silents)))
441 (not (and (member objnum dun-jar) (member obj-jar dun-inventory)))
442 (not (member objnum dun-inventory)))
443 (dun-mprincl "I don't see that here."))
444 ((and (eq objnum obj-special)
445 (not (member obj-tree (nth dun-current-room dun-room-silents))))
446 (dun-mprincl "There is nothing here to climb."))
447 ((and (not (eq objnum obj-tree)) (not (eq objnum obj-special)))
448 (dun-mprincl "You can't climb that."))
449 (t
450 (dun-mprincl
451 "You manage to get about two feet up the tree and fall back down. You
452 notice that the tree is very unsteady.")))))
453
454 (defun dun-eat (obj)
455 (let (objnum)
456 (when (setq objnum (dun-objnum-from-args-std obj))
457 (if (not (member objnum dun-inventory))
458 (dun-mprincl "You don't have that.")
459 (if (not (= objnum obj-food))
460 (progn
461 (dun-mprinc "You forcefully shove ")
462 (dun-mprinc (downcase (cadr (nth objnum dun-objects))))
463 (dun-mprincl " down your throat, and start choking.")
464 (dun-die "choking"))
465 (dun-mprincl "That tasted horrible.")
466 (dun-remove-obj-from-inven obj-food))))))
467
468 (defun dun-put (args)
469 (let (newargs objnum objnum2 obj)
470 (setq newargs (dun-firstwordl args))
471 (if (not newargs)
472 (dun-mprincl "You must supply an object")
473 (setq obj (intern (car newargs)))
474 (setq objnum (cdr (assq obj dun-objnames)))
475 (if (not objnum)
476 (dun-mprincl "I don't know what that object is.")
477 (if (not (member objnum dun-inventory))
478 (dun-mprincl "You don't have that.")
479 (setq newargs (dun-firstwordl (cdr newargs)))
480 (setq newargs (dun-firstwordl (cdr newargs)))
481 (if (not newargs)
482 (dun-mprincl "You must supply an indirect object.")
483 (setq objnum2 (cdr (assq (intern (car newargs)) dun-objnames)))
484 (if (and (eq objnum2 obj-computer) (= dun-current-room pc-area))
485 (setq objnum2 obj-pc))
486 (if (not objnum2)
487 (dun-mprincl "I don't know what that indirect object is.")
488 (if (and (not (member objnum2
489 (nth dun-current-room dun-room-objects)))
490 (not (member objnum2
491 (nth dun-current-room dun-room-silents)))
492 (not (member objnum2 dun-inventory)))
493 (dun-mprincl "That indirect object is not here.")
494 (dun-put-objs objnum objnum2)))))))))
495
496 (defun dun-put-objs (obj1 obj2)
497 (if (and (= obj2 obj-drop) (not dun-nomail))
498 (setq obj2 obj-chute))
499
500 (if (= obj2 obj-disposal) (setq obj2 obj-chute))
501
502 (if (and (= obj1 obj-cpu) (= obj2 obj-computer))
503 (progn
504 (dun-remove-obj-from-inven obj-cpu)
505 (setq dun-computer t)
506 (dun-mprincl
507 "As you put the CPU board in the computer, it immediately springs to life.
508 The lights start flashing, and the fans seem to startup."))
509 (if (and (= obj1 obj-weight) (= obj2 obj-button))
510 (dun-drop '("weight"))
511 (if (= obj2 obj-jar) ;; Put something in jar
512 (if (not (member obj1 (list obj-paper obj-diamond obj-emerald
513 obj-license obj-coins obj-egg
514 obj-nitric obj-glycerine)))
515 (dun-mprincl "That will not fit in the jar.")
516 (dun-remove-obj-from-inven obj1)
517 (setq dun-jar (append dun-jar (list obj1)))
518 (dun-mprincl "Done."))
519 (if (= obj2 obj-chute) ;; Put something in chute
520 (progn
521 (dun-remove-obj-from-inven obj1)
522 (dun-mprincl
523 "You hear it slide down the chute and off into the distance.")
524 (dun-put-objs-in-treas (list obj1)))
525 (if (= obj2 obj-box) ;; Put key in key box
526 (if (= obj1 obj-key)
527 (progn
528 (dun-mprincl
529 "As you drop the key, the box begins to shake. Finally it explodes
530 with a bang. The key seems to have vanished!")
531 (dun-remove-obj-from-inven obj1)
532 (dun-replace dun-room-objects computer-room (append
533 (nth computer-room
534 dun-room-objects)
535 (list obj1)))
536 (dun-remove-obj-from-room dun-current-room obj-box)
537 (setq dun-key-level (1+ dun-key-level)))
538 (dun-mprincl "You can't put that in the key box!"))
539
540 (if (and (= obj1 obj-floppy) (= obj2 obj-pc))
541 (progn
542 (setq dun-floppy t)
543 (dun-remove-obj-from-inven obj1)
544 (dun-mprincl "Done."))
545
546 (if (= obj2 obj-urinal) ;; Put object in urinal
547 (progn
548 (dun-remove-obj-from-inven obj1)
549 (dun-replace dun-room-objects urinal (append
550 (nth urinal dun-room-objects)
551 (list obj1)))
552 (dun-mprincl
553 "You hear it plop down in some water below."))
554 (if (= obj2 obj-mail)
555 (dun-mprincl "The mail chute is locked.")
556 (if (member obj1 dun-inventory)
557 (dun-mprincl
558 "I don't know how to combine those objects. Perhaps you should
559 just try dropping it.")
560 (dun-mprincl"You can't put that there.")))))))))))
561
562 (defun dun-type (args)
563 (if (not (= dun-current-room computer-room))
564 (dun-mprincl "There is nothing here on which you could type.")
565 (if (not dun-computer)
566 (dun-mprincl
567 "You type on the keyboard, but your characters do not even echo.")
568 (dun-unix-interface))))
569
570 ;;; Various movement directions
571
572 (defun dun-n (args)
573 (dun-move north))
574
575 (defun dun-s (args)
576 (dun-move south))
577
578 (defun dun-e (args)
579 (dun-move east))
580
581 (defun dun-w (args)
582 (dun-move west))
583
584 (defun dun-ne (args)
585 (dun-move northeast))
586
587 (defun dun-se (args)
588 (dun-move southeast))
589
590 (defun dun-nw (args)
591 (dun-move northwest))
592
593 (defun dun-sw (args)
594 (dun-move southwest))
595
596 (defun dun-up (args)
597 (dun-move up))
598
599 (defun dun-down (args)
600 (dun-move down))
601
602 (defun dun-in (args)
603 (dun-move in))
604
605 (defun dun-out (args)
606 (dun-move out))
607
608 (defun dun-go (args)
609 (if (or (not (car args))
610 (eq (dun-doverb dun-ignore dun-verblist (car args)
611 (cdr (cdr args))) -1))
612 (dun-mprinc "I don't understand where you want me to go.\n")))
613
614 ;;; Uses the dungeon-map to figure out where we are going. If the
615 ;;; requested direction yields 255, we know something special is
616 ;;; supposed to happen, or perhaps you can't go that way unless
617 ;;; certain conditions are met.
618
619 (defun dun-move (dir)
620 (if (and (not (member dun-current-room dun-light-rooms))
621 (not (member obj-lamp dun-inventory)))
622 (progn
623 (dun-mprinc
624 "You trip over a grue and fall into a pit and break every bone in your
625 body.")
626 (dun-die "a grue"))
627 (let (newroom)
628 (setq newroom (nth dir (nth dun-current-room dungeon-map)))
629 (if (eq newroom -1)
630 (dun-mprinc "You can't go that way.\n")
631 (if (eq newroom 255)
632 (dun-special-move dir)
633 (setq room -1)
634 (setq dun-lastdir dir)
635 (if dun-inbus
636 (progn
637 (if (or (< newroom 58) (> newroom 83))
638 (dun-mprincl "The bus cannot go this way.")
639 (dun-mprincl
640 "The bus lurches ahead and comes to a screeching halt.")
641 (dun-remove-obj-from-room dun-current-room obj-bus)
642 (setq dun-current-room newroom)
643 (dun-replace dun-room-objects newroom
644 (append (nth newroom dun-room-objects)
645 (list obj-bus)))))
646 (setq dun-current-room newroom)))))))
647
648 ;;; Movement in this direction causes something special to happen if the
649 ;;; right conditions exist. It may be that you can't go this way unless
650 ;;; you have a key, or a passage has been opened.
651
652 ;;; coding note: Each check of the current room is on the same 'if' level,
653 ;;; i.e. there aren't else's. If two rooms next to each other have
654 ;;; specials, and they are connected by specials, this could cause
655 ;;; a problem. Be careful when adding them to consider this, and
656 ;;; perhaps use else's.
657
658 (defun dun-special-move (dir)
659 (if (= dun-current-room building-front)
660 (if (not (member obj-key dun-inventory))
661 (dun-mprincl "You don't have a key that can open this door.")
662 (setq dun-current-room old-building-hallway))
663 (if (= dun-current-room north-end-of-cave-passage)
664 (let (combo)
665 (dun-mprincl
666 "You must type a 3 digit combination code to enter this room.")
667 (dun-mprinc "Enter it here: ")
668 (setq combo (dun-read-line))
669 (if (not dun-batch-mode)
670 (dun-mprinc "\n"))
671 (if (string= combo dun-combination)
672 (setq dun-current-room gamma-computing-center)
673 (dun-mprincl "Sorry, that combination is incorrect."))))
674
675 (if (= dun-current-room bear-hangout)
676 (if (member obj-bear (nth bear-hangout dun-room-objects))
677 (progn
678 (dun-mprinc
679 "The bear is very annoyed that you would be so presumptuous as to try
680 and walk right by it. He tells you so by tearing your head off.
681 ")
682 (dun-die "a bear"))
683 (dun-mprincl "You can't go that way.")))
684
685 (if (= dun-current-room vermont-station)
686 (progn
687 (dun-mprincl
688 "As you board the train it immediately leaves the station. It is a very
689 bumpy ride. It is shaking from side to side, and up and down. You
690 sit down in one of the chairs in order to be more comfortable.")
691 (dun-mprincl
692 "\nFinally the train comes to a sudden stop, and the doors open, and some
693 force throws you out. The train speeds away.\n")
694 (setq dun-current-room museum-station)))
695
696 (if (= dun-current-room old-building-hallway)
697 (if (and (member obj-key dun-inventory)
698 (> dun-key-level 0))
699 (setq dun-current-room meadow)
700 (dun-mprincl "You don't have a key that can open this door.")))
701
702 (if (and (= dun-current-room maze-button-room) (= dir northwest))
703 (if (member obj-weight (nth maze-button-room dun-room-objects))
704 (setq dun-current-room 18)
705 (dun-mprincl "You can't go that way.")))
706
707 (if (and (= dun-current-room maze-button-room) (= dir up))
708 (if (member obj-weight (nth maze-button-room dun-room-objects))
709 (dun-mprincl "You can't go that way.")
710 (setq dun-current-room weight-room)))
711
712 (if (= dun-current-room classroom)
713 (dun-mprincl "The door is locked."))
714
715 (if (or (= dun-current-room lakefront-north)
716 (= dun-current-room lakefront-south))
717 (dun-swim nil))
718
719 (if (= dun-current-room reception-area)
720 (if (not (= dun-sauna-level 3))
721 (setq dun-current-room health-club-front)
722 (dun-mprincl
723 "As you exit the building, you notice some flames coming out of one of the
724 windows. Suddenly, the building explodes in a huge ball of fire. The flames
725 engulf you, and you burn to death.")
726 (dun-die "burning")))
727
728 (if (= dun-current-room red-room)
729 (if (not (member obj-towel (nth red-room dun-room-objects)))
730 (setq dun-current-room long-n-s-hallway)
731 (dun-mprincl "You can't go that way.")))
732
733 (if (and (> dir down) (> dun-current-room gamma-computing-center)
734 (< dun-current-room museum-lobby))
735 (if (not (member obj-bus (nth dun-current-room dun-room-objects)))
736 (dun-mprincl "You can't go that way.")
737 (if (= dir in)
738 (if dun-inbus
739 (dun-mprincl
740 "You are already in the bus!")
741 (if (member obj-license dun-inventory)
742 (progn
743 (dun-mprincl
744 "You board the bus and get in the driver's seat.")
745 (setq dun-nomail t)
746 (setq dun-inbus t))
747 (dun-mprincl "You are not licensed for this type of vehicle.")))
748 (if (not dun-inbus)
749 (dun-mprincl "You are already off the bus!")
750 (dun-mprincl "You hop off the bus.")
751 (setq dun-inbus nil))))
752 (if (= dun-current-room fifth-oaktree-intersection)
753 (if (not dun-inbus)
754 (progn
755 (dun-mprincl "You fall down the cliff and land on your head.")
756 (dun-die "a cliff"))
757 (dun-mprincl
758 "The bus flies off the cliff, and plunges to the bottom, where it explodes.")
759 (dun-die "a bus accident")))
760 (if (= dun-current-room main-maple-intersection)
761 (progn
762 (if (not dun-inbus)
763 (dun-mprincl "The gate will not open.")
764 (dun-mprincl
765 "As the bus approaches, the gate opens and you drive through.")
766 (dun-remove-obj-from-room main-maple-intersection obj-bus)
767 (dun-replace dun-room-objects museum-entrance
768 (append (nth museum-entrance dun-room-objects)
769 (list obj-bus)))
770 (setq dun-current-room museum-entrance)))))
771 (if (= dun-current-room cave-entrance)
772 (progn
773 (dun-mprincl
774 "As you enter the room you hear a rumbling noise. You look back to see
775 huge rocks sliding down from the ceiling, and blocking your way out.\n")
776 (setq dun-current-room misty-room)))))
777
778 (defun dun-long (args)
779 (setq dun-mode "long"))
780
781 (defun dun-turn (obj)
782 (let (objnum direction)
783 (when (setq objnum (dun-objnum-from-args-std obj))
784 (if (not (or (member objnum (nth dun-current-room dun-room-objects))
785 (member objnum (nth dun-current-room dun-room-silents))))
786 (dun-mprincl "I don't see that here.")
787 (if (not (= objnum obj-dial))
788 (dun-mprincl "You can't turn that.")
789 (setq direction (dun-firstword (cdr obj)))
790 (if (or (not direction)
791 (not (or (string= direction "clockwise")
792 (string= direction "counterclockwise"))))
793 (dun-mprincl "You must indicate clockwise or counterclockwise.")
794 (if (string= direction "clockwise")
795 (setq dun-sauna-level (+ dun-sauna-level 1))
796 (setq dun-sauna-level (- dun-sauna-level 1)))
797
798 (if (< dun-sauna-level 0)
799 (progn
800 (dun-mprincl
801 "The dial will not turn further in that direction.")
802 (setq dun-sauna-level 0))
803 (dun-sauna-heat))))))))
804
805 (defun dun-sauna-heat ()
806 (if (= dun-sauna-level 0)
807 (dun-mprincl
808 "The temperature has returned to normal room temperature."))
809 (if (= dun-sauna-level 1)
810 (dun-mprincl "It is now luke warm in here. You are perspiring."))
811 (if (= dun-sauna-level 2)
812 (dun-mprincl "It is pretty hot in here. It is still very comfortable."))
813 (if (= dun-sauna-level 3)
814 (progn
815 (dun-mprincl
816 "It is now very hot. There is something very refreshing about this.")
817 (if (or (member obj-rms dun-inventory)
818 (member obj-rms (nth dun-current-room dun-room-objects)))
819 (progn
820 (dun-mprincl
821 "You notice the wax on your statuette beginning to melt, until it completely
822 melts off. You are left with a beautiful diamond!")
823 (if (member obj-rms dun-inventory)
824 (progn
825 (dun-remove-obj-from-inven obj-rms)
826 (setq dun-inventory (append dun-inventory
827 (list obj-diamond))))
828 (dun-remove-obj-from-room dun-current-room obj-rms)
829 (dun-replace dun-room-objects dun-current-room
830 (append (nth dun-current-room dun-room-objects)
831 (list obj-diamond))))))
832 (if (or (member obj-floppy dun-inventory)
833 (member obj-floppy (nth dun-current-room dun-room-objects)))
834 (progn
835 (dun-mprincl
836 "You notice your floppy disk beginning to melt. As you grab for it, the
837 disk bursts into flames, and disintegrates.")
838 (if (member obj-floppy dun-inventory)
839 (dun-remove-obj-from-inven obj-floppy)
840 (dun-remove-obj-from-room dun-current-room obj-floppy))))))
841
842 (if (= dun-sauna-level 4)
843 (progn
844 (dun-mprincl
845 "As the dial clicks into place, you immediately burst into flames.")
846 (dun-die "burning"))))
847
848 (defun dun-press (obj)
849 (let (objnum)
850 (when (setq objnum (dun-objnum-from-args-std obj))
851 (if (not (or (member objnum (nth dun-current-room dun-room-objects))
852 (member objnum (nth dun-current-room dun-room-silents))))
853 (dun-mprincl "I don't see that here.")
854 (if (not (member objnum (list obj-button obj-switch)))
855 (progn
856 (dun-mprinc "You can't ")
857 (dun-mprinc (car line-list))
858 (dun-mprincl " that."))
859 (if (= objnum obj-button)
860 (dun-mprincl
861 "As you press the button, you notice a passageway open up, but
862 as you release it, the passageway closes."))
863 (if (= objnum obj-switch)
864 (if dun-black
865 (progn
866 (dun-mprincl "The button is now in the off position.")
867 (setq dun-black nil))
868 (dun-mprincl "The button is now in the on position.")
869 (setq dun-black t))))))))
870
871 (defun dun-swim (args)
872 (if (not (member dun-current-room (list lakefront-north lakefront-south)))
873 (dun-mprincl "I see no water!")
874 (if (not (member obj-life dun-inventory))
875 (progn
876 (dun-mprincl
877 "You dive in the water, and at first notice it is quite cold. You then
878 start to get used to it as you realize that you never really learned how
879 to swim.")
880 (dun-die "drowning"))
881 (if (= dun-current-room lakefront-north)
882 (setq dun-current-room lakefront-south)
883 (setq dun-current-room lakefront-north)))))
884
885
886 (defun dun-score (args)
887 (if (not dun-endgame)
888 (let (total)
889 (setq total (dun-reg-score))
890 (dun-mprinc "You have scored ")
891 (dun-mprinc total)
892 (dun-mprincl " out of a possible 90 points.") total)
893 (dun-mprinc "You have scored ")
894 (dun-mprinc (dun-endgame-score))
895 (dun-mprincl " endgame points out of a possible 110.")
896 (if (= (dun-endgame-score) 110)
897 (dun-mprincl
898 "\n\nCongratulations. You have won. The wizard password is 'moby'"))))
899
900 (defun dun-help (args)
901 (dun-mprincl
902 "Welcome to dunnet (2.01), by Ron Schnell (ronnie@driver-aces.com).
903 Here is some useful information (read carefully because there are one
904 or more clues in here):
905 - If you have a key that can open a door, you do not need to explicitly
906 open it. You may just use 'in' or walk in the direction of the door.
907
908 - If you have a lamp, it is always lit.
909
910 - You will not get any points until you manage to get treasures to a certain
911 place. Simply finding the treasures is not good enough. There is more
912 than one way to get a treasure to the special place. It is also
913 important that the objects get to the special place *unharmed* and
914 *untarnished*. You can tell if you have successfully transported the
915 object by looking at your score, as it changes immediately. Note that
916 an object can become harmed even after you have received points for it.
917 If this happens, your score will decrease, and in many cases you can never
918 get credit for it again.
919
920 - You can save your game with the 'save' command, and use restore it
921 with the 'restore' command.
922
923 - There are no limits on lengths of object names.
924
925 - Directions are: north,south,east,west,northeast,southeast,northwest,
926 southwest,up,down,in,out.
927
928 - These can be abbreviated: n,s,e,w,ne,se,nw,sw,u,d,in,out.
929
930 - If you go down a hole in the floor without an aid such as a ladder,
931 you probably won't be able to get back up the way you came, if at all.
932
933 - To run this game in batch mode (no Emacs window), use:
934 emacs -batch -l dunnet
935 NOTE: This game *should* be run in batch mode!
936
937 If you have questions or comments, please contact ronnie@driver-aces.com
938 My home page is http://www.driver-aces.com/ronnie.html
939 "))
940
941 (defun dun-flush (args)
942 (if (not (= dun-current-room bathroom))
943 (dun-mprincl "I see nothing to flush.")
944 (dun-mprincl "Whoooosh!!")
945 (dun-put-objs-in-treas (nth urinal dun-room-objects))
946 (dun-replace dun-room-objects urinal nil)))
947
948 (defun dun-piss (args)
949 (if (not (= dun-current-room bathroom))
950 (dun-mprincl "You can't do that here, don't even bother trying.")
951 (if (not dun-gottago)
952 (dun-mprincl "I'm afraid you don't have to go now.")
953 (dun-mprincl "That was refreshing.")
954 (setq dun-gottago nil)
955 (dun-replace dun-room-objects urinal (append
956 (nth urinal dun-room-objects)
957 (list obj-URINE))))))
958
959
960 (defun dun-sleep (args)
961 (if (not (= dun-current-room bedroom))
962 (dun-mprincl
963 "You try to go to sleep while standing up here, but can't seem to do it.")
964 (setq dun-gottago t)
965 (dun-mprincl
966 "As soon as you start to doze off you begin dreaming. You see images of
967 workers digging caves, slaving in the humid heat. Then you see yourself
968 as one of these workers. While no one is looking, you leave the group
969 and walk into a room. The room is bare except for a horseshoe
970 shaped piece of stone in the center. You see yourself digging a hole in
971 the ground, then putting some kind of treasure in it, and filling the hole
972 with dirt again. After this, you immediately wake up.")))
973
974 (defun dun-break (obj)
975 (let (objnum)
976 (if (not (member obj-axe dun-inventory))
977 (dun-mprincl "You have nothing you can use to break things.")
978 (when (setq objnum (dun-objnum-from-args-std obj))
979 (if (member objnum dun-inventory)
980 (progn
981 (dun-mprincl
982 "You take the object in your hands and swing the axe. Unfortunately, you miss
983 the object and slice off your hand. You bleed to death.")
984 (dun-die "an axe"))
985 (if (not (or (member objnum (nth dun-current-room dun-room-objects))
986 (member objnum
987 (nth dun-current-room dun-room-silents))))
988 (dun-mprincl "I don't see that here.")
989 (if (= objnum obj-cable)
990 (progn
991 (dun-mprincl
992 "As you break the ethernet cable, everything starts to blur. You collapse
993 for a moment, then straighten yourself up.
994 ")
995 (dun-replace dun-room-objects gamma-computing-center
996 (append
997 (nth gamma-computing-center dun-room-objects)
998 dun-inventory))
999 (if (member obj-key dun-inventory)
1000 (progn
1001 (setq dun-inventory (list obj-key))
1002 (dun-remove-obj-from-room
1003 gamma-computing-center obj-key))
1004 (setq dun-inventory nil))
1005 (setq dun-current-room computer-room)
1006 (setq dun-ethernet nil)
1007 (dun-mprincl "Connection closed.")
1008 (dun-unix-interface))
1009 (if (< objnum 0)
1010 (progn
1011 (dun-mprincl "Your axe shatters into a million pieces.")
1012 (dun-remove-obj-from-inven obj-axe))
1013 (dun-mprincl "Your axe breaks it into a million pieces.")
1014 (dun-remove-obj-from-room dun-current-room objnum)))))))))
1015
1016 (defun dun-drive (args)
1017 (if (not dun-inbus)
1018 (dun-mprincl "You cannot drive when you aren't in a vehicle.")
1019 (dun-mprincl "To drive while you are in the bus, just give a direction.")))
1020
1021 (defun dun-superb (args)
1022 (setq dun-mode 'dun-superb))
1023
1024 (defun dun-reg-score ()
1025 (let (total)
1026 (setq total 0)
1027 (dolist (x (nth treasure-room dun-room-objects))
1028 (setq total (+ total (nth x dun-object-pts))))
1029 (if (member obj-URINE (nth treasure-room dun-room-objects))
1030 (setq total 0)) total))
1031
1032 (defun dun-endgame-score ()
1033 (let (total)
1034 (setq total 0)
1035 (dolist (x (nth endgame-treasure-room dun-room-objects))
1036 (setq total (+ total (nth x dun-object-pts)))) total))
1037
1038 (defun dun-answer (args)
1039 (if (not dun-correct-answer)
1040 (dun-mprincl "I don't believe anyone asked you anything.")
1041 (setq args (car args))
1042 (if (not args)
1043 (dun-mprincl "You must give the answer on the same line.")
1044 (if (dun-members args dun-correct-answer)
1045 (progn
1046 (dun-mprincl "Correct.")
1047 (if (= dun-lastdir 0)
1048 (setq dun-current-room (1+ dun-current-room))
1049 (setq dun-current-room (- dun-current-room 1)))
1050 (setq dun-correct-answer nil))
1051 (dun-mprincl "That answer is incorrect.")))))
1052
1053 (defun dun-endgame-question ()
1054 (if (not dun-endgame-questions)
1055 (progn
1056 (dun-mprincl "Your question is:")
1057 (dun-mprincl "No more questions, just do 'answer foo'.")
1058 (setq dun-correct-answer '("foo")))
1059 (let (which i newques)
1060 (setq i 0)
1061 (setq newques nil)
1062 (setq which (random (length dun-endgame-questions)))
1063 (dun-mprincl "Your question is:")
1064 (dun-mprincl (setq dun-endgame-question (car
1065 (nth which
1066 dun-endgame-questions))))
1067 (setq dun-correct-answer (cdr (nth which dun-endgame-questions)))
1068 (while (< i which)
1069 (setq newques (append newques (list (nth i dun-endgame-questions))))
1070 (setq i (1+ i)))
1071 (setq i (1+ which))
1072 (while (< i (length dun-endgame-questions))
1073 (setq newques (append newques (list (nth i dun-endgame-questions))))
1074 (setq i (1+ i)))
1075 (setq dun-endgame-questions newques))))
1076
1077 (defun dun-power (args)
1078 (if (not (= dun-current-room pc-area))
1079 (dun-mprincl "That operation is not applicable here.")
1080 (if (not dun-floppy)
1081 (dun-dos-no-disk)
1082 (dun-dos-interface))))
1083
1084 (defun dun-feed (args)
1085 (let (objnum)
1086 (when (setq objnum (dun-objnum-from-args-std args))
1087 (if (and (= objnum obj-bear)
1088 (member obj-bear (nth dun-current-room dun-room-objects)))
1089 (progn
1090 (if (not (member obj-food dun-inventory))
1091 (dun-mprincl "You have nothing with which to feed it.")
1092 (dun-drop '("food"))))
1093 (if (not (or (member objnum (nth dun-current-room dun-room-objects))
1094 (member objnum dun-inventory)
1095 (member objnum (nth dun-current-room dun-room-silents))))
1096 (dun-mprincl "I don't see that here.")
1097 (dun-mprincl "You cannot feed that."))))))
1098
1099
1100 ;;;;
1101 ;;;; This section defines various utility functions used
1102 ;;;; by dunnet.
1103 ;;;;
1104
1105
1106 ;;; Function which takes a verb and a list of other words. Calls proper
1107 ;;; function associated with the verb, and passes along the other words.
1108
1109 (defun dun-doverb (dun-ignore dun-verblist verb rest)
1110 (if (not verb)
1111 nil
1112 (if (member (intern verb) dun-ignore)
1113 (if (not (car rest)) -1
1114 (dun-doverb dun-ignore dun-verblist (car rest) (cdr rest)))
1115 (if (not (cdr (assq (intern verb) dun-verblist))) -1
1116 (setq dun-numcmds (1+ dun-numcmds))
1117 (eval (list (cdr (assq (intern verb) dun-verblist)) (quote rest)))))))
1118
1119
1120 ;;; Function to take a string and change it into a list of lowercase words.
1121
1122 (defun dun-listify-string (strin)
1123 (let (pos ret-list end-pos)
1124 (setq pos 0)
1125 (setq ret-list nil)
1126 (while (setq end-pos (string-match "[ ,:;]" (substring strin pos)))
1127 (setq end-pos (+ end-pos pos))
1128 (if (not (= end-pos pos))
1129 (setq ret-list (append ret-list (list
1130 (downcase
1131 (substring strin pos end-pos))))))
1132 (setq pos (+ end-pos 1))) ret-list))
1133
1134 (defun dun-listify-string2 (strin)
1135 (let (pos ret-list end-pos)
1136 (setq pos 0)
1137 (setq ret-list nil)
1138 (while (setq end-pos (string-match " " (substring strin pos)))
1139 (setq end-pos (+ end-pos pos))
1140 (if (not (= end-pos pos))
1141 (setq ret-list (append ret-list (list
1142 (downcase
1143 (substring strin pos end-pos))))))
1144 (setq pos (+ end-pos 1))) ret-list))
1145
1146 (defun dun-replace (list n number)
1147 (rplaca (nthcdr n list) number))
1148
1149
1150 ;;; Get the first non-ignored word from a list.
1151
1152 (defun dun-firstword (list)
1153 (if (not (car list))
1154 nil
1155 (while (and list (member (intern (car list)) dun-ignore))
1156 (setq list (cdr list)))
1157 (car list)))
1158
1159 (defun dun-firstwordl (list)
1160 (if (not (car list))
1161 nil
1162 (while (and list (member (intern (car list)) dun-ignore))
1163 (setq list (cdr list)))
1164 list))
1165
1166 ;;; parse a line passed in as a string Call the proper verb with the
1167 ;;; rest of the line passed in as a list.
1168
1169 (defun dun-vparse (dun-ignore dun-verblist line)
1170 (dun-mprinc "\n")
1171 (setq line-list (dun-listify-string (concat line " ")))
1172 (dun-doverb dun-ignore dun-verblist (car line-list) (cdr line-list)))
1173
1174 (defun dun-parse2 (dun-ignore dun-verblist line)
1175 (dun-mprinc "\n")
1176 (setq line-list (dun-listify-string2 (concat line " ")))
1177 (dun-doverb dun-ignore dun-verblist (car line-list) (cdr line-list)))
1178
1179 ;;; Read a line, in window mode
1180
1181 (defun dun-read-line ()
1182 (let (line)
1183 (setq line (read-string ""))
1184 (dun-mprinc line) line))
1185
1186 ;;; Insert something into the window buffer
1187
1188 (defun dun-minsert (string)
1189 (if (stringp string)
1190 (insert string)
1191 (insert (prin1-to-string string))))
1192
1193 ;;; Print something out, in window mode
1194
1195 (defun dun-mprinc (string)
1196 (if (stringp string)
1197 (insert string)
1198 (insert (prin1-to-string string))))
1199
1200 ;;; In window mode, keep screen from jumping by keeping last line at
1201 ;;; the bottom of the screen.
1202
1203 (defun dun-fix-screen ()
1204 (interactive)
1205 (forward-line (- 0 (- (window-height) 2 )))
1206 (set-window-start (selected-window) (point))
1207 (end-of-buffer))
1208
1209 ;;; Insert something into the buffer, followed by newline.
1210
1211 (defun dun-minsertl (string)
1212 (dun-minsert string)
1213 (dun-minsert "\n"))
1214
1215 ;;; Print something, followed by a newline.
1216
1217 (defun dun-mprincl (string)
1218 (dun-mprinc string)
1219 (dun-mprinc "\n"))
1220
1221 ;;; Function which will get an object number given the list of
1222 ;;; words in the command, except for the verb.
1223
1224 (defun dun-objnum-from-args (obj)
1225 (let (objnum)
1226 (setq obj (dun-firstword obj))
1227 (if (not obj)
1228 obj-special
1229 (setq objnum (cdr (assq (intern obj) dun-objnames))))))
1230
1231 (defun dun-objnum-from-args-std (obj)
1232 (let (result)
1233 (if (eq (setq result (dun-objnum-from-args obj)) obj-special)
1234 (dun-mprincl "You must supply an object."))
1235 (if (eq result nil)
1236 (dun-mprincl "I don't know what that is."))
1237 (if (eq result obj-special)
1238 nil
1239 result)))
1240
1241 ;;; Take a short room description, and change spaces and slashes to dashes.
1242
1243 (defun dun-space-to-hyphen (string)
1244 (let (space)
1245 (if (setq space (string-match "[ /]" string))
1246 (progn
1247 (setq string (concat (substring string 0 space) "-"
1248 (substring string (1+ space))))
1249 (dun-space-to-hyphen string))
1250 string)))
1251
1252 ;;; Given a unix style pathname, build a list of path components (recursive)
1253
1254 (defun dun-get-path (dirstring startlist)
1255 (let (slash pos)
1256 (if (= (length dirstring) 0)
1257 startlist
1258 (if (string= (substring dirstring 0 1) "/")
1259 (dun-get-path (substring dirstring 1) (append startlist (list "/")))
1260 (if (not (setq slash (string-match "/" dirstring)))
1261 (append startlist (list dirstring))
1262 (dun-get-path (substring dirstring (1+ slash))
1263 (append startlist
1264 (list (substring dirstring 0 slash)))))))))
1265
1266
1267 ;;; Is a string a member of a string list?
1268
1269 (defun dun-members (string string-list)
1270 (let (found)
1271 (setq found nil)
1272 (dolist (x string-list)
1273 (if (string= x string)
1274 (setq found t))) found))
1275
1276 ;;; Function to put objects in the treasure room. Also prints current
1277 ;;; score to let user know he has scored.
1278
1279 (defun dun-put-objs-in-treas (objlist)
1280 (let (oscore newscore)
1281 (setq oscore (dun-reg-score))
1282 (dun-replace dun-room-objects 0 (append (nth 0 dun-room-objects) objlist))
1283 (setq newscore (dun-reg-score))
1284 (if (not (= oscore newscore))
1285 (dun-score nil))))
1286
1287 ;;; Load an encrypted file, and eval it.
1288
1289 (defun dun-load-d (filename)
1290 (let (old-buffer result)
1291 (setq result t)
1292 (setq old-buffer (current-buffer))
1293 (switch-to-buffer (get-buffer-create "*loadc*"))
1294 (erase-buffer)
1295 (condition-case nil
1296 (insert-file-contents filename)
1297 (error (setq result nil)))
1298 (unless (not result)
1299 (condition-case nil
1300 (dun-rot13)
1301 (error (yank)))
1302 (eval-buffer)
1303 (kill-buffer (current-buffer)))
1304 (switch-to-buffer old-buffer)
1305 result))
1306
1307 ;;; Functions to remove an object either from a room, or from inventory.
1308
1309 (defun dun-remove-obj-from-room (room objnum)
1310 (let (newroom)
1311 (setq newroom nil)
1312 (dolist (x (nth room dun-room-objects))
1313 (if (not (= x objnum))
1314 (setq newroom (append newroom (list x)))))
1315 (rplaca (nthcdr room dun-room-objects) newroom)))
1316
1317 (defun dun-remove-obj-from-inven (objnum)
1318 (let (new-inven)
1319 (setq new-inven nil)
1320 (dolist (x dun-inventory)
1321 (if (not (= x objnum))
1322 (setq new-inven (append new-inven (list x)))))
1323 (setq dun-inventory new-inven)))
1324
1325
1326 (let ((i 0) (lower "abcdefghijklmnopqrstuvwxyz") upper)
1327 (setq dun-translate-table (make-vector 256 0))
1328 (while (< i 256)
1329 (aset dun-translate-table i i)
1330 (setq i (1+ i)))
1331 (setq lower (concat lower lower))
1332 (setq upper (upcase lower))
1333 (setq i 0)
1334 (while (< i 26)
1335 (aset dun-translate-table (+ ?a i) (aref lower (+ i 13)))
1336 (aset dun-translate-table (+ ?A i) (aref upper (+ i 13)))
1337 (setq i (1+ i))))
1338
1339 (defun dun-rot13 ()
1340 (let (str len (i 0))
1341 (setq str (buffer-substring (point-min) (point-max)))
1342 (setq len (length str))
1343 (while (< i len)
1344 (aset str i (aref dun-translate-table (aref str i)))
1345 (setq i (1+ i)))
1346 (erase-buffer)
1347 (insert str)))
1348
1349 ;;;;
1350 ;;;; This section defines the globals that are used in dunnet.
1351 ;;;;
1352 ;;;; IMPORTANT
1353 ;;;; All globals which can change must be saved from 'save-game. Add
1354 ;;;; all new globals to bottom of file.
1355
1356 (setq dun-visited '(27))
1357 (setq dun-current-room 1)
1358 (setq dun-exitf nil)
1359 (setq dun-badcd nil)
1360 (define-obsolete-variable-alias 'dungeon-mode-map 'dun-mode-map "22.1")
1361 (define-key dun-mode-map "\r" 'dun-parse)
1362 (defvar dungeon-batch-map (make-keymap))
1363 (if (string= (substring emacs-version 0 2) "18")
1364 (let (n)
1365 (setq n 32)
1366 (while (< 0 (setq n (- n 1)))
1367 (aset dungeon-batch-map n 'dungeon-nil)))
1368 (let (n)
1369 (setq n 32)
1370 (while (< 0 (setq n (- n 1)))
1371 (aset (car (cdr dungeon-batch-map)) n 'dungeon-nil))))
1372 (define-key dungeon-batch-map "\r" 'exit-minibuffer)
1373 (define-key dungeon-batch-map "\n" 'exit-minibuffer)
1374 (setq dun-computer nil)
1375 (setq dun-floppy nil)
1376 (setq dun-key-level 0)
1377 (setq dun-hole nil)
1378 (setq dun-correct-answer nil)
1379 (setq dun-lastdir 0)
1380 (setq dun-numsaves 0)
1381 (setq dun-jar nil)
1382 (setq dun-dead nil)
1383 (setq room 0)
1384 (setq dun-numcmds 0)
1385 (setq dun-wizard nil)
1386 (setq dun-endgame-question nil)
1387 (setq dun-logged-in nil)
1388 (setq dungeon-mode 'dungeon)
1389 (setq dun-unix-verbs '((ls . dun-ls) (ftp . dun-ftp) (echo . dun-echo)
1390 (exit . dun-uexit) (cd . dun-cd) (pwd . dun-pwd)
1391 (rlogin . dun-rlogin) (uncompress . dun-uncompress)
1392 (cat . dun-cat) (zippy . dun-zippy)))
1393
1394 (setq dun-dos-verbs '((dir . dun-dos-dir) (type . dun-dos-type)
1395 (exit . dun-dos-exit) (command . dun-dos-spawn)
1396 (b: . dun-dos-invd) (c: . dun-dos-invd)
1397 (a: . dun-dos-nil)))
1398
1399
1400 (setq dun-batch-mode nil)
1401
1402 (setq dun-cdpath "/usr/toukmond")
1403 (setq dun-cdroom -10)
1404 (setq dun-uncompressed nil)
1405 (setq dun-ethernet t)
1406 (setq dun-restricted
1407 '(dun-room-objects dungeon-map dun-rooms
1408 dun-room-silents dun-combination))
1409 (setq dun-ftptype 'ascii)
1410 (setq dun-endgame nil)
1411 (setq dun-gottago t)
1412 (setq dun-black nil)
1413
1414 (setq dun-rooms '(
1415 (
1416 "You are in the treasure room. A door leads out to the north."
1417 "Treasure room"
1418 )
1419 (
1420 "You are at a dead end of a dirt road. The road goes to the east.
1421 In the distance you can see that it will eventually fork off. The
1422 trees here are very tall royal palms, and they are spaced equidistant
1423 from each other."
1424 "Dead end"
1425 )
1426 (
1427 "You are on the continuation of a dirt road. There are more trees on
1428 both sides of you. The road continues to the east and west."
1429 "E/W Dirt road"
1430 )
1431 (
1432 "You are at a fork of two passages, one to the northeast, and one to the
1433 southeast. The ground here seems very soft. You can also go back west."
1434 "Fork"
1435 )
1436 (
1437 "You are on a northeast/southwest road."
1438 "NE/SW road"
1439 )
1440 (
1441 "You are at the end of the road. There is a building in front of you
1442 to the northeast, and the road leads back to the southwest."
1443 "Building front"
1444 )
1445 (
1446 "You are on a southeast/northwest road."
1447 "SE/NW road"
1448 )
1449 (
1450 "You are standing at the end of a road. A passage leads back to the
1451 northwest."
1452 "Bear hangout"
1453 )
1454 (
1455 "You are in the hallway of an old building. There are rooms to the east
1456 and west, and doors leading out to the north and south."
1457 "Old Building hallway"
1458 )
1459 (
1460 "You are in a mailroom. There are many bins where the mail is usually
1461 kept. The exit is to the west."
1462 "Mailroom"
1463 )
1464 (
1465 "You are in a computer room. It seems like most of the equipment has
1466 been removed. There is a VAX 11/780 in front of you, however, with
1467 one of the cabinets wide open. A sign on the front of the machine
1468 says: This VAX is named 'pokey'. To type on the console, use the
1469 'type' command. The exit is to the east."
1470 "Computer room"
1471 )
1472 (
1473 "You are in a meadow in the back of an old building. A small path leads
1474 to the west, and a door leads to the south."
1475 "Meadow"
1476 )
1477 (
1478 "You are in a round, stone room with a door to the east. There
1479 is a sign on the wall that reads: 'receiving room'."
1480 "Receiving room"
1481 )
1482 (
1483 "You are at the south end of a hallway that leads to the north. There
1484 are rooms to the east and west."
1485 "Northbound Hallway"
1486 )
1487 (
1488 "You are in a sauna. There is nothing in the room except for a dial
1489 on the wall. A door leads out to west."
1490 "Sauna"
1491 )
1492 (
1493 "You are at the end of a north/south hallway. You can go back to the south,
1494 or off to a room to the east."
1495 "End of N/S Hallway"
1496 )
1497 (
1498 "You are in an old weight room. All of the equipment is either destroyed
1499 or completely broken. There is a door out to the west, and there is a ladder
1500 leading down a hole in the floor."
1501 "Weight room" ;16
1502 )
1503 (
1504 "You are in a maze of twisty little passages, all alike.
1505 There is a button on the ground here."
1506 "Maze button room"
1507 )
1508 (
1509 "You are in a maze of little twisty passages, all alike."
1510 "Maze"
1511 )
1512 (
1513 "You are in a maze of thirsty little passages, all alike."
1514 "Maze" ;19
1515 )
1516 (
1517 "You are in a maze of twenty little passages, all alike."
1518 "Maze"
1519 )
1520 (
1521 "You are in a daze of twisty little passages, all alike."
1522 "Maze" ;21
1523 )
1524 (
1525 "You are in a maze of twisty little cabbages, all alike."
1526 "Maze" ;22
1527 )
1528 (
1529 "You are in a reception area for a health and fitness center. The place
1530 appears to have been recently ransacked, and nothing is left. There is
1531 a door out to the south, and a crawlspace to the southeast."
1532 "Reception area"
1533 )
1534 (
1535 "You are outside a large building to the north which used to be a health
1536 and fitness center. A road leads to the south."
1537 "Health Club front"
1538 )
1539 (
1540 "You are at the north side of a lake. On the other side you can see
1541 a road which leads to a cave. The water appears very deep."
1542 "Lakefront North"
1543 )
1544 (
1545 "You are at the south side of a lake. A road goes to the south."
1546 "Lakefront South"
1547 )
1548 (
1549 "You are in a well-hidden area off to the side of a road. Back to the
1550 northeast through the brush you can see the bear hangout."
1551 "Hidden area"
1552 )
1553 (
1554 "The entrance to a cave is to the south. To the north, a road leads
1555 towards a deep lake. On the ground nearby there is a chute, with a sign
1556 that says 'put treasures here for points'."
1557 "Cave Entrance" ;28
1558 )
1559 (
1560 "You are in a misty, humid room carved into a mountain.
1561 To the north is the remains of a rockslide. To the east, a small
1562 passage leads away into the darkness." ;29
1563 "Misty Room"
1564 )
1565 (
1566 "You are in an east/west passageway. The walls here are made of
1567 multicolored rock and are quite beautiful."
1568 "Cave E/W passage" ;30
1569 )
1570 (
1571 "You are at the junction of two passages. One goes north/south, and
1572 the other goes west."
1573 "N/S/W Junction" ;31
1574 )
1575 (
1576 "You are at the north end of a north/south passageway. There are stairs
1577 leading down from here. There is also a door leading west."
1578 "North end of cave passage" ;32
1579 )
1580 (
1581 "You are at the south end of a north/south passageway. There is a hole
1582 in the floor here, into which you could probably fit."
1583 "South end of cave passage" ;33
1584 )
1585 (
1586 "You are in what appears to be a worker's bedroom. There is a queen-
1587 sized bed in the middle of the room, and a painting hanging on the
1588 wall. A door leads to another room to the south, and stairways
1589 lead up and down."
1590 "Bedroom" ;34
1591 )
1592 (
1593 "You are in a bathroom built for workers in the cave. There is a
1594 urinal hanging on the wall, and some exposed pipes on the opposite
1595 wall where a sink used to be. To the north is a bedroom."
1596 "Bathroom" ;35
1597 )
1598 (
1599 "This is a marker for the urinal. User will not see this, but it
1600 is a room that can contain objects."
1601 "Urinal" ;36
1602 )
1603 (
1604 "You are at the northeast end of a northeast/southwest passageway.
1605 Stairs lead up out of sight."
1606 "NE end of NE/SW cave passage" ;37
1607 )
1608 (
1609 "You are at the junction of northeast/southwest and east/west passages."
1610 "NE/SW-E/W junction" ;38
1611 )
1612 (
1613 "You are at the southwest end of a northeast/southwest passageway."
1614 "SW end of NE/SW cave passage" ;39
1615 )
1616 (
1617 "You are at the east end of an E/W passage. There are stairs leading up
1618 to a room above."
1619 "East end of E/W cave passage" ;40
1620 )
1621 (
1622 "You are at the west end of an E/W passage. There is a hole on the ground
1623 which leads down out of sight."
1624 "West end of E/W cave passage" ;41
1625 )
1626 (
1627 "You are in a room which is bare, except for a horseshoe shaped boulder
1628 in the center. Stairs lead down from here." ;42
1629 "Horseshoe boulder room"
1630 )
1631 (
1632 "You are in a room which is completely empty. Doors lead out to the north
1633 and east."
1634 "Empty room" ;43
1635 )
1636 (
1637 "You are in an empty room. Interestingly enough, the stones in this
1638 room are painted blue. Doors lead out to the east and south." ;44
1639 "Blue room"
1640 )
1641 (
1642 "You are in an empty room. Interestingly enough, the stones in this
1643 room are painted yellow. Doors lead out to the south and west." ;45
1644 "Yellow room"
1645 )
1646 (
1647 "You are in an empty room. Interestingly enough, the stones in this room
1648 are painted red. Doors lead out to the west and north."
1649 "Red room" ;46
1650 )
1651 (
1652 "You are in the middle of a long north/south hallway." ;47
1653 "Long n/s hallway"
1654 )
1655 (
1656 "You are 3/4 of the way towards the north end of a long north/south hallway."
1657 "3/4 north" ;48
1658 )
1659 (
1660 "You are at the north end of a long north/south hallway. There are stairs
1661 leading upwards."
1662 "North end of long hallway" ;49
1663 )
1664 (
1665 "You are 3/4 of the way towards the south end of a long north/south hallway."
1666 "3/4 south" ;50
1667 )
1668 (
1669 "You are at the south end of a long north/south hallway. There is a hole
1670 to the south."
1671 "South end of long hallway" ;51
1672 )
1673 (
1674 "You are at a landing in a stairwell which continues up and down."
1675 "Stair landing" ;52
1676 )
1677 (
1678 "You are at the continuation of an up/down staircase."
1679 "Up/down staircase" ;53
1680 )
1681 (
1682 "You are at the top of a staircase leading down. A crawlway leads off
1683 to the northeast."
1684 "Top of staircase." ;54
1685 )
1686 (
1687 "You are in a crawlway that leads northeast or southwest."
1688 "NE crawlway" ;55
1689 )
1690 (
1691 "You are in a small crawlspace. There is a hole in the ground here, and
1692 a small passage back to the southwest."
1693 "Small crawlspace" ;56
1694 )
1695 (
1696 "You are in the Gamma Computing Center. An IBM 3090/600s is whirring
1697 away in here. There is an ethernet cable coming out of one of the units,
1698 and going through the ceiling. There is no console here on which you
1699 could type."
1700 "Gamma computing center" ;57
1701 )
1702 (
1703 "You are near the remains of a post office. There is a mail drop on the
1704 face of the building, but you cannot see where it leads. A path leads
1705 back to the east, and a road leads to the north."
1706 "Post office" ;58
1707 )
1708 (
1709 "You are at the intersection of Main Street and Maple Ave. Main street
1710 runs north and south, and Maple Ave runs east off into the distance.
1711 If you look north and east you can see many intersections, but all of
1712 the buildings that used to stand here are gone. Nothing remains except
1713 street signs.
1714 There is a road to the northwest leading to a gate that guards a building."
1715 "Main-Maple intersection" ;59
1716 )
1717 (
1718 "You are at the intersection of Main Street and the west end of Oaktree Ave."
1719 "Main-Oaktree intersection" ;60
1720 )
1721 (
1722 "You are at the intersection of Main Street and the west end of Vermont Ave."
1723 "Main-Vermont intersection" ;61
1724 )
1725 (
1726 "You are at the north end of Main Street at the west end of Sycamore Ave." ;62
1727 "Main-Sycamore intersection"
1728 )
1729 (
1730 "You are at the south end of First Street at Maple Ave." ;63
1731 "First-Maple intersection"
1732 )
1733 (
1734 "You are at the intersection of First Street and Oaktree Ave." ;64
1735 "First-Oaktree intersection"
1736 )
1737 (
1738 "You are at the intersection of First Street and Vermont Ave." ;65
1739 "First-Vermont intersection"
1740 )
1741 (
1742 "You are at the north end of First Street at Sycamore Ave." ;66
1743 "First-Sycamore intersection"
1744 )
1745 (
1746 "You are at the south end of Second Street at Maple Ave." ;67
1747 "Second-Maple intersection"
1748 )
1749 (
1750 "You are at the intersection of Second Street and Oaktree Ave." ;68
1751 "Second-Oaktree intersection"
1752 )
1753 (
1754 "You are at the intersection of Second Street and Vermont Ave." ;69
1755 "Second-Vermont intersection"
1756 )
1757 (
1758 "You are at the north end of Second Street at Sycamore Ave." ;70
1759 "Second-Sycamore intersection"
1760 )
1761 (
1762 "You are at the south end of Third Street at Maple Ave." ;71
1763 "Third-Maple intersection"
1764 )
1765 (
1766 "You are at the intersection of Third Street and Oaktree Ave." ;72
1767 "Third-Oaktree intersection"
1768 )
1769 (
1770 "You are at the intersection of Third Street and Vermont Ave." ;73
1771 "Third-Vermont intersection"
1772 )
1773 (
1774 "You are at the north end of Third Street at Sycamore Ave." ;74
1775 "Third-Sycamore intersection"
1776 )
1777 (
1778 "You are at the south end of Fourth Street at Maple Ave." ;75
1779 "Fourth-Maple intersection"
1780 )
1781 (
1782 "You are at the intersection of Fourth Street and Oaktree Ave." ;76
1783 "Fourth-Oaktree intersection"
1784 )
1785 (
1786 "You are at the intersection of Fourth Street and Vermont Ave." ;77
1787 "Fourth-Vermont intersection"
1788 )
1789 (
1790 "You are at the north end of Fourth Street at Sycamore Ave." ;78
1791 "Fourth-Sycamore intersection"
1792 )
1793 (
1794 "You are at the south end of Fifth Street at the east end of Maple Ave." ;79
1795 "Fifth-Maple intersection"
1796 )
1797 (
1798 "You are at the intersection of Fifth Street and the east end of Oaktree Ave.
1799 There is a cliff off to the east."
1800 "Fifth-Oaktree intersection" ;80
1801 )
1802 (
1803 "You are at the intersection of Fifth Street and the east end of Vermont Ave."
1804 "Fifth-Vermont intersection" ;81
1805 )
1806 (
1807 "You are at the north end of Fifth Street and the east end of Sycamore Ave."
1808 "Fifth-Sycamore intersection" ;82
1809 )
1810 (
1811 "You are in front of the Museum of Natural History. A door leads into
1812 the building to the north, and a road leads to the southeast."
1813 "Museum entrance" ;83
1814 )
1815 (
1816 "You are in the main lobby for the Museum of Natural History. In the center
1817 of the room is the huge skeleton of a dinosaur. Doors lead out to the
1818 south and east."
1819 "Museum lobby" ;84
1820 )
1821 (
1822 "You are in the geological display. All of the objects that used to
1823 be on display are missing. There are rooms to the east, west, and
1824 north."
1825 "Geological display" ;85
1826 )
1827 (
1828 "You are in the marine life area. The room is filled with fish tanks,
1829 which are filled with dead fish that have apparently died due to
1830 starvation. Doors lead out to the south and east."
1831 "Marine life area" ;86
1832 )
1833 (
1834 "You are in some sort of maintenance room for the museum. There is a
1835 switch on the wall labeled 'BL'. There are doors to the west and north."
1836 "Maintenance room" ;87
1837 )
1838 (
1839 "You are in a classroom where school children were taught about natural
1840 history. On the blackboard is written, 'No children allowed downstairs.'
1841 There is a door to the east with an 'exit' sign on it. There is another
1842 door to the west."
1843 "Classroom" ;88
1844 )
1845 (
1846 "You are at the Vermont St. subway station. A train is sitting here waiting."
1847 "Vermont station" ;89
1848 )
1849 (
1850 "You are at the Museum subway stop. A passage leads off to the north."
1851 "Museum station" ;90
1852 )
1853 (
1854 "You are in a north/south tunnel."
1855 "N/S tunnel" ;91
1856 )
1857 (
1858 "You are at the north end of a north/south tunnel. Stairs lead up and
1859 down from here. There is a garbage disposal here."
1860 "North end of N/S tunnel" ;92
1861 )
1862 (
1863 "You are at the top of some stairs near the subway station. There is
1864 a door to the west."
1865 "Top of subway stairs" ;93
1866 )
1867 (
1868 "You are at the bottom of some stairs near the subway station. There is
1869 a room to the northeast."
1870 "Bottom of subway stairs" ;94
1871 )
1872 (
1873 "You are in another computer room. There is a computer in here larger
1874 than you have ever seen. It has no manufacturers name on it, but it
1875 does have a sign that says: This machine's name is 'endgame'. The
1876 exit is to the southwest. There is no console here on which you could
1877 type."
1878 "Endgame computer room" ;95
1879 )
1880 (
1881 "You are in a north/south hallway."
1882 "Endgame N/S hallway" ;96
1883 )
1884 (
1885 "You have reached a question room. You must answer a question correctly in
1886 order to get by. Use the 'answer' command to answer the question."
1887 "Question room 1" ;97
1888 )
1889 (
1890 "You are in a north/south hallway."
1891 "Endgame N/S hallway" ;98
1892 )
1893 (
1894 "You are in a second question room."
1895 "Question room 2" ;99
1896 )
1897 (
1898 "You are in a north/south hallway."
1899 "Endgame N/S hallway" ;100
1900 )
1901 (
1902 "You are in a third question room."
1903 "Question room 3" ;101
1904 )
1905 (
1906 "You are in the endgame treasure room. A door leads out to the north, and
1907 a hallway leads to the south."
1908 "Endgame treasure room" ;102
1909 )
1910 (
1911 "You are in the winner's room. A door leads back to the south."
1912 "Winner's room" ;103
1913 )
1914 (
1915 "You have reached a dead end. There is a PC on the floor here. Above
1916 it is a sign that reads:
1917 Type the 'reset' command to type on the PC.
1918 A hole leads north."
1919 "PC area" ;104
1920 )
1921 ))
1922
1923 (setq dun-light-rooms '(0 1 2 3 4 5 6 7 8 9 10 11 12 13 24 25 26 27 28 58 59
1924 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
1925 77 78 79 80 81 82 83))
1926
1927 (setq dun-verblist '((die . dun-die) (ne . dun-ne) (north . dun-n)
1928 (south . dun-s) (east . dun-e) (west . dun-w)
1929 (u . dun-up) (d . dun-down) (i . dun-inven)
1930 (inventory . dun-inven) (look . dun-examine) (n . dun-n)
1931 (s . dun-s) (e . dun-e) (w . dun-w) (se . dun-se)
1932 (nw . dun-nw) (sw . dun-sw) (up . dun-up)
1933 (down . dun-down) (in . dun-in) (out . dun-out)
1934 (go . dun-go) (drop . dun-drop) (southeast . dun-se)
1935 (southwest . dun-sw) (northeast . dun-ne)
1936 (northwest . dun-nw) (save . dun-save-game)
1937 (restore . dun-restore) (long . dun-long) (dig . dun-dig)
1938 (shake . dun-shake) (wave . dun-shake)
1939 (examine . dun-examine) (describe . dun-examine)
1940 (climb . dun-climb) (eat . dun-eat) (put . dun-put)
1941 (type . dun-type) (insert . dun-put)
1942 (score . dun-score) (help . dun-help) (quit . dun-quit)
1943 (read . dun-examine) (verbose . dun-long)
1944 (urinate . dun-piss) (piss . dun-piss)
1945 (flush . dun-flush) (sleep . dun-sleep) (lie . dun-sleep)
1946 (x . dun-examine) (break . dun-break) (drive . dun-drive)
1947 (board . dun-in) (enter . dun-in) (turn . dun-turn)
1948 (press . dun-press) (push . dun-press) (swim . dun-swim)
1949 (on . dun-in) (off . dun-out) (chop . dun-break)
1950 (switch . dun-press) (cut . dun-break) (exit . dun-out)
1951 (leave . dun-out) (reset . dun-power) (flick . dun-press)
1952 (superb . dun-superb) (answer . dun-answer)
1953 (throw . dun-drop) (l . dun-examine) (take . dun-take)
1954 (get . dun-take) (feed . dun-feed)))
1955
1956 (setq dun-inbus nil)
1957 (setq dun-nomail nil)
1958 (setq dun-ignore '(the to at))
1959 (setq dun-mode 'moby)
1960 (setq dun-sauna-level 0)
1961
1962 (defconst north 0)
1963 (defconst south 1)
1964 (defconst east 2)
1965 (defconst west 3)
1966 (defconst northeast 4)
1967 (defconst southeast 5)
1968 (defconst northwest 6)
1969 (defconst southwest 7)
1970 (defconst up 8)
1971 (defconst down 9)
1972 (defconst in 10)
1973 (defconst out 11)
1974
1975 (setq dungeon-map '(
1976 ; no so ea we ne se nw sw up do in ot
1977 ( 96 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;0
1978 ( -1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;1
1979 ( -1 -1 3 1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;2
1980 ( -1 -1 -1 2 4 6 -1 -1 -1 -1 -1 -1 ) ;3
1981 ( -1 -1 -1 -1 5 -1 -1 3 -1 -1 -1 -1 ) ;4
1982 ( -1 -1 -1 -1 255 -1 -1 4 -1 -1 255 -1 ) ;5
1983 ( -1 -1 -1 -1 -1 7 3 -1 -1 -1 -1 -1 ) ;6
1984 ( -1 -1 -1 -1 -1 255 6 27 -1 -1 -1 -1 ) ;7
1985 ( 255 5 9 10 -1 -1 -1 5 -1 -1 -1 5 ) ;8
1986 ( -1 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 -1 ) ;9
1987 ( -1 -1 8 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;10
1988 ( -1 8 -1 58 -1 -1 -1 -1 -1 -1 -1 -1 ) ;11
1989 ( -1 -1 13 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;12
1990 ( 15 -1 14 12 -1 -1 -1 -1 -1 -1 -1 -1 ) ;13
1991 ( -1 -1 -1 13 -1 -1 -1 -1 -1 -1 -1 -1 ) ;14
1992 ( -1 13 16 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;15
1993 ( -1 -1 -1 15 -1 -1 -1 -1 -1 17 16 -1 ) ;16
1994 ( -1 -1 17 17 17 17 255 17 255 17 -1 -1 ) ;17
1995 ( 18 18 18 18 18 -1 18 18 19 18 -1 -1 ) ;18
1996 ( -1 18 18 19 19 20 19 19 -1 18 -1 -1 ) ;19
1997 ( -1 -1 -1 18 -1 -1 -1 -1 -1 21 -1 -1 ) ;20
1998 ( -1 -1 -1 -1 -1 20 22 -1 -1 -1 -1 -1 ) ;21
1999 ( 18 18 18 18 16 18 23 18 18 18 18 18 ) ;22
2000 ( -1 255 -1 -1 -1 19 -1 -1 -1 -1 -1 -1 ) ;23
2001 ( 23 25 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;24
2002 ( 24 255 -1 -1 -1 -1 -1 -1 -1 -1 255 -1 ) ;25
2003 (255 28 -1 -1 -1 -1 -1 -1 -1 -1 255 -1 ) ;26
2004 ( -1 -1 -1 -1 7 -1 -1 -1 -1 -1 -1 -1 ) ;27
2005 ( 26 255 -1 -1 -1 -1 -1 -1 -1 -1 255 -1 ) ;28
2006 ( -1 -1 30 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;29
2007 ( -1 -1 31 29 -1 -1 -1 -1 -1 -1 -1 -1 ) ;30
2008 ( 32 33 -1 30 -1 -1 -1 -1 -1 -1 -1 -1 ) ;31
2009 ( -1 31 -1 255 -1 -1 -1 -1 -1 34 -1 -1 ) ;32
2010 ( 31 -1 -1 -1 -1 -1 -1 -1 -1 35 -1 -1 ) ;33
2011 ( -1 35 -1 -1 -1 -1 -1 -1 32 37 -1 -1 ) ;34
2012 ( 34 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;35
2013 ( -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;36
2014 ( -1 -1 -1 -1 -1 -1 -1 38 34 -1 -1 -1 ) ;37
2015 ( -1 -1 40 41 37 -1 -1 39 -1 -1 -1 -1 ) ;38
2016 ( -1 -1 -1 -1 38 -1 -1 -1 -1 -1 -1 -1 ) ;39
2017 ( -1 -1 -1 38 -1 -1 -1 -1 42 -1 -1 -1 ) ;40
2018 ( -1 -1 38 -1 -1 -1 -1 -1 -1 43 -1 -1 ) ;41
2019 ( -1 -1 -1 -1 -1 -1 -1 -1 -1 40 -1 -1 ) ;42
2020 ( 44 -1 46 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;43
2021 ( -1 43 45 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;44
2022 ( -1 46 -1 44 -1 -1 -1 -1 -1 -1 -1 -1 ) ;45
2023 ( 45 -1 -1 43 -1 -1 -1 -1 -1 255 -1 -1 ) ;46
2024 ( 48 50 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;47
2025 ( 49 47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;48
2026 ( -1 48 -1 -1 -1 -1 -1 -1 52 -1 -1 -1 ) ;49
2027 ( 47 51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;50
2028 ( 50 104 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;51
2029 ( -1 -1 -1 -1 -1 -1 -1 -1 53 49 -1 -1 ) ;52
2030 ( -1 -1 -1 -1 -1 -1 -1 -1 54 52 -1 -1 ) ;53
2031 ( -1 -1 -1 -1 55 -1 -1 -1 -1 53 -1 -1 ) ;54
2032 ( -1 -1 -1 -1 56 -1 -1 54 -1 -1 -1 54 ) ;55
2033 ( -1 -1 -1 -1 -1 -1 -1 55 -1 31 -1 -1 ) ;56
2034 ( -1 -1 32 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;57
2035 ( 59 -1 11 -1 -1 -1 -1 -1 -1 -1 255 255) ;58
2036 ( 60 58 63 -1 -1 -1 255 -1 -1 -1 255 255) ;59
2037 ( 61 59 64 -1 -1 -1 -1 -1 -1 -1 255 255) ;60
2038 ( 62 60 65 -1 -1 -1 -1 -1 -1 -1 255 255) ;61
2039 ( -1 61 66 -1 -1 -1 -1 -1 -1 -1 255 255) ;62
2040 ( 64 -1 67 59 -1 -1 -1 -1 -1 -1 255 255) ;63
2041 ( 65 63 68 60 -1 -1 -1 -1 -1 -1 255 255) ;64
2042 ( 66 64 69 61 -1 -1 -1 -1 -1 -1 255 255) ;65
2043 ( -1 65 70 62 -1 -1 -1 -1 -1 -1 255 255) ;66
2044 ( 68 -1 71 63 -1 -1 -1 -1 -1 -1 255 255) ;67
2045 ( 69 67 72 64 -1 -1 -1 -1 -1 -1 255 255) ;68
2046 ( 70 68 73 65 -1 -1 -1 -1 -1 -1 255 255) ;69
2047 ( -1 69 74 66 -1 -1 -1 -1 -1 -1 255 255) ;70
2048 ( 72 -1 75 67 -1 -1 -1 -1 -1 -1 255 255) ;71
2049 ( 73 71 76 68 -1 -1 -1 -1 -1 -1 255 255) ;72
2050 ( 74 72 77 69 -1 -1 -1 -1 -1 -1 255 255) ;73
2051 ( -1 73 78 70 -1 -1 -1 -1 -1 -1 255 255) ;74
2052 ( 76 -1 79 71 -1 -1 -1 -1 -1 -1 255 255) ;75
2053 ( 77 75 80 72 -1 -1 -1 -1 -1 -1 255 255) ;76
2054 ( 78 76 81 73 -1 -1 -1 -1 -1 -1 255 255) ;77
2055 ( -1 77 82 74 -1 -1 -1 -1 -1 -1 255 255) ;78
2056 ( 80 -1 -1 75 -1 -1 -1 -1 -1 -1 255 255) ;79
2057 ( 81 79 255 76 -1 -1 -1 -1 -1 -1 255 255) ;80
2058 ( 82 80 -1 77 -1 -1 -1 -1 -1 -1 255 255) ;81
2059 ( -1 81 -1 78 -1 -1 -1 -1 -1 -1 255 255) ;82
2060 ( 84 -1 -1 -1 -1 59 -1 -1 -1 -1 255 255) ;83
2061 ( -1 83 85 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;84
2062 ( 86 -1 87 84 -1 -1 -1 -1 -1 -1 -1 -1 ) ;85
2063 ( -1 85 88 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;86
2064 ( 88 -1 -1 85 -1 -1 -1 -1 -1 -1 -1 -1 ) ;87
2065 ( -1 87 255 86 -1 -1 -1 -1 -1 -1 -1 -1 ) ;88
2066 ( -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 255 -1 ) ;89
2067 ( 91 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;90
2068 ( 92 90 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;91
2069 ( -1 91 -1 -1 -1 -1 -1 -1 93 94 -1 -1 ) ;92
2070 ( -1 -1 -1 88 -1 -1 -1 -1 -1 92 -1 -1 ) ;93
2071 ( -1 -1 -1 -1 95 -1 -1 -1 92 -1 -1 -1 ) ;94
2072 ( -1 -1 -1 -1 -1 -1 -1 94 -1 -1 -1 -1 ) ;95
2073 ( 97 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;96
2074 ( -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;97
2075 ( 99 97 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;98
2076 ( -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;99
2077 ( 101 99 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;100
2078 ( -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;101
2079 ( 103 101 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;102
2080 ( -1 102 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;103
2081 ( 51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ) ;104
2082 )
2083 ; no so ea we ne se nw sw up do in ot
2084 )
2085
2086
2087 ;;; How the user references *all* objects, permanent and regular.
2088 (setq dun-objnames '(
2089 (shovel . 0)
2090 (lamp . 1)
2091 (cpu . 2) (board . 2) (card . 2) (chip . 2)
2092 (food . 3)
2093 (key . 4)
2094 (paper . 5) (slip . 5)
2095 (rms . 6) (statue . 6) (statuette . 6) (stallman . 6)
2096 (diamond . 7)
2097 (weight . 8)
2098 (life . 9) (preserver . 9)
2099 (bracelet . 10) (emerald . 10)
2100 (gold . 11)
2101 (platinum . 12)
2102 (towel . 13) (beach . 13)
2103 (axe . 14)
2104 (silver . 15)
2105 (license . 16)
2106 (coins . 17)
2107 (egg . 18)
2108 (jar . 19)
2109 (bone . 20)
2110 (acid . 21) (nitric . 21)
2111 (glycerine . 22)
2112 (ruby . 23)
2113 (amethyst . 24)
2114 (mona . 25)
2115 (bill . 26)
2116 (floppy . 27) (disk . 27)
2117
2118 (boulder . -1)
2119 (tree . -2) (trees . -2) (palm . -2)
2120 (bear . -3)
2121 (bin . -4) (bins . -4)
2122 (cabinet . -5) (computer . -5) (vax . -5) (ibm . -5)
2123 (protoplasm . -6)
2124 (dial . -7)
2125 (button . -8)
2126 (chute . -9)
2127 (painting . -10)
2128 (bed . -11)
2129 (urinal . -12)
2130 (URINE . -13)
2131 (pipes . -14) (pipe . -14)
2132 (box . -15) (slit . -15)
2133 (cable . -16) (ethernet . -16)
2134 (mail . -17) (drop . -17)
2135 (bus . -18)
2136 (gate . -19)
2137 (cliff . -20)
2138 (skeleton . -21) (dinosaur . -21)
2139 (fish . -22)
2140 (tanks . -23) (tank . -23)
2141 (switch . -24)
2142 (blackboard . -25)
2143 (disposal . -26) (garbage . -26)
2144 (ladder . -27)
2145 (subway . -28) (train . -28)
2146 (pc . -29) (drive . -29) (coconut . -30) (coconuts . -30)
2147 (lake . -32) (water . -32)
2148 ))
2149
2150 (dolist (x dun-objnames)
2151 (let (name)
2152 (setq name (concat "obj-" (prin1-to-string (car x))))
2153 (eval (list 'defconst (intern name) (cdr x)))))
2154
2155 (defconst obj-special 255)
2156
2157 ;;; The initial setup of what objects are in each room.
2158 ;;; Regular objects have whole numbers lower than 255.
2159 ;;; Objects that cannot be taken but might move and are
2160 ;;; described during room description are negative.
2161 ;;; Stuff that is described and might change are 255, and are
2162 ;;; handled specially by 'dun-describe-room.
2163
2164 (setq dun-room-objects (list nil
2165
2166 (list obj-shovel) ;; treasure-room
2167 (list obj-boulder) ;; dead-end
2168 nil nil nil
2169 (list obj-food) ;; se-nw-road
2170 (list obj-bear) ;; bear-hangout
2171 nil nil
2172 (list obj-special) ;; computer-room
2173 (list obj-lamp obj-license obj-silver);; meadow
2174 nil nil
2175 (list obj-special) ;; sauna
2176 nil
2177 (list obj-weight obj-life) ;; weight-room
2178 nil nil
2179 (list obj-rms obj-floppy) ;; thirsty-maze
2180 nil nil nil nil nil nil nil
2181 (list obj-emerald) ;; hidden-area
2182 nil
2183 (list obj-gold) ;; misty-room
2184 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
2185 (list obj-towel obj-special) ;; red-room
2186 nil nil nil nil nil
2187 (list obj-box) ;; stair-landing
2188 nil nil nil
2189 (list obj-axe) ;; smal-crawlspace
2190 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
2191 nil nil nil nil nil
2192 (list obj-special) ;; fourth-vermont-intersection
2193 nil nil
2194 (list obj-coins) ;; fifth-oaktree-intersection
2195 nil
2196 (list obj-bus) ;; fifth-sycamore-intersection
2197 nil
2198 (list obj-bone) ;; museum-lobby
2199 nil
2200 (list obj-jar obj-special obj-ruby) ;; marine-life-area
2201 (list obj-nitric) ;; maintenance-room
2202 (list obj-glycerine) ;; classroom
2203 nil nil nil nil nil
2204 (list obj-amethyst) ;; bottom-of-subway-stairs
2205 nil nil
2206 (list obj-special) ;; question-room-1
2207 nil
2208 (list obj-special) ;; question-room-2
2209 nil
2210 (list obj-special) ;; question-room-three
2211 nil
2212 (list obj-mona) ;; winner's-room
2213 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
2214 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
2215 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
2216 nil))
2217
2218 ;;; These are objects in a room that are only described in the
2219 ;;; room description. They are permanent.
2220
2221 (setq dun-room-silents (list nil
2222 (list obj-tree obj-coconut) ;; dead-end
2223 (list obj-tree obj-coconut) ;; e-w-dirt-road
2224 nil nil nil nil nil nil
2225 (list obj-bin) ;; mailroom
2226 (list obj-computer) ;; computer-room
2227 nil nil nil
2228 (list obj-dial) ;; sauna
2229 nil
2230 (list obj-ladder) ;; weight-room
2231 (list obj-button obj-ladder) ;; maze-button-room
2232 nil nil nil
2233 nil nil nil nil
2234 (list obj-lake) ;; lakefront-north
2235 (list obj-lake) ;; lakefront-south
2236 nil
2237 (list obj-chute) ;; cave-entrance
2238 nil nil nil nil nil
2239 (list obj-painting obj-bed) ;; bedroom
2240 (list obj-urinal obj-pipes) ;; bathroom
2241 nil nil nil nil nil nil
2242 (list obj-boulder) ;; horseshoe-boulder-room
2243 nil nil nil nil nil nil nil nil nil nil nil nil nil nil
2244 (list obj-computer obj-cable) ;; gamma-computing-center
2245 (list obj-mail) ;; post-office
2246 (list obj-gate) ;; main-maple-intersection
2247 nil nil nil nil nil nil nil nil nil nil nil nil nil
2248 nil nil nil nil nil nil nil
2249 (list obj-cliff) ;; fifth-oaktree-intersection
2250 nil nil nil
2251 (list obj-dinosaur) ;; museum-lobby
2252 nil
2253 (list obj-fish obj-tanks) ;; marine-life-area
2254 (list obj-switch) ;; maintenance-room
2255 (list obj-blackboard) ;; classroom
2256 (list obj-train) ;; vermont-station
2257 nil nil
2258 (list obj-disposal) ;; north-end-of-n-s-tunnel
2259 nil nil
2260 (list obj-computer) ;; endgame-computer-room
2261 nil nil nil nil nil nil nil nil
2262 (list obj-pc) ;; pc-area
2263 nil nil nil nil nil nil
2264 ))
2265 (setq dun-inventory '(1))
2266
2267 ;;; Descriptions of objects, as they appear in the room description, and
2268 ;;; the inventory.
2269
2270 (setq dun-objects '(
2271 ("There is a shovel here." "A shovel") ;0
2272 ("There is a lamp nearby." "A lamp") ;1
2273 ("There is a CPU card here." "A computer board") ;2
2274 ("There is some food here." "Some food") ;3
2275 ("There is a shiny brass key here." "A brass key") ;4
2276 ("There is a slip of paper here." "A slip of paper") ;5
2277 ("There is a wax statuette of Richard Stallman here." ;6
2278 "An RMS statuette")
2279 ("There is a shimmering diamond here." "A diamond") ;7
2280 ("There is a 10 pound weight here." "A weight") ;8
2281 ("There is a life preserver here." "A life preserver");9
2282 ("There is an emerald bracelet here." "A bracelet") ;10
2283 ("There is a gold bar here." "A gold bar") ;11
2284 ("There is a platinum bar here." "A platinum bar") ;12
2285 ("There is a beach towel on the ground here." "A beach towel")
2286 ("There is an axe here." "An axe") ;14
2287 ("There is a silver bar here." "A silver bar") ;15
2288 ("There is a bus driver's license here." "A license") ;16
2289 ("There are some valuable coins here." "Some valuable coins")
2290 ("There is a jewel-encrusted egg here." "A valuable egg") ;18
2291 ("There is a glass jar here." "A glass jar") ;19
2292 ("There is a dinosaur bone here." "A bone") ;20
2293 ("There is a packet of nitric acid here." "Some nitric acid")
2294 ("There is a packet of glycerine here." "Some glycerine") ;22
2295 ("There is a valuable ruby here." "A ruby") ;23
2296 ("There is a valuable amethyst here." "An amethyst") ;24
2297 ("The Mona Lisa is here." "The Mona Lisa") ;25
2298 ("There is a 100 dollar bill here." "A $100 bill") ;26
2299 ("There is a floppy disk here." "A floppy disk") ;27
2300 )
2301 )
2302
2303 ;;; Weight of objects
2304
2305 (setq dun-object-lbs
2306 '(2 1 1 1 1 0 2 2 10 3 1 1 1 0 1 1 0 1 1 1 1 0 0 2 2 1 0 0))
2307 (setq dun-object-pts
2308 '(0 0 0 0 0 0 0 10 0 0 10 10 10 0 0 10 0 10 10 0 0 0 0 10 10 10 10 0))
2309
2310
2311 ;;; Unix representation of objects.
2312 (setq dun-objfiles '(
2313 "shovel.o" "lamp.o" "cpu.o" "food.o" "key.o" "paper.o"
2314 "rms.o" "diamond.o" "weight.o" "preserver.o" "bracelet.o"
2315 "gold.o" "platinum.o" "towel.o" "axe.o" "silver.o" "license.o"
2316 "coins.o" "egg.o" "jar.o" "bone.o" "nitric.o" "glycerine.o"
2317 "ruby.o" "amethyst.o"
2318 ))
2319
2320 ;;; These are the descriptions for the negative numbered objects from
2321 ;;; dun-room-objects
2322
2323 (setq dun-perm-objects '(
2324 nil
2325 ("There is a large boulder here.")
2326 nil
2327 ("There is a ferocious bear here!")
2328 nil
2329 nil
2330 ("There is a worthless pile of protoplasm here.")
2331 nil
2332 nil
2333 nil
2334 nil
2335 nil
2336 nil
2337 ("There is a strange smell in this room.")
2338 nil
2339 (
2340 "There is a box with a slit in it, bolted to the wall here."
2341 )
2342 nil
2343 nil
2344 ("There is a bus here.")
2345 nil
2346 nil
2347 nil
2348 ))
2349
2350
2351 ;;; These are the descriptions the user gets when regular objects are
2352 ;;; examined.
2353
2354 (setq dun-physobj-desc '(
2355 "It is a normal shovel with a price tag attached that says $19.99."
2356 "The lamp is hand-crafted by Geppetto."
2357 "The CPU board has a VAX chip on it. It seems to have
2358 2 Megabytes of RAM onboard."
2359 "It looks like some kind of meat. Smells pretty bad."
2360 nil
2361 "The paper says: Don't forget to type 'help' for help. Also, remember
2362 this word: 'worms'"
2363 "The statuette is of the likeness of Richard Stallman, the author of the
2364 famous EMACS editor. You notice that he is not wearing any shoes."
2365 nil
2366 "You observe that the weight is heavy."
2367 "It says S. S. Minnow."
2368 nil
2369 nil
2370 nil
2371 "It has a picture of snoopy on it."
2372 nil
2373 nil
2374 "It has your picture on it!"
2375 "They are old coins from the 19th century."
2376 "It is a valuable Fabrege egg."
2377 "It is a plain glass jar."
2378 nil
2379 nil
2380 nil
2381 nil
2382 nil
2383 )
2384 )
2385
2386 ;;; These are the descriptions the user gets when non-regular objects
2387 ;;; are examined.
2388
2389 (setq dun-permobj-desc '(
2390 nil
2391 "It is just a boulder. It cannot be moved."
2392 "They are palm trees with a bountiful supply of coconuts in them."
2393 "It looks like a grizzly to me."
2394 "All of the bins are empty. Looking closely you can see that there
2395 are names written at the bottom of each bin, but most of them are
2396 faded away so that you cannot read them. You can only make out three
2397 names:
2398 Jeffrey Collier
2399 Robert Toukmond
2400 Thomas Stock
2401 "
2402 nil
2403 "It is just a garbled mess."
2404 "The dial points to a temperature scale which has long since faded away."
2405 nil
2406 nil
2407 "It is a velvet painting of Elvis Presley. It seems to be nailed to the
2408 wall, and you cannot move it."
2409 "It is a queen sized bed, with a very firm mattress."
2410 "The urinal is very clean compared with everything else in the cave. There
2411 isn't even any rust. Upon close examination you realize that the drain at the
2412 bottom is missing, and there is just a large hole leading down the
2413 pipes into nowhere. The hole is too small for a person to fit in. The
2414 flush handle is so clean that you can see your reflection in it."
2415 nil
2416 nil
2417 "The box has a slit in the top of it, and on it, in sloppy handwriting, is
2418 written: 'For key upgrade, put key in here.'"
2419 nil
2420 "It says 'express mail' on it."
2421 "It is a 35 passenger bus with the company name 'mobytours' on it."
2422 "It is a large metal gate that is too big to climb over."
2423 "It is a HIGH cliff."
2424 "Unfortunately you do not know enough about dinosaurs to tell very much about
2425 it. It is very big, though."
2426 "The fish look like they were once quite beautiful."
2427 nil
2428 nil
2429 nil
2430 nil
2431 "It is a normal ladder that is permanently attached to the hole."
2432 "It is a passenger train that is ready to go."
2433 "It is a personal computer that has only one floppy disk drive."
2434 )
2435 )
2436
2437 (setq dun-diggables
2438 (list nil nil nil (list obj-cpu) nil nil nil nil nil nil nil
2439 nil nil nil nil nil nil nil nil nil nil ;11-20
2440 nil nil nil nil nil nil nil nil nil nil ;21-30
2441 nil nil nil nil nil nil nil nil nil nil ;31-40
2442 nil (list obj-platinum) nil nil nil nil nil nil nil nil))
2443
2444 (setq dun-room-shorts nil)
2445 (dolist (x dun-rooms)
2446 (setq dun-room-shorts
2447 (append dun-room-shorts (list (downcase
2448 (dun-space-to-hyphen
2449 (cadr x)))))))
2450
2451 (setq dun-endgame-questions '(
2452 (
2453 "What is your password on the machine called 'pokey'?" "robert")
2454 (
2455 "What password did you use during anonymous ftp to gamma?" "foo")
2456 (
2457 "Excluding the endgame, how many places are there where you can put
2458 treasures for points?" "4" "four")
2459 (
2460 "What is your login name on the 'endgame' machine?" "toukmond"
2461 )
2462 (
2463 "What is the nearest whole dollar to the price of the shovel?" "20" "twenty")
2464 (
2465 "What is the name of the bus company serving the town?" "mobytours")
2466 (
2467 "Give either of the two last names in the mailroom, other than your own."
2468 "collier" "stock")
2469 (
2470 "What cartoon character is on the towel?" "snoopy")
2471 (
2472 "What is the last name of the author of EMACS?" "stallman")
2473 (
2474 "How many megabytes of memory is on the CPU board for the Vax?" "2")
2475 (
2476 "Which street in town is named after a U.S. state?" "vermont")
2477 (
2478 "How many pounds did the weight weigh?" "ten" "10")
2479 (
2480 "Name the STREET which runs right over the subway stop." "fourth" "4" "4th")
2481 (
2482 "How many corners are there in town (excluding the one with the Post Office)?"
2483 "24" "twentyfour" "twenty-four")
2484 (
2485 "What type of bear was hiding your key?" "grizzly")
2486 (
2487 "Name either of the two objects you found by digging." "cpu" "card" "vax"
2488 "board" "platinum")
2489 (
2490 "What network protocol is used between pokey and gamma?" "tcp/ip" "ip" "tcp")
2491 ))
2492
2493 (let (a)
2494 (setq a 0)
2495 (dolist (x dun-room-shorts)
2496 (eval (list 'defconst (intern x) a))
2497 (setq a (+ a 1))))
2498
2499
2500
2501 ;;;;
2502 ;;;; This section defines the UNIX emulation functions for dunnet.
2503 ;;;;
2504
2505 (defun dun-unix-parse (args)
2506 (interactive "*p")
2507 (beginning-of-line)
2508 (let (beg esign)
2509 (setq beg (+ (point) 2))
2510 (end-of-line)
2511 (if (and (not (= beg (point)))
2512 (string= "$" (buffer-substring (- beg 2) (- beg 1))))
2513 (progn
2514 (setq line (downcase (buffer-substring beg (point))))
2515 (princ line)
2516 (if (eq (dun-parse2 nil dun-unix-verbs line) -1)
2517 (progn
2518 (if (setq esign (string-match "=" line))
2519 (dun-doassign line esign)
2520 (dun-mprinc (car line-list))
2521 (dun-mprincl ": not found.")))))
2522 (goto-char (point-max))
2523 (dun-mprinc "\n"))
2524 (if (eq dungeon-mode 'unix)
2525 (progn
2526 (dun-fix-screen)
2527 (dun-mprinc "$ ")))))
2528
2529 (defun dun-doassign (line esign)
2530 (if (not dun-wizard)
2531 (let (passwd)
2532 (dun-mprinc "Enter wizard password: ")
2533 (setq passwd (dun-read-line))
2534 (if (not dun-batch-mode)
2535 (dun-mprinc "\n"))
2536 (if (string= passwd "moby")
2537 (progn
2538 (setq dun-wizard t)
2539 (dun-doassign line esign))
2540 (dun-mprincl "Incorrect.")))
2541
2542 (let (varname epoint afterq i value)
2543 (setq varname (substring line 0 esign))
2544 (if (not (setq epoint (string-match ")" line)))
2545 (if (string= (substring line (1+ esign) (+ esign 2))
2546 "\"")
2547 (progn
2548 (setq afterq (substring line (+ esign 2)))
2549 (setq epoint (+
2550 (string-match "\"" afterq)
2551 (+ esign 3))))
2552
2553 (if (not (setq epoint (string-match " " line)))
2554 (setq epoint (length line))))
2555 (setq epoint (1+ epoint))
2556 (while (and
2557 (not (= epoint (length line)))
2558 (setq i (string-match ")" (substring line epoint))))
2559 (setq epoint (+ epoint i 1))))
2560 (setq value (substring line (1+ esign) epoint))
2561 (dun-eval varname value))))
2562
2563 (defun dun-eval (varname value)
2564 (let (eval-error)
2565 (switch-to-buffer (get-buffer-create "*dungeon-eval*"))
2566 (erase-buffer)
2567 (insert "(setq ")
2568 (insert varname)
2569 (insert " ")
2570 (insert value)
2571 (insert ")")
2572 (setq eval-error nil)
2573 (condition-case nil
2574 (eval-buffer)
2575 (error (setq eval-error t)))
2576 (kill-buffer (current-buffer))
2577 (switch-to-buffer "*dungeon*")
2578 (if eval-error
2579 (dun-mprincl "Invalid syntax."))))
2580
2581
2582 (defun dun-unix-interface ()
2583 (dun-login)
2584 (if dun-logged-in
2585 (progn
2586 (setq dungeon-mode 'unix)
2587 (define-key dun-mode-map "\r" 'dun-unix-parse)
2588 (dun-mprinc "$ "))))
2589
2590 (defun dun-login ()
2591 (let (tries username password)
2592 (setq tries 4)
2593 (while (and (not dun-logged-in) (> (setq tries (- tries 1)) 0))
2594 (dun-mprinc "\n\nUNIX System V, Release 2.2 (pokey)\n\nlogin: ")
2595 (setq username (dun-read-line))
2596 (if (not dun-batch-mode)
2597 (dun-mprinc "\n"))
2598 (dun-mprinc "password: ")
2599 (setq password (dun-read-line))
2600 (if (not dun-batch-mode)
2601 (dun-mprinc "\n"))
2602 (if (or (not (string= username "toukmond"))
2603 (not (string= password "robert")))
2604 (dun-mprincl "login incorrect")
2605 (setq dun-logged-in t)
2606 (dun-mprincl "
2607 Welcome to Unix\n
2608 Please clean up your directories. The filesystem is getting full.
2609 Our tcp/ip link to gamma is a little flaky, but seems to work.
2610 The current version of ftp can only send files from your home
2611 directory, and deletes them after they are sent! Be careful.
2612
2613 Note: Restricted bourne shell in use.\n")))
2614 (setq dungeon-mode 'dungeon)))
2615
2616 (defun dun-ls (args)
2617 (if (car args)
2618 (let (ocdpath ocdroom)
2619 (setq ocdpath dun-cdpath)
2620 (setq ocdroom dun-cdroom)
2621 (if (not (eq (dun-cd args) -2))
2622 (dun-ls nil))
2623 (setq dun-cdpath ocdpath)
2624 (setq dun-cdroom ocdroom))
2625 (if (= dun-cdroom -10)
2626 (dun-ls-inven))
2627 (if (= dun-cdroom -2)
2628 (dun-ls-rooms))
2629 (if (= dun-cdroom -3)
2630 (dun-ls-root))
2631 (if (= dun-cdroom -4)
2632 (dun-ls-usr))
2633 (if (> dun-cdroom 0)
2634 (dun-ls-room))))
2635
2636 (defun dun-ls-root ()
2637 (dun-mprincl "total 4
2638 drwxr-xr-x 3 root staff 512 Jan 1 1970 .
2639 drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..
2640 drwxr-xr-x 3 root staff 2048 Jan 1 1970 usr
2641 drwxr-xr-x 3 root staff 2048 Jan 1 1970 rooms"))
2642
2643 (defun dun-ls-usr ()
2644 (dun-mprincl "total 4
2645 drwxr-xr-x 3 root staff 512 Jan 1 1970 .
2646 drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..
2647 drwxr-xr-x 3 toukmond restricted 512 Jan 1 1970 toukmond"))
2648
2649 (defun dun-ls-rooms ()
2650 (dun-mprincl "total 16
2651 drwxr-xr-x 3 root staff 512 Jan 1 1970 .
2652 drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..")
2653 (dolist (x dun-visited)
2654 (dun-mprinc
2655 "drwxr-xr-x 3 root staff 512 Jan 1 1970 ")
2656 (dun-mprincl (nth x dun-room-shorts))))
2657
2658 (defun dun-ls-room ()
2659 (dun-mprincl "total 4
2660 drwxr-xr-x 3 root staff 512 Jan 1 1970 .
2661 drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..
2662 -rwxr-xr-x 3 root staff 2048 Jan 1 1970 description")
2663 (dolist (x (nth dun-cdroom dun-room-objects))
2664 (if (and (>= x 0) (not (= x 255)))
2665 (progn
2666 (dun-mprinc "-rwxr-xr-x 1 toukmond restricted 0 Jan 1 1970 ")
2667 (dun-mprincl (nth x dun-objfiles))))))
2668
2669 (defun dun-ls-inven ()
2670 (dun-mprinc "total 467
2671 drwxr-xr-x 3 toukmond restricted 512 Jan 1 1970 .
2672 drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..")
2673 (dolist (x dun-unix-verbs)
2674 (if (not (eq (car x) 'IMPOSSIBLE))
2675 (progn
2676 (dun-mprinc"
2677 -rwxr-xr-x 1 toukmond restricted 10423 Jan 1 1970 ")
2678 (dun-mprinc (car x)))))
2679 (dun-mprinc "\n")
2680 (if (not dun-uncompressed)
2681 (dun-mprincl
2682 "-rwxr-xr-x 1 toukmond restricted 0 Jan 1 1970 paper.o.Z"))
2683 (dolist (x dun-inventory)
2684 (dun-mprinc
2685 "-rwxr-xr-x 1 toukmond restricted 0 Jan 1 1970 ")
2686 (dun-mprincl (nth x dun-objfiles))))
2687
2688 (defun dun-echo (args)
2689 (let (nomore var)
2690 (setq nomore nil)
2691 (dolist (x args)
2692 (if (not nomore)
2693 (progn
2694 (if (not (string= (substring x 0 1) "$"))
2695 (progn
2696 (dun-mprinc x)
2697 (dun-mprinc " "))
2698 (setq var (intern (substring x 1)))
2699 (if (not (boundp var))
2700 (dun-mprinc " ")
2701 (if (member var dun-restricted)
2702 (progn
2703 (dun-mprinc var)
2704 (dun-mprinc ": Permission denied")
2705 (setq nomore t))
2706 (eval (list 'dun-mprinc var))
2707 (dun-mprinc " ")))))))
2708 (dun-mprinc "\n")))
2709
2710
2711 (defun dun-ftp (args)
2712 (let (host username passwd ident newlist)
2713 (if (not (car args))
2714 (dun-mprincl "ftp: hostname required on command line.")
2715 (setq host (intern (car args)))
2716 (if (not (member host '(gamma dun-endgame)))
2717 (dun-mprincl "ftp: Unknown host.")
2718 (if (eq host 'dun-endgame)
2719 (dun-mprincl "ftp: connection to endgame not allowed")
2720 (if (not dun-ethernet)
2721 (dun-mprincl "ftp: host not responding.")
2722 (dun-mprincl "Connected to gamma. FTP ver 0.9 00:00:00 01/01/70")
2723 (dun-mprinc "Username: ")
2724 (setq username (dun-read-line))
2725 (if (string= username "toukmond")
2726 (if dun-batch-mode
2727 (dun-mprincl "toukmond ftp access not allowed.")
2728 (dun-mprincl "\ntoukmond ftp access not allowed."))
2729 (if (string= username "anonymous")
2730 (if dun-batch-mode
2731 (dun-mprincl
2732 "Guest login okay, send your user ident as password.")
2733 (dun-mprincl
2734 "\nGuest login okay, send your user ident as password."))
2735 (if dun-batch-mode
2736 (dun-mprinc "Password required for ")
2737 (dun-mprinc "\nPassword required for "))
2738 (dun-mprincl username))
2739 (dun-mprinc "Password: ")
2740 (setq ident (dun-read-line))
2741 (if (not (string= username "anonymous"))
2742 (if dun-batch-mode
2743 (dun-mprincl "Login failed.")
2744 (dun-mprincl "\nLogin failed."))
2745 (if dun-batch-mode
2746 (dun-mprincl
2747 "Guest login okay, user access restrictions apply.")
2748 (dun-mprincl
2749 "\nGuest login okay, user access restrictions apply."))
2750 (dun-ftp-commands)
2751 (setq newlist
2752 '("What password did you use during anonymous ftp to gamma?"))
2753 (setq newlist (append newlist (list ident)))
2754 (rplaca (nthcdr 1 dun-endgame-questions) newlist)))))))))
2755
2756 (defun dun-ftp-commands ()
2757 (setq dun-exitf nil)
2758 (let (line)
2759 (while (not dun-exitf)
2760 (dun-mprinc "ftp> ")
2761 (setq line (dun-read-line))
2762 (if
2763 (eq
2764 (dun-parse2 nil
2765 '((type . dun-ftptype) (binary . dun-bin) (bin . dun-bin)
2766 (send . dun-send) (put . dun-send) (quit . dun-ftpquit)
2767 (help . dun-ftphelp)(ascii . dun-fascii)
2768 ) line)
2769 -1)
2770 (dun-mprincl "No such command. Try help.")))
2771 (setq dun-ftptype 'ascii)))
2772
2773 (defun dun-ftptype (args)
2774 (if (not (car args))
2775 (dun-mprincl "Usage: type [binary | ascii]")
2776 (setq args (intern (car args)))
2777 (if (eq args 'binary)
2778 (dun-bin nil)
2779 (if (eq args 'ascii)
2780 (dun-fascii 'nil)
2781 (dun-mprincl "Unknown type.")))))
2782
2783 (defun dun-bin (args)
2784 (dun-mprincl "Type set to binary.")
2785 (setq dun-ftptype 'binary))
2786
2787 (defun dun-fascii (args)
2788 (dun-mprincl "Type set to ascii.")
2789 (setq dun-ftptype 'ascii))
2790
2791 (defun dun-ftpquit (args)
2792 (setq dun-exitf t))
2793
2794 (defun dun-send (args)
2795 (if (not (car args))
2796 (dun-mprincl "Usage: send <filename>")
2797 (setq args (car args))
2798 (let (counter foo)
2799 (setq foo nil)
2800 (setq counter 0)
2801
2802 ;;; User can send commands! Stupid user.
2803
2804
2805 (if (assq (intern args) dun-unix-verbs)
2806 (progn
2807 (rplaca (assq (intern args) dun-unix-verbs) 'IMPOSSIBLE)
2808 (dun-mprinc "Sending ")
2809 (dun-mprinc dun-ftptype)
2810 (dun-mprinc " file for ")
2811 (dun-mprincl args)
2812 (dun-mprincl "Transfer complete."))
2813
2814 (dolist (x dun-objfiles)
2815 (if (string= args x)
2816 (progn
2817 (if (not (member counter dun-inventory))
2818 (progn
2819 (dun-mprincl "No such file.")
2820 (setq foo t))
2821 (dun-mprinc "Sending ")
2822 (dun-mprinc dun-ftptype)
2823 (dun-mprinc " file for ")
2824 (dun-mprinc (downcase (cadr (nth counter dun-objects))))
2825 (dun-mprincl ", (0 bytes)")
2826 (if (not (eq dun-ftptype 'binary))
2827 (progn
2828 (if (not (member obj-protoplasm
2829 (nth receiving-room
2830 dun-room-objects)))
2831 (dun-replace dun-room-objects receiving-room
2832 (append (nth receiving-room
2833 dun-room-objects)
2834 (list obj-protoplasm))))
2835 (dun-remove-obj-from-inven counter))
2836 (dun-remove-obj-from-inven counter)
2837 (dun-replace dun-room-objects receiving-room
2838 (append (nth receiving-room dun-room-objects)
2839 (list counter))))
2840 (setq foo t)
2841 (dun-mprincl "Transfer complete."))))
2842 (setq counter (+ 1 counter)))
2843 (if (not foo)
2844 (dun-mprincl "No such file."))))))
2845
2846 (defun dun-ftphelp (args)
2847 (dun-mprincl
2848 "Possible commands are:\nsend quit type ascii binary help"))
2849
2850 (defun dun-uexit (args)
2851 (setq dungeon-mode 'dungeon)
2852 (dun-mprincl "\nYou step back from the console.")
2853 (define-key dun-mode-map "\r" 'dun-parse)
2854 (if (not dun-batch-mode)
2855 (dun-messages)))
2856
2857 (defun dun-pwd (args)
2858 (dun-mprincl dun-cdpath))
2859
2860 (defun dun-uncompress (args)
2861 (if (not (car args))
2862 (dun-mprincl "Usage: uncompress <filename>")
2863 (setq args (car args))
2864 (if (or dun-uncompressed
2865 (and (not (string= args "paper.o"))
2866 (not (string= args "paper.o.z"))))
2867 (dun-mprincl "Uncompress command failed.")
2868 (setq dun-uncompressed t)
2869 (setq dun-inventory (append dun-inventory (list obj-paper))))))
2870
2871 (defun dun-rlogin (args)
2872 (let (passwd)
2873 (if (not (car args))
2874 (dun-mprincl "Usage: rlogin <hostname>")
2875 (setq args (car args))
2876 (if (string= args "endgame")
2877 (dun-rlogin-endgame)
2878 (if (not (string= args "gamma"))
2879 (if (string= args "pokey")
2880 (dun-mprincl "Can't rlogin back to localhost")
2881 (dun-mprincl "No such host."))
2882 (if (not dun-ethernet)
2883 (dun-mprincl "Host not responding.")
2884 (dun-mprinc "Password: ")
2885 (setq passwd (dun-read-line))
2886 (if (not (string= passwd "worms"))
2887 (dun-mprincl "\nlogin incorrect")
2888 (dun-mprinc
2889 "\nYou begin to feel strange for a moment, and you lose your items."
2890 )
2891 (dun-replace dun-room-objects computer-room
2892 (append (nth computer-room dun-room-objects)
2893 dun-inventory))
2894 (setq dun-inventory nil)
2895 (setq dun-current-room receiving-room)
2896 (dun-uexit nil))))))))
2897
2898 (defun dun-cd (args)
2899 (let (tcdpath tcdroom path-elements room-check)
2900 (if (not (car args))
2901 (dun-mprincl "Usage: cd <path>")
2902 (setq tcdpath dun-cdpath)
2903 (setq tcdroom dun-cdroom)
2904 (setq dun-badcd nil)
2905 (condition-case nil
2906 (setq path-elements (dun-get-path (car args) nil))
2907 (error (dun-mprincl "Invalid path")
2908 (setq dun-badcd t)))
2909 (dolist (pe path-elements)
2910 (unless dun-badcd
2911 (if (not (string= pe "."))
2912 (if (string= pe "..")
2913 (progn
2914 (if (> tcdroom 0) ;In a room
2915 (progn
2916 (setq tcdpath "/rooms")
2917 (setq tcdroom -2))
2918 ;In /rooms,/usr,root
2919 (if (or
2920 (= tcdroom -2) (= tcdroom -4)
2921 (= tcdroom -3))
2922 (progn
2923 (setq tcdpath "/")
2924 (setq tcdroom -3))
2925 (if (= tcdroom -10) ;In /usr/toukmond
2926 (progn
2927 (setq tcdpath "/usr")
2928 (setq tcdroom -4))))))
2929 (if (string= pe "/")
2930 (progn
2931 (setq tcdpath "/")
2932 (setq tcdroom -3))
2933 (if (= tcdroom -4)
2934 (if (string= pe "toukmond")
2935 (progn
2936 (setq tcdpath "/usr/toukmond")
2937 (setq tcdroom -10))
2938 (dun-nosuchdir))
2939 (if (= tcdroom -10)
2940 (dun-nosuchdir)
2941 (if (> tcdroom 0)
2942 (dun-nosuchdir)
2943 (if (= tcdroom -3)
2944 (progn
2945 (if (string= pe "rooms")
2946 (progn
2947 (setq tcdpath "/rooms")
2948 (setq tcdroom -2))
2949 (if (string= pe "usr")
2950 (progn
2951 (setq tcdpath "/usr")
2952 (setq tcdroom -4))
2953 (dun-nosuchdir))))
2954 (if (= tcdroom -2)
2955 (progn
2956 (dolist (x dun-visited)
2957 (setq room-check
2958 (nth x
2959 dun-room-shorts))
2960 (if (string= room-check pe)
2961 (progn
2962 (setq tcdpath
2963 (concat "/rooms/" room-check))
2964 (setq tcdroom x))))
2965 (if (= tcdroom -2)
2966 (dun-nosuchdir)))))))))))))
2967 (if (not dun-badcd)
2968 (progn
2969 (setq dun-cdpath tcdpath)
2970 (setq dun-cdroom tcdroom)
2971 0)
2972 -2))))
2973
2974 (defun dun-nosuchdir ()
2975 (dun-mprincl "No such directory.")
2976 (setq dun-badcd t))
2977
2978 (defun dun-cat (args)
2979 (let (doto checklist)
2980 (if (not (setq args (car args)))
2981 (dun-mprincl "Usage: cat <ascii-file-name>")
2982 (if (string-match "/" args)
2983 (dun-mprincl "cat: only files in current directory allowed.")
2984 (if (and (> dun-cdroom 0) (string= args "description"))
2985 (dun-mprincl (car (nth dun-cdroom dun-rooms)))
2986 (if (setq doto (string-match "\\.o" args))
2987 (progn
2988 (if (= dun-cdroom -10)
2989 (setq checklist dun-inventory)
2990 (setq checklist (nth dun-cdroom dun-room-objects)))
2991 (if (not (member (cdr
2992 (assq (intern
2993 (substring args 0 doto))
2994 dun-objnames))
2995 checklist))
2996 (dun-mprincl "File not found.")
2997 (dun-mprincl "Ascii files only.")))
2998 (if (assq (intern args) dun-unix-verbs)
2999 (dun-mprincl "Ascii files only.")
3000 (dun-mprincl "File not found."))))))))
3001
3002 (defun dun-zippy (args)
3003 (dun-mprincl (yow)))
3004
3005 (defun dun-rlogin-endgame ()
3006 (if (not (= (dun-score nil) 90))
3007 (dun-mprincl
3008 "You have not achieved enough points to connect to endgame.")
3009 (dun-mprincl"\nWelcome to the endgame. You are a truly noble adventurer.")
3010 (setq dun-current-room treasure-room)
3011 (setq dun-endgame t)
3012 (dun-replace dun-room-objects endgame-treasure-room (list obj-bill))
3013 (dun-uexit nil)))
3014
3015
3016 (random t)
3017 (setq tloc (+ 60 (random 18)))
3018 (dun-replace dun-room-objects tloc
3019 (append (nth tloc dun-room-objects) (list 18)))
3020
3021 (setq tcomb (+ 100 (random 899)))
3022 (setq dun-combination (prin1-to-string tcomb))
3023
3024 ;;;;
3025 ;;;; This section defines the DOS emulation functions for dunnet
3026 ;;;;
3027
3028 (defun dun-dos-parse (args)
3029 (interactive "*p")
3030 (beginning-of-line)
3031 (let (beg)
3032 (setq beg (+ (point) 3))
3033 (end-of-line)
3034 (if (not (= beg (point)))
3035 (let (line)
3036 (setq line (downcase (buffer-substring beg (point))))
3037 (princ line)
3038 (if (eq (dun-parse2 nil dun-dos-verbs line) -1)
3039 (progn
3040 (sleep-for 1)
3041 (dun-mprincl "Bad command or file name"))))
3042 (goto-char (point-max))
3043 (dun-mprinc "\n"))
3044 (if (eq dungeon-mode 'dos)
3045 (progn
3046 (dun-fix-screen)
3047 (dun-dos-prompt)))))
3048
3049 (defun dun-dos-interface ()
3050 (dun-dos-boot-msg)
3051 (setq dungeon-mode 'dos)
3052 (define-key dun-mode-map "\r" 'dun-dos-parse)
3053 (dun-dos-prompt))
3054
3055 (defun dun-dos-type (args)
3056 (sleep-for 2)
3057 (if (setq args (car args))
3058 (if (string= args "foo.txt")
3059 (dun-dos-show-combination)
3060 (if (string= args "command.com")
3061 (dun-mprincl "Cannot type binary files")
3062 (dun-mprinc "File not found - ")
3063 (dun-mprincl (upcase args))))
3064 (dun-mprincl "Must supply file name")))
3065
3066 (defun dun-dos-invd (args)
3067 (sleep-for 1)
3068 (dun-mprincl "Invalid drive specification"))
3069
3070 (defun dun-dos-dir (args)
3071 (sleep-for 1)
3072 (if (or (not (setq args (car args))) (string= args "\\"))
3073 (dun-mprincl "
3074 Volume in drive A is FOO
3075 Volume Serial Number is 1A16-08C9
3076 Directory of A:\\
3077
3078 COMMAND COM 47845 04-09-91 2:00a
3079 FOO TXT 40 01-20-93 1:01a
3080 2 file(s) 47845 bytes
3081 1065280 bytes free
3082 ")
3083 (dun-mprincl "
3084 Volume in drive A is FOO
3085 Volume Serial Number is 1A16-08C9
3086 Directory of A:\\
3087
3088 File not found")))
3089
3090
3091 (defun dun-dos-prompt ()
3092 (dun-mprinc "A> "))
3093
3094 (defun dun-dos-boot-msg ()
3095 (sleep-for 3)
3096 (dun-mprinc "Current time is ")
3097 (dun-mprincl (substring (current-time-string) 12 20))
3098 (dun-mprinc "Enter new time: ")
3099 (dun-read-line)
3100 (if (not dun-batch-mode)
3101 (dun-mprinc "\n")))
3102
3103 (defun dun-dos-spawn (args)
3104 (sleep-for 1)
3105 (dun-mprincl "Cannot spawn subshell"))
3106
3107 (defun dun-dos-exit (args)
3108 (setq dungeon-mode 'dungeon)
3109 (dun-mprincl "\nYou power down the machine and step back.")
3110 (define-key dun-mode-map "\r" 'dun-parse)
3111 (if (not dun-batch-mode)
3112 (dun-messages)))
3113
3114 (defun dun-dos-no-disk ()
3115 (sleep-for 3)
3116 (dun-mprincl "Boot sector not found"))
3117
3118
3119 (defun dun-dos-show-combination ()
3120 (sleep-for 2)
3121 (dun-mprinc "\nThe combination is ")
3122 (dun-mprinc dun-combination)
3123 (dun-mprinc ".\n"))
3124
3125 (defun dun-dos-nil (args))
3126
3127
3128 ;;;;
3129 ;;;; This section defines the save and restore game functions for dunnet.
3130 ;;;;
3131
3132 (defun dun-save-game (filename)
3133 (if (not (setq filename (car filename)))
3134 (dun-mprincl "You must supply a filename for the save.")
3135 (if (file-exists-p filename)
3136 (delete-file filename))
3137 (setq dun-numsaves (1+ dun-numsaves))
3138 (dun-make-save-buffer)
3139 (dun-save-val "dun-current-room")
3140 (dun-save-val "dun-computer")
3141 (dun-save-val "dun-combination")
3142 (dun-save-val "dun-visited")
3143 (dun-save-val "dun-diggables")
3144 (dun-save-val "dun-key-level")
3145 (dun-save-val "dun-floppy")
3146 (dun-save-val "dun-numsaves")
3147 (dun-save-val "dun-numcmds")
3148 (dun-save-val "dun-logged-in")
3149 (dun-save-val "dungeon-mode")
3150 (dun-save-val "dun-jar")
3151 (dun-save-val "dun-lastdir")
3152 (dun-save-val "dun-black")
3153 (dun-save-val "dun-nomail")
3154 (dun-save-val "dun-unix-verbs")
3155 (dun-save-val "dun-hole")
3156 (dun-save-val "dun-uncompressed")
3157 (dun-save-val "dun-ethernet")
3158 (dun-save-val "dun-sauna-level")
3159 (dun-save-val "dun-room-objects")
3160 (dun-save-val "dun-room-silents")
3161 (dun-save-val "dun-inventory")
3162 (dun-save-val "dun-endgame-questions")
3163 (dun-save-val "dun-endgame")
3164 (dun-save-val "dun-cdroom")
3165 (dun-save-val "dun-cdpath")
3166 (dun-save-val "dun-correct-answer")
3167 (dun-save-val "dun-inbus")
3168 (if (dun-compile-save-out filename)
3169 (dun-mprincl "Error saving to file.")
3170 (dun-do-logfile 'save nil)
3171 (switch-to-buffer "*dungeon*")
3172 (princ "")
3173 (dun-mprincl "Done."))))
3174
3175 (defun dun-make-save-buffer ()
3176 (switch-to-buffer (get-buffer-create "*save-dungeon*"))
3177 (erase-buffer))
3178
3179 (defun dun-compile-save-out (filename)
3180 (let (ferror)
3181 (setq ferror nil)
3182 (condition-case nil
3183 (dun-rot13)
3184 (error (setq ferror t)))
3185 (if (not ferror)
3186 (progn
3187 (goto-char (point-min))))
3188 (condition-case nil
3189 (write-region 1 (point-max) filename nil 1)
3190 (error (setq ferror t)))
3191 (kill-buffer (current-buffer))
3192 ferror))
3193
3194
3195 (defun dun-save-val (varname)
3196 (let (value)
3197 (setq varname (intern varname))
3198 (setq value (eval varname))
3199 (dun-minsert "(setq ")
3200 (dun-minsert varname)
3201 (dun-minsert " ")
3202 (if (or (listp value)
3203 (symbolp value))
3204 (dun-minsert "'"))
3205 (if (stringp value)
3206 (dun-minsert "\""))
3207 (dun-minsert value)
3208 (if (stringp value)
3209 (dun-minsert "\""))
3210 (dun-minsertl ")")))
3211
3212
3213 (defun dun-restore (args)
3214 (let (file)
3215 (if (not (setq file (car args)))
3216 (dun-mprincl "You must supply a filename.")
3217 (if (not (dun-load-d file))
3218 (dun-mprincl "Could not load restore file.")
3219 (dun-mprincl "Done.")
3220 (setq room 0)))))
3221
3222
3223 (defun dun-do-logfile (type how)
3224 (let (ferror newscore)
3225 (setq ferror nil)
3226 (switch-to-buffer (get-buffer-create "*score*"))
3227 (erase-buffer)
3228 (condition-case nil
3229 (insert-file-contents dun-log-file)
3230 (error (setq ferror t)))
3231 (unless ferror
3232 (goto-char (point-max))
3233 (dun-minsert (current-time-string))
3234 (dun-minsert " ")
3235 (dun-minsert (user-login-name))
3236 (dun-minsert " ")
3237 (if (eq type 'save)
3238 (dun-minsert "saved ")
3239 (if (= (dun-endgame-score) 110)
3240 (dun-minsert "won ")
3241 (if (not how)
3242 (dun-minsert "quit ")
3243 (dun-minsert "killed by ")
3244 (dun-minsert how)
3245 (dun-minsert " "))))
3246 (dun-minsert "at ")
3247 (dun-minsert (cadr (nth (abs room) dun-rooms)))
3248 (dun-minsert ". score: ")
3249 (if (> (dun-endgame-score) 0)
3250 (dun-minsert (setq newscore (+ 90 (dun-endgame-score))))
3251 (dun-minsert (setq newscore (dun-reg-score))))
3252 (dun-minsert " saves: ")
3253 (dun-minsert dun-numsaves)
3254 (dun-minsert " commands: ")
3255 (dun-minsert dun-numcmds)
3256 (dun-minsert "\n")
3257 (write-region 1 (point-max) dun-log-file nil 1))
3258 (kill-buffer (current-buffer))))
3259
3260
3261 ;;;;
3262 ;;;; These are functions, and function re-definitions so that dungeon can
3263 ;;;; be run in batch mode.
3264
3265
3266 (defun dun-batch-mprinc (arg)
3267 (if (stringp arg)
3268 (send-string-to-terminal arg)
3269 (send-string-to-terminal (prin1-to-string arg))))
3270
3271
3272 (defun dun-batch-mprincl (arg)
3273 (if (stringp arg)
3274 (progn
3275 (send-string-to-terminal arg)
3276 (send-string-to-terminal "\n"))
3277 (send-string-to-terminal (prin1-to-string arg))
3278 (send-string-to-terminal "\n")))
3279
3280 (defun dun-batch-parse (dun-ignore dun-verblist line)
3281 (setq line-list (dun-listify-string (concat line " ")))
3282 (dun-doverb dun-ignore dun-verblist (car line-list) (cdr line-list)))
3283
3284 (defun dun-batch-parse2 (dun-ignore dun-verblist line)
3285 (setq line-list (dun-listify-string2 (concat line " ")))
3286 (dun-doverb dun-ignore dun-verblist (car line-list) (cdr line-list)))
3287
3288 (defun dun-batch-read-line ()
3289 (read-from-minibuffer "" nil dungeon-batch-map))
3290
3291
3292 (defun dun-batch-loop ()
3293 (setq dun-dead nil)
3294 (setq room 0)
3295 (while (not dun-dead)
3296 (if (eq dungeon-mode 'dungeon)
3297 (progn
3298 (if (not (= room dun-current-room))
3299 (progn
3300 (dun-describe-room dun-current-room)
3301 (setq room dun-current-room)))
3302 (dun-mprinc ">")
3303 (setq line (downcase (dun-read-line)))
3304 (if (eq (dun-vparse dun-ignore dun-verblist line) -1)
3305 (dun-mprinc "I don't understand that.\n"))))))
3306
3307 (defun dun-batch-dos-interface ()
3308 (dun-dos-boot-msg)
3309 (setq dungeon-mode 'dos)
3310 (while (eq dungeon-mode 'dos)
3311 (dun-dos-prompt)
3312 (setq line (downcase (dun-read-line)))
3313 (if (eq (dun-parse2 nil dun-dos-verbs line) -1)
3314 (progn
3315 (sleep-for 1)
3316 (dun-mprincl "Bad command or file name"))))
3317 (goto-char (point-max))
3318 (dun-mprinc "\n"))
3319
3320 (defun dun-batch-unix-interface ()
3321 (dun-login)
3322 (if dun-logged-in
3323 (progn
3324 (setq dungeon-mode 'unix)
3325 (while (eq dungeon-mode 'unix)
3326 (dun-mprinc "$ ")
3327 (setq line (downcase (dun-read-line)))
3328 (if (eq (dun-parse2 nil dun-unix-verbs line) -1)
3329 (let (esign)
3330 (if (setq esign (string-match "=" line))
3331 (dun-doassign line esign)
3332 (dun-mprinc (car line-list))
3333 (dun-mprincl ": not found.")))))
3334 (goto-char (point-max))
3335 (dun-mprinc "\n"))))
3336
3337 (defun dungeon-nil (arg)
3338 "noop"
3339 (interactive "*p")
3340 nil)
3341
3342 (defun dun-batch-dungeon ()
3343 (load "dun-batch")
3344 (setq dun-visited '(27))
3345 (dun-mprinc "\n")
3346 (dun-batch-loop))
3347
3348 (unless (not noninteractive)
3349 (fset 'dun-mprinc 'dun-batch-mprinc)
3350 (fset 'dun-mprincl 'dun-batch-mprincl)
3351 (fset 'dun-vparse 'dun-batch-parse)
3352 (fset 'dun-parse2 'dun-batch-parse2)
3353 (fset 'dun-read-line 'dun-batch-read-line)
3354 (fset 'dun-dos-interface 'dun-batch-dos-interface)
3355 (fset 'dun-unix-interface 'dun-batch-unix-interface)
3356 (dun-mprinc "\n")
3357 (setq dun-batch-mode t)
3358 (dun-batch-loop))
3359
3360 (provide 'dunnet)
3361
3362 ;;; arch-tag: 4cc8e47c-d9e1-4ef4-936b-578e7f529558
3363 ;;; dunnet.el ends here