summaryrefslogtreecommitdiffstats
path: root/tde-i18n-en_GB/docs/kdeedu/kturtle/glossary.docbook
blob: 22af4ab935add847152a13d49806dc888bfa0a76 (plain)
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
<chapter id="Glossary">
<title
>Glossary</title>

<para
>In this chapter you will find an explanation of most of the <quote
>uncommon</quote
> words that are used in the handbook.</para>

<glosslist>
<glossentry id="degrees">
<glossterm
>degrees</glossterm>
<glossdef
><para
>Degrees are units to measure angles or turns. A full turn is 360 degrees, a half turn 180 degrees and a quarter turn 90 degrees. The commands <userinput
>turnleft</userinput
>, <userinput
>turnright</userinput
> and <userinput
>direction</userinput
> need an input in degrees.</para
></glossdef>
</glossentry>

<glossentry id="input-output">
<glossterm
>input and output of commands</glossterm>
<glossdef
><para
>Some commands take input, some commands give output, some commands take input <emphasis
>and</emphasis
> give output and some commands neither take input nor give output.</para>
<para
>Some examples of commands that only take input are: <screen>
forward 50
pencolour 255,0,0
print "Hello!"
</screen
> The <userinput
>forward</userinput
> command takes <userinput
>50</userinput
> as input. <userinput
>forward</userinput
> needs this input to know how many <glossterm linkend="pixels"
>pixels</glossterm
> it should go forward. <userinput
>pencolor</userinput
> takes a colour as input and <userinput
>print</userinput
> takes a string (a piece of text) as input. Please note that the input can also be a container. The next example illustrates this: <screen
>x = 50
print x
str = "hello!"
print str
</screen
></para>

<para
>Now some examples of commands that give output: <screen>
x = inputwindow "Please type something and press OK... thanks!"
r = random 1,100
</screen
> The <userinput
>inputwindow</userinput
> command takes a string as input, and outputs the number or string that is entered. As you can see, the output of <userinput
>inputwindow</userinput
> is stored in the container <userinput
>x</userinput
>. The <userinput
>random</userinput
> command also gives output. In this case it outputs a number between 1 and 100. The output of the random is again stored in a container, named <userinput
>r</userinput
>. Note that the containers <userinput
>x</userinput
> and <userinput
>r</userinput
> are not used in the example code above.</para>

<para
>There are also commands that neither need input nor give output. Here are some examples: <screen
>clear
penup
wrapon
hide
</screen>
</para
></glossdef>
</glossentry>

<glossentry id="intuitive-highlighting">
<glossterm
>intuitive highlighting</glossterm>
<glossdef
><para
>This is a feature of &kturtle; that makes coding even easier. With intuitive highlighting the code that you write gets a colour that indicates what type of code it is. In the next list you will find the different types of code and the colour they get in <link linkend="the-code-editor"
>the code editor</link
>. <table>
<title
>Different types of code and their highlight colour</title>
<tgroup cols="3">
<tbody>
<row>
<entry
>regular commands</entry>
<entry
>dark green</entry>
<entry
>The regular commands are described <link linkend="commands"
>here</link
>.</entry>
</row>
<row>
<entry
>execution controllers</entry>
<entry
>black (bold)</entry>
<entry
>The special commands control execution, read more on them <link linkend="controlling-execution"
>here</link
>.</entry>
</row>
<row>
<entry
>comments</entry>
<entry
>dark yellow</entry>
<entry
>Lines that are commented start with a comment characters (#). These lines are ignored when the code is executed. Comments allow the programmer to explain a bit about his code or can be used to temporarily prevent a certain piece of code from executing.</entry>
</row>
<row>
<entry
>brackets [, ]</entry>
<entry
>light green (bold)</entry>
<entry
>Brackets are used to group portions of code. Brackets are often used together with <link linkend="controlling-execution"
>execution controllers</link
>.</entry>
</row>
<row>
<entry
>the <link linkend="learn"
>learn</link
> command</entry>
<entry
>light green (bold)</entry>
<entry
>The <link linkend="learn"
>learn</link
> command is used to create new commands.</entry>
</row>
<row>
<entry
>numbers</entry>
<entry
>blue</entry>
<entry
>Numbers, well not much to say about them.</entry>
</row>
<row>
<entry
>strings</entry>
<entry
>dark red</entry>
<entry
>Not much to say about (text) strings either, except that they always start and end with the double quotes (").</entry>
</row>
<row>
<entry
>mathematical characters</entry>
<entry
>grey</entry>
<entry
>These are the mathematical characters: +, -, *, /, (, and ). Read more about them <link linkend="math"
>here</link
>.</entry>
</row>
<row>
<entry
>questions characters</entry>
<entry
>blue (bold)</entry>
<entry
>Read more about questions <link linkend="questions"
>here</link
>.</entry>
</row>
<row>
<entry
>question glue-words</entry>
<entry
>pink</entry>
<entry
>Read more about the question glue-words (and, or, not) <link linkend="question-glue"
>here</link
>.</entry>
</row>
<row>
<entry
>regular text</entry>
<entry
>black</entry>
<entry
></entry>
</row>
</tbody>
</tgroup>
</table>
</para
></glossdef>
</glossentry>

<glossentry id="pixels">
<glossterm
>pixels</glossterm>
<glossdef
><para
>A pixel is a dot on the screen. If you look very close you will see that the screen of your monitor uses pixels. All images on the screen are built with these pixels. A pixel is the smallest thing that can be drawn on the screen.</para>
<para
>A lot of commands need a number of pixels as input. These commands are: <userinput
>forward</userinput
>, <userinput
>backward</userinput
>, <userinput
>go</userinput
>, <userinput
>gox</userinput
>, <userinput
>goy</userinput
>, <userinput
>canvassize</userinput
> and <userinput
>penwidth</userinput
>.</para
></glossdef>
</glossentry>

<glossentry id="rgb">
<glossterm
>RGB combinations (colour codes)</glossterm>
<glossdef
><para
>RGB combinations are used to describe colours. The <quote
>R</quote
> stand for <quote
>red</quote
>, the <quote
>G</quote
> stands for <quote
>green</quote
> and the <quote
>B</quote
> stands for <quote
>blue</quote
>. An example of an RGB combination is <userinput
>255,0,0</userinput
>: the first value (<quote
>red</quote
>) is 255 and the others are 0, so this represents a bright shade of red. Each value of an RGB combination has to be in the range 0 to 255. Here a small list of some often used colours: <table frame="none">
<title
>Often used RGB combinations</title>
<tgroup cols="2" colsep="5" rowsep="1">
<colspec colname="c1"/>
<tbody>
<row
><entry
><userinput
>0,0,0</userinput
></entry
><entry
>black</entry
></row>
<row
><entry
><userinput
>255,255,255</userinput
></entry
><entry
>white</entry
></row>
<row
><entry
><userinput
>255,0,0</userinput
></entry
><entry
>red</entry
></row>
<row
><entry
><userinput
>150,0,0</userinput
></entry
><entry
>dark red</entry
></row>
<row
><entry
><userinput
>0,255,0</userinput
></entry
><entry
>green</entry
></row>
<row
><entry
><userinput
>0,0,255</userinput
></entry
><entry
>blue</entry
></row>
<row
><entry
><userinput
>0,255,255</userinput
></entry
><entry
>light blue</entry
></row>
<row
><entry
><userinput
>255,0,255</userinput
></entry
><entry
>pink</entry
></row>
<row
><entry
><userinput
>255,255,0</userinput
></entry
><entry
>yellow</entry
></row>
</tbody>
</tgroup>
</table>
</para>
<para
>To easily find the RGB combinations of a colour you should try the colour picker! You can open the colour picker using <link linkend="tools-color-picker"
><menuchoice
><guimenu
>Tools</guimenu
><guimenuitem
>Colour Picker</guimenuitem
></menuchoice
></link
>.</para>
<para
>Two commands need an RGB combination as input: these commands are <userinput
>canvascolour</userinput
> and <userinput
>pencolour</userinput
>.</para
></glossdef>
</glossentry>

<glossentry id="sprite">
<glossterm
>sprite</glossterm>
<glossdef
><para
>A sprite is a small picture that can be moved around the screen. Our beloved turtle, for instance, is a sprite.</para>
<para
>Note: with this version of &kturtle; the sprite cannot be changed from a turtle into something else. Future versions of &kturtle; will be able to do this.</para
></glossdef>
</glossentry>

<glossentry id="wrapping">
<glossterm
>wrapping</glossterm>
<glossdef
><para
>Wrapping is what happens when the turtle draws something that is to big to fix in on the canvas and wrapping is set <quote
>on</quote
>. <screenshot
> <screeninfo
>This is what happens when wrapping is <quote
>on</quote
></screeninfo
> <mediaobject
> <imageobject
> <imagedata fileref="wrapping.png" format="PNG"/> </imageobject
> <textobject
> <phrase
>An example of wrapping</phrase
> </textobject
> </mediaobject
> </screenshot
> When the turtle moves off a border of the canvas it is instantly taken to the opposite border so it can continue its move. This way the turtle will always stay on the screen while it moves. This happens when wrapping is on.</para>
<para
>Wrapping can be turned on and off with the <userinput
>wrapon</userinput
> and <userinput
>wrapoff</userinput
> commands. When &kturtle; starts wrapping is turned on by default.</para
></glossdef>
</glossentry>

</glosslist>

</chapter>