]> git.jsancho.org Git - gacela.git/commitdiff
Environment for execution without previous installation
authorJavier Sancho <jsf@jsancho.org>
Sat, 6 Aug 2016 06:27:33 +0000 (08:27 +0200)
committerJavier Sancho <jsf@jsancho.org>
Sat, 6 Aug 2016 06:27:33 +0000 (08:27 +0200)
examples/fran.scm
gacela.scm [new file with mode: 0644]
src/gacela.scm [deleted file]

index b85720859560255fe726133c2ceb6098e14c9eb7..291a543d46093f65ff60b699de117e9f8d943e97 100644 (file)
@@ -1,3 +1,6 @@
+#!/usr/bin/env guile
+!#
+
 ;;; Gacela, a GNU Guile extension for fast games development
 ;;; Copyright (C) 2016 by Javier Sancho Fernandez <jsf at jsancho dot org>
 ;;;
diff --git a/gacela.scm b/gacela.scm
new file mode 100644 (file)
index 0000000..ea649e2
--- /dev/null
@@ -0,0 +1,18 @@
+;;; Gacela, a GNU Guile extension for fast games development
+;;; Copyright (C) 2016 by Javier Sancho Fernandez <jsf at jsancho dot org>
+;;;
+;;; This program is free software: you can redistribute it and/or modify
+;;; it under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation, either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; This program is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+
+(define-module (gacela))
diff --git a/src/gacela.scm b/src/gacela.scm
deleted file mode 100644 (file)
index 3b65aff..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-;;; Gacela, a GNU Guile extension for fast games development
-;;; Copyright (C) 2013 by Javier Sancho Fernandez <jsf at jsancho dot org>
-;;;
-;;; This program is free software: you can redistribute it and/or modify
-;;; it under the terms of the GNU General Public License as published by
-;;; the Free Software Foundation, either version 3 of the License, or
-;;; (at your option) any later version.
-;;;
-;;; This program is distributed in the hope that it will be useful,
-;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;;; GNU General Public License for more details.
-;;;
-;;; You should have received a copy of the GNU General Public License
-;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-
-(define-module (gacela gacela)
-  #:use-module (gacela system)
-  #:use-module (ice-9 threads)
-  #:use-module (srfi srfi-1)
-  #:export (make-world))
-
-
-;;; Entities and components
-
-(define (make-world . entities)
-  (apply make-entity-set entities))
-
-(define entities-mutex (make-mutex))
-(define game-entities '())
-(define game-components '())
-
-
-(define (entity . components)
-  (with-mutex entities-mutex
-   (let ((key (gensym)))
-     (set! game-entities
-          (acons key
-                 (map (lambda (c) (list (get-component-type c) c)) components)
-                 game-entities))
-     (set! game-components (register-components key components))
-     key)))
-
-
-(define* (register-components entity components #:optional (clist game-components))
-  (cond ((null? components) clist)
-       (else
-        (let* ((type (get-component-type (car components)))
-               (elist (assoc-ref clist type)))
-          (register-components entity (cdr components)
-            (assoc-set! clist type
-              (cond (elist
-                     (lset-adjoin eq? elist entity))
-                    (else
-                     (list entity)))))))))
-
-
-(define (get-entity key)
-  (with-mutex entities-mutex
-   (assoc key game-entities)))
-
-
-(export entity
-       get-entity)