]> git.jsancho.org Git - gacela.git/commitdiff
(no commit message)
authorjsancho <devnull@localhost>
Wed, 29 Jun 2011 07:58:47 +0000 (07:58 +0000)
committerjsancho <devnull@localhost>
Wed, 29 Jun 2011 07:58:47 +0000 (07:58 +0000)
src/gacela_mobs.scm

index 927d8b138af7125823b8b549e1dcf20605211e83..b2280d063bc334b034a8f7cf0c0597e055f29c0e 100755 (executable)
@@ -66,7 +66,7 @@
 
 (define (attr-save attr)
   (let ((name (car attr)))
-    `(assoc-set! attributes ',name (list ,name))))
+    `(set! attributes (assoc-set! attributes ',name (list ,name)))))
 
 (define-macro (define-action action-head . code)
   (let ((name (car action-head)) (attr (cdr action-head)))
@@ -80,7 +80,7 @@
        ,(cons 'begin (map attr-save attr))
        attributes)))
 
-(define-macro (lambda-look . look)
+(define-macro (lambda-look attr . look)
   (define (process-look look)
     (cond ((null? look) (values '() '()))
          (else
 
   (receive (look-lines look-images) (process-look look)
           `(let ,look-images
-               (lambda ()
-                 (glPushMatrix)
-                 ,@look-lines
-                 (glPopMatrix)))))
+               (lambda (attributes)
+                 (let ,(map attr-def attr)
+                   (glPushMatrix)
+                   ,@look-lines
+                   (glPopMatrix))))))
 
 
 ;;; Making mobs
                 ((set-renders)
                  (if (not (null? params)) (set! renders (car params))))))))
      (cond ((not (null? ',look))
-           (display ',look)
-           (newline)))
+           (mob 'set-renders
+                (list (cons
+                       'default-look
+                       (lambda-look () ,@look))))))
      mob))