-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtutorial-hello-world.html
292 lines (267 loc) · 12.4 KB
/
tutorial-hello-world.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<html>
<head>
<title>DragonRuby Game Toolkit - Hello World</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>Hey Listen!</h1
<p>
You can try out this tutorial interactively <a href="http://fiddle.dragonruby.org?tutorial=http://fiddle.dragonruby.org/tutorial-hello-world.html" target="_blank">here</a>.
</p>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="1">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Hello World</h1>
<p>
In this tutorial, we'll cover how to move a player around
using the keyboard.
</p>
<p>
DragonRuby requires you to define a <code>method</code> called <code>tick</code>. This <code>tick</code>
method is called on your behalf at the rate of sixty times per second.
</p>
<p>The code you're currently looking at renders a label to the screen and prints the current frame.</p>
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
# this is how you define the tick method in DragonRuby
def tick args
# this is how a label is rendered to the screen
args.outputs.labels << {
x: 30,
y: 30,
text: args.state.tick_count
}
end
# reset the game if we save
$gtk.reset
</code>
</pre>
</div>
</div>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="2">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Rendering a Square</h1>
<p>
Now that you have a <code>tick</code> method defined. Let's render a green square to the screen.
This will represent your player character.
</p>
<p>
For rendering <code>labels</code>, we use <code>args.outputs.labels</code>. To render <code>sprites</code>, we
use <code>args.outputs.sprites</code>. A sprite needs to provide its <code>x</code> location, its <code>y</code> location,
its <code>w</code> (width), its <code>h</code> (height), and a <code>path</code> (file path for the image).
</p>
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
def tick args
# this is how a sprite is rendered to the screen
args.outputs.sprites << {
x: 0,
y: 0,
w: 16,
h: 16,
path: 'sprites/square/green.png'
}
end
$gtk.reset
</code>
</pre>
</div>
</div>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="3">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Storing Variables</h1>
<p>
We have to store the player's position over time. We do this using DragonRuby's <code>args.state</code>
function.
</p>
<p>
Take a look at the code to see how we define the player's properties as <code>state</code> variables.
You'll notice the use of the <code>||=</code> symbol (it's referred to as "or equals"). This symbol tells
DragonRuby to <i>only</i> set a <code>state</code> property if it's never been set before.
</p>
<p>
We will update the player's <code>x</code> position one time every tick. You'll see the player move
across the screen.
</p>
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
def tick args
# set the player's state
# only set the player's starting properties
# once using the ||= operator.
args.state.player.x ||= 0
args.state.player.y ||= 0
args.state.player.w ||= 16
args.state.player.h ||= 16
args.outputs.sprites << {
x: args.state.player.x,
y: args.state.player.y,
w: args.state.player.w,
h: args.state.player.h,
path: 'sprites/square/green.png'
}
# update the players x location once every tick
args.state.player.x += 2
end
$gtk.reset
</code>
</pre>
</div>
</div>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="4">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Keyboard Input</h1>
<p>
The player automatically moves to the right every frame, but we want to control
the player's movement using the keyboard.
</p>
<p>
We'll use a conditional statement called an <code>if</code> statement to only move the player
if we have held down the <code>right</code> arrow key. DragonRuby provides all keyboard data
via <code>args.inputs.keyboard</code>.
</p>
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
def tick args
args.state.player.x ||= 0
args.state.player.y ||= 0
args.state.player.w ||= 16
args.state.player.h ||= 16
args.outputs.sprites << {
x: args.state.player.x,
y: args.state.player.y,
w: args.state.player.w,
h: args.state.player.h,
path: 'sprites/square/green.png'
}
# update the players x location only if ~right~
# is pressed or held on the keyboard
if args.inputs.keyboard.right
args.state.player.x += 2
end
end
$gtk.reset
</code>
</pre>
</div>
</div>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="5">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Keyboard Input All Directions</h1>
<p>
We use multiple conditional statements, called <code>if/elsif</code> conditionals,
to handle all keyboard input.
</p>
<p>
We'll use a conditional statement called an <code>if</code> statement to only move the player
if we have held down the <code>right</code> arrow key. DragonRuby provides all keyboard data
via <code>args.inputs.keyboard</code>.
</p>
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
def tick args
args.state.player.x ||= 0
args.state.player.y ||= 0
args.state.player.w ||= 16
args.state.player.h ||= 16
args.outputs.sprites << {
x: args.state.player.x,
y: args.state.player.y,
w: args.state.player.w,
h: args.state.player.h,
path: 'sprites/square/green.png'
}
if args.inputs.keyboard.right
# update the players x location only if
# ~right~ is pressed or held on the keyboard
args.state.player.x += 2
elsif args.inputs.keyboard.left
# ~left~ is pressed or held on the keyboard
args.state.player.x -= 2
end
if args.inputs.keyboard.up
# ~up~ is pressed or held on the keyboard
args.state.player.y += 2
elsif args.inputs.keyboard.down
# ~down~ is pressed or held on the keyboard
args.state.player.y -= 2
end
end
$gtk.reset
</code>
</pre>
</div>
</div>
<div itemscope="itemscope" itemtype="tutorial-step" data-step-number="6">
<div itemscope="itemscope" itemtype="tutorial-text">
<h1>Out of Bounds</h1>
<p>
Finally, we make sure the player can't go outside of the play
area which is defined in DragonRuby via <code>args.grid</code>.
</p>
<p>
We use a combination of <code>args.grid</code> and a mathematical
function called <code>clamp</code> to make sure the player's
properties are "clamped" to a minimum and maximum value.
</p>
<p>
Boom. You've just learned how to move a player around. Congrats.
</p>
</div>
<div itemscope="itemscope" itemtype="tutorial-code">
<pre>
<code class="language-ruby" itemprop="text">
def tick args
args.state.player.x ||= 0
args.state.player.y ||= 0
args.state.player.w ||= 16
args.state.player.h ||= 16
args.outputs.sprites << {
x: args.state.player.x,
y: args.state.player.y,
w: args.state.player.w,
h: args.state.player.h,
path: 'sprites/square/green.png'
}
if args.inputs.keyboard.right
args.state.player.x += 2
elsif args.inputs.keyboard.left
args.state.player.x -= 2
end
if args.inputs.keyboard.up
args.state.player.y += 2
elsif args.inputs.keyboard.down
args.state.player.y -= 2
end
# make sure the player's x and y position
# are clamped to the the grid's minimum and
# maximum width and height
args.state.player.x = args.state.player.x.clamp(
args.grid.left,
args.grid.right - args.state.player.w
)
args.state.player.y = args.state.player.y.clamp(
args.grid.bottom,
args.grid.top - args.state.player.h
)
end
$gtk.reset
</code>
</pre>
</div>
</div>
<footer id="bottom"></footer>
</body>
</html>