]> git.jsancho.org Git - gacela.git/blob - src/game.scm
Preparing skeleton for engines, systems, etc
[gacela.git] / src / game.scm
1 ;;; Gacela, a GNU Guile extension for fast games development
2 ;;; Copyright (C) 2014 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 (define-module (gacela game)
19   #:use-module (gacela engine)
20   #:use-module (ice-9 vlist)
21   #:use-module (srfi srfi-1)
22   #:use-module (srfi srfi-9)
23   #:use-module (srfi srfi-9 gnu))
24
25
26 ;;; Working with entities
27
28 (define-record-type entity
29   (make-entity-record id components)
30   entity?
31   (id entity-id)
32   (components entity-components set-entity-components!))
33
34 (set-record-type-printer! entity
35   (lambda (record port)
36     (format port "#<[entity ~a] ~a>"
37             (entity-id record)
38             (entity-components record))))
39
40 (define (make-entity . components)
41   (make-entity-record
42    (gensym)
43    components))
44
45 (export make-entity
46         entity?
47         entity-id)
48
49
50 ;;; Game Definition
51
52 (define-record-type game
53   (make-game-record name entities)
54   game?
55   (name game-name set-game-name!)
56   (entities game-entities set-game-entities!))
57
58 (set-record-type-printer! game
59   (lambda (record port)
60     (format port "#<[Game: ~a] ~a>"
61             (game-name record)
62             (map
63              (lambda (id)
64                (cdr (vhash-assoc id (game-entities record))))
65              (vhash-fold
66               (lambda (key value result)
67                 (lset-union eqv? (list key) result))
68               '()
69               (game-entities record))))))
70
71 (define (make-game name . entities)
72   (make-game-record
73    name
74    (alist->vhash
75     (map (lambda (e) (cons (entity-id e) e))
76          entities))))
77
78 (export make-game
79         game?)
80
81
82 ;;; Working with games
83
84 (define (add-entity game entity)
85   #f)