]> git.jsancho.org Git - gacela.git/blob - gacela_mobs.lisp
(no commit message)
[gacela.git] / gacela_mobs.lisp
1 ;;; Gacela, a GNU Common Lisp extension for fast games development
2 ;;; Copyright (C) 2009 by Javier Sancho Fernandez <jsf at jsancho dot org>
3 ;;;
4 ;;; This program is free software: you can redistribute it and/or modify
5 ;;; it under the terms of the GNU General Public License as published by
6 ;;; the Free Software Foundation, either version 3 of the License, or
7 ;;; (at your option) any later version.
8 ;;;
9 ;;; This program is distributed in the hope that it will be useful,
10 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ;;; GNU General Public License for more details.
13 ;;;
14 ;;; You should have received a copy of the GNU General Public License
15 ;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17
18 (in-package :gacela)
19
20 ;;; World of Mob
21 (defmacro defmob (name variables &key init logic render)
22   `(let ((make-name ',(intern (concatenate 'string "MAKE-" (string name)))))
23      (setf (symbol-function make-name)
24            (makemob ,variables :init ,init :logic ,logic :render ,render))
25      make-name))
26
27 (defmacro makemob (variables &key init logic render)
28   `(lambda
29      ,(if (null variables) () (cons '&key variables))
30      (mob-structure ,variables ,init ,logic ,render)))
31
32 (defmacro mob-structure (variables init logic render)
33   `(list
34     :init (lambda () ,init)
35     :logic (lambda () ,logic)
36     :render (lambda () ,render)
37     :context (lambda ()
38                ,(if variables
39                     `(mapcar #'list
40                              ',(mapcar #'car+ variables)
41                              (multiple-value-list
42                               (values-list ,(cons 'list (mapcar #'car+ variables)))))
43                   nil))))
44
45 (defun init-mob (mob)
46   (funcall (getf mob :init)))
47
48 (defun logic-mob (mob)
49   (funcall (getf mob :logic)))
50
51 (defun render-mob (mob)
52   (funcall (getf mob :render)))
53
54 (let (running-mobs mobs-to-add mobs-to-quit)
55   (defun mob-on (mob)
56     (push mob mobs-to-add))
57
58   (defun mob-off (mob)
59     (push mob mobs-to-quit)))