X-Git-Url: https://jxself.org/git/?p=mudsync.git;a=blobdiff_plain;f=mudsync%2Fgameobj.scm;h=921850eef534cde51c23a18a1d9be3a7d91d493c;hp=351abe7c22a9094f0666938b73620f7669406ca9;hb=4736bfc66c4067b0cf9daf8eb69b1fe733d54e00;hpb=8a2341e98f75a5df295f49c08485eb6339dda19e diff --git a/mudsync/gameobj.scm b/mudsync/gameobj.scm index 351abe7..921850e 100644 --- a/mudsync/gameobj.scm +++ b/mudsync/gameobj.scm @@ -24,6 +24,7 @@ #:use-module (8sync systems actors) #:use-module (8sync agenda) #:use-module (srfi srfi-1) + #:use-module (ice-9 match) #:use-module (oop goops) #:export ( gameobj-simple-name-f @@ -103,6 +104,12 @@ (reply-message actor message #:val (slot-ref actor slot)))) +(define (val-or-run val-or-proc) + "Evaluate if a procedure, or just return otherwise" + (if (procedure? val-or-proc) + (val-or-proc) + val-or-proc)) + (define (filter-commands commands verb) (filter (lambda (cmd) @@ -112,13 +119,13 @@ (define-mhandler (gameobj-get-commands actor message verb) (define filtered-commands - (filter-commands (slot-ref actor 'commands) + (filter-commands (val-or-run (slot-ref actor 'commands)) verb)) (<-reply actor message #:commands filtered-commands)) (define-mhandler (gameobj-get-container-commands actor message verb) (define filtered-commands - (filter-commands (slot-ref actor 'container-commands) + (filter-commands (val-or-run (slot-ref actor 'container-commands)) verb)) (<-reply actor message #:commands filtered-commands)) @@ -146,9 +153,9 @@ (set! (gameobj-loc actor) loc) ;; Change registation of where we currently are (if loc - (<- actor loc 'add-occupant! #:who (actor-id actor))) + (<-wait actor loc 'add-occupant! #:who (actor-id actor))) (if old-loc - (<- actor old-loc 'remove-occupant! #:who (actor-id actor)))) + (<-wait actor old-loc 'remove-occupant! #:who (actor-id actor)))) (define gameobj-get-name (simple-slot-getter 'name)) (define gameobj-get-desc (simple-slot-getter 'desc))