]> git.jsancho.org Git - gacela.git/blobdiff - src/gacela_mobs.scm
(no commit message)
[gacela.git] / src / gacela_mobs.scm
index 12a0ef1d8aa90163e40a2469adfda912ac2b4184..f9594cfd58fa983d4189f261dbc93bb2e3fe9bd0 100755 (executable)
 ;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
-(use-modules (srfi srfi-1))
-
-;;; Actions for mobs
-
-(define-macro (define-action action-def . code)
-  (let ((name (car action-def)) (attr (cdr action-def)))
-    `(define (,name mob-attr)
-       (let ,(map attribute-definition attr)
-        ,@code
-        ,(cons 'list (map attribute-result attr))))))
-
-(define (attribute-definition attribute)
-  (let ((name (if (list? attribute) (car attribute) attribute))
-       (value (if (list? attribute) (cadr attribute) #f)))
-    `(,name (let ((v (assoc-ref mob-attr ',name))) (if v (cdr v) ,value)))))
-
-(define (attribute-result attribute)
-  (let ((name (if (list? attribute) (car attribute) attribute)))
-    `(list ',name ,name)))
-
-
-;;; Mob Factory
-
-(define-macro (makemob name . methods)
-  `(define* (,name . args)
-     (let ((option (car args)))
-       ,(lset-union eq?
-        `(case option
-           (:on (mob-on ',name))
-           (:off (mob-off ',name)))
-        (define (options m)
-          (let ((option (car m)) (body (cadr m)))
-            (cond ((null? m) '())
-                  (else (cons (list option `(apply ,body (cdr args))) (options (cddr m)))))))
-        (options methods)))))
-
-(define-macro (makemob name . methods)
-  (define (options m)
-    (cond ((null? m) '((else #f)))
-         (else
-          (let ((option (caar m)) (body (cadar m)))
-            (cons `((,option) (apply ,body (cdr args))) (options (cdr m)))))))
-  (let ((m (options methods)))
-    `(define (,name . args)
-       (let ((option (car args)))
-        (case option
-          ((#:on) (mob-on ',name))
-          ((#:off) (mob-off ',name))
-          ,@m)))))
-
-
-(define mob-on #f)
-(define run-mobs #f)
-(define mob-off #f)
-(define refresh-running-mobs #f)
-(define quit-all-mobs #f)
-
-(let ((running-mobs '()) (mobs-to-add '()) (mobs-to-quit '()))
-  (set! mob-on
-       (lambda (mob)
-         (push mob mobs-to-add)))
-
-  (set! run-mobs
-       (lambda* (option #:key args function)
-         (define (run-mobs-rec mobs)
-           (cond ((null? mobs) #f)
-                 (else
-                  (cond (function (function)))
-                  (catch #t (lambda () (apply (car mobs) (cons option args))) (lambda (key . args) #f))
-                  (or #t (run-mobs-rec (cdr mobs))))))
-         (run-mobs-rec running-mobs)))
-
-  (set! mob-off
-       (lambda (mob)
-         (push mob mobs-to-quit)))
-
-  (set! refresh-running-mobs
-       (lambda ()
-         (do ((mob (pop mobs-to-add) (pop mobs-to-add))) ((null? mob))
-           (push mob running-mobs)
-           (catch #t (lambda () (mob #:init)) (lambda (key . args) #f)))
-         (set! running-mobs (reverse (lset-difference eq? running-mobs mobs-to-quit)))
-         (set! mobs-to-quit '())))
-
-  (set! quit-all-mobs
+;;; Mobs Factory
+
+(define show-mob-hash #f)
+(define hide-mob-hash #f)
+(define get-active-mobs #f)
+(define clear-active-mobs #f)
+(define mobs-changed? #f)
+
+(let ((active-mobs (make-hash-table)) (changed #f))
+  (set! show-mob-hash
+       (lambda (key mob)
+         (hash-set! active-mobs key mob)
+         (set! changed #t)))
+
+  (set! hide-mob-hash
+       (lambda (key)
+         (hash-remove! active-mobs key)
+         (set! changed #t)))
+
+  (set! get-active-mobs
+       (lambda* (#:optional (refreshed #t))
+         (set! changed (not refreshed))
+         (hash-map->list (lambda (k v) v) active-mobs)))
+
+  (set! clear-active-mobs
        (lambda ()
-         (set! running-mobs '())
-         (set! mobs-to-add '())
-         (set! mobs-to-quit '()))))
-
-
-(define (logic-mobs)
-  (run-mobs #:logic))
-
-(define (render-mobs)
-  (run-mobs #:render #:function (lambda () (glLoadIdentity))))
+         (set! changed #t)
+         (hash-clear! active-mobs)))
+
+  (set! mobs-changed?
+       (lambda () changed)))
+
+
+(define-macro (show-mob mob)
+  (cond ((list? mob)
+        `(let ((m ,mob))
+           (show-mob-hash (m 'get-mob-id) m)))
+       (else
+        `(show-mob-hash (,mob 'get-mob-id) (lambda () (,mob))))))
+
+(define-macro (hide-mob mob)
+  (cond ((list? mob)
+        `(let ((m ,mob))
+           (hide-mob-hash (m 'get-mob-id))))
+       (else
+        `(hide-mob-hash (,mob 'get-mob-id)))))
+
+(define (run-mobs mobs)
+  (for-each
+   (lambda (m)
+     (glPushMatrix)
+     (m)
+     (glPopMatrix))
+   mobs))
+
+
+;;; Making mobs
+
+(define-macro (define-mob mob-head . body)
+  (let ((name (car mob-head)) (attr (cdr mob-head)))
+    `(define ,(string->symbol (string-concatenate (list "make-" (symbol->string name))))
+       (lambda* ,(if (null? attr) '() `(#:key ,@attr))
+        (the-mob ',name () ,attr ,@body)))))
+
+(define-macro (the-mob type attr publish . body)
+  (let ((mob-id-symbol (gensym))
+       (type-symbol (gensym)))
+    `(let ((,mob-id-symbol (gensym))
+          (,type-symbol ,type)
+          ,@attr)
+       (lambda* (#:optional (option #f))
+        (define (kill-me)
+          (hide-mob-hash ,mob-id-symbol))
+        (case option
+          ((get-mob-id)
+           ,mob-id-symbol)
+          ((get-type)
+           ,type-symbol)
+          (else
+           (display ,(cons 'list (map (lambda (x) `(cons ',(car x) ,(car x))) publish)))
+           (newline)
+           (catch #t
+                  (lambda () ,@body)
+                  (lambda (key . args) #f))))))))
+
+(define-macro (lambda-mob attr . body)
+  `(the-mob 'undefined ,attr '() ,@body))