-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtutorial-animation.html
211 lines (193 loc) · 9 KB
/
tutorial-animation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<html>
<head>
<title>DragonRuby Game Toolkit - Animation</title>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.0.3/styles/default.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.0.3/highlight.min.js"></script>
<script src="tutorial.js"></script>
<link rel="stylesheet" href="tutorial.css" />
</head>
<body>
<h1>DragonRuby Game Toolkit - Animation</h1>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="1">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Separate images, looping</h1>
An animation using images explosion-0.png to explosion-6.png.
This animation is a continuous loop.
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
# entry point to game
def tick args
# The frame at which the animation should begin
starting_tick = 0
# The number of sprites in the animation
number_of_sprites = 7
# The number of frames for each sprite
# of the animation
number_of_frames_per_sprite = 6
# Whether the animation should loop
does_animation_loop = true
# A function that calculates the current sprite index
sprite_index = starting_tick.frame_index(
number_of_sprites,
number_of_frames_per_sprite,
does_animation_loop
)
# Draws the animation
args.outputs.sprites << [
50, # X
20, # Y
50, # W
50, # H
"sprites/explosion-#{sprite_index}.png", # PATH
]
end
# reset the game on save
$gtk.reset
</code>
</pre>
</div>
</div>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="2">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Non-looping animation</h1>
Press space to start the animation!
Here is how to make an animation that is triggered.
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
def tick args
# If the spacebar is pressed
if args.inputs.keyboard.key_down.space
# Start the animation from the current frame
# Storing starting_tick in args.state means
# its value will remain after every tick
args.state.starting_tick = args.state.tick_count
end
args.outputs.labels << [80, 1.from_top,
"press space to animate",
-7.5,
1]
number_of_sprites = 7
number_of_frames_per_sprite = 6
does_animation_loop = false
# If the animation is complete
# frame_index will return nil
sprite_index = args.state.starting_tick.frame_index(
number_of_sprites,
number_of_frames_per_sprite,
does_animation_loop
)
# This sets which sprite index should be
# displayed after the animation
sprite_index ||= 0
args.outputs.sprites << [
50, # X
20, # Y
50, # W
50, # H
"sprites/explosion-#{sprite_index}.png", # PATH
]
end
$gtk.reset
</code>
</pre>
</div>
</div>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="3">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Animating from Sprite Sheets</h1>
The explosion is animated from a sprite sheet.
The images in the sprite sheet are 32 x 32 px.
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
def tick args
starting_tick = 0
number_of_sprites = 7
number_of_frames_per_sprite = 6
does_animation_loop = true
sprite_index = starting_tick.frame_index(
number_of_sprites,
number_of_frames_per_sprite,
does_animation_loop
)
# The sprite should be represented as a hash
# To access the tile-related parameters
args.outputs.sprites << {
x: 50,
y: 20,
w: 50,
h: 50,
path: 'sprites/explosion-sheet.png',
# The dimensions of the tile to be cut
# from the sprite sheet
tile_x: 0 + (sprite_index * 32),
tile_y: 0,
tile_w: 32,
tile_h: 32,
}
args.outputs.labels << [80, 22,
"(contents of png)",
-7.5, 1]
args.outputs.sprites << {
x: 24,
y: 0,
h: 16,
w: 112,
path: 'sprites/explosion-sheet.png'
}
end
$gtk.reset
</code>
</pre>
</div>
</div>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="4">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Non-looping Animation from a Sprite Sheet</h1>
A combination of the code from previous steps.
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
def tick args
if args.inputs.keyboard.key_down.space
args.state.starting_tick = args.state.tick_count
end
number_of_sprites = 7
number_of_frames_per_sprite = 6
does_animation_loop = false
sprite_index = args.state.starting_tick.frame_index(
number_of_sprites,
number_of_frames_per_sprite,
does_animation_loop
)
sprite_index ||= 0
args.outputs.sprites << {
x: 50,
y: 20,
w: 50,
h: 50,
path: 'sprites/explosion-sheet.png',
tile_x: 0 + (sprite_index * 32),
tile_y: 0,
tile_w: 32,
tile_h: 32,
}
args.outputs.labels << [80, 1.from_top,
"press space to animate",
-7.5,
1]
end
$gtk.reset
</code>
</pre>
</div>
</div>
<footer id="bottom"></footer>
</body>
</html>