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