summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2014-06-28 18:46:16 -0400
committerDavid Thompson <dthompson2@worcester.edu>2014-06-28 18:46:16 -0400
commitf47eb69a354188154731846dde8b384c2c2f39f6 (patch)
tree6aa1ccb9212836b7c941e771475eb995fa6df9f9 /examples
parentdf0f2a5f3f09394f1953abbc7e33e9a98204680e (diff)
Rename guile-2d to Sly!
Massive find/replace job.
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/2048/204826
-rw-r--r--examples/animation.scm14
-rw-r--r--examples/common.scm20
-rw-r--r--examples/coroutine.scm16
-rw-r--r--examples/font.scm20
-rw-r--r--examples/particles.scm14
-rw-r--r--examples/simple.scm10
-rw-r--r--examples/tilemap.scm14
8 files changed, 67 insertions, 67 deletions
diff --git a/examples/2048/2048 b/examples/2048/2048
index 58f2615..0bda152 100755
--- a/examples/2048/2048
+++ b/examples/2048/2048
@@ -32,18 +32,18 @@
(ice-9 match)
(ice-9 rdelim)
(gl)
- (2d audio)
- (2d color)
- (2d font)
- (2d game)
- (2d keyboard)
- (2d rect)
- (2d signal)
- (2d sprite)
- (2d texture)
- (2d vector)
- (2d window)
- (2d repl))
+ (sly audio)
+ (sly color)
+ (sly font)
+ (sly game)
+ (sly keyboard)
+ (sly rect)
+ (sly signal)
+ (sly sprite)
+ (sly texture)
+ (sly vector)
+ (sly window)
+ (sly repl))
;;;
;;; Helpers
;;;
@@ -470,7 +470,7 @@
;;; Initialization
;;;
-(start-2d-repl)
+(start-sly-repl)
(add-hook! window-close-hook stop-game-loop)
(add-hook! draw-hook (lambda (dt alpha) (render)))
diff --git a/examples/animation.scm b/examples/animation.scm
index 873b2de..04fc46e 100644
--- a/examples/animation.scm
+++ b/examples/animation.scm
@@ -1,4 +1,4 @@
-;;; guile-2d
+;;; Sly
;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu>
;;;
;;; This program is free software: you can redistribute it and/or
@@ -15,12 +15,12 @@
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
-(use-modules (2d animation)
- (2d game)
- (2d sprite)
- (2d tileset)
- (2d vector)
- (2d window))
+(use-modules (sly animation)
+ (sly game)
+ (sly sprite)
+ (sly tileset)
+ (sly vector)
+ (sly window))
(load "common.scm")
diff --git a/examples/common.scm b/examples/common.scm
index 62ddd14..03a0a28 100644
--- a/examples/common.scm
+++ b/examples/common.scm
@@ -1,4 +1,4 @@
-;;; guile-2d
+;;; Sly
;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu>
;;;
;;; This program is free software: you can redistribute it and/or
@@ -15,14 +15,14 @@
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
-(use-modules (2d agenda)
- (2d fps)
- (2d game)
- (2d keyboard)
- (2d repl)
- (2d signal)
- (2d sprite)
- (2d window))
+(use-modules (sly agenda)
+ (sly fps)
+ (sly game)
+ (sly keyboard)
+ (sly repl)
+ (sly signal)
+ (sly sprite)
+ (sly window))
(open-window)
(enable-sprites)
@@ -38,4 +38,4 @@
(format #t "FPS: ~d\n" (signal-ref fps)))
60)
-(start-2d-repl)
+(start-sly-repl)
diff --git a/examples/coroutine.scm b/examples/coroutine.scm
index 6db9623..ea7f881 100644
--- a/examples/coroutine.scm
+++ b/examples/coroutine.scm
@@ -1,4 +1,4 @@
-;;; guile-2d
+;;; Sly
;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu>
;;;
;;; This program is free software: you can redistribute it and/or
@@ -16,13 +16,13 @@
;;; <http://www.gnu.org/licenses/>.
(use-modules (srfi srfi-26)
- (2d agenda)
- (2d coroutine)
- (2d game)
- (2d sprite)
- (2d texture)
- (2d vector)
- (2d window))
+ (sly agenda)
+ (sly coroutine)
+ (sly game)
+ (sly sprite)
+ (sly texture)
+ (sly vector)
+ (sly window))
(load "common.scm")
diff --git a/examples/font.scm b/examples/font.scm
index 4a8412b..233ffda 100644
--- a/examples/font.scm
+++ b/examples/font.scm
@@ -1,4 +1,4 @@
-;;; guile-2d
+;;; Sly
;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu>
;;;
;;; This program is free software: you can redistribute it and/or
@@ -15,15 +15,15 @@
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
-(use-modules (2d agenda)
- (2d fps)
- (2d color)
- (2d font)
- (2d game)
- (2d mouse)
- (2d signal)
- (2d vector)
- (2d window))
+(use-modules (sly agenda)
+ (sly fps)
+ (sly color)
+ (sly font)
+ (sly game)
+ (sly mouse)
+ (sly signal)
+ (sly vector)
+ (sly window))
(load "common.scm")
diff --git a/examples/particles.scm b/examples/particles.scm
index 8fa9cb6..a6c19a7 100644
--- a/examples/particles.scm
+++ b/examples/particles.scm
@@ -1,4 +1,4 @@
-;;; guile-2d
+;;; Sly
;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu>
;;;
;;; This program is free software: you can redistribute it and/or
@@ -17,12 +17,12 @@
(use-modules (srfi srfi-1)
(srfi srfi-9)
- (2d agenda)
- (2d game)
- (2d sprite)
- (2d texture)
- (2d vector)
- (2d window))
+ (sly agenda)
+ (sly game)
+ (sly sprite)
+ (sly texture)
+ (sly vector)
+ (sly window))
(load "common.scm")
diff --git a/examples/simple.scm b/examples/simple.scm
index 3f3c881..6fece03 100644
--- a/examples/simple.scm
+++ b/examples/simple.scm
@@ -1,4 +1,4 @@
-;;; guile-2d
+;;; Sly
;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu>
;;;
;;; This program is free software: you can redistribute it and/or
@@ -15,10 +15,10 @@
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
-(use-modules (2d game)
- (2d sprite)
- (2d vector)
- (2d window))
+(use-modules (sly game)
+ (sly sprite)
+ (sly vector)
+ (sly window))
(load "common.scm")
diff --git a/examples/tilemap.scm b/examples/tilemap.scm
index 5c5abdf..7f2b48e 100644
--- a/examples/tilemap.scm
+++ b/examples/tilemap.scm
@@ -1,4 +1,4 @@
-;;; guile-2d
+;;; Sly
;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu>
;;;
;;; This program is free software: you can redistribute it and/or
@@ -18,12 +18,12 @@
(use-modules (srfi srfi-1)
(srfi srfi-9)
(srfi srfi-42)
- (2d game)
- (2d sprite)
- (2d texture)
- (2d tileset)
- (2d vector)
- (2d window))
+ (sly game)
+ (sly sprite)
+ (sly texture)
+ (sly tileset)
+ (sly vector)
+ (sly window))
(load "common.scm")