]> 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 ;;; World of Mob
19
20 (in-package :gacela)
21
22 (defmacro makemob (name variables &rest methods)
23   `(lambda ,
24
25 (defmacro defmob (name variables &key init logic render)
26   `(let ((make-name ',(intern (concatenate 'string "MAKE-" (string name)))))
27      (setf (symbol-function make-name)
28            (makemob ,variables :init ,init :logic ,logic :render ,render))
29      make-name))
30
31 ;(defmacro makemob (variables &key init logic render)
32 ;  `(lambda
33 ;     ,(if (null variables) () (cons '&key variables))
34 ;     (mob-structure ,variables ,init ,logic ,render)))
35
36 (defmacro mob-structure (variables init logic render)
37   `(list
38     :init (lambda () ,init)
39     :logic (lambda () ,logic)
40     :render (lambda () ,render)
41     :context (lambda ()
42                ,(if variables
43                     `(mapcar #'list
44                              ',(mapcar #'car+ variables)
45                              (multiple-value-list
46                               (values-list ,(cons 'list (mapcar #'car+ variables)))))
47                   nil))))
48
49 (defun init-mob (mob)
50   (funcall (getf mob :init)))
51
52 (defun logic-mob (mob)
53   (funcall (getf mob :logic)))
54
55 (defun render-mob (mob)
56   (funcall (getf mob :render)))
57
58 (let (running-mobs mobs-to-add mobs-to-quit)
59   (defun mob-on (mob)
60     (push mob mobs-to-add))
61
62   (defun mob-off (mob)
63     (push mob mobs-to-quit)))