1 ;;; Mudsync --- Live hackable MUD
2 ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
4 ;;; This file is part of Mudsync.
6 ;;; Mudsync is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or
9 ;;; (at your option) any later version.
11 ;;; Mudsync is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 ;;; General Public License for more details.
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with Mudsync. If not, see <http://www.gnu.org/licenses/>.
19 (define-module (mudsync room)
20 #:use-module (mudsync command)
21 #:use-module (mudsync gameobj)
22 #:use-module (8sync systems actors)
23 #:use-module (8sync agenda)
24 #:use-module (oop goops)
25 #:use-module (srfi srfi-1)
26 #:use-module (ice-9 control)
37 (define-class <exit> ()
39 (to-symbol #:init-keyword #:to-symbol)
40 ;; The actual address we use
41 (to-address #:init-keyword #:address)
42 ;; Name of the room (@@: Should this be names?)
43 (name #:getter exit-name
44 #:init-keyword #:name)
45 (desc #:init-keyword #:desc
48 ;; *Note*: These two methods have an extra layer of indirection, but
49 ;; it's for a good reason.
50 (visible-check #:init-value (const #t)
51 #:init-keyword #:visible-check)
52 ;; By default all exits can be traversed
53 (traverse-check #:init-value (const #t)
54 #:init-keyword #:traverse-check))
56 (define* (exit-can-traverse? exit actor
57 #:optional (target-actor (actor-id actor)))
58 ((slot-ref exit 'traverse-check) exit actor target-actor))
60 (define* (exit-is-visible? exit actor
61 #:optional (target-actor (actor-id actor)))
62 ((slot-ref exit 'traverse-check) exit actor target-actor))
69 (define %room-contain-commands
71 (loose-direct-command "look" 'cmd-look-at)
72 (empty-command "look" 'cmd-look-room)
73 (empty-command "go" 'cmd-go-where)
74 (loose-direct-command "go" 'cmd-go)
75 ;; (greedy-command "say" 'cmd-say)
80 ;; desc == description
81 (init (wrap-apply room-init))
82 (wire-exits! (wrap-apply room-wire-exits!))
83 (cmd-go (wrap-apply room-cmd-go))
84 (cmd-go-where (wrap-apply room-cmd-go-where))
85 (look-room (wrap-apply room-look-room))
86 (tell-room (wrap-apply room-tell-room))
87 ;; in this case the command is the same version as the normal
89 (cmd-look-room (wrap-apply room-look-room))
90 (cmd-look-at (wrap-apply room-look-at))))
93 (append room-actions gameobj-actions))
95 (define room-action-dispatch
96 (simple-dispatcher room-actions*))
98 ;; TODO: Subclass from container?
99 (define-class <room> (<gameobj>)
101 (exits #:init-value '()
102 #:init-keyword #:exits
106 #:init-value (wrap %room-contain-commands))
109 #:allocation #:each-subclass
110 ;; @@: Can remove this indirection once things settle
111 #:init-value (wrap-apply room-action-dispatch)))
113 (define (room-init room message)
114 (room-wire-exits! room))
116 (define (room-wire-exits! room)
117 "Actually hook up the rooms' exit addresses to the rooms they
123 (<-wait room (gameobj-gm room) 'lookup-special
124 #:symbol (slot-ref exit 'to-symbol))
127 (slot-set! exit 'to-address new-exit))
131 (define-mhandler (room-cmd-go room message direct-obj)
135 (equal? (exit-name exit) direct-obj))
139 ;; Set the player's new location
140 (<-wait room (message-from message) 'set-loc!
141 #:loc (slot-ref exit 'to-address))
142 ;; Have the new room update the player to the new location
143 (<- room (slot-ref exit 'to-address) 'look-room
144 #:to-id (message-from message)))
146 (<- room (message-from message) 'tell
147 #:text "You don't see any way to go there.\n"))))
149 (define-mhandler (room-cmd-go-where room message)
150 (<- room (message-from message) 'tell
151 #:text "Go where?\n"))
155 (define (list-words-as-string words)
156 "A little utility for listing a bunch of words in an English-style list"
157 ;; TODO: This could be made faster by traversing the O(n)
158 ;; list once, not twice
159 (let ((word-length (length words)))
161 ((eqv? word-length 0) "")
162 ((eqv? word-length 1) (car words))
164 ;; TODO: and this is NOT efficient
172 (define (room-player-looks-around room player-id)
173 "Handle looking around the room"
176 (format #f "**~a**\n~a\n"
177 (slot-ref room 'name)
178 (slot-ref room 'desc)))
180 ;; Get a list of other things the player would see in the room
181 (define occupant-names-all
185 (<-wait room occupant 'visible-name
186 #:whos-looking player-id)
189 (lambda (x) (equal? x player-id))
190 (hash-map->list (lambda (x _) x)
191 (slot-ref room 'occupants)))))
193 ;; Strip out the #f responses (these aren't listed because they lack a name
194 ;; or they aren't "obviously visible" to the player)
195 (define occupant-names-filtered
196 (filter identity occupant-names-all))
198 (define occupant-names-string
199 (if (eq? occupant-names-filtered '())
201 (format #f "You see here: ~a.\n"
202 (list-words-as-string occupant-names-filtered))))
205 (if occupant-names-string
206 (string-append room-text occupant-names-string)
209 (<- room player-id 'tell
213 (define-mhandler (room-look-room room message)
214 "Command: Player asks to look around the room"
215 (room-player-looks-around
217 ;; Either send it to the #:to-id of the message, or to the
218 ;; sender of the message
219 (message-ref message 'to-id
220 (message-from message))))
222 (define (room-find-thing-called room called-this)
223 "Find something called CALLED-THIS in the room, if any."
229 (message-ref (<-wait room occupant 'goes-by)
232 (if (member called-this goes-by)
234 (hash-map->list (lambda (key val) key)
235 (slot-ref room 'occupants)))
238 (define %formless-desc
239 "You don't see anything special about it.")
241 (define-mhandler (room-look-at room message direct-obj)
242 "Look at a specific object in the room."
243 (define matching-object
244 (room-find-thing-called room direct-obj))
250 (<-wait room matching-object 'get-desc
251 #:whos-looking (message-from message))
254 (<- room (message-from message) 'tell
255 #:text (string-append obj-desc "\n"))
256 (<- room (message-from message) 'tell
257 #:text (string-append %formless-desc "\n")))))
259 (<- room (message-from message) 'tell
260 #:text "You don't see that here, so you can't look at it.\n"))))
262 (define-mhandler (room-tell-room room message text)
263 "Tell the room some messages."
264 (define exclude (message-ref message 'exclude #f))
265 (define wait-delivery (message-ref message 'wait-delivery #f))
266 (define who-to-tell (gameobj-occupants room #:exclude exclude))
269 ;; @@: Does anything really care?
270 (define deliver-method
274 (deliver-method room tell-me 'tell