summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2016-05-27 22:21:45 -0400
committerDavid Thompson <dthompson2@worcester.edu>2016-05-27 22:21:45 -0400
commit677eb07b00f13708b0f94517feb1b2a5ab66d61a (patch)
treef9157150b0873c4b51d9e51cb6ce18da0d7b4f3e
parentb9951013b7b06858b693f4f7ef4a21b4953f5cb3 (diff)
render: Add 9-patch implementation.
* sly/render/nine-patch: New file. * Makefile.am (SOURCES): Add it. * examples/images/dialog.png: New file. * examples/nine-patch.scm: New file.
-rw-r--r--Makefile.am1
-rw-r--r--examples/images/dialog.pngbin0 -> 409 bytes
-rw-r--r--examples/nine-patch.scm41
-rw-r--r--sly/render/nine-patch.scm120
4 files changed, 162 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index a49238f..d6363ac 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -46,6 +46,7 @@ SOURCES = \
sly/render/font.scm \
sly/render/framebuffer.scm \
sly/render/mesh.scm \
+ sly/render/nine-patch.scm \
sly/render/texture.scm \
sly/render/shader.scm \
sly/render/shape.scm \
diff --git a/examples/images/dialog.png b/examples/images/dialog.png
new file mode 100644
index 0000000..9277ff1
--- /dev/null
+++ b/examples/images/dialog.png
Binary files differ
diff --git a/examples/nine-patch.scm b/examples/nine-patch.scm
new file mode 100644
index 0000000..9f77de6
--- /dev/null
+++ b/examples/nine-patch.scm
@@ -0,0 +1,41 @@
+;;; Sly
+;;; Copyright (C) 2016 David Thompson <davet@gnu.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/>.
+
+(use-modules (sly)
+ (sly render nine-patch))
+
+(load "common.scm")
+
+(define-signal dialog
+ (on-start
+ (render-nine-patch #:texture (load-texture "images/dialog.png")
+ #:width 512
+ #:height 256
+ #:margin 8)
+ render-nothing))
+
+(define-signal scene
+ (signal-let ((dialog dialog))
+ (with-camera (2d-camera #:area (make-rect 0 0 640 480))
+ (move (vector2 320 240) dialog))))
+
+(with-window (make-window #:title "9-patch")
+ (run-game-loop scene))
+
+;;; Local Variables:
+;;; compile-command: "../pre-inst-env guile nine-patch.scm"
+;;; End:
diff --git a/sly/render/nine-patch.scm b/sly/render/nine-patch.scm
new file mode 100644
index 0000000..c864364
--- /dev/null
+++ b/sly/render/nine-patch.scm
@@ -0,0 +1,120 @@
+;;; Sly
+;;; Copyright (C) 2016 David Thompson <davet@gnu.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/>.
+
+;;; Commentary:
+;;
+;; 9-patch sprites.
+;;
+;;; Code:
+
+(define-module (sly render nine-patch)
+ #:use-module (ice-9 match)
+ #:use-module (sly render)
+ #:use-module (sly render mesh)
+ #:use-module (sly render texture)
+ #:use-module (sly math vector)
+ #:export (render-nine-patch))
+
+(define* (render-nine-patch #:key texture (width 0) (height 0) (margin 0)
+ (top-margin margin) (bottom-margin margin)
+ (left-margin margin) (right-margin margin)
+ (anchor 'center))
+ "Create a renderer that draws a 9-patch sprite. A 9-patch sprite
+renders TEXTURE as a WIDTH x HEIGHT rectangle whose stretchable areas
+are defined by the given margin measurements. The corners are never
+stretched, the left and right edges may be stretched vertically, the
+top and bottom edges may be stretched horizontally, and the center may
+be stretched in both directions. This rendering technique is
+particularly well suited for resizable windows and buttons in
+graphical user interfaces.
+
+MARGIN specifies the margin size for all sides of the 9-patch. To
+make margins of differing sizes, the TOP-MARGIN, BOTTOM-MARGIN,
+LEFT-MARGIN, and RIGHT-MARGIN arguments may be used.
+
+ANCHOR defines the origin point for the rendered 9-patch, which is
+'center' by default."
+ (let* ((anchor (anchor-vector width height anchor))
+ (border-x1 (- (vx anchor)))
+ (border-y1 (- (vy anchor)))
+ (border-x2 (+ border-x1 width))
+ (border-y2 (+ border-y1 height))
+ (fill-x1 (+ border-x1 left-margin))
+ (fill-y1 (+ border-y1 bottom-margin))
+ (fill-x2 (- border-x2 right-margin))
+ (fill-y2 (- border-y2 top-margin))
+ (border-s1 (texture-s1 texture))
+ (border-t1 (texture-t1 texture))
+ (border-s2 (texture-s2 texture))
+ (border-t2 (texture-t2 texture))
+ (tw (texture-width texture))
+ (th (texture-height texture))
+ (fill-s1 (/ left-margin tw))
+ (fill-t1 (/ bottom-margin th))
+ (fill-s2 (/ (- tw right-margin) tw))
+ (fill-t2 (/ (- th top-margin) th))
+ (mesh (build-mesh #(0 4 5 0 5 1 ; bottom-left
+ 1 5 6 1 6 2 ; bottom-center
+ 2 6 7 2 7 3 ; bottom-right
+ 4 8 9 4 9 5 ; center-left
+ 5 9 10 5 10 6 ; center
+ 6 10 11 6 11 7 ; center-right
+ 8 12 13 8 13 9 ; top-left
+ 9 13 14 9 14 10 ; top-center
+ 10 14 15 10 15 11) ; top-right
+ (vector
+ (vector3 border-x1 border-y1 0)
+ (vector3 fill-x1 border-y1 0)
+ (vector3 fill-x2 border-y1 0)
+ (vector3 border-x2 border-y1 0)
+
+ (vector3 border-x1 fill-y1 0)
+ (vector3 fill-x1 fill-y1 0)
+ (vector3 fill-x2 fill-y1 0)
+ (vector3 border-x2 fill-y1 0)
+
+ (vector3 border-x1 fill-y2 0)
+ (vector3 fill-x1 fill-y2 0)
+ (vector3 fill-x2 fill-y2 0)
+ (vector3 border-x2 fill-y2 0)
+
+ (vector3 border-x1 border-y2 0)
+ (vector3 fill-x1 border-y2 0)
+ (vector3 fill-x2 border-y2 0)
+ (vector3 border-x2 border-y2 0))
+ (vector
+ (vector3 border-s1 border-t1 0)
+ (vector3 fill-s1 border-t1 0)
+ (vector3 fill-s2 border-t1 0)
+ (vector3 border-s2 border-t1 0)
+
+ (vector3 border-s1 fill-t1 0)
+ (vector3 fill-s1 fill-t1 0)
+ (vector3 fill-s2 fill-t1 0)
+ (vector3 border-s2 fill-t1 0)
+
+ (vector3 border-s1 fill-t2 0)
+ (vector3 fill-s1 fill-t2 0)
+ (vector3 fill-s2 fill-t2 0)
+ (vector3 border-s2 fill-t2 0)
+
+ (vector3 border-s1 border-t2 0)
+ (vector3 fill-s1 border-t2 0)
+ (vector3 fill-s2 border-t2 0)
+ (vector3 border-s2 border-t2 0)))))
+ (with-texture texture
+ (render-mesh mesh))))