more dynamic dispatch of commands
[mudsync.git] / mudsync / room.scm
index ddf74301056ebae2fa6aeaeb114d8a506f2e3840..b2d23e652a5f654cca29dc06b1e2b0007b87984c 100644 (file)
   (list
    (loose-direct-command "look" 'cmd-look-at)
    (empty-command "look" 'cmd-look-room)
+   (empty-command "go" 'cmd-go-where)
    (loose-direct-command "go" 'cmd-go)))
 
+(define room-actions
+  (build-actions
+   ;; desc == description
+   (wire-exits! (wrap-apply room-wire-exits!))
+   (cmd-go (wrap-apply room-cmd-go))
+   (cmd-go-where (wrap-apply room-cmd-go-where))
+   (cmd-look-room (wrap-apply room-cmd-look-room))))
+
+(define room-actions*
+  (append room-actions gameobj-actions))
+
+(define room-action-dispatch
+  (simple-dispatcher room-actions*))
+
 ;; TODO: Subclass from container?
 (define-class <room> (<gameobj>)
   ;; A list of <exit>
@@ -79,7 +94,7 @@
          #:getter room-exits)
 
   (container-commands
-   #:init-value %room-contain-commands)
+   #:init-value (wrap %room-contain-commands))
 
   (message-handler
    #:allocation #:each-subclass
    #:init-value (wrap-apply room-action-dispatch)))
 
 
-(define room-actions
-  (build-actions
-   ;; desc == description
-   (wire-exits! (wrap-apply room-wire-exits!))
-   (cmd-go (wrap-apply room-cmd-go))
-   (cmd-look-room (wrap-apply room-cmd-look-room))))
-
-(define room-actions*
-  (append room-actions gameobj-actions))
-
-(define room-action-dispatch
-  (simple-dispatcher room-actions*))
-
-
 (define (room-wire-exits! room message)
   "Actually hook up the rooms' exit addresses to the rooms they
 claim to point to."
@@ -131,5 +132,9 @@ claim to point to."
     (<- room (message-from message) 'tell
         #:text "I don't know where that is?\n"))))
 
+(define-mhandler (room-cmd-go-where room message)
+  (<- room (message-from message) 'tell
+      #:text "Go where?\n"))
+
 (define-mhandler (room-cmd-look-room room message)
   (<- room (message-from message) 'look-room))