X-Git-Url: https://jxself.org/git/?p=mudsync.git;a=blobdiff_plain;f=mudsync%2Froom.scm;h=b2d23e652a5f654cca29dc06b1e2b0007b87984c;hp=ddf74301056ebae2fa6aeaeb114d8a506f2e3840;hb=4736bfc66c4067b0cf9daf8eb69b1fe733d54e00;hpb=c180cf5a8df2962220cad84ca566f0ca92057d21 diff --git a/mudsync/room.scm b/mudsync/room.scm index ddf7430..b2d23e6 100644 --- a/mudsync/room.scm +++ b/mudsync/room.scm @@ -69,8 +69,23 @@ (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 () ;; A list of @@ -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 @@ -87,20 +102,6 @@ #: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))