X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=mudsync%2Froom.scm;h=0b0e85262f5f878b54bfbce6ca84a42dd49f3adb;hb=b1beda2a66973d1644dc0a57a9742fb06ea1e770;hp=6baea54ce99daef1d83e8b0440de2fb0ef8a4f5e;hpb=29f902827724fd50b512c60916a16850367f6046;p=mudsync.git diff --git a/mudsync/room.scm b/mudsync/room.scm index 6baea54..0b0e852 100644 --- a/mudsync/room.scm +++ b/mudsync/room.scm @@ -72,7 +72,8 @@ (empty-command "look" 'cmd-look-room) (empty-command "go" 'cmd-go-where) (loose-direct-command "go" 'cmd-go) - (greedy-command "say" 'cmd-say))) + (greedy-command "say" 'cmd-say) + (greedy-command "emote" 'cmd-emote))) (define room-actions (build-actions @@ -81,13 +82,15 @@ (wire-exits! (wrap-apply room-wire-exits!)) (cmd-go (wrap-apply room-cmd-go)) (cmd-go-where (wrap-apply room-cmd-go-where)) + (announce-entrance (wrap-apply room-announce-entrance)) (look-room (wrap-apply room-look-room)) (tell-room (wrap-apply room-act-tell-room)) ;; in this case the command is the same version as the normal ;; look-room version (cmd-look-room (wrap-apply room-look-room)) (cmd-look-at (wrap-apply room-look-at)) - (cmd-say (wrap-apply room-cmd-say)))) + (cmd-say (wrap-apply room-cmd-say)) + (cmd-emote (wrap-apply room-cmd-emote)))) (define room-actions* (append room-actions gameobj-actions)) @@ -134,11 +137,22 @@ claim to point to." (lambda (exit) (equal? (exit-name exit) direct-obj)) (room-exits room))) + (define to-address (slot-ref exit 'to-address)) + (define player-name + (message-ref (<-wait room (message-from message) + 'get-name) 'val)) (cond (exit ;; Set the player's new location (<-wait room (message-from message) 'set-loc! - #:loc (slot-ref exit 'to-address)) + #:loc to-address) + ;; Tell everyone else the person walked away + (room-tell-room + room + (format #f "~a wanders ~a.\n" + player-name direct-obj)) + (<- room to-address 'announce-entrance + #:who-entered (message-from message)) ;; Have the new room update the player to the new location (<- room (slot-ref exit 'to-address) 'look-room #:to-id (message-from message))) @@ -235,7 +249,7 @@ claim to point to." #f))) (define %formless-desc - "You don't see anything special about it.") + "You don't see anything special.") (define-mhandler (room-look-at room message direct-obj) "Look at a specific object in the room." @@ -288,3 +302,21 @@ claim to point to." (define message-to-send (format #f "~a says: ~a\n" player-name phrase)) (room-tell-room room message-to-send)) + +(define-mhandler (room-cmd-emote room message phrase) + "Command: Say something to room participants." + (define player-name + (message-ref (<-wait room (message-from message) + 'get-name) 'val)) + (define message-to-send + (format #f "* ~a ~a\n" player-name phrase)) + (room-tell-room room message-to-send)) + +(define-mhandler (room-announce-entrance room message who-entered) + (define player-name + (message-ref (<-wait room who-entered 'get-name) + 'val)) + (define message-to-send + (format #f "~a enters the room.\n" player-name)) + (room-tell-room room message-to-send + #:exclude who-entered))