]> git.jsancho.org Git - gacela.git/blob - src/examples/composing-systems.scm
Better examples
[gacela.git] / src / examples / composing-systems.scm
1 ;;; Gacela, a GNU Guile extension for fast games development
2 ;;; Copyright (C) 2013 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 examples composing-systems)
19   #:use-module (gacela system)
20   #:use-module (ice-9 receive))
21
22
23 (define s1
24   (make-system '(l)
25     (lambda (e)
26       (sleep 3)
27       (map
28        (lambda (e1)
29          (set-entity-components (car e1) `(l . ,(cons 1 (cdadr e1)))))
30        e))))
31
32 (define s2
33   (make-system '(l)
34     (lambda (e)
35       (sleep 4)
36       (map
37        (lambda (e1)
38          (set-entity-components (car e1) `(l . ,(cons 2 (cdadr e1)))))
39        e))))
40
41 (define (composing-with-join)
42   (let ((entities '())
43         (components '()))
44     (receive (e c) (modify-entities (list (new-entity '(l . ())) (new-entity '(l . ()))) entities components)
45       ((join-systems s1 s2) e c))))
46
47 (export composing-with-join)
48
49
50 (define (composing-with-threaded)
51   (let ((entities '())
52         (components '()))
53     (receive (e c) (modify-entities (list (new-entity '(l . ())) (new-entity '(l . ()))) entities components)
54       ((threaded-systems s1 s2) e c))))
55
56 (export composing-with-threaded)
57
58
59 (define (join-vs-threaded)
60   (let ((entities '())
61         (components '())
62         (t (current-time)))
63     (receive (e c) (modify-entities (list (new-entity '(l . ())) (new-entity '(l . ()))) entities components)
64       (receive (e c) ((join-systems s1 s2) e c)
65         (format #t "~a~%~a~%Time: ~a~%~%" e c (- (current-time) t)))))
66
67   (let ((entities '())
68         (components '())
69         (t (current-time)))
70     (receive (e c) (modify-entities (list (new-entity '(l . ())) (new-entity '(l . ()))) entities components)
71       (receive (e c) ((threaded-systems s1 s2) e c)
72         (format #t "~a~%~a~%Time: ~a~%~%" e c (- (current-time) t))))))
73
74 (export join-vs-threaded)