04daaec7172deb304be0ccdaa0db18a721dff8bc
[supertux.git] / docs / fileformats / fileformats.xml
1 <?xml version='1.0' ?>
2 <!--
3 $Id$
4
5 SuperTux Documentation
6 Copyright (C) 2005 Ondra Hosek <ondra.hosek@gmail.com>
7
8 This document is free; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as
10 published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
12
13 This document is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program (see the file named 'COPYING'); if not,
20 write to the Free Software Foundation, Inc., 59 Temple Place -
21 Suite 330, Boston, MA 02111-1307, USA.
22
23 -->
24 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
25
26 <article xml:lang="en">
27
28 <articleinfo>
29 <title>SuperTux File Format Documentation</title>
30 <author><firstname>Ondra</firstname><surname>Hosek</surname></author>
31 </articleinfo>
32 <para>This document serves the simple purpose of a reference for the files specific to SuperTux (levels, worldmaps, ...). Some of these files can be modified using an editor such as Flexlay.</para>
33 <sect1><title>Brackets, brackets, brackets (About the Language)</title>
34 <para>As you might have already noticed, the SuperTux definition files (just about for everything) are full of brackets ('(' and ')'). I know that <acronym>BASIC</acronym> programmers already freak out when seeing the vast amount of brackets used in C. The truth is that you can never have too many brackets. (Okay, that's a lie, but I don't know how lenient your compiler is.)</para>
35 <para>"That Crazy File Format" used by SuperTux is Lisp. In most of its implementations, it is used as a programming language, but the devs simply thought why not to implement it as a data storage language. And so, the SuperTux data language, nearly fully based on Lisp, was born.</para>
36
37 <sect2><title>Basic Syntax</title>
38 <para>So now you expect me to teach you Lisp. "You'd like that, wouldn't ya?" Okay, okay, let me teach you a bit.</para>
39 <para>Language syntax is (nearly) always best consumable when demonstrated on an example, like so:
40 <programlisting>(supertux-lisp-example
41     ; This is a comment. It is initiated by a semi-colon. (Yes, you un-believer.)
42     (some-integer 120)      ; Integer values are simple to input and to understand.
43     (floaty-float 58.5)     ; Floating-point numbers should be self-explanatory too.
44     (string-thong "omg")    ; Strings are simple and C-like.
45     (intl-string _("wtf"))  ; Internationalised strings are implemented not unlike in C.
46     (boo-bool #t)           ; That's a "true"...
47     (second-bool #f)        ; ... and that's a "false". (Well duh.)
48     (integer-list 10 20 30) ; A list of integers, much like an array.
49 )  ; Don't forget the closing bracket!!!
50 </programlisting>
51 </para>
52 </sect2>
53
54 </sect1>
55
56 <sect1><title>Level Files</title>
57 <para>The level format is a bit complex, which is why <ulink url="http://flexlay.berlios.de/">Flexlay</ulink> can prove itself very useful as an editor. If you are interested in how the levels look like or want to edit them manually (and find some of the parameters not self-explanatory enough), then you may read or skim through this section.
58 <programlisting>;; Generated by Flexlay Editor (or Emacs or Vi or whatever)
59 (supertux-level                      ;; This initiates a level.
60
61   (version 2)                        ;; This document only describes version 2. Version 1 is deprecated
62                                      ;; and I'm not going to teach it since it lacks a lot of features.
63
64   (name _("Some demo level"))        ;; Name of the level. Call it a nice name. Note that this should be
65                                      ;; internationalised (that's why the extra underscore and brackets).
66
67   (author "Ondra Hosek")             ;; Put your name here unless you are me (very improbable)
68
69   (sector                            ;; A level is divided into independent sectors that can be connected
70                                      ;; by doors.
71
72     (name "main")                    ;; Tux begins in the sector named "main".
73
74     (music "Ondras_chipdisko.mod")   ;; Name of the music file. See the data/music/ directory.
75     
76     (gravity 10.0)                   ;; Gravity of Tux. 10.0 is the default and sanest value (unless you
77                                      ;; apply the level design correctly).
78     
79     (tilemap                         ;; Here come the files.
80       (layer  "background"           ;; Currently, there are three layer types: "background",
81                                      ;; "interactive" and "foreground".
82
83       (solid  #f)                    ;; Will Tux collide with tiles in this tilemap?
84       
85       (speed  1.0)                   ;; If the tilemap is solid, this has to be 1. Basically sets how
86                                      ;; fast the tilemap scrolls.
87       
88       (width  5)                     ;; Number of tiles you plan to put in a row...
89       (height 5)                     ;; ... and in a column. (5x5 is pretty tiny; small Tux
90                                      ;; takes up 1x1 tiles, big Tux 1x2 tiles).
91       
92       (tiles                         ;; Integer lists of which tiles you want to use.
93         0 0 0 0 0                    ;; The tiles and their numbers are defined in
94         0 0 0 0 0                    ;; data/images/tiles.strf.
95         0 0 0 0 0
96         0 0 0 0 0
97         0 0 0 0 0
98       )
99     )
100     (tilemap
101       (layer  "interactive")
102       ;; See the bacgkround layer definition.
103     )
104     (tilemap
105       (layer  "foreground")
106       ;; ...
107     )
108     
109     (camera                          ;; Definitions of the camera paths
110
111       (mode "autoscroll")            ;; This can be set to "normal" to deactivate
112                                      ;; forced scrolling. Then you can omit the
113                                      ;; "path" directive.
114       
115       (path                          ;; Forced scrolling path
116         
117         (point (x 2) (y 3) (speed 2) ;; Point to where camera will scroll.
118           )
119         
120         (point
121           ;; ...
122         )
123       )
124     )
125     
126     (background
127       (image "ocean.jpg")            ;; Background from data/images/background
128       (speed 0.5)                    ;; Scrolling speed
129     )
130     
131     (spawnpoint (name "main") (x 0)  ;; A spawning point for Tux. By default, he is
132       (y 0)                          ;; spawned at spawnpoint named "main".
133     )
134     
135     ;; THE FOLLOWING OBJECTS ARE OPTIONAL.
136     (init-script "
137 // A Squirrel script
138 // See the scripting reference for more information.
139 ")
140
141     ;; Here you can add badguys of your choice.
142     ;; A reference on badguy types and their parameters is a TODO.
143     
144     ;; Particle systems
145     ;; It is advisable only to use one particle system at a time.
146     
147     (particles-&lt;type&gt;          ;; Valid values for &lt;type&gt; are rain, snow and clouds
148     
149       (layer 201)                    ;; -100 are background, 0 are interactive, 200 are foreground tiles.
150                                      ;; Choose a number to put the rain between two layers. In this case,
151                                      ;; the rain is in front of the foreground tiles. (see also
152                                      ;; src/video/drawing_context.hpp)
153     )
154   ) ;; End of sector
155   
156   ;; You can add other sectors here.
157 )
158 ;; End of level</programlisting>
159 </para>
160
161 <sect2><title>Badguys</title>
162 <para>This section describes the various badguys and their parameters.</para>
163
164 <sect3><title>Common parameters</title>
165 <para><programlisting>(&lt;badguy-name&gt;
166   (x 270)                 ;; The badguy's X coordinate.
167   (y 126)                 ;; The badguy's Y coordinate. (Note that the origin is in the top-left corner!)
168   (stay-on-platform #f)   ;; Optional. Should the badguy do its best not to fall from the platform it's on? (NYI)
169 )
170 </programlisting></para>
171 <para>Bouncing Snowballs, Flying Snowballs, Jumpies, Mr Bombs, Mr Iceblocks, Mr Rockets, Mr Trees, World 1 Noloks, Poison Ivies, Snowballs, Spikies, Stalactites, Yeti Stalactites and Zeeklings only require this list of parameters. Simply substitute <code>&lt;badguy-name&gt;</code> with one of the following:
172 <itemizedlist>
173 <listitem><code>bouncingsnowball</code></listitem>
174 <listitem><code>flyingsnowball</code></listitem>
175 <listitem><code>jumpy</code></listitem>
176 <listitem><code>mrbomb</code></listitem>
177 <listitem><code>mriceblock</code></listitem>
178 <listitem><code>mrrocket</code></listitem>
179 <listitem><code>mrtree</code></listitem>
180 <listitem><code>nolok_01</code></listitem>
181 <listitem><code>poisonivy</code></listitem>
182 <listitem><code>snowball</code></listitem>
183 <listitem><code>spiky</code></listitem>
184 <listitem><code>stalactite</code></listitem>
185 <listitem><code>yeti_stalactite</code></listitem>
186 <listitem><code>zeekling</code></listitem>
187 </itemizedlist></para>
188 </sect3>
189
190 <para>The next few sections describe the extra parameters for the other badguys.</para>
191
192 <sect3><title>Dispenser</title>
193 <para><programlisting>(dispenser
194   (cycle 3)               ;; How often should a badguy be dispensed?
195   
196   (badguy random)         ;; Valid values are "snowball", "bouncingsnowball", "mrbomb",
197                           ;; "mriceblock", "mrrocket", "poisonivy" or "random".
198 )</programlisting></para>
199 </sect3>
200
201 <sect3><title>Flame</title>
202 <para><programlisting>(flame
203   (radius 3)              ;; How big should the radius of the circle be that the flame
204                           ;; follows?
205   
206   (speed 10)              ;; How fast should the flame be?
207 )</programlisting></para>
208 </sect3>
209
210 <sect3><title>Lightning orb</title>
211 <para>The lighting orb ("kugelblitz") ignores the <code>y</code> coordinate, spawning above the visible screen.</para>
212 </sect3>
213
214 <sect3><title>Spike</title>
215 <para>Don't mistake this badguy for Spiky! Spiky is the snowball-like creature with spikes, whilst a spike is an object serving the same purpose like the stalactite.</para>
216 <para><programlisting>(spike
217   (direction 2)           ;; 0: north, 1: south, 2: west, 3: east
218 )</programlisting></para>
219 </sect3>
220
221 <sect3><title>Yeti</title>
222 <para><programlisting>(yeti
223   (dead-script "
224 // A squirrel script that is executed once the Yeti dies.
225 ")
226 )</programlisting></para>
227 </sect3>
228
229 </sect2>
230
231 </sect1>
232
233 <sect1><title>Scrolling texts</title>
234 <para>Scrolling texts are used for the credits and were used for the intro and extro in Milestone 1. The format is simple:
235 <programlisting>(supertux-text
236   (background "extro.jpg") ; Background image (see data/images/background)
237   
238   (speed 1.5)             ;; Default speed of text
239   
240   ;; Here we demonstrate the formatting characters
241   (text _("
242
243 -This is a heading
244 &lt;tab&gt;This is a normal line.
245  This is a line in a small font.
246 #This is a left-aligned line.
247 *This should be printed in a blue font.
248 !Filename of the picture to be embedded into the scrolling text (relative to scrolltext file path)
249
250 ")
251   )
252 )</programlisting>
253 </para>
254
255 </sect1>
256
257 <sect1><title>Worldmaps</title>
258 <para>Worldmaps are basically level files with a few nuances. To explain the syntax, let's just picture somebody with the idea to write a level set that takes place in London (represented by a lonely island):
259 <programlisting>(supertux-worldmap
260   (properties                               ;; Global worldmap properties.
261     (name (_ "London"))                     ;; Name of the worldmap
262     (music "bigben.ogg")                    ;; Music to be played while on worldmap
263   )
264   (spawnpoint                               ;; At the moment, defining multiple spawnpoints on a worldmap is useless.
265     (name "main")                           ;; Call your spawn point "main".
266     (x 3)                                   ;; Note that the coordinates are, unlike in a level, bound to the tilemap.
267     (y 3)
268   )
269   (tilemap
270     (width 5)                               ;; Number of tiles in a row. Four is just for demonstrational purposes.
271     (height 5)
272     (layer "interactive")                   ;; This has to be "interactive".
273     (solid #t)                              ;; This has to be true.
274     (speed 1.000000)                        ;; This has to be 1.0.
275     (tiles
276       0  0  0  0  0                         ;; The tiles as defined in data/images/worldmap.strf.
277       0  11 16 12 0
278       0  15 60 17 0
279       0  14 18 13 0
280       0  0  0  0  0
281     )
282   )
283   (level                                  ;; Repeat this block for each level. Continuing from a level tile is only possible when the level is completed.
284     (x 3)                                 ;; Coordinates of the level entry point.
285     (y 3)
286     (name "heathrow.stl")                 ;; Filename of the level, relative to the location of the worldmap file.
287     (extro-script "
288 // A Squirrel script to execute once this level is completed.
289     ")
290   )
291   (special-tile                           ;; This is a sample message tile.
292     (x 4)
293     (y 3)
294     (map-message (_ "Hello."))            ;; Display the following text when Tux steps on this tile.
295     (passive-message #t)                  ;; Set to #f to stop Tux when he steps on this tile.
296     (apply-to-direction "north-west")     ;; The message is displayed only when Tux comes from one of the specified directions (north, south, west, east, concatenate with a hyphen).
297   )
298   (special-tile                           ;; This is a sample portal tile.
299     (x 2)
300     (y 3)
301     (map-message (_ "Warp to the Tower"))
302     (teleport-to-x 1)                     ;; Worldmap coordinates to which Tux is teleported.
303     (teleport-to-y 1)
304   )
305 )</programlisting></para>
306
307 </sect1>
308
309 <sect1><title>Level subsets</title>
310 <para>Whilst creating a worldmap is optional, you'll need to write a level subset file to make your level package to appear in the contribs menu (or, ironically, inhibiting this behaviour). A file containing a level subset is called <code>info</code> and lies in <code>data/levels/&lt;subset_name&gt;.</code>
311 <programlisting>(supertux-level-subset
312   (title "Domain of the Hosek siblings")                        ;; Give your levelset a nice name...
313   (description "Levels by Ondra and Klara, the Hosek siblings") ;; ... and a short description.
314   (hide-from-contribs #f)                                       ;; Set to true if you don't want your levelset to appear in the "Contrib Levels" menu.
315 )</programlisting></para>
316 </sect1>
317
318 <!--
319
320 TODO:
321 * Sprite definitions
322 * Tile definitions
323
324 -->
325
326 </article>