]> git.jsancho.org Git - gacela.git/blobdiff - src/gacela_mobs.scm
(no commit message)
[gacela.git] / src / gacela_mobs.scm
index 555ce0f185add81cf7b76d0a967271e1e536337c..c0507f5af6eb529a4a61a44f6fe1ac060cc8cb5a 100755 (executable)
 (define (process-mobs mobs)
   (for-each (lambda (m) (m #:render)) mobs))
 
+
+;;; 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-macro (lambda-look . look)
+  (define (process-look look)
+    (cond ((null? look) (values '() '()))
+         (else
+          (let ((line (car look)))
+            (receive (lines images) (process-look (cdr look))
+                     (cond ((string? line)
+                            (let ((var (gensym)))
+                              (values (cons `(draw-texture ,var) lines)
+                                      (cons `(,var (load-texture ,line)) images))))
+                           (else
+                            (values (cons line lines)
+                                    images))))))))
+
+  (receive (look-lines look-images) (process-look look)
+          `(let ,look-images
+               (lambda ()
+                 (glPushMatrix)
+                 ,@look-lines
+                 (glPopMatrix)))))
+
+
+;;; Making mobs
+
 (define-macro (define-mob mob-head . look)
   (let ((name (car mob-head)) (attr (cdr mob-head)))
     `(define ,name
        (lambda-mob ,attr ,@look))))
 
 (define-macro (lambda-mob attr . look)
-  (let ((look-code (map (lambda (x) (if (string? x) `(draw-texture ,x) x)) look)))
-    `(let ((attr ',attr))
-       (lambda (option)
-        (case option
-          ((#:render)
-           (glPushMatrix)
-           ,@look-code
-;          ,@(map (lambda (x) (if (string? x) `(draw-texture ,x) x)) look)
-           (glPopMatrix)))))))
+  `(let ((mob #f))
+     (set! mob
+          (let ((attr ',attr) (actions '()) (renders '()))
+            (lambda (option . params)
+              (case option
+                ((get-attr)
+                 attr)
+                ((set-attr)
+                 (if (not (null? params)) (set! attr (car params))))
+                ((get-actions)
+                 actions)
+                ((set-actions)
+                 (if (not (null? params)) (set! actions (car params))))
+                ((get-renders)
+                 renders)
+                ((set-renders)
+                 (if (not (null? params)) (set! renders (car params))))))))
+     (cond ((not (null? ',look))
+           (display ',look)
+           (newline)))
+     mob))