From f47eb69a354188154731846dde8b384c2c2f39f6 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 28 Jun 2014 18:46:16 -0400 Subject: Rename guile-2d to Sly! Massive find/replace job. --- examples/2048/2048 | 26 +++++++++++++------------- examples/animation.scm | 14 +++++++------- examples/common.scm | 20 ++++++++++---------- examples/coroutine.scm | 16 ++++++++-------- examples/font.scm | 20 ++++++++++---------- examples/particles.scm | 14 +++++++------- examples/simple.scm | 10 +++++----- examples/tilemap.scm | 14 +++++++------- 8 files changed, 67 insertions(+), 67 deletions(-) (limited to 'examples') 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 ;;; ;;; This program is free software: you can redistribute it and/or @@ -15,12 +15,12 @@ ;;; along with this program. If not, see ;;; . -(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 ;;; ;;; This program is free software: you can redistribute it and/or @@ -15,14 +15,14 @@ ;;; along with this program. If not, see ;;; . -(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 ;;; ;;; This program is free software: you can redistribute it and/or @@ -16,13 +16,13 @@ ;;; . (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 ;;; ;;; This program is free software: you can redistribute it and/or @@ -15,15 +15,15 @@ ;;; along with this program. If not, see ;;; . -(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 ;;; ;;; 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 ;;; ;;; This program is free software: you can redistribute it and/or @@ -15,10 +15,10 @@ ;;; along with this program. If not, see ;;; . -(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 ;;; ;;; 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") -- cgit v1.2.3