summaryrefslogtreecommitdiff
path: root/2d
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2014-02-16 10:10:19 -0500
committerDavid Thompson <dthompson2@worcester.edu>2014-02-16 10:46:58 -0500
commit1c9f242098b2282f5f00efd83ff3f85e3143bb73 (patch)
treeaf171468d80b919cbad873d73545d38436c70ca9 /2d
parent0d3a3d0be9474c6a8b6dc3497ecdefdf41057a81 (diff)
Move texture anchor procedure.
* 2d/sprite.scm (make-anchor): Delete it. * 2d/texture.scm (anchor-texture): New procedure.
Diffstat (limited to '2d')
-rw-r--r--2d/sprite.scm16
-rw-r--r--2d/texture.scm15
2 files changed, 16 insertions, 15 deletions
diff --git a/2d/sprite.scm b/2d/sprite.scm
index b8f62ee..6ad7a5c 100644
--- a/2d/sprite.scm
+++ b/2d/sprite.scm
@@ -85,18 +85,6 @@
(vertices sprite-vertices)
(animator sprite-animator))
-(define (make-anchor anchor texture)
- "Return a vector2 of the coordinates for the center point of a
-sprite."
- (cond
- ((vector2? anchor)
- anchor)
- ((eq? anchor 'center)
- (vector2 (/ (texture-width texture) 2)
- (/ (texture-height texture) 2)))
- (else
- (error "Invalid sprite anchor!" anchor))))
-
(define (update-sprite-vertices! sprite)
(let ((texture (sprite-texture sprite)))
(pack-texture-vertices (sprite-vertices sprite)
@@ -124,7 +112,7 @@ DRAWABLE. Sprites are centered by default."
(animator (if (animation? drawable)
(make-animator drawable)
#f))
- (anchor (make-anchor anchor (drawable-texture drawable animator)))
+ (anchor (anchor-texture (drawable-texture drawable animator) anchor))
(sprite (%make-sprite drawable position scale rotation color
anchor vertices animator)))
(update-sprite-vertices! sprite)
@@ -159,7 +147,7 @@ optional keyword arguments."
(sprite-animator sprite))))
(define (set-sprite-anchor! sprite anchor)
- (%set-sprite-anchor! sprite (make-anchor anchor (sprite-texture sprite))))
+ (%set-sprite-anchor! sprite (anchor-texture (sprite-texture sprite) anchor)))
(define (update-sprite-animator! sprite)
(animator-update! (sprite-animator sprite))
diff --git a/2d/texture.scm b/2d/texture.scm
index 684ad42..5185368 100644
--- a/2d/texture.scm
+++ b/2d/texture.scm
@@ -28,6 +28,7 @@
#:use-module (figl contrib packed-struct)
#:use-module (2d color)
#:use-module (2d helpers)
+ #:use-module (2d vector2)
#:use-module (2d wrappers gl)
#:use-module (2d wrappers freeimage)
#:export (make-texture
@@ -42,7 +43,7 @@
texture-t1
texture-s2
texture-t2
- surface->texture
+ anchor-texture
texture-vertex
pack-texture-vertices
draw-texture-vertices))
@@ -154,6 +155,18 @@ that will be rendered, in pixels."
(freeimage-unload bitmap)
texture))
+(define (anchor-texture texture anchor)
+ "Return a vector2 of the coordinates for the center point of a
+texture."
+ (cond
+ ((vector2? anchor)
+ anchor)
+ ((eq? anchor 'center)
+ (vector2 (/ (texture-width texture) 2)
+ (/ (texture-height texture) 2)))
+ (else
+ (error "Invalid anchor type!" anchor))))
+
;;;
;;; Texture Vertices
;;;