#summary Structure of the theme.cfg file = `theme.cfg` = The file `theme.cfg` gives the engine the values associated with a certain theme, to complement the graphics. To understand themes in general, start at [Themes]. To learn more about the general file structure of themes, see [ThemeFiles]. It is structured with a list of keys, each seperated by line breaks. Each key is followed by an equals sign followed a value. The value depends on the key. Example: sky = 23, 8, 33 border = 7, 72, 102 music = Art.ogg There are also keys that replace existing keys under certain conditions, all keys preceding with “`sd-`” are used during Sudden Death and all keys with “`rq-`” are used when the graphics quality is reduced. Following is the list of all current keys and their values, it is important to have the right number of values. Most keys may only be used once. The values red, green, blue and opacity are in the range of one byte and can be specified in both decimal or hexadecimal form. The range are `0` - `255` or `$00` - `$FF`. Any line can be made into a comment line by having a semicolon (“`;`”) at the beginning. Comments are ignored by Hedgewars. Literally all lines in the `theme.cfg` file are optional, thus an empty file is valid. Everything has a default value. However, some default values are not really useful (e.g. the water or sky color) and you should therefore explicitly specify enough values. == `sky` == The colour of the sky. Values: red, green, blue Default: 0, 0, 0 == `rq-sky` == The sky color in reduced quality mode. If present, it is used instead of `sky` on low quality. Values: red, green, blue == `border` == The colour of the outline of explosions. Values: red, green, blue Default: 80, 80, 80 == `water-top` == The colour of the topmost part of the water (under the `BlueWater.png`) before Sudden Death. This makes a gradient together with `water-bottom`. The default color is black which is usually not what you want. In combination with the default `BlueWater.png`, the recommended value is `$54, $5C, $9D`. Values: red, green, blue Default: 0, 0, 0 == `water-bottom` == The colour of the lowest part of the water before Sudden Death. This makes a gradient together with `water-top`. The default color is black which is usually not what you want. In combination with the default `BlueWater.png`, the recommended value is `$34, $3C, $7D`. Values: red, green, blue Default: 0, 0, 0 == `sd-water-bottom` == The colour of the lowest part of the water while in Sudden Death. This makes a gradient together with `sd-water-top`. The default color neatly matches the default `SDWater.png`. Values: red, green, blue Default: 150, 112, 169 == `sd-water-top` == The colour of the topmost part of the water (under the `SDWater.png`) while in Sudden Death. This makes a gradient together with `sd-water-bottom`. The default color neatly matches the default `SDWater.png`. Values: red, green, blue Default: 182, 144, 201 == `water-opacity` == The water opacity before Sudden Death. Opacity of the water affects how visible gears in the water are. `0` makes it fully transparent, whereas `255` or `$FF` makes it fully opaque. If the water is fully opaque, the drowning animation is skipped when a hedgehog drowns. In combination with the default `BlueWater.png`, the recommended value for this is `$80`, which also is the default. Values: opacity Default: $80 == `sd-water-opacity` == The water opacity while in Sudden Death. Syntax and default value is equivalent to `water-opacity`. == `water-animation` (0.9.23) == Specified a custom water animation and flowing speed before Sudden Death. By default, the water just moves to the right and has no special animation. Values: frames, frame ticks, movement speed * `frames`: Number of frames in `BlueWater.png`. The frames in this image should be stacked horizontally. The height of this image must be divisible by `frames` * `frame ticks`: Duration of a single frame. Must be >0 if `frames`>1, otherwise it is ignored * `movement speed`: How fast the water moves to the right. Higher values means faster movement. If negative, it moves to the left. Use 0 to stop movement Default: 1, 0, 1 == `sd-water-animation` (0.9.23) == Sudden Death equivalent of `water-animation`, uses `SDWater.png`. == `music` == Name of the music file to be played in the theme before Sudden Death, e.g. `Nature.ogg`. You find music tracks in `Data/Music` of the Hedgewars installation directory. The file name is case-sensitive! Values: filename No music is played by default. == `sd-music` (0.9.21) == Name of the music file to be played in the theme while in Sudden Death, e.g. `hell.ogg`. If `music` was not specified, the Sudden Death has no default music as well. You find music tracks in `Data/Music` of the Hedgewars installation directory. The file name is case-sensitive! Values: filename Default: `sdmusic.ogg` (only if `music` was specified, no music otherwise) == `clouds` == The number of clouds to create, before Sudden Death. Uses `Clouds.png`. Values: number Default: 9 == `sd-clouds` == Number of clouds while in Sudden Death, uses the file `SDClouds.png`. By default it is the same number as `clouds` or `9` if `clouds` was not specified as well. Values: number Default: 9 == `flatten-clouds` == Normally, the clouds vary in size and are drawn on different layers. But if this key is present (any value) in `theme.cfg`, all clouds have the same size and are on the same layer (background). == `flakes` == Values for the flakes of this theme before Sudden Death. Uses `Flake.png`. * `number`: Number of visible flakes. * `frames`: Number of frames used in `Flake.png` * `frame ticks`: Number of ticks a frame is shown, after that the next frame is shown (a tick currently equals 1 millisecond). Since 0.9.21: A value of 0 indicates that each flake should keep displaying the exact frame that was selected randomly when the flake was created. *Tip*: If you want to have multiple static flakes in 0.9.20 or earlier, you can set the animation length to a ridiculous high value. Sometimes, a flake will still change the displayed frame, but it will rarely happen. * `speed`: Rotation speed of flake * `fall speed`: Falling speed of flake. Since 0.9.23, this can be negative for rising flakes Values: number, frames, frame ticks, speed, fall speed No flakes are used by default. == `sd-flakes` == Sudden death version of `flakes`, the parameters are the same as in `flakes`. This uses `SDFlake.png`. If `flakes` was unspecified, then there are no Sudden Death flakes by default, the default shown below only applies if `flakes` has been specified. Values: number, frames, frame ticks, speed, fall speed Default: X, 4, 0, 15, 250 (The “X” means the default number of Sudden Death flakes is variable. It depends on the window size and the terrain width.) == `flatten-flakes` == Normally, the flakes vary in size and are drawn on different layers, some of them even in front of the terrain. But if this key is present (any value) in `theme.cfg`, all flakes have the same size and are on the same layer: In front of the sky and horizont and behind the terrain. == `object` == There may be multiple object keys in the file, each one representing one land object. * `filename`: The object’s filename (without the “.png”). Case-sensitive. * `max`: The maximum number of this object that may be generated in a map (must by between 1 and 32 * `buriedrects_num`: (optional): Number of rectangles that must be buried in the terrain. If this value is ommitted, a value of 1 is assumed. Only available in version 0.9.23 or later * `buriedrects`: A rectangle that must be buried in the terrain (`left, top, width, height`). In version 0.9.23, if all 4 values are 0, the object will be placed on top of the water * `minvisible`: The minimum amount of rectangles that must be visible * `visiblerects`: List of the rectangles for being visible (`left, top, width, height`) Syntax for version 0.9.22, or when you only need 1 buried rectangle: Values: filename, max, buriedrec, minvisible, visiblerec Syntax when using multiple buried rectangles in 0.9.23: Values: filename, max, buriedrects_num, buriedrects, minvisible, visiblerects Here's an example where `visiblerects` and the `buriedrects` are visualized on an ancient picture: https://hedgewars.org/images/avematantheme/hw-avematan.rects.png The large rectangle shows a `visiblerects` and the small one shows a `buriedrects`. == `spray` == There may be several spray keys in the file, each one representing one spray object. The `name` is the case-sensitive name of the PNG file (without the file name suffix) of the graphics file, and `number` is the rough number of instances of this spray that may be added to the map. The number is the average number of sprays that are normally placed on a random medium-sized island. For larger and smaller landscapes, this number will be automatically scaled up or down. Please note that this number only specifies a rough goal, the actual number of created sprays may vary and you may have to play a bit with this number in order to find a good value. Values: name, number == `ice` == If this key is present (any value), girders become slippery like ice. This also applies to placed girders. This significantly changes the gameplay of your theme, so use wisely. If this key is not present, the terrain is not slippery. == `snow` == If this key is present (any value), the flakes which are normally purely decorational now behave like snowflakes. When they collide with terrain, they become a part of the landscape. This significantly changes the gameplay of your theme, so use wisely. If this key is not present, the flakes are purely decorational.