]> git.jsancho.org Git - gacela.git/commitdiff
(no commit message)
authorjsancho <devnull@localhost>
Thu, 23 Jun 2011 19:24:04 +0000 (19:24 +0000)
committerjsancho <devnull@localhost>
Thu, 23 Jun 2011 19:24:04 +0000 (19:24 +0000)
src/gacela_mobs.scm

index c0507f5af6eb529a4a61a44f6fe1ac060cc8cb5a..51ce54917e9a241a6d68d8ff93ec8673f10cda21 100755 (executable)
 
 ;;; Actions and looks for mobs
 
-(defmacro make-behaviour (name attr &rest code)
-  `(defun ,(get-behaviour-fun-name name) (object-attr)
-     (let ,(mapcar #'attribute-definition attr)
-       ,@code
-       ,(cons 'progn (mapcar #'attribute-save (reverse attr)))
-       object-attr)))
-
-(defun get-behaviour-fun-name (name)
-  (intern (concatenate 'string "BEHAVIOUR-" (string-upcase (string name))) 'gacela))
-
-(defun attribute-name (attribute)
-  (intern (string attribute) 'keyword))
-
-(define (attribute-definition attribute)
-  (let* ((name (cond ((list? attribute) (car attribute))
-                    (else attribute)))
-        (pname (attribute-name name))
-        (value (cond ((listp attribute) (cadr attribute)))))
-    `(,name (getf object-attr ,pname ,value))))
-
-(defun attribute-save (attribute)
-  (let* ((name (cond ((listp attribute) (car attribute))
-                    (t attribute)))
-        (pname (attribute-name name)))
-    `(setf (getf object-attr ,pname) ,name)))
+(define (get-attr list name default)
+  (let ((value (assoc-ref list name)))
+    (cond (value (car value))
+         (else default))))
+
+(define (attr-def attr)
+  (let ((name (car attr))
+       (value (cadr attr)))
+    `(,name (get-attr attributes ',name ,value))))
+
+;; (defmacro make-behaviour (name attr &rest code)
+;;   `(defun ,(get-behaviour-fun-name name) (object-attr)
+;;      (let ,(mapcar #'attribute-definition attr)
+;;        ,@code
+;;        ,(cons 'progn (mapcar #'attribute-save (reverse attr)))
+;;        object-attr)))
+
+;; (defun get-behaviour-fun-name (name)
+;;   (intern (concatenate 'string "BEHAVIOUR-" (string-upcase (string name))) 'gacela))
+
+;; (defun attribute-name (attribute)
+;;   (intern (string attribute) 'keyword))
+
+;; (define (attribute-definition attribute)
+;;   (let* ((name (cond ((list? attribute) (car attribute))
+;;                  (else attribute)))
+;;      (pname (attribute-name name))
+;;      (value (cond ((listp attribute) (cadr attribute)))))
+;;     `(,name (getf object-attr ,pname ,value))))
+
+;; (defun attribute-save (attribute)
+;;   (let* ((name (cond ((listp attribute) (car attribute))
+;;                  (t attribute)))
+;;      (pname (attribute-name name)))
+;;     `(setf (getf object-attr ,pname) ,name)))
 
 (define-macro (lambda-look . look)
   (define (process-look look)