*** empty log message ***
[bpt/emacs.git] / lisp / play / dunnet.el
CommitLineData
62078373
RS
1;;; dunnet.el --- Text adventure for Emacs
2
b578f267
EN
3;; Copyright (C) 1992, 1993 Free Software Foundation, Inc.
4
058c1767 5;; Author: Ron Schnell <ronnie@driver-aces.com>
62078373 6;; Created: 25 Jul 1992
058c1767 7;; Version: 2.01
62078373 8;; Keywords: games
62078373
RS
9
10;; This file is part of GNU Emacs.
11
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.
16
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.
21
22;; You should have received a copy of the GNU General Public License
b578f267
EN
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.
62078373
RS
26
27;;; Commentary:
28
29;; This game can be run in batch mode. To do this, use:
a399c536 30;; emacs -batch -l dunnet
62078373
RS
31
32;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
33;;; The log file should be set for your system, and it must
163d1767 34;;; be writable by all.
62078373 35
323f7c49
SE
36(defgroup dunnet nil
37 "Text adventure for Emacs."
38 :prefix "dun-"
39 :group 'games)
40
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)
62078373
RS
45
46(if nil
47 (eval-and-compile (setq byte-compile-warnings nil)))
48
3e2b8c1c
RS
49(eval-when-compile
50 (require 'cl))
62078373
RS
51
52;;;; Mode definitions for interactive mode
53
a399c536
RS
54(defun dun-mode ()
55 "Major mode for running dunnet."
62078373
RS
56 (interactive)
57 (text-mode)
3e2b8c1c
RS
58 (make-local-variable 'scroll-step)
59 (setq scroll-step 2)
62078373
RS
60 (use-local-map dungeon-mode-map)
61 (setq major-mode 'dungeon-mode)
62 (setq mode-name "Dungeon"))
63
a399c536
RS
64(defun dun-parse (arg)
65 "Function called when return is pressed in interactive mode to parse line."
62078373
RS
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)
a399c536
RS
75 (if (eq (dun-vparse dun-ignore dun-verblist line) -1)
76 (dun-mprinc "I don't understand that.\n")))
62078373 77 (goto-char (point-max))
a399c536
RS
78 (dun-mprinc "\n"))
79 (dun-messages))
62078373 80
a399c536
RS
81(defun dun-messages ()
82 (if dun-dead
62078373
RS
83 (text-mode)
84 (if (eq dungeon-mode 'dungeon)
85 (progn
a399c536 86 (if (not (= room dun-current-room))
62078373 87 (progn
a399c536
RS
88 (dun-describe-room dun-current-room)
89 (setq room dun-current-room)))
90 (dun-fix-screen)
91 (dun-mprinc ">")))))
62078373
RS
92
93\f
94;;;###autoload
95(defun dunnet ()
96 "Switch to *dungeon* buffer and start game."
97 (interactive)
98 (switch-to-buffer "*dungeon*")
a399c536
RS
99 (dun-mode)
100 (setq dun-dead nil)
62078373 101 (setq room 0)
a399c536 102 (dun-messages))
62078373
RS
103
104;;;;
105;;;; This section contains all of the verbs and commands.
106;;;;
107
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.
110
a399c536
RS
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")))
62078373 119 nil
a399c536
RS
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))
62078373 126 (if (= xobjs obj-special)
a399c536 127 (dun-special-object)
62078373 128 (if (>= xobjs 0)
a399c536
RS
129 (dun-mprincl (car (nth xobjs dun-objects)))
130 (if (not (and (= xobjs obj-bus) dun-inbus))
62078373 131 (progn
a399c536
RS
132 (dun-mprincl (car (nth (abs xobjs) dun-perm-objects)))))))
133 (if (and (= xobjs obj-jar) dun-jar)
62078373 134 (progn
a399c536
RS
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."))))
62078373
RS
141
142;;; There is a special object in the room. This object's description,
143;;; or lack thereof, depends on certain conditions.
144
a399c536 145(defun dun-special-object ()
a399c536
RS
146 (if (= dun-current-room computer-room)
147 (if dun-computer
148 (dun-mprincl
62078373 149"The panel lights are flashing in a seemingly organized pattern.")
a399c536 150 (dun-mprincl "The panel lights are steady and motionless.")))
62078373 151
a399c536
RS
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."))
62078373 155
a399c536
RS
156 (if (and (= dun-current-room marine-life-area) dun-black)
157 (dun-mprincl
62078373
RS
158"The room is lit by a black light, causing the fish, and some of
159your objects, to give off an eerie glow."))
a399c536 160 (if (and (= dun-current-room fourth-vermont-intersection) dun-hole)
62078373 161 (progn
60d38d30
RS
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")))))
62078373 171
a399c536 172 (if (> dun-current-room endgame-computer-room)
62078373 173 (progn
a399c536
RS
174 (if (not dun-correct-answer)
175 (dun-endgame-question)
176 (dun-mprincl "Your question is:")
177 (dun-mprincl dun-endgame-question))))
62078373 178
a399c536 179 (if (= dun-current-room sauna)
62078373 180 (progn
a399c536 181 (dun-mprincl (nth dun-sauna-level '(
62078373
RS
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.")))
058c1767 187 (if (= dun-sauna-level 3)
62078373 188 (progn
058c1767
RS
189 (if (or (member obj-rms dun-inventory)
190 (member obj-rms (nth dun-current-room dun-room-objects)))
191 (progn
192 (dun-mprincl
62078373
RS
193"You notice the wax on your statuette beginning to melt, until it completely
194melts off. You are left with a beautiful diamond!")
058c1767
RS
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)))
62078373 206 (progn
a399c536 207 (dun-mprincl
62078373
RS
208"You notice your floppy disk beginning to melt. As you grab for it, the
209disk bursts into flames, and disintegrates.")
a399c536 210 (dun-remove-obj-from-inven obj-floppy)
058c1767
RS
211 (dun-remove-obj-from-room dun-current-room obj-floppy))))))))
212
62078373 213
a399c536
RS
214(defun dun-die (murderer)
215 (dun-mprinc "\n")
62078373 216 (if murderer
a399c536
RS
217 (dun-mprincl "You are dead."))
218 (dun-do-logfile 'dun-die murderer)
219 (dun-score nil)
220 (setq dun-dead t))
62078373 221
a399c536
RS
222(defun dun-quit (args)
223 (dun-die nil))
62078373
RS
224
225;;; Print every object in player's inventory. Special case for the jar,
226;;; as we must also print what is in it.
227
a399c536
RS
228(defun dun-inven (args)
229 (dun-mprinc "You currently have:")
230 (dun-mprinc "\n")
231 (dolist (curobj dun-inventory)
62078373
RS
232 (if curobj
233 (progn
a399c536
RS
234 (dun-mprincl (cadr (nth curobj dun-objects)))
235 (if (and (= curobj obj-jar) dun-jar)
62078373 236 (progn
a399c536
RS
237 (dun-mprincl "The jar contains:")
238 (dolist (x dun-jar)
239 (dun-mprinc " ")
240 (dun-mprincl (cadr (nth x dun-objects))))))))))
62078373 241
a399c536 242(defun dun-shake (obj)
62078373 243 (let (objnum)
a399c536
RS
244 (when (setq objnum (dun-objnum-from-args-std obj))
245 (if (member objnum dun-inventory)
62078373
RS
246 (progn
247;;; If shaking anything will do anything, put here.
a399c536
RS
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")
62078373 252 )
a399c536
RS
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.")
62078373
RS
256;;; Shaking trees can be deadly
257 (if (= objnum obj-tree)
258 (progn
a399c536 259 (dun-mprinc
62078373
RS
260 "You begin to shake a tree, and notice a coconut begin to fall from the air.
261As you try to get your hand up to block it, you feel the impact as it lands
262on your head.")
a399c536 263 (dun-die "a coconut"))
62078373
RS
264 (if (= objnum obj-bear)
265 (progn
a399c536 266 (dun-mprinc
62078373 267"As you go up to the bear, it removes your head and places it on the ground.")
a399c536 268 (dun-die "a bear"))
62078373 269 (if (< objnum 0)
a399c536
RS
270 (dun-mprincl "You cannot shake that.")
271 (dun-mprincl "You don't have that.")))))))))
62078373
RS
272
273
a399c536
RS
274(defun dun-drop (obj)
275 (if dun-inbus
276 (dun-mprincl "You can't drop anything while on the bus.")
62078373 277 (let (objnum ptr)
a399c536
RS
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.")
62078373 281 (progn
a399c536
RS
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)
62078373 285 (list objnum)))
a399c536 286 (dun-mprincl "Done.")
62078373 287 (if (member objnum (list obj-food obj-weight obj-jar))
a399c536 288 (dun-drop-check objnum))))))))
62078373
RS
289
290;;; Dropping certain things causes things to happen.
291
a399c536 292(defun dun-drop-check (objnum)
62078373 293 (if (and (= objnum obj-food) (= room bear-hangout)
a399c536 294 (member obj-bear (nth bear-hangout dun-room-objects)))
62078373 295 (progn
a399c536 296 (dun-mprincl
62078373 297"The bear takes the food and runs away with it. He left something behind.")
a399c536
RS
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)
62078373
RS
302 (list obj-key)))))
303
a399c536
RS
304 (if (and (= objnum obj-jar) (member obj-nitric dun-jar)
305 (member obj-glycerine dun-jar))
62078373 306 (progn
a399c536
RS
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)
62078373 312 (progn
a399c536
RS
313 (setq dun-hole t)
314 (setq dun-current-room vermont-station)
315 (dun-mprincl
62078373
RS
316"The explosion causes a hole to open up in the ground, which you fall
317through.")))))
318
a399c536
RS
319 (if (and (= objnum obj-weight) (= dun-current-room maze-button-room))
320 (dun-mprincl "A passageway opens.")))
62078373
RS
321
322;;; Give long description of current room, or an object.
323
a399c536 324(defun dun-examine (obj)
62078373 325 (let (objnum)
a399c536 326 (setq objnum (dun-objnum-from-args obj))
62078373 327 (if (eq objnum obj-special)
a399c536 328 (dun-describe-room (* dun-current-room -1))
62078373 329 (if (and (eq objnum obj-computer)
a399c536
RS
330 (member obj-pc (nth dun-current-room dun-room-silents)))
331 (dun-examine '("pc"))
62078373 332 (if (eq objnum nil)
a399c536
RS
333 (dun-mprincl "I don't know what that is.")
334 (if (and (not (member objnum
335 (nth dun-current-room dun-room-objects)))
058c1767
RS
336 (not (and (member obj-jar dun-inventory)
337 (member objnum dun-jar)))
a399c536
RS
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.")
62078373
RS
342 (if (>= objnum 0)
343 (if (and (= objnum obj-bone)
a399c536
RS
344 (= dun-current-room marine-life-area) dun-black)
345 (dun-mprincl
62078373
RS
346"In this light you can see some writing on the bone. It says:
347For an explosive time, go to Fourth St. and Vermont.")
a399c536
RS
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)
62078373 352 (progn
a399c536
RS
353 (dun-mprincl (nth (abs objnum) dun-permobj-desc)))
354 (dun-mprincl "I see nothing special about that.")))))))))
62078373 355
a399c536 356(defun dun-take (obj)
058c1767
RS
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)))))))
62078373 384
a399c536
RS
385(defun dun-take-object (objnum)
386 (if (and (member objnum dun-jar) (member obj-jar dun-inventory))
62078373 387 (let (newjar)
a399c536 388 (dun-mprincl "You remove it from the jar.")
62078373 389 (setq newjar nil)
a399c536 390 (dolist (x dun-jar)
62078373
RS
391 (if (not (= x objnum))
392 (setq newjar (append newjar (list x)))))
a399c536
RS
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))
62078373
RS
399 (if (>= objnum 0)
400 (progn
a399c536
RS
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")))
412
413(defun dun-inven-weight ()
62078373
RS
414 (let (total)
415 (setq total 0)
a399c536
RS
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))
62078373
RS
420
421;;; We try to take an object that is untakable. Print a message
422;;; depending on what it is.
423
a399c536
RS
424(defun dun-try-take (obj)
425 (dun-mprinc "You cannot take that."))
426
427(defun dun-dig (args)
428 (if dun-inbus
058c1767 429 (dun-mprincl "Digging here reveals nothing.")
a399c536
RS
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)))))
439
440(defun dun-climb (obj)
62078373 441 (let (objnum)
a399c536 442 (setq objnum (dun-objnum-from-args obj))
058c1767
RS
443 (cond ((not objnum)
444 (dun-mprincl "I don't know what that object is."))
85cff943
RS
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)))
058c1767 448 (not (and (member objnum dun-jar) (member obj-jar dun-inventory)))
85cff943
RS
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."))
456 (t
457 (dun-mprincl
458 "You manage to get about two feet up the tree and fall back down. You
459notice that the tree is very unsteady.")))))
62078373 460
a399c536 461(defun dun-eat (obj)
62078373 462 (let (objnum)
a399c536
RS
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.")
62078373
RS
466 (if (not (= objnum obj-food))
467 (progn
a399c536
RS
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))))))
474
475(defun dun-put (args)
62078373 476 (let (newargs objnum objnum2 obj)
a399c536 477 (setq newargs (dun-firstwordl args))
62078373 478 (if (not newargs)
a399c536 479 (dun-mprincl "You must supply an object")
62078373 480 (setq obj (intern (car newargs)))
a399c536 481 (setq objnum (cdr (assq obj dun-objnames)))
62078373 482 (if (not objnum)
a399c536
RS
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)))
62078373 488 (if (not newargs)
a399c536
RS
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))
62078373
RS
492 (setq objnum2 obj-pc))
493 (if (not objnum2)
a399c536
RS
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.")
058c1767 501 (dun-put-objs objnum objnum2)))))))))
a399c536
RS
502
503(defun dun-put-objs (obj1 obj2)
504 (if (and (= obj2 obj-drop) (not dun-nomail))
62078373
RS
505 (setq obj2 obj-chute))
506
507 (if (= obj2 obj-disposal) (setq obj2 obj-chute))
508
509 (if (and (= obj1 obj-cpu) (= obj2 obj-computer))
510 (progn
a399c536
RS
511 (dun-remove-obj-from-inven obj-cpu)
512 (setq dun-computer t)
513 (dun-mprincl
62078373
RS
514"As you put the CPU board in the computer, it immediately springs to life.
515The lights start flashing, and the fans seem to startup."))
516 (if (and (= obj1 obj-weight) (= obj2 obj-button))
a399c536 517 (dun-drop '("weight"))
62078373
RS
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)))
a399c536
RS
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."))
62078373
RS
526 (if (= obj2 obj-chute) ;; Put something in chute
527 (progn
a399c536
RS
528 (dun-remove-obj-from-inven obj1)
529 (dun-mprincl
62078373 530"You hear it slide down the chute and off into the distance.")
a399c536 531 (dun-put-objs-in-treas (list obj1)))
62078373
RS
532 (if (= obj2 obj-box) ;; Put key in key box
533 (if (= obj1 obj-key)
534 (progn
a399c536 535 (dun-mprincl
62078373
RS
536"As you drop the key, the box begins to shake. Finally it explodes
537with a bang. The key seems to have vanished!")
a399c536
RS
538 (dun-remove-obj-from-inven obj1)
539 (dun-replace dun-room-objects computer-room (append
62078373 540 (nth computer-room
a399c536 541 dun-room-objects)
62078373 542 (list obj1)))
a399c536
RS
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!"))
62078373
RS
546
547 (if (and (= obj1 obj-floppy) (= obj2 obj-pc))
548 (progn
a399c536
RS
549 (setq dun-floppy t)
550 (dun-remove-obj-from-inven obj1)
551 (dun-mprincl "Done."))
62078373
RS
552
553 (if (= obj2 obj-urinal) ;; Put object in urinal
554 (progn
a399c536
RS
555 (dun-remove-obj-from-inven obj1)
556 (dun-replace dun-room-objects urinal (append
557 (nth urinal dun-room-objects)
62078373 558 (list obj1)))
a399c536 559 (dun-mprincl
62078373
RS
560 "You hear it plop down in some water below."))
561 (if (= obj2 obj-mail)
a399c536
RS
562 (dun-mprincl "The mail chute is locked.")
563 (if (member obj1 dun-inventory)
564 (dun-mprincl
62078373
RS
565"I don't know how to combine those objects. Perhaps you should
566just try dropping it.")
a399c536 567 (dun-mprincl"You can't put that there.")))))))))))
62078373 568
a399c536
RS
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
62078373 574"You type on the keyboard, but your characters do not even echo.")
a399c536 575 (dun-unix-interface))))
62078373
RS
576
577;;; Various movement directions
578
a399c536
RS
579(defun dun-n (args)
580 (dun-move north))
62078373 581
a399c536
RS
582(defun dun-s (args)
583 (dun-move south))
62078373 584
a399c536
RS
585(defun dun-e (args)
586 (dun-move east))
62078373 587
a399c536
RS
588(defun dun-w (args)
589 (dun-move west))
62078373 590
a399c536
RS
591(defun dun-ne (args)
592 (dun-move northeast))
62078373 593
a399c536
RS
594(defun dun-se (args)
595 (dun-move southeast))
62078373 596
a399c536
RS
597(defun dun-nw (args)
598 (dun-move northwest))
62078373 599
a399c536
RS
600(defun dun-sw (args)
601 (dun-move southwest))
62078373 602
a399c536
RS
603(defun dun-up (args)
604 (dun-move up))
62078373 605
a399c536
RS
606(defun dun-down (args)
607 (dun-move down))
62078373 608
a399c536
RS
609(defun dun-in (args)
610 (dun-move in))
62078373 611
a399c536
RS
612(defun dun-out (args)
613 (dun-move out))
62078373 614
a399c536 615(defun dun-go (args)
62078373 616 (if (or (not (car args))
a399c536
RS
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")))
62078373
RS
620
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.
625
a399c536
RS
626(defun dun-move (dir)
627 (if (and (not (member dun-current-room dun-light-rooms))
628 (not (member obj-lamp dun-inventory)))
62078373 629 (progn
a399c536 630 (dun-mprinc
62078373
RS
631"You trip over a grue and fall into a pit and break every bone in your
632body.")
a399c536 633 (dun-die "a grue"))
62078373 634 (let (newroom)
a399c536 635 (setq newroom (nth dir (nth dun-current-room dungeon-map)))
62078373 636 (if (eq newroom -1)
a399c536 637 (dun-mprinc "You can't go that way.\n")
62078373 638 (if (eq newroom 255)
a399c536 639 (dun-special-move dir)
62078373 640 (setq room -1)
a399c536
RS
641 (setq dun-lastdir dir)
642 (if dun-inbus
62078373
RS
643 (progn
644 (if (or (< newroom 58) (> newroom 83))
a399c536
RS
645 (dun-mprincl "The bus cannot go this way.")
646 (dun-mprincl
62078373 647 "The bus lurches ahead and comes to a screeching halt.")
a399c536
RS
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)
62078373 652 (list obj-bus)))))
a399c536 653 (setq dun-current-room newroom)))))))
62078373
RS
654
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.
658
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.
664
a399c536
RS
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)
62078373 671 (let (combo)
a399c536 672 (dun-mprincl
62078373 673"You must type a 3 digit combination code to enter this room.")
a399c536
RS
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."))))
681
682 (if (= dun-current-room bear-hangout)
683 (if (member obj-bear (nth bear-hangout dun-room-objects))
62078373 684 (progn
a399c536 685 (dun-mprinc
62078373
RS
686"The bear is very annoyed that you would be so presumptuous as to try
687and walk right by it. He tells you so by tearing your head off.
688")
a399c536
RS
689 (dun-die "a bear"))
690 (dun-mprincl "You can't go that way.")))
62078373 691
a399c536 692 (if (= dun-current-room vermont-station)
62078373 693 (progn
a399c536 694 (dun-mprincl
62078373
RS
695"As you board the train it immediately leaves the station. It is a very
696bumpy ride. It is shaking from side to side, and up and down. You
697sit down in one of the chairs in order to be more comfortable.")
a399c536 698 (dun-mprincl
62078373
RS
699"\nFinally the train comes to a sudden stop, and the doors open, and some
700force throws you out. The train speeds away.\n")
a399c536
RS
701 (setq dun-current-room museum-station)))
702
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.")))
708
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.")))
713
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)))
718
719 (if (= dun-current-room classroom)
720 (dun-mprincl "The door is locked."))
721
722 (if (or (= dun-current-room lakefront-north)
723 (= dun-current-room lakefront-south))
724 (dun-swim nil))
725
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
62078373
RS
730"As you exit the building, you notice some flames coming out of one of the
731windows. Suddenly, the building explodes in a huge ball of fire. The flames
732engulf you, and you burn to death.")
a399c536 733 (dun-die "burning")))
62078373 734
a399c536
RS
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.")))
62078373 739
a399c536
RS
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.")
62078373 744 (if (= dir in)
058c1767
RS
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))))
a399c536
RS
759 (if (= dun-current-room fifth-oaktree-intersection)
760 (if (not dun-inbus)
62078373 761 (progn
a399c536
RS
762 (dun-mprincl "You fall down the cliff and land on your head.")
763 (dun-die "a cliff"))
764 (dun-mprincl
62078373 765"The bus flies off the cliff, and plunges to the bottom, where it explodes.")
a399c536
RS
766 (dun-die "a bus accident")))
767 (if (= dun-current-room main-maple-intersection)
62078373 768 (progn
a399c536
RS
769 (if (not dun-inbus)
770 (dun-mprincl "The gate will not open.")
771 (dun-mprincl
62078373 772"As the bus approaches, the gate opens and you drive through.")
a399c536
RS
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)
62078373 776 (list obj-bus)))
a399c536
RS
777 (setq dun-current-room museum-entrance)))))
778 (if (= dun-current-room cave-entrance)
62078373 779 (progn
a399c536 780 (dun-mprincl
62078373
RS
781"As you enter the room you hear a rumbling noise. You look back to see
782huge rocks sliding down from the ceiling, and blocking your way out.\n")
a399c536 783 (setq dun-current-room misty-room)))))
62078373 784
a399c536
RS
785(defun dun-long (args)
786 (setq dun-mode "long"))
62078373 787
a399c536 788(defun dun-turn (obj)
62078373 789 (let (objnum direction)
a399c536
RS
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.")
62078373 794 (if (not (= objnum obj-dial))
a399c536
RS
795 (dun-mprincl "You can't turn that.")
796 (setq direction (dun-firstword (cdr obj)))
62078373
RS
797 (if (or (not direction)
798 (not (or (string= direction "clockwise")
799 (string= direction "counterclockwise"))))
a399c536 800 (dun-mprincl "You must indicate clockwise or counterclockwise.")
62078373 801 (if (string= direction "clockwise")
a399c536
RS
802 (setq dun-sauna-level (+ dun-sauna-level 1))
803 (setq dun-sauna-level (- dun-sauna-level 1)))
62078373 804
a399c536 805 (if (< dun-sauna-level 0)
62078373 806 (progn
a399c536 807 (dun-mprincl
62078373 808 "The dial will not turn further in that direction.")
a399c536
RS
809 (setq dun-sauna-level 0))
810 (dun-sauna-heat))))))))
811
812(defun dun-sauna-heat ()
813 (if (= dun-sauna-level 0)
814 (dun-mprincl
163d1767 815 "The temperature has returned to normal room temperature."))
a399c536 816 (if (= dun-sauna-level 1)
058c1767 817 (dun-mprincl "It is now luke warm in here. You are perspiring."))
a399c536
RS
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)
62078373 821 (progn
a399c536 822 (dun-mprincl
62078373 823"It is now very hot. There is something very refreshing about this.")
a399c536
RS
824 (if (or (member obj-rms dun-inventory)
825 (member obj-rms (nth dun-current-room dun-room-objects)))
62078373 826 (progn
a399c536 827 (dun-mprincl
62078373
RS
828"You notice the wax on your statuette beginning to melt, until it completely
829melts off. You are left with a beautiful diamond!")
a399c536 830 (if (member obj-rms dun-inventory)
62078373 831 (progn
a399c536
RS
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)
62078373 838 (list obj-diamond))))))
a399c536
RS
839 (if (or (member obj-floppy dun-inventory)
840 (member obj-floppy (nth dun-current-room dun-room-objects)))
62078373 841 (progn
a399c536 842 (dun-mprincl
62078373
RS
843"You notice your floppy disk beginning to melt. As you grab for it, the
844disk bursts into flames, and disintegrates.")
a399c536
RS
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))))))
62078373 848
a399c536 849 (if (= dun-sauna-level 4)
62078373 850 (progn
a399c536 851 (dun-mprincl
62078373 852"As the dial clicks into place, you immediately burst into flames.")
a399c536 853 (dun-die "burning"))))
62078373 854
a399c536 855(defun dun-press (obj)
62078373 856 (let (objnum)
a399c536
RS
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.")
62078373
RS
861 (if (not (member objnum (list obj-button obj-switch)))
862 (progn
a399c536
RS
863 (dun-mprinc "You can't ")
864 (dun-mprinc (car line-list))
865 (dun-mprincl " that."))
62078373 866 (if (= objnum obj-button)
a399c536 867 (dun-mprincl
62078373
RS
868"As you press the button, you notice a passageway open up, but
869as you release it, the passageway closes."))
870 (if (= objnum obj-switch)
a399c536 871 (if dun-black
62078373 872 (progn
a399c536
RS
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))))))))
877
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))
62078373 882 (progn
a399c536 883 (dun-mprincl
62078373
RS
884"You dive in the water, and at first notice it is quite cold. You then
885start to get used to it as you realize that you never really learned how
886to swim.")
a399c536
RS
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)))))
62078373
RS
891
892
a399c536
RS
893(defun dun-score (args)
894 (if (not dun-endgame)
62078373 895 (let (total)
a399c536
RS
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
62078373
RS
905"\n\nCongratulations. You have won. The wizard password is 'moby'"))))
906
a399c536
RS
907(defun dun-help (args)
908 (dun-mprincl
058c1767 909"Welcome to dunnet (2.01), by Ron Schnell (ronnie@driver-aces.com).
62078373
RS
910Here is some useful information (read carefully because there are one
911or 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.
914
915- If you have a lamp, it is always lit.
916
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.
926
927- You can save your game with the 'save' command, and use restore it
928 with the 'restore' command.
929
930- There are no limits on lengths of object names.
931
932- Directions are: north,south,east,west,northeast,southeast,northwest,
933 southwest,up,down,in,out.
934
935- These can be abbreviated: n,s,e,w,ne,se,nw,sw,u,d,in,out.
936
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.
939
940- To run this game in batch mode (no emacs window), use:
a399c536 941 emacs -batch -l dunnet
058c1767 942NOTE: This game *should* be run in batch mode!
62078373 943
058c1767
RS
944If you have questions or comments, please contact ronnie@driver-aces.com
945My home page is http://www.driver-aces.com/ronnie.html
946"))
62078373 947
a399c536
RS
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)))
954
cd9012b5 955(defun dun-piss (args)
a399c536
RS
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))))))
965
966
967(defun dun-sleep (args)
968 (if (not (= dun-current-room bedroom))
969 (dun-mprincl
62078373 970"You try to go to sleep while standing up here, but can't seem to do it.")
a399c536
RS
971 (setq dun-gottago t)
972 (dun-mprincl
62078373
RS
973"As soon as you start to doze off you begin dreaming. You see images of
974workers digging caves, slaving in the humid heat. Then you see yourself
975as one of these workers. While no one is looking, you leave the group
976and walk into a room. The room is bare except for a horseshoe
977shaped piece of stone in the center. You see yourself digging a hole in
978the ground, then putting some kind of treasure in it, and filling the hole
979with dirt again. After this, you immediately wake up.")))
980
a399c536 981(defun dun-break (obj)
62078373 982 (let (objnum)
a399c536
RS
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)
62078373 987 (progn
a399c536 988 (dun-mprincl
62078373
RS
989"You take the object in your hands and swing the axe. Unfortunately, you miss
990the object and slice off your hand. You bleed to death.")
a399c536
RS
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.")
62078373
RS
996 (if (= objnum obj-cable)
997 (progn
a399c536 998 (dun-mprincl
62078373
RS
999"As you break the ethernet cable, everything starts to blur. You collapse
1000for a moment, then straighten yourself up.
1001")
a399c536
RS
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)
62078373 1007 (progn
a399c536
RS
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))
62078373
RS
1016 (if (< objnum 0)
1017 (progn
a399c536
RS
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)))))))))
62078373 1022
a399c536
RS
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.")))
62078373 1027
a399c536
RS
1028(defun dun-superb (args)
1029 (setq dun-mode 'dun-superb))
62078373 1030
a399c536 1031(defun dun-reg-score ()
62078373
RS
1032 (let (total)
1033 (setq total 0)
a399c536
RS
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))
62078373
RS
1037 (setq total 0)) total))
1038
a399c536 1039(defun dun-endgame-score ()
62078373
RS
1040 (let (total)
1041 (setq total 0)
a399c536
RS
1042 (dolist (x (nth endgame-treasure-room dun-room-objects))
1043 (setq total (+ total (nth x dun-object-pts)))) total))
62078373 1044
a399c536
RS
1045(defun dun-answer (args)
1046 (if (not dun-correct-answer)
1047 (dun-mprincl "I don't believe anyone asked you anything.")
62078373
RS
1048 (setq args (car args))
1049 (if (not args)
a399c536
RS
1050 (dun-mprincl "You must give the answer on the same line.")
1051 (if (dun-members args dun-correct-answer)
62078373 1052 (progn
a399c536
RS
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.")))))
1059
1060(defun dun-endgame-question ()
1061(if (not dun-endgame-questions)
62078373 1062 (progn
a399c536
RS
1063 (dun-mprincl "Your question is:")
1064 (dun-mprincl "No more questions, just do 'answer foo'.")
1065 (setq dun-correct-answer '("foo")))
62078373
RS
1066 (let (which i newques)
1067 (setq i 0)
1068 (setq newques nil)
93cc044b 1069 (setq which (random (length dun-endgame-questions)))
a399c536
RS
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)))
62078373 1075 (while (< i which)
a399c536 1076 (setq newques (append newques (list (nth i dun-endgame-questions))))
62078373
RS
1077 (setq i (1+ i)))
1078 (setq i (1+ which))
a399c536
RS
1079 (while (< i (length dun-endgame-questions))
1080 (setq newques (append newques (list (nth i dun-endgame-questions))))
62078373 1081 (setq i (1+ i)))
a399c536 1082 (setq dun-endgame-questions newques))))
62078373
RS
1083
1084(defun dun-power (args)
a399c536
RS
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))))
62078373
RS
1090
1091(defun dun-feed (args)
1092 (let (objnum)
a399c536 1093 (when (setq objnum (dun-objnum-from-args-std args))
62078373 1094 (if (and (= objnum obj-bear)
a399c536 1095 (member obj-bear (nth dun-current-room dun-room-objects)))
62078373 1096 (progn
a399c536
RS
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."))))))
62078373
RS
1105
1106
1107;;;;
1108;;;; This section defines various utility functions used
1109;;;; by dunnet.
1110;;;;
1111
1112
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.
1115
a399c536 1116(defun dun-doverb (dun-ignore dun-verblist verb rest)
62078373
RS
1117 (if (not verb)
1118 nil
a399c536 1119 (if (member (intern verb) dun-ignore)
62078373 1120 (if (not (car rest)) -1
a399c536
RS
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)))))))
62078373
RS
1125
1126
1127;;; Function to take a string and change it into a list of lowercase words.
1128
a399c536 1129(defun dun-listify-string (strin)
62078373
RS
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))
1140
a399c536 1141(defun dun-listify-string2 (strin)
62078373
RS
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))
1152
a399c536 1153(defun dun-replace (list n number)
62078373
RS
1154 (rplaca (nthcdr n list) number))
1155
1156
1157;;; Get the first non-ignored word from a list.
1158
a399c536 1159(defun dun-firstword (list)
62078373
RS
1160 (if (not (car list))
1161 nil
a399c536 1162 (while (and list (member (intern (car list)) dun-ignore))
62078373
RS
1163 (setq list (cdr list)))
1164 (car list)))
1165
a399c536 1166(defun dun-firstwordl (list)
62078373
RS
1167 (if (not (car list))
1168 nil
a399c536 1169 (while (and list (member (intern (car list)) dun-ignore))
62078373
RS
1170 (setq list (cdr list)))
1171 list))
1172
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.
1175
a399c536
RS
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)))
62078373 1180
a399c536
RS
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)))
62078373
RS
1185
1186;;; Read a line, in window mode
1187
a399c536 1188(defun dun-read-line ()
62078373
RS
1189 (let (line)
1190 (setq line (read-string ""))
a399c536 1191 (dun-mprinc line) line))
62078373
RS
1192
1193;;; Insert something into the window buffer
1194
a399c536 1195(defun dun-minsert (string)
62078373
RS
1196 (if (stringp string)
1197 (insert string)
1198 (insert (prin1-to-string string))))
1199
1200;;; Print something out, in window mode
1201
a399c536 1202(defun dun-mprinc (string)
62078373
RS
1203 (if (stringp string)
1204 (insert string)
1205 (insert (prin1-to-string string))))
1206
1207;;; In window mode, keep screen from jumping by keeping last line at
1208;;; the bottom of the screen.
1209
a399c536 1210(defun dun-fix-screen ()
62078373
RS
1211 (interactive)
1212 (forward-line (- 0 (- (window-height) 2 )))
1213 (set-window-start (selected-window) (point))
1214 (end-of-buffer))
1215
1216;;; Insert something into the buffer, followed by newline.
1217
a399c536
RS
1218(defun dun-minsertl (string)
1219 (dun-minsert string)
1220 (dun-minsert "\n"))
62078373
RS
1221
1222;;; Print something, followed by a newline.
1223
a399c536
RS
1224(defun dun-mprincl (string)
1225 (dun-mprinc string)
1226 (dun-mprinc "\n"))
62078373
RS
1227
1228;;; Function which will get an object number given the list of
1229;;; words in the command, except for the verb.
1230
a399c536 1231(defun dun-objnum-from-args (obj)
62078373 1232 (let (objnum)
a399c536 1233 (setq obj (dun-firstword obj))
62078373
RS
1234 (if (not obj)
1235 obj-special
a399c536 1236 (setq objnum (cdr (assq (intern obj) dun-objnames))))))
62078373 1237
a399c536 1238(defun dun-objnum-from-args-std (obj)
62078373 1239 (let (result)
a399c536
RS
1240 (if (eq (setq result (dun-objnum-from-args obj)) obj-special)
1241 (dun-mprincl "You must supply an object."))
62078373 1242 (if (eq result nil)
a399c536 1243 (dun-mprincl "I don't know what that is."))
62078373
RS
1244 (if (eq result obj-special)
1245 nil
1246 result)))
1247
1248;;; Take a short room description, and change spaces and slashes to dashes.
1249
a399c536 1250(defun dun-space-to-hyphen (string)
62078373
RS
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))))
a399c536 1256 (dun-space-to-hyphen string))
62078373
RS
1257 string)))
1258
1259;;; Given a unix style pathname, build a list of path components (recursive)
1260
a399c536 1261(defun dun-get-path (dirstring startlist)
62078373
RS
1262 (let (slash pos)
1263 (if (= (length dirstring) 0)
1264 startlist
1265 (if (string= (substring dirstring 0 1) "/")
a399c536 1266 (dun-get-path (substring dirstring 1) (append startlist (list "/")))
62078373
RS
1267 (if (not (setq slash (string-match "/" dirstring)))
1268 (append startlist (list dirstring))
a399c536 1269 (dun-get-path (substring dirstring (1+ slash))
62078373
RS
1270 (append startlist
1271 (list (substring dirstring 0 slash)))))))))
1272
1273
1274;;; Is a string a member of a string list?
1275
a399c536 1276(defun dun-members (string string-list)
62078373
RS
1277 (let (found)
1278 (setq found nil)
1279 (dolist (x string-list)
1280 (if (string= x string)
1281 (setq found t))) found))
1282
1283;;; Function to put objects in the treasure room. Also prints current
1284;;; score to let user know he has scored.
1285
a399c536 1286(defun dun-put-objs-in-treas (objlist)
62078373 1287 (let (oscore newscore)
a399c536
RS
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))
62078373 1291 (if (not (= oscore newscore))
a399c536 1292 (dun-score nil))))
62078373
RS
1293
1294;;; Load an encrypted file, and eval it.
1295
a399c536 1296(defun dun-load-d (filename)
62078373
RS
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)
058c1767
RS
1310 (kill-buffer (current-buffer)))
1311 (switch-to-buffer old-buffer)
62078373
RS
1312 result))
1313
62078373
RS
1314;;; Functions to remove an object either from a room, or from inventory.
1315
a399c536 1316(defun dun-remove-obj-from-room (room objnum)
62078373
RS
1317 (let (newroom)
1318 (setq newroom nil)
a399c536 1319 (dolist (x (nth room dun-room-objects))
62078373
RS
1320 (if (not (= x objnum))
1321 (setq newroom (append newroom (list x)))))
a399c536 1322 (rplaca (nthcdr room dun-room-objects) newroom)))
62078373 1323
a399c536 1324(defun dun-remove-obj-from-inven (objnum)
62078373
RS
1325 (let (new-inven)
1326 (setq new-inven nil)
a399c536 1327 (dolist (x dun-inventory)
62078373
RS
1328 (if (not (= x objnum))
1329 (setq new-inven (append new-inven (list x)))))
a399c536 1330 (setq dun-inventory new-inven)))
62078373 1331
62078373
RS
1332
1333(let ((i 0) (lower "abcdefghijklmnopqrstuvwxyz") upper)
a399c536 1334 (setq dun-translate-table (make-vector 256 0))
62078373 1335 (while (< i 256)
a399c536 1336 (aset dun-translate-table i i)
62078373
RS
1337 (setq i (1+ i)))
1338 (setq lower (concat lower lower))
1339 (setq upper (upcase lower))
1340 (setq i 0)
1341 (while (< i 26)
a399c536
RS
1342 (aset dun-translate-table (+ ?a i) (aref lower (+ i 13)))
1343 (aset dun-translate-table (+ ?A i) (aref upper (+ i 13)))
62078373
RS
1344 (setq i (1+ i))))
1345
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)
a399c536 1351 (aset str i (aref dun-translate-table (aref str i)))
62078373
RS
1352 (setq i (1+ i)))
1353 (erase-buffer)
1354 (insert str)))
1355
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.
1362
a399c536
RS
1363(setq dun-visited '(27))
1364(setq dun-current-room 1)
1365(setq dun-exitf nil)
1366(setq dun-badcd nil)
62078373
RS
1367(defvar dungeon-mode-map nil)
1368(setq dungeon-mode-map (make-sparse-keymap))
a399c536 1369(define-key dungeon-mode-map "\r" 'dun-parse)
62078373
RS
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)
a399c536
RS
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)
62078373 1396(setq dungeon-mode 'dungeon)
a399c536
RS
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)))
62078373 1401
a399c536
RS
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)))
62078373
RS
1406
1407
a399c536 1408(setq dun-batch-mode nil)
62078373 1409
a399c536
RS
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)
62078373 1421
a399c536 1422(setq dun-rooms '(
62078373
RS
1423 (
1424"You are in the treasure room. A door leads out to the north."
1425 "Treasure room"
1426 )
1427 (
1428"You are at a dead end of a dirt road. The road goes to the east.
1429In the distance you can see that it will eventually fork off. The
1430trees here are very tall royal palms, and they are spaced equidistant
1431from each other."
1432 "Dead end"
1433 )
1434 (
1435"You are on the continuation of a dirt road. There are more trees on
1436both sides of you. The road continues to the east and west."
1437 "E/W Dirt road"
1438 )
1439 (
1440"You are at a fork of two passages, one to the northeast, and one to the
1441southeast. The ground here seems very soft. You can also go back west."
1442 "Fork"
1443 )
1444 (
1445"You are on a northeast/southwest road."
1446 "NE/SW road"
1447 )
1448 (
1449"You are at the end of the road. There is a building in front of you
1450to the northeast, and the road leads back to the southwest."
1451 "Building front"
1452 )
1453 (
1454"You are on a southeast/northwest road."
1455 "SE/NW road"
1456 )
1457 (
1458"You are standing at the end of a road. A passage leads back to the
1459northwest."
1460 "Bear hangout"
1461 )
1462 (
1463"You are in the hallway of an old building. There are rooms to the east
1464and west, and doors leading out to the north and south."
1465 "Old Building hallway"
1466 )
1467 (
1468"You are in a mailroom. There are many bins where the mail is usually
1469kept. The exit is to the west."
1470 "Mailroom"
1471 )
1472 (
1473"You are in a computer room. It seems like most of the equipment has
1474been removed. There is a VAX 11/780 in front of you, however, with
1475one of the cabinets wide open. A sign on the front of the machine
1476says: This VAX is named 'pokey'. To type on the console, use the
1477'type' command. The exit is to the east."
1478 "Computer room"
1479 )
1480 (
1481"You are in a meadow in the back of an old building. A small path leads
1482to the west, and a door leads to the south."
1483 "Meadow"
1484 )
1485 (
1486"You are in a round, stone room with a door to the east. There
1487is a sign on the wall that reads: 'receiving room'."
1488 "Receiving room"
1489 )
1490 (
1491"You are at the south end of a hallway that leads to the north. There
1492are rooms to the east and west."
1493 "Northbound Hallway"
1494 )
1495 (
1496"You are in a sauna. There is nothing in the room except for a dial
1497on the wall. A door leads out to west."
1498 "Sauna"
1499 )
1500 (
1501"You are at the end of a north/south hallway. You can go back to the south,
1502or off to a room to the east."
1503 "End of N/S Hallway"
1504 )
1505 (
1506"You are in an old weight room. All of the equipment is either destroyed
1507or completely broken. There is a door out to the west, and there is a ladder
1508leading down a hole in the floor."
1509 "Weight room" ;16
1510 )
1511 (
1512"You are in a maze of twisty little passages, all alike.
1513There is a button on the ground here."
1514 "Maze button room"
1515 )
1516 (
1517"You are in a maze of little twisty passages, all alike."
1518 "Maze"
1519 )
1520 (
1521"You are in a maze of thirsty little passages, all alike."
1522 "Maze" ;19
1523 )
1524 (
1525"You are in a maze of twenty little passages, all alike."
1526 "Maze"
1527 )
1528 (
1529"You are in a daze of twisty little passages, all alike."
1530 "Maze" ;21
1531 )
1532 (
1533"You are in a maze of twisty little cabbages, all alike."
1534 "Maze" ;22
1535 )
1536 (
1537"You are in a reception area for a health and fitness center. The place
1538appears to have been recently ransacked, and nothing is left. There is
1539a door out to the south, and a crawlspace to the southeast."
1540 "Reception area"
1541 )
1542 (
1543"You are outside a large building to the north which used to be a health
1544and fitness center. A road leads to the south."
1545 "Health Club front"
1546 )
1547 (
1548"You are at the north side of a lake. On the other side you can see
1549a road which leads to a cave. The water appears very deep."
1550 "Lakefront North"
1551 )
1552 (
1553"You are at the south side of a lake. A road goes to the south."
1554 "Lakefront South"
1555 )
1556 (
1557"You are in a well-hidden area off to the side of a road. Back to the
1558northeast through the brush you can see the bear hangout."
1559 "Hidden area"
1560 )
1561 (
1562"The entrance to a cave is to the south. To the north, a road leads
1563towards a deep lake. On the ground nearby there is a chute, with a sign
1564that says 'put treasures here for points'."
1565 "Cave Entrance" ;28
1566 )
1567 (
1568"You are in a misty, humid room carved into a mountain.
1569To the north is the remains of a rockslide. To the east, a small
1570passage leads away into the darkness." ;29
1571 "Misty Room"
1572 )
1573 (
1574"You are in an east/west passageway. The walls here are made of
1575multicolored rock and are quite beautiful."
1576 "Cave E/W passage" ;30
1577 )
1578 (
1579"You are at the junction of two passages. One goes north/south, and
1580the other goes west."
1581 "N/S/W Junction" ;31
1582 )
1583 (
1584"You are at the north end of a north/south passageway. There are stairs
1585leading down from here. There is also a door leading west."
1586 "North end of cave passage" ;32
1587 )
1588 (
1589"You are at the south end of a north/south passageway. There is a hole
1590in the floor here, into which you could probably fit."
1591 "South end of cave passage" ;33
1592 )
1593 (
1594"You are in what appears to be a worker's bedroom. There is a queen-
1595sized bed in the middle of the room, and a painting hanging on the
1596wall. A door leads to another room to the south, and stairways
1597lead up and down."
1598 "Bedroom" ;34
1599 )
1600 (
1601"You are in a bathroom built for workers in the cave. There is a
1602urinal hanging on the wall, and some exposed pipes on the opposite
1603wall where a sink used to be. To the north is a bedroom."
1604 "Bathroom" ;35
1605 )
1606 (
1607"This is a marker for the urinal. User will not see this, but it
1608is a room that can contain objects."
1609 "Urinal" ;36
1610 )
1611 (
1612"You are at the northeast end of a northeast/southwest passageway.
1613Stairs lead up out of sight."
058c1767 1614 "NE end of NE/SW cave passage" ;37
62078373
RS
1615 )
1616 (
1617"You are at the junction of northeast/southwest and east/west passages."
058c1767 1618 "NE/SW-E/W junction" ;38
62078373
RS
1619 )
1620 (
1621"You are at the southwest end of a northeast/southwest passageway."
058c1767 1622 "SW end of NE/SW cave passage" ;39
62078373
RS
1623 )
1624 (
058c1767 1625"You are at the east end of an E/W passage. There are stairs leading up
62078373 1626to a room above."
058c1767 1627 "East end of E/W cave passage" ;40
62078373
RS
1628 )
1629 (
058c1767 1630"You are at the west end of an E/W passage. There is a hole on the ground
62078373 1631which leads down out of sight."
058c1767 1632 "West end of E/W cave passage" ;41
62078373
RS
1633 )
1634 (
1635"You are in a room which is bare, except for a horseshoe shaped boulder
1636in the center. Stairs lead down from here." ;42
1637 "Horseshoe boulder room"
1638 )
1639 (
1640"You are in a room which is completely empty. Doors lead out to the north
1641and east."
1642 "Empty room" ;43
1643 )
1644 (
1645"You are in an empty room. Interestingly enough, the stones in this
1646room are painted blue. Doors lead out to the east and south." ;44
1647 "Blue room"
1648 )
1649 (
1650"You are in an empty room. Interestingly enough, the stones in this
1651room are painted yellow. Doors lead out to the south and west." ;45
1652 "Yellow room"
1653 )
1654 (
1655"You are in an empty room. Interestingly enough, the stones in this room
1656are painted red. Doors lead out to the west and north."
1657 "Red room" ;46
1658 )
1659 (
1660"You are in the middle of a long north/south hallway." ;47
1661 "Long n/s hallway"
1662 )
1663 (
1664"You are 3/4 of the way towards the north end of a long north/south hallway."
1665 "3/4 north" ;48
1666 )
1667 (
1668"You are at the north end of a long north/south hallway. There are stairs
1669leading upwards."
1670 "North end of long hallway" ;49
1671 )
1672 (
1673"You are 3/4 of the way towards the south end of a long north/south hallway."
1674 "3/4 south" ;50
1675 )
1676 (
1677"You are at the south end of a long north/south hallway. There is a hole
1678to the south."
1679 "South end of long hallway" ;51
1680 )
1681 (
1682"You are at a landing in a stairwell which continues up and down."
1683 "Stair landing" ;52
1684 )
1685 (
1686"You are at the continuation of an up/down staircase."
1687 "Up/down staircase" ;53
1688 )
1689 (
1690"You are at the top of a staircase leading down. A crawlway leads off
1691to the northeast."
1692 "Top of staircase." ;54
1693 )
1694 (
1695"You are in a crawlway that leads northeast or southwest."
058c1767 1696 "NE crawlway" ;55
62078373
RS
1697 )
1698 (
1699"You are in a small crawlspace. There is a hole in the ground here, and
1700a small passage back to the southwest."
1701 "Small crawlspace" ;56
1702 )
1703 (
1704"You are in the Gamma Computing Center. An IBM 3090/600s is whirring
1705away in here. There is an ethernet cable coming out of one of the units,
1706and going through the ceiling. There is no console here on which you
1707could type."
1708 "Gamma computing center" ;57
1709 )
1710 (
1711"You are near the remains of a post office. There is a mail drop on the
1712face of the building, but you cannot see where it leads. A path leads
1713back to the east, and a road leads to the north."
1714 "Post office" ;58
1715 )
1716 (
1717"You are at the intersection of Main Street and Maple Ave. Main street
1718runs north and south, and Maple Ave runs east off into the distance.
1719If you look north and east you can see many intersections, but all of
1720the buildings that used to stand here are gone. Nothing remains except
1721street signs.
1722There is a road to the northwest leading to a gate that guards a building."
1723 "Main-Maple intersection" ;59
1724 )
1725 (
1726"You are at the intersection of Main Street and the west end of Oaktree Ave."
1727 "Main-Oaktree intersection" ;60
1728 )
1729 (
1730"You are at the intersection of Main Street and the west end of Vermont Ave."
1731 "Main-Vermont intersection" ;61
1732 )
1733 (
1734"You are at the north end of Main Street at the west end of Sycamore Ave." ;62
1735 "Main-Sycamore intersection"
1736 )
1737 (
1738"You are at the south end of First Street at Maple Ave." ;63
1739 "First-Maple intersection"
1740 )
1741 (
1742"You are at the intersection of First Street and Oaktree Ave." ;64
1743 "First-Oaktree intersection"
1744 )
1745 (
1746"You are at the intersection of First Street and Vermont Ave." ;65
1747 "First-Vermont intersection"
1748 )
1749 (
1750"You are at the north end of First Street at Sycamore Ave." ;66
1751 "First-Sycamore intersection"
1752 )
1753 (
1754"You are at the south end of Second Street at Maple Ave." ;67
1755 "Second-Maple intersection"
1756 )
1757 (
1758"You are at the intersection of Second Street and Oaktree Ave." ;68
1759 "Second-Oaktree intersection"
1760 )
1761 (
1762"You are at the intersection of Second Street and Vermont Ave." ;69
1763 "Second-Vermont intersection"
1764 )
1765 (
1766"You are at the north end of Second Street at Sycamore Ave." ;70
1767 "Second-Sycamore intersection"
1768 )
1769 (
1770"You are at the south end of Third Street at Maple Ave." ;71
1771 "Third-Maple intersection"
1772 )
1773 (
1774"You are at the intersection of Third Street and Oaktree Ave." ;72
1775 "Third-Oaktree intersection"
1776 )
1777 (
1778"You are at the intersection of Third Street and Vermont Ave." ;73
1779 "Third-Vermont intersection"
1780 )
1781 (
1782"You are at the north end of Third Street at Sycamore Ave." ;74
1783 "Third-Sycamore intersection"
1784 )
1785 (
1786"You are at the south end of Fourth Street at Maple Ave." ;75
1787 "Fourth-Maple intersection"
1788 )
1789 (
1790"You are at the intersection of Fourth Street and Oaktree Ave." ;76
1791 "Fourth-Oaktree intersection"
1792 )
1793 (
1794"You are at the intersection of Fourth Street and Vermont Ave." ;77
1795 "Fourth-Vermont intersection"
1796 )
1797 (
1798"You are at the north end of Fourth Street at Sycamore Ave." ;78
1799 "Fourth-Sycamore intersection"
1800 )
1801 (
1802"You are at the south end of Fifth Street at the east end of Maple Ave." ;79
1803 "Fifth-Maple intersection"
1804 )
1805 (
1806"You are at the intersection of Fifth Street and the east end of Oaktree Ave.
1807There is a cliff off to the east."
1808 "Fifth-Oaktree intersection" ;80
1809 )
1810 (
1811"You are at the intersection of Fifth Street and the east end of Vermont Ave."
1812 "Fifth-Vermont intersection" ;81
1813 )
1814 (
1815"You are at the north end of Fifth Street and the east end of Sycamore Ave."
1816 "Fifth-Sycamore intersection" ;82
1817 )
1818 (
1819"You are in front of the Museum of Natural History. A door leads into
1820the building to the north, and a road leads to the southeast."
1821 "Museum entrance" ;83
1822 )
1823 (
1824"You are in the main lobby for the Museum of Natural History. In the center
1825of the room is the huge skeleton of a dinosaur. Doors lead out to the
1826south and east."
1827 "Museum lobby" ;84
1828 )
1829 (
1830"You are in the geological display. All of the objects that used to
1831be on display are missing. There are rooms to the east, west, and
1832north."
1833 "Geological display" ;85
1834 )
1835 (
1836"You are in the marine life area. The room is filled with fish tanks,
1837which are filled with dead fish that have apparently died due to
1838starvation. Doors lead out to the south and east."
1839 "Marine life area" ;86
1840 )
1841 (
1842"You are in some sort of maintenance room for the museum. There is a
1843switch on the wall labeled 'BL'. There are doors to the west and north."
1844 "Maintenance room" ;87
1845 )
1846 (
1847"You are in a classroom where school children were taught about natural
1848history. On the blackboard is written, 'No children allowed downstairs.'
1849There is a door to the east with an 'exit' sign on it. There is another
1850door to the west."
1851 "Classroom" ;88
1852 )
1853 (
1854"You are at the Vermont St. subway station. A train is sitting here waiting."
1855 "Vermont station" ;89
1856 )
1857 (
1858"You are at the Museum subway stop. A passage leads off to the north."
1859 "Museum station" ;90
1860 )
1861 (
1862"You are in a north/south tunnel."
1863 "N/S tunnel" ;91
1864 )
1865 (
1866"You are at the north end of a north/south tunnel. Stairs lead up and
1867down from here. There is a garbage disposal here."
058c1767 1868 "North end of N/S tunnel" ;92
62078373
RS
1869 )
1870 (
1871"You are at the top of some stairs near the subway station. There is
1872a door to the west."
1873 "Top of subway stairs" ;93
1874 )
1875 (
1876"You are at the bottom of some stairs near the subway station. There is
1877a room to the northeast."
1878 "Bottom of subway stairs" ;94
1879 )
1880 (
1881"You are in another computer room. There is a computer in here larger
1882than you have ever seen. It has no manufacturers name on it, but it
1883does have a sign that says: This machine's name is 'endgame'. The
1884exit is to the southwest. There is no console here on which you could
1885type."
1886 "Endgame computer room" ;95
1887 )
1888 (
1889"You are in a north/south hallway."
058c1767 1890 "Endgame N/S hallway" ;96
62078373
RS
1891 )
1892 (
1893"You have reached a question room. You must answer a question correctly in
1894order to get by. Use the 'answer' command to answer the question."
1895 "Question room 1" ;97
1896 )
1897 (
1898"You are in a north/south hallway."
058c1767 1899 "Endgame N/S hallway" ;98
62078373
RS
1900 )
1901 (
1902"You are in a second question room."
1903 "Question room 2" ;99
1904 )
1905 (
1906"You are in a north/south hallway."
058c1767 1907 "Endgame N/S hallway" ;100
62078373
RS
1908 )
1909 (
1910"You are in a third question room."
1911 "Question room 3" ;101
1912 )
1913 (
1914"You are in the endgame treasure room. A door leads out to the north, and
1915a hallway leads to the south."
1916 "Endgame treasure room" ;102
1917 )
1918 (
1919"You are in the winner's room. A door leads back to the south."
1920 "Winner's room" ;103
1921 )
1922 (
1923"You have reached a dead end. There is a PC on the floor here. Above
1924it is a sign that reads:
1925 Type the 'reset' command to type on the PC.
1926A hole leads north."
1927 "PC area" ;104
1928 )
1929))
1930
a399c536 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
62078373
RS
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))
1934
a399c536
RS
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)
cd9012b5 1952 (urinate . dun-piss) (piss . dun-piss)
a399c536
RS
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)))
1963
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)
62078373
RS
1969
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)
1982
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
2090 )
2091; no so ea we ne se nw sw up do in ot
2092)
2093
2094
2095;;; How the user references *all* objects, permanent and regular.
a399c536 2096(setq dun-objnames '(
62078373
RS
2097 (shovel . 0)
2098 (lamp . 1)
058c1767 2099 (cpu . 2) (board . 2) (card . 2) (chip . 2)
62078373
RS
2100 (food . 3)
2101 (key . 4)
058c1767 2102 (paper . 5) (slip . 5)
62078373
RS
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)
2125
2126 (boulder . -1)
85cff943 2127 (tree . -2) (trees . -2) (palm . -2)
62078373
RS
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)
058c1767 2148 (tanks . -23) (tank . -23)
62078373
RS
2149 (switch . -24)
2150 (blackboard . -25)
2151 (disposal . -26) (garbage . -26)
2152 (ladder . -27)
2153 (subway . -28) (train . -28)
058c1767
RS
2154 (pc . -29) (drive . -29) (coconut . -30) (coconuts . -30)
2155 (lake . -32) (water . -32)
62078373
RS
2156))
2157
a399c536 2158(dolist (x dun-objnames)
62078373
RS
2159 (let (name)
2160 (setq name (concat "obj-" (prin1-to-string (car x))))
2161 (eval (list 'defconst (intern name) (cdr x)))))
2162
2163(defconst obj-special 255)
2164
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
a399c536 2170;;; handled specially by 'dun-describe-room.
62078373 2171
a399c536 2172(setq dun-room-objects (list nil
62078373
RS
2173
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
2190 nil
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
2203 nil
2204 (list obj-bus) ;; fifth-sycamore-intersection
2205 nil
2206 (list obj-bone) ;; museum-lobby
2207 nil
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
2215 nil
2216 (list obj-special) ;; question-room-2
2217 nil
2218 (list obj-special) ;; question-room-three
2219 nil
2220 (list obj-mona) ;; winner's-room
2221nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
2222nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
2223nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil
2224nil))
2225
2226;;; These are objects in a room that are only described in the
2227;;; room description. They are permanent.
2228
a399c536 2229(setq dun-room-silents (list nil
058c1767
RS
2230 (list obj-tree obj-coconut) ;; dead-end
2231 (list obj-tree obj-coconut) ;; e-w-dirt-road
62078373
RS
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
2237 nil
2238 (list obj-ladder) ;; weight-room
2239 (list obj-button obj-ladder) ;; maze-button-room
2240 nil nil nil
058c1767
RS
2241 nil nil nil nil
2242 (list obj-lake) ;; lakefront-north
2243 (list obj-lake) ;; lakefront-south
2244 nil
62078373
RS
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
2260 nil
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
2272))
a399c536 2273(setq dun-inventory '(1))
62078373
RS
2274
2275;;; Descriptions of objects, as they appear in the room description, and
2276;;; the inventory.
2277
a399c536 2278(setq dun-objects '(
62078373
RS
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
2308 )
2309)
2310
2311;;; Weight of objects
2312
a399c536
RS
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))
62078373
RS
2317
2318
2319;;; Unix representation of objects.
a399c536 2320(setq dun-objfiles '(
62078373
RS
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"
2326 ))
2327
2328;;; These are the descriptions for the negative numbered objects from
a399c536 2329;;; dun-room-objects
62078373 2330
a399c536 2331(setq dun-perm-objects '(
62078373
RS
2332 nil
2333 ("There is a large boulder here.")
2334 nil
2335 ("There is a ferocious bear here!")
2336 nil
2337 nil
2338 ("There is a worthless pile of protoplasm here.")
2339 nil
2340 nil
2341 nil
2342 nil
2343 nil
2344 nil
2345 ("There is a strange smell in this room.")
2346 nil
2347 (
2348"There is a box with a slit in it, bolted to the wall here."
2349 )
2350 nil
2351 nil
2352 ("There is a bus here.")
2353 nil
2354 nil
2355 nil
2356))
2357
2358
2359;;; These are the descriptions the user gets when regular objects are
2360;;; examined.
2361
a399c536 2362(setq dun-physobj-desc '(
62078373
RS
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
23662 Megabytes of RAM onboard."
2367"It looks like some kind of meat. Smells pretty bad."
2368nil
2369"The paper says: Don't forget to type 'help' for help. Also, remember
2370this word: 'worms'"
2371"The statuette is of the likeness of Richard Stallman, the author of the
2372famous EMACS editor. You notice that he is not wearing any shoes."
2373nil
2374"You observe that the weight is heavy."
2375"It says S. S. Minnow."
2376nil
2377nil
2378nil
2379"It has a picture of snoopy on it."
2380nil
2381nil
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."
2386nil
2387nil
2388nil
2389nil
2390nil
2391 )
2392)
2393
2394;;; These are the descriptions the user gets when non-regular objects
2395;;; are examined.
2396
a399c536 2397(setq dun-permobj-desc '(
62078373
RS
2398 nil
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
2403are names written at the bottom of each bin, but most of them are
2404faded away so that you cannot read them. You can only make out three
2405names:
2406 Jeffrey Collier
2407 Robert Toukmond
2408 Thomas Stock
2409"
2410 nil
2411"It is just a garbled mess."
2412"The dial points to a temperature scale which has long since faded away."
2413nil
2414nil
058c1767 2415"It is a velvet painting of Elvis Presley. It seems to be nailed to the
62078373
RS
2416wall, 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
2419isn't even any rust. Upon close examination you realize that the drain at the
2420bottom is missing, and there is just a large hole leading down the
2421pipes into nowhere. The hole is too small for a person to fit in. The
2422flush handle is so clean that you can see your reflection in it."
2423nil
2424nil
2425"The box has a slit in the top of it, and on it, in sloppy handwriting, is
2426written: 'For key upgrade, put key in here.'"
2427nil
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
2433it. It is very big, though."
2434"The fish look like they were once quite beautiful."
2435nil
2436nil
2437nil
2438nil
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."
2442 )
2443)
2444
a399c536
RS
2445(setq dun-diggables
2446 (list nil nil nil (list obj-cpu) nil nil nil nil nil nil nil
62078373
RS
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))
2451
a399c536
RS
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)))))))
2458
2459(setq dun-endgame-questions '(
62078373
RS
2460 (
2461"What is your password on the machine called 'pokey'?" "robert")
2462 (
2463"What password did you use during anonymous ftp to gamma?" "foo")
2464 (
2465"Excluding the endgame, how many places are there where you can put
2466treasures for points?" "4" "four")
2467 (
2468"What is your login name on the 'endgame' machine?" "toukmond"
2469)
2470 (
2471"What is the nearest whole dollar to the price of the shovel?" "20" "twenty")
2472 (
2473"What is the name of the bus company serving the town?" "mobytours")
2474 (
2475"Give either of the two last names in the mailroom, other than your own."
2476"collier" "stock")
2477 (
2478"What cartoon character is on the towel?" "snoopy")
2479 (
2480"What is the last name of the author of EMACS?" "stallman")
2481 (
2482"How many megabytes of memory is on the CPU board for the Vax?" "2")
2483 (
2484"Which street in town is named after a U.S. state?" "vermont")
2485 (
2486"How many pounds did the weight weigh?" "ten" "10")
2487 (
2488"Name the STREET which runs right over the subway stop." "fourth" "4" "4th")
2489 (
2490"How many corners are there in town (excluding the one with the Post Office)?"
2491 "24" "twentyfour" "twenty-four")
2492 (
2493"What type of bear was hiding your key?" "grizzly")
2494 (
2495"Name either of the two objects you found by digging." "cpu" "card" "vax"
2496"board" "platinum")
2497 (
2498"What network protocol is used between pokey and gamma?" "tcp/ip" "ip" "tcp")
2499))
2500
2501(let (a)
2502 (setq a 0)
a399c536 2503 (dolist (x dun-room-shorts)
62078373
RS
2504 (eval (list 'defconst (intern x) a))
2505 (setq a (+ a 1))))
2506
2507
2508
2509;;;;
2510;;;; This section defines the UNIX emulation functions for dunnet.
2511;;;;
2512
a399c536 2513(defun dun-unix-parse (args)
62078373
RS
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)
a399c536 2524 (if (eq (dun-parse2 nil dun-unix-verbs line) -1)
62078373
RS
2525 (progn
2526 (if (setq esign (string-match "=" line))
a399c536
RS
2527 (dun-doassign line esign)
2528 (dun-mprinc (car line-list))
2529 (dun-mprincl ": not found.")))))
62078373 2530 (goto-char (point-max))
a399c536 2531 (dun-mprinc "\n"))
62078373
RS
2532 (if (eq dungeon-mode 'unix)
2533 (progn
a399c536
RS
2534 (dun-fix-screen)
2535 (dun-mprinc "$ ")))))
62078373 2536
a399c536
RS
2537(defun dun-doassign (line esign)
2538 (if (not dun-wizard)
62078373 2539 (let (passwd)
a399c536
RS
2540 (dun-mprinc "Enter wizard password: ")
2541 (setq passwd (dun-read-line))
2542 (if (not dun-batch-mode)
2543 (dun-mprinc "\n"))
62078373
RS
2544 (if (string= passwd "moby")
2545 (progn
a399c536
RS
2546 (setq dun-wizard t)
2547 (dun-doassign line esign))
2548 (dun-mprincl "Incorrect.")))
62078373
RS
2549
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))))
2560
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))
a399c536 2569 (dun-eval varname value))))
62078373 2570
a399c536 2571(defun dun-eval (varname value)
62078373
RS
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
a399c536 2587 (dun-mprincl "Invalid syntax."))))
62078373
RS
2588
2589
a399c536
RS
2590(defun dun-unix-interface ()
2591 (dun-login)
2592 (if dun-logged-in
62078373
RS
2593 (progn
2594 (setq dungeon-mode 'unix)
a399c536
RS
2595 (define-key dungeon-mode-map "\r" 'dun-unix-parse)
2596 (dun-mprinc "$ "))))
62078373 2597
a399c536 2598(defun dun-login ()
62078373
RS
2599 (let (tries username password)
2600 (setq tries 4)
a399c536
RS
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"))
62078373
RS
2610 (if (or (not (string= username "toukmond"))
2611 (not (string= password "robert")))
a399c536
RS
2612 (dun-mprincl "login incorrect")
2613 (setq dun-logged-in t)
2614 (dun-mprincl "
62078373
RS
2615Welcome to Unix\n
2616Please clean up your directories. The filesystem is getting full.
163d1767 2617Our tcp/ip link to gamma is a little flaky, but seems to work.
058c1767 2618The current version of ftp can only send files from your home
62078373
RS
2619directory, and deletes them after they are sent! Be careful.
2620
2621Note: Restricted bourne shell in use.\n")))
2622 (setq dungeon-mode 'dungeon)))
2623
a399c536 2624(defun dun-ls (args)
62078373
RS
2625 (if (car args)
2626 (let (ocdpath ocdroom)
a399c536
RS
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))))
2643
2644(defun dun-ls-root ()
2645 (dun-mprincl "total 4
62078373
RS
2646drwxr-xr-x 3 root staff 512 Jan 1 1970 .
2647drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..
2648drwxr-xr-x 3 root staff 2048 Jan 1 1970 usr
2649drwxr-xr-x 3 root staff 2048 Jan 1 1970 rooms"))
2650
a399c536
RS
2651(defun dun-ls-usr ()
2652 (dun-mprincl "total 4
62078373
RS
2653drwxr-xr-x 3 root staff 512 Jan 1 1970 .
2654drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..
2655drwxr-xr-x 3 toukmond restricted 512 Jan 1 1970 toukmond"))
2656
a399c536
RS
2657(defun dun-ls-rooms ()
2658 (dun-mprincl "total 16
62078373
RS
2659drwxr-xr-x 3 root staff 512 Jan 1 1970 .
2660drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..")
a399c536
RS
2661 (dolist (x dun-visited)
2662 (dun-mprinc
62078373 2663"drwxr-xr-x 3 root staff 512 Jan 1 1970 ")
a399c536 2664 (dun-mprincl (nth x dun-room-shorts))))
62078373 2665
a399c536
RS
2666(defun dun-ls-room ()
2667 (dun-mprincl "total 4
62078373
RS
2668drwxr-xr-x 3 root staff 512 Jan 1 1970 .
2669drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..
2670-rwxr-xr-x 3 root staff 2048 Jan 1 1970 description")
a399c536 2671 (dolist (x (nth dun-cdroom dun-room-objects))
62078373
RS
2672 (if (and (>= x 0) (not (= x 255)))
2673 (progn
a399c536
RS
2674 (dun-mprinc "-rwxr-xr-x 1 toukmond restricted 0 Jan 1 1970 ")
2675 (dun-mprincl (nth x dun-objfiles))))))
62078373 2676
a399c536
RS
2677(defun dun-ls-inven ()
2678 (dun-mprinc "total 467
62078373
RS
2679drwxr-xr-x 3 toukmond restricted 512 Jan 1 1970 .
2680drwxr-xr-x 3 root staff 2048 Jan 1 1970 ..")
a399c536 2681 (dolist (x dun-unix-verbs)
62078373
RS
2682 (if (not (eq (car x) 'IMPOSSIBLE))
2683 (progn
a399c536 2684 (dun-mprinc"
62078373 2685-rwxr-xr-x 1 toukmond restricted 10423 Jan 1 1970 ")
a399c536
RS
2686 (dun-mprinc (car x)))))
2687 (dun-mprinc "\n")
2688 (if (not dun-uncompressed)
2689 (dun-mprincl
62078373 2690"-rwxr-xr-x 1 toukmond restricted 0 Jan 1 1970 paper.o.Z"))
a399c536
RS
2691 (dolist (x dun-inventory)
2692 (dun-mprinc
62078373 2693"-rwxr-xr-x 1 toukmond restricted 0 Jan 1 1970 ")
a399c536 2694 (dun-mprincl (nth x dun-objfiles))))
62078373 2695
a399c536 2696(defun dun-echo (args)
62078373
RS
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
a399c536
RS
2704 (dun-mprinc x)
2705 (dun-mprinc " "))
62078373
RS
2706 (setq var (intern (substring x 1)))
2707 (if (not (boundp var))
a399c536
RS
2708 (dun-mprinc " ")
2709 (if (member var dun-restricted)
62078373 2710 (progn
a399c536
RS
2711 (dun-mprinc var)
2712 (dun-mprinc ": Permission denied")
62078373 2713 (setq nomore t))
a399c536
RS
2714 (eval (list 'dun-mprinc var))
2715 (dun-mprinc " ")))))))
2716 (dun-mprinc "\n")))
62078373
RS
2717
2718
a399c536 2719(defun dun-ftp (args)
62078373
RS
2720 (let (host username passwd ident newlist)
2721 (if (not (car args))
a399c536 2722 (dun-mprincl "ftp: hostname required on command line.")
62078373 2723 (setq host (intern (car args)))
a399c536
RS
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))
62078373 2733 (if (string= username "toukmond")
a399c536
RS
2734 (if dun-batch-mode
2735 (dun-mprincl "toukmond ftp access not allowed.")
2736 (dun-mprincl "\ntoukmond ftp access not allowed."))
62078373 2737 (if (string= username "anonymous")
a399c536
RS
2738 (if dun-batch-mode
2739 (dun-mprincl
62078373 2740 "Guest login okay, send your user ident as password.")
a399c536 2741 (dun-mprincl
62078373 2742 "\nGuest login okay, send your user ident as password."))
a399c536
RS
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))
62078373 2749 (if (not (string= username "anonymous"))
a399c536
RS
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)
62078373
RS
2759 (setq newlist
2760'("What password did you use during anonymous ftp to gamma?"))
2761 (setq newlist (append newlist (list ident)))
a399c536 2762 (rplaca (nthcdr 1 dun-endgame-questions) newlist)))))))))
62078373 2763
a399c536
RS
2764(defun dun-ftp-commands ()
2765 (setq dun-exitf nil)
62078373 2766 (let (line)
a399c536
RS
2767 (while (not dun-exitf)
2768 (dun-mprinc "ftp> ")
2769 (setq line (dun-read-line))
62078373
RS
2770 (if
2771 (eq
a399c536
RS
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)
62078373
RS
2776 ) line)
2777 -1)
a399c536
RS
2778 (dun-mprincl "No such command. Try help.")))
2779 (setq dun-ftptype 'ascii)))
62078373 2780
a399c536 2781(defun dun-ftptype (args)
62078373 2782 (if (not (car args))
a399c536 2783 (dun-mprincl "Usage: type [binary | ascii]")
62078373
RS
2784 (setq args (intern (car args)))
2785 (if (eq args 'binary)
a399c536 2786 (dun-bin nil)
62078373 2787 (if (eq args 'ascii)
a399c536
RS
2788 (dun-fascii 'nil)
2789 (dun-mprincl "Unknown type.")))))
62078373 2790
a399c536
RS
2791(defun dun-bin (args)
2792 (dun-mprincl "Type set to binary.")
2793 (setq dun-ftptype 'binary))
62078373 2794
a399c536
RS
2795(defun dun-fascii (args)
2796 (dun-mprincl "Type set to ascii.")
2797 (setq dun-ftptype 'ascii))
62078373 2798
a399c536
RS
2799(defun dun-ftpquit (args)
2800 (setq dun-exitf t))
62078373 2801
a399c536 2802(defun dun-send (args)
62078373 2803 (if (not (car args))
a399c536 2804 (dun-mprincl "Usage: send <filename>")
62078373
RS
2805 (setq args (car args))
2806 (let (counter foo)
2807 (setq foo nil)
2808 (setq counter 0)
2809
2810;;; User can send commands! Stupid user.
2811
2812
a399c536 2813 (if (assq (intern args) dun-unix-verbs)
62078373 2814 (progn
a399c536
RS
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."))
2821
2822 (dolist (x dun-objfiles)
62078373
RS
2823 (if (string= args x)
2824 (progn
a399c536 2825 (if (not (member counter dun-inventory))
62078373 2826 (progn
a399c536 2827 (dun-mprincl "No such file.")
62078373 2828 (setq foo t))
a399c536
RS
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))
62078373
RS
2835 (progn
2836 (if (not (member obj-protoplasm
a399c536
RS
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)
62078373 2842 (list obj-protoplasm))))
a399c536
RS
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)
62078373
RS
2847 (list counter))))
2848 (setq foo t)
a399c536 2849 (dun-mprincl "Transfer complete."))))
62078373
RS
2850 (setq counter (+ 1 counter)))
2851 (if (not foo)
a399c536 2852 (dun-mprincl "No such file."))))))
62078373 2853
a399c536
RS
2854(defun dun-ftphelp (args)
2855 (dun-mprincl
62078373
RS
2856 "Possible commands are:\nsend quit type ascii binary help"))
2857
a399c536 2858(defun dun-uexit (args)
62078373 2859 (setq dungeon-mode 'dungeon)
a399c536
RS
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)))
62078373 2864
a399c536
RS
2865(defun dun-pwd (args)
2866 (dun-mprincl dun-cdpath))
62078373 2867
a399c536 2868(defun dun-uncompress (args)
62078373 2869 (if (not (car args))
a399c536 2870 (dun-mprincl "Usage: uncompress <filename>")
62078373 2871 (setq args (car args))
a399c536 2872 (if (or dun-uncompressed
62078373
RS
2873 (and (not (string= args "paper.o"))
2874 (not (string= args "paper.o.z"))))
a399c536
RS
2875 (dun-mprincl "Uncompress command failed.")
2876 (setq dun-uncompressed t)
2877 (setq dun-inventory (append dun-inventory (list obj-paper))))))
62078373 2878
a399c536 2879(defun dun-rlogin (args)
62078373
RS
2880 (let (passwd)
2881 (if (not (car args))
a399c536 2882 (dun-mprincl "Usage: rlogin <hostname>")
62078373
RS
2883 (setq args (car args))
2884 (if (string= args "endgame")
a399c536 2885 (dun-rlogin-endgame)
62078373 2886 (if (not (string= args "gamma"))
058c1767
RS
2887 (if (string= args "pokey")
2888 (dun-mprincl "Can't rlogin back to localhost")
2889 (dun-mprincl "No such host."))
a399c536
RS
2890 (if (not dun-ethernet)
2891 (dun-mprincl "Host not responding.")
2892 (dun-mprinc "Password: ")
2893 (setq passwd (dun-read-line))
62078373 2894 (if (not (string= passwd "worms"))
a399c536
RS
2895 (dun-mprincl "\nlogin incorrect")
2896 (dun-mprinc
62078373
RS
2897"\nYou begin to feel strange for a moment, and you lose your items."
2898)
a399c536
RS
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))))))))
62078373 2905
a399c536 2906(defun dun-cd (args)
163d1767 2907 (let (tcdpath tcdroom path-elements room-check)
62078373 2908 (if (not (car args))
a399c536
RS
2909 (dun-mprincl "Usage: cd <path>")
2910 (setq tcdpath dun-cdpath)
2911 (setq tcdroom dun-cdroom)
2912 (setq dun-badcd nil)
62078373 2913 (condition-case nil
a399c536
RS
2914 (setq path-elements (dun-get-path (car args) nil))
2915 (error (dun-mprincl "Invalid path.")
2916 (setq dun-badcd t)))
62078373 2917 (dolist (pe path-elements)
a399c536 2918 (unless dun-badcd
62078373
RS
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))
a399c536 2946 (dun-nosuchdir))
62078373 2947 (if (= tcdroom -10)
a399c536 2948 (dun-nosuchdir)
62078373 2949 (if (> tcdroom 0)
a399c536 2950 (dun-nosuchdir)
62078373
RS
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))
a399c536 2961 (dun-nosuchdir))))
62078373
RS
2962 (if (= tcdroom -2)
2963 (progn
a399c536 2964 (dolist (x dun-visited)
62078373 2965 (setq room-check
a399c536
RS
2966 (nth x
2967 dun-room-shorts))
62078373
RS
2968 (if (string= room-check pe)
2969 (progn
2970 (setq tcdpath
2971 (concat "/rooms/" room-check))
2972 (setq tcdroom x))))
2973 (if (= tcdroom -2)
a399c536
RS
2974 (dun-nosuchdir)))))))))))))
2975 (if (not dun-badcd)
62078373 2976 (progn
a399c536
RS
2977 (setq dun-cdpath tcdpath)
2978 (setq dun-cdroom tcdroom)
62078373
RS
2979 0)
2980 -2))))
2981
a399c536
RS
2982(defun dun-nosuchdir ()
2983 (dun-mprincl "No such directory.")
2984 (setq dun-badcd t))
62078373 2985
a399c536 2986(defun dun-cat (args)
62078373
RS
2987 (let (doto checklist)
2988 (if (not (setq args (car args)))
a399c536 2989 (dun-mprincl "Usage: cat <ascii-file-name>")
62078373 2990 (if (string-match "/" args)
a399c536
RS
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)))
62078373
RS
2994 (if (setq doto (string-match "\\.o" args))
2995 (progn
a399c536
RS
2996 (if (= dun-cdroom -10)
2997 (setq checklist dun-inventory)
2998 (setq checklist (nth dun-cdroom dun-room-objects)))
62078373
RS
2999 (if (not (member (cdr
3000 (assq (intern
a399c536
RS
3001 (substring args 0 doto))
3002 dun-objnames))
62078373 3003 checklist))
a399c536
RS
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."))))))))
62078373 3009
a399c536
RS
3010(defun dun-zippy (args)
3011 (dun-mprincl (yow)))
62078373 3012
a399c536
RS
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)))
62078373
RS
3022
3023
3024(random t)
93cc044b 3025(setq tloc (+ 60 (random 18)))
a399c536
RS
3026(dun-replace dun-room-objects tloc
3027 (append (nth tloc dun-room-objects) (list 18)))
3028
93cc044b 3029(setq tcomb (+ 100 (random 899)))
a399c536 3030(setq dun-combination (prin1-to-string tcomb))
62078373
RS
3031
3032;;;;
3033;;;; This section defines the DOS emulation functions for dunnet
3034;;;;
3035
a399c536 3036(defun dun-dos-parse (args)
62078373
RS
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)
a399c536 3046 (if (eq (dun-parse2 nil dun-dos-verbs line) -1)
62078373
RS
3047 (progn
3048 (sleep-for 1)
a399c536 3049 (dun-mprincl "Bad command or file name"))))
62078373 3050 (goto-char (point-max))
a399c536 3051 (dun-mprinc "\n"))
62078373
RS
3052 (if (eq dungeon-mode 'dos)
3053 (progn
a399c536
RS
3054 (dun-fix-screen)
3055 (dun-dos-prompt)))))
62078373 3056
a399c536
RS
3057(defun dun-dos-interface ()
3058 (dun-dos-boot-msg)
62078373 3059 (setq dungeon-mode 'dos)
a399c536
RS
3060 (define-key dungeon-mode-map "\r" 'dun-dos-parse)
3061 (dun-dos-prompt))
62078373 3062
a399c536 3063(defun dun-dos-type (args)
62078373
RS
3064 (sleep-for 2)
3065 (if (setq args (car args))
3066 (if (string= args "foo.txt")
a399c536 3067 (dun-dos-show-combination)
62078373 3068 (if (string= args "command.com")
a399c536
RS
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")))
62078373 3073
a399c536 3074(defun dun-dos-invd (args)
62078373 3075 (sleep-for 1)
a399c536 3076 (dun-mprincl "Invalid drive specification"))
62078373 3077
a399c536 3078(defun dun-dos-dir (args)
62078373
RS
3079 (sleep-for 1)
3080 (if (or (not (setq args (car args))) (string= args "\\"))
a399c536 3081 (dun-mprincl "
62078373
RS
3082 Volume in drive A is FOO
3083 Volume Serial Number is 1A16-08C9
3084 Directory of A:\\
3085
3086COMMAND COM 47845 04-09-91 2:00a
3087FOO TXT 40 01-20-93 1:01a
3088 2 file(s) 47845 bytes
3089 1065280 bytes free
3090")
a399c536 3091 (dun-mprincl "
62078373
RS
3092 Volume in drive A is FOO
3093 Volume Serial Number is 1A16-08C9
3094 Directory of A:\\
3095
3096File not found")))
3097
3098
a399c536
RS
3099(defun dun-dos-prompt ()
3100 (dun-mprinc "A> "))
62078373 3101
a399c536 3102(defun dun-dos-boot-msg ()
62078373 3103 (sleep-for 3)
a399c536
RS
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")))
3110
3111(defun dun-dos-spawn (args)
62078373 3112 (sleep-for 1)
a399c536 3113 (dun-mprincl "Cannot spawn subshell"))
62078373 3114
a399c536 3115(defun dun-dos-exit (args)
62078373 3116 (setq dungeon-mode 'dungeon)
a399c536
RS
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)))
62078373 3121
a399c536 3122(defun dun-dos-no-disk ()
62078373 3123 (sleep-for 3)
a399c536 3124 (dun-mprincl "Boot sector not found"))
62078373
RS
3125
3126
a399c536 3127(defun dun-dos-show-combination ()
62078373 3128 (sleep-for 2)
a399c536
RS
3129 (dun-mprinc "\nThe combination is ")
3130 (dun-mprinc dun-combination)
3131 (dun-mprinc ".\n"))
62078373 3132
a399c536 3133(defun dun-dos-nil (args))
62078373
RS
3134
3135
3136;;;;
3137;;;; This section defines the save and restore game functions for dunnet.
3138;;;;
3139
a399c536 3140(defun dun-save-game (filename)
62078373 3141 (if (not (setq filename (car filename)))
a399c536 3142 (dun-mprincl "You must supply a filename for the save.")
62078373
RS
3143 (if (file-exists-p filename)
3144 (delete-file filename))
a399c536
RS
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")
66b8b1d5 3170 (dun-save-val "dun-endgame-questions")
a399c536
RS
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)
62078373
RS
3179 (switch-to-buffer "*dungeon*")
3180 (princ "")
a399c536 3181 (dun-mprincl "Done."))))
62078373 3182
a399c536 3183(defun dun-make-save-buffer ()
62078373
RS
3184 (switch-to-buffer (get-buffer-create "*save-dungeon*"))
3185 (erase-buffer))
3186
a399c536 3187(defun dun-compile-save-out (filename)
62078373
RS
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))
3201
3202
a399c536 3203(defun dun-save-val (varname)
62078373
RS
3204 (let (value)
3205 (setq varname (intern varname))
3206 (setq value (eval varname))
a399c536
RS
3207 (dun-minsert "(setq ")
3208 (dun-minsert varname)
3209 (dun-minsert " ")
62078373
RS
3210 (if (or (listp value)
3211 (symbolp value))
a399c536 3212 (dun-minsert "'"))
62078373 3213 (if (stringp value)
a399c536
RS
3214 (dun-minsert "\""))
3215 (dun-minsert value)
62078373 3216 (if (stringp value)
a399c536
RS
3217 (dun-minsert "\""))
3218 (dun-minsertl ")")))
62078373
RS
3219
3220
a399c536 3221(defun dun-restore (args)
62078373
RS
3222 (let (file)
3223 (if (not (setq file (car args)))
a399c536
RS
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.")
62078373
RS
3228 (setq room 0)))))
3229
3230
a399c536 3231(defun dun-do-logfile (type how)
62078373
RS
3232 (let (ferror newscore)
3233 (setq ferror nil)
3234 (switch-to-buffer (get-buffer-create "*score*"))
3235 (erase-buffer)
3236 (condition-case nil
a399c536 3237 (insert-file-contents dun-log-file)
62078373
RS
3238 (error (setq ferror t)))
3239 (unless ferror
3240 (goto-char (point-max))
a399c536
RS
3241 (dun-minsert (current-time-string))
3242 (dun-minsert " ")
3243 (dun-minsert (user-login-name))
3244 (dun-minsert " ")
62078373 3245 (if (eq type 'save)
a399c536
RS
3246 (dun-minsert "saved ")
3247 (if (= (dun-endgame-score) 110)
3248 (dun-minsert "won ")
62078373 3249 (if (not how)
a399c536
RS
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))
62078373
RS
3266 (kill-buffer (current-buffer))))
3267
3268
3269;;;;
3270;;;; These are functions, and function re-definitions so that dungeon can
3271;;;; be run in batch mode.
3272
3273
a399c536 3274(defun dun-batch-mprinc (arg)
62078373
RS
3275 (if (stringp arg)
3276 (send-string-to-terminal arg)
3277 (send-string-to-terminal (prin1-to-string arg))))
3278
3279
a399c536 3280(defun dun-batch-mprincl (arg)
62078373
RS
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")))
3287
a399c536
RS
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)))
62078373 3291
a399c536
RS
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)))
62078373 3295
a399c536 3296(defun dun-batch-read-line ()
62078373
RS
3297 (read-from-minibuffer "" nil dungeon-batch-map))
3298
3299
a399c536
RS
3300(defun dun-batch-loop ()
3301 (setq dun-dead nil)
62078373 3302 (setq room 0)
a399c536 3303 (while (not dun-dead)
62078373
RS
3304 (if (eq dungeon-mode 'dungeon)
3305 (progn
a399c536 3306 (if (not (= room dun-current-room))
62078373 3307 (progn
a399c536
RS
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"))))))
3314
3315(defun dun-batch-dos-interface ()
3316 (dun-dos-boot-msg)
62078373
RS
3317 (setq dungeon-mode 'dos)
3318 (while (eq dungeon-mode 'dos)
a399c536
RS
3319 (dun-dos-prompt)
3320 (setq line (downcase (dun-read-line)))
3321 (if (eq (dun-parse2 nil dun-dos-verbs line) -1)
62078373
RS
3322 (progn
3323 (sleep-for 1)
a399c536 3324 (dun-mprincl "Bad command or file name"))))
62078373 3325 (goto-char (point-max))
a399c536 3326 (dun-mprinc "\n"))
62078373 3327
a399c536
RS
3328(defun dun-batch-unix-interface ()
3329 (dun-login)
3330 (if dun-logged-in
62078373
RS
3331 (progn
3332 (setq dungeon-mode 'unix)
3333 (while (eq dungeon-mode 'unix)
a399c536
RS
3334 (dun-mprinc "$ ")
3335 (setq line (downcase (dun-read-line)))
3336 (if (eq (dun-parse2 nil dun-unix-verbs line) -1)
62078373
RS
3337 (let (esign)
3338 (if (setq esign (string-match "=" line))
a399c536
RS
3339 (dun-doassign line esign)
3340 (dun-mprinc (car line-list))
3341 (dun-mprincl ": not found.")))))
62078373 3342 (goto-char (point-max))
a399c536 3343 (dun-mprinc "\n"))))
62078373
RS
3344
3345(defun dungeon-nil (arg)
3346 "noop"
af4d27fb
RS
3347 (interactive "*p")
3348 nil)
62078373 3349
a399c536 3350(defun dun-batch-dungeon ()
62078373 3351 (load "dun-batch")
a399c536
RS
3352 (setq dun-visited '(27))
3353 (dun-mprinc "\n")
3354 (dun-batch-loop))
62078373
RS
3355
3356(unless (not noninteractive)
a399c536
RS
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))
e5e8bb4a 3367
896546cd
RS
3368(provide 'dunnet)
3369
3370;; dunnet.el ends here
e5e8bb4a 3371