summaryrefslogtreecommitdiff
path: root/examples/animation.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2014-11-30 20:35:57 -0500
committerDavid Thompson <dthompson2@worcester.edu>2014-11-30 20:35:57 -0500
commitcc543831dab097d79fdf8c9b4a55a4b9393ee05d (patch)
treeed4486874f01d9c6b1e45bd74a60c212f84b8a7e /examples/animation.scm
parentad818791d565560e4f6e12d02b1695fe3da844db (diff)
examples: Update a few example programs.
* examples/2048/2048: Update. * examples/animation.scm: Likewise. * examples/common.scm: Likewise. * examples/simple.scm: Likewise.
Diffstat (limited to 'examples/animation.scm')
-rw-r--r--examples/animation.scm65
1 files changed, 42 insertions, 23 deletions
diff --git a/examples/animation.scm b/examples/animation.scm
index b38b1a8..cc84c27 100644
--- a/examples/animation.scm
+++ b/examples/animation.scm
@@ -15,33 +15,52 @@
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
-(use-modules (sly animation)
- (sly game)
+(use-modules (sly game)
+ (sly window)
+ (sly signal)
+ (sly math)
+ (sly math tween)
+ (sly math vector)
+ (sly render camera)
+ (sly render group)
(sly render sprite)
- (sly render tileset)
- (sly vector)
- (sly window))
+ (sly render tileset))
(load "common.scm")
-(define (make-demo-animation)
- "Load a texture, split it into 64x64 tiles, and build an animated
-sprite out of it."
- (let* ((tiles (load-tileset "images/princess.png" 64 64))
- (frames (vector (tileset-ref tiles 19)
- (tileset-ref tiles 20)
- (tileset-ref tiles 21)
- (tileset-ref tiles 22)
- (tileset-ref tiles 23)
- (tileset-ref tiles 24)
- (tileset-ref tiles 25)
- (tileset-ref tiles 26))))
- (make-animation frames 6 #t)))
-
-(define sprite (make-sprite (make-demo-animation)
- #:position #(320 240)))
-
-(add-hook! draw-hook (lambda (dt alpha) (draw-sprite sprite)))
+(define walk-cycle
+ (let ((tiles (load-tileset "images/princess.png" 64 64)))
+ (list->vector
+ (map (lambda (id)
+ (sprite (tileset-ref tiles id)))
+ '(19 20 21 22 23 24 25 26)))))
+
+(define position-tween
+ (tween vlerp (compose ease-linear ease-loop)
+ (vector2 480 240) (vector2 160 240) 120))
+
+(define frame-tween
+ (let* ((frame-count (vector-length walk-cycle))
+ (frame-rate (/ 60 frame-count)))
+ (tween (compose floor lerp) (compose ease-linear ease-loop)
+ 0 frame-count (* frame-count frame-rate))))
+
+(define-signal timer
+ (signal-fold + 0 (signal-every 1)))
+
+(define-signal scene
+ (signal-map (lambda (time)
+ (group-move (position-tween time)
+ (group (vector-ref walk-cycle (frame-tween time)))))
+ timer))
+
+(define camera (orthographic-camera 640 480))
+
+(add-hook! draw-hook (lambda _ (draw-group (signal-ref scene) camera)))
(with-window (make-window #:title "Animation")
(start-game-loop))
+
+;;; Local Variables:
+;;; compile-command: "../pre-inst-env guile animation.scm"
+;;; End: