summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorTom Black <[email protected]>2018-09-04 00:36:52 -0700
committerTom Black <[email protected]>2018-09-12 15:35:16 -0700
commit6acf6c8bd0cd8051bdb6cb6ec75fb7d67959e47b (patch)
tree28c87e64f1b17e64194c335145fc4ab0748fb5c9 /test
parent8e8755972a55b75b7f38f2da503c40e12dd4a344 (diff)
downloadruby2d-6acf6c8bd0cd8051bdb6cb6ec75fb7d67959e47b.tar.gz
ruby2d-6acf6c8bd0cd8051bdb6cb6ec75fb7d67959e47b.zip
Add ability to rotate textures
Includes images, sprites, and text.
Diffstat (limited to 'test')
-rw-r--r--test/testcard.rb35
1 files changed, 29 insertions, 6 deletions
diff --git a/test/testcard.rb b/test/testcard.rb
index 7ae153f..876c5c4 100644
--- a/test/testcard.rb
+++ b/test/testcard.rb
@@ -199,10 +199,12 @@ Line.new(
]
);
+rotate = false
+
# Images
-Image.new(x: 590, y: 180, path: "#{media}/image.png")
-Image.new(x: 590, y: 290, path: "#{media}/image.jpg")
-Image.new(x: 590, y: 400, path: "#{media}/image.bmp")
+img_png = Image.new(x: 590, y: 180, path: "#{media}/image.png")
+img_jpg = Image.new(x: 590, y: 290, path: "#{media}/image.jpg")
+img_bmp = Image.new(x: 590, y: 400, path: "#{media}/image.bmp")
img_r = Image.new(x: 400, y: 200, width: 50, height: 25, path: "#{media}/colors.png")
img_r.color = [1.0, 0.3, 0.3, 1.0]
img_g = Image.new(x: 400, y: 225, path: "#{media}/colors.png")
@@ -213,9 +215,9 @@ img_b.width, img_b.height = 25, 25
img_b.color = [0.3, 0.3, 1.0, 1.0]
# Text
-Text.new(x: 44, y: 202, text: "R", font: font, color: [1.0, 0.0, 0.0, 1.0])
-Text.new(x: 92, y: 202, text: "G", font: font, color: [0.0, 1.0, 0.0, 1.0])
-Text.new(x: 144, y: 202, text: "B", font: font, color: [0.0, 0.0, 1.0, 1.0])
+txt_r = Text.new(x: 44, y: 202, text: "R", font: font, color: [1.0, 0.0, 0.0, 1.0])
+txt_b = Text.new(x: 92, y: 202, text: "G", font: font, color: [0.0, 1.0, 0.0, 1.0])
+txt_g = Text.new(x: 144, y: 202, text: "B", font: font, color: [0.0, 0.0, 1.0, 1.0])
# Frames per second
fps = Text.new(x: 10, y: 470, text: "", font: font)
@@ -275,6 +277,10 @@ UPDATED_TEXT_OPTIONS = "of various size".split(" ")
on :key_down do |event|
close if event.key == 'escape'
+
+ if event.key == 'r'
+ rotate = rotate ? false : true;
+ end
end
on :mouse_down do
@@ -287,6 +293,23 @@ update do
pointer.x = (get :mouse_x) - 5
pointer.y = (get :mouse_y) - 7
+ if rotate
+ img_png.x = get :mouse_x
+ img_png.y = get :mouse_y
+ angle = (get :frames).to_f
+ img_png.rotate = angle
+ img_jpg.rotate = angle
+ img_bmp.rotate = angle
+ img_r.rotate = angle
+ img_g.rotate = angle
+ img_b.rotate = angle
+ spr.rotate = angle
+ txt_r.rotate = angle
+ txt_g.rotate = angle
+ txt_b.rotate = angle
+ fps.rotate = angle
+ end
+
if flash > 0
pointer_outline.color = [0, 1, 0, 1]
flash -= 1