PresetMaps.wiki
author Caironater@gmail.com
Mon, 02 Dec 2013 08:05:38 +0000
changeset 355 cf31964ba60b
parent 345 3027ad3155d5
child 370 1f534f49715a
permissions -rw-r--r--
Added link to uConsts.pas

#summary This page describes the technically relevant aspects of preset maps in Hedgewars

<wiki:toc max_depth="3" />

----

= Introduction =

One of the map types Hedgewars supports are maps that were previously drawn by an artist.

The looks of such maps are distinctly defined and are not subject to randomized values.

Additionally these maps allow [LuaGuide Lua-script] to be associated with them in order to enable adding specific gameplay changes and map behavior.

----

= Location =
All maps are automatically loaded from the [HedgewarsDataDir Hedgewars data directory].

In this directory there has to be a folder for every map, named after the desired map name.

*Examples:*
  * _Data/Maps/!MyVeryOwnMap_
  * _Data/Maps/Ropes_
  * _Data/Maps/Sheep_
  * etc.

== Mission Maps ==

Missions may use preset maps that aren't located in the *Data/Maps* directory.

A mission may contain in the same directory with mission's lua script a .hwp file.

This file is a zip file with an altered extension from *.zip* to *.hwp* and it contains the directory *Maps/some_name*.

In the *some_name* directory the files map.cfg, map.png and mask.png are located. See the Basic Files section for more on these files.

The name of the *.hwp* file should be the same with the mission script.

In the mission script's onGameInit(), map should be set to *some_name*. See [LuaAPI] for more about onGameInit().

----

= Files =

Within the folder of every map the following files are expected to be there:

== Basic files ==
=== map.cfg ===
Configuration file.

  * First line is the name of the [Theme] used by the map (for background and clouds, flakes, water, etc).  As of 0.9.19+, this theme may be overridden when setting up the game.
  * Second line is max. number of hedgehogs supported. If the second line is not provided, it is assumed to be 18




=== map.png ===
Image of visible land area.
  * Usually _width/length ratio_ of 2:1
  * Typical size: 2048 x 1024
  * Max size: no limit, 0.9.18+.  4096 x 2048 or less in 0.9.17 and earlier.  There are a few practical limits to map size that should be examined for people trying to make very large maps.
    * SDL 1.2 - SDL 1.2 can only load maps that are <=16,384px wide, and <=65,536px high.
    * SDL 2.0 - SDL 2.0 failed to load a 999,936x512 map. A 499,968x512 map succeeded. Those would use ~244MiB/~122MiB of your graphics card with Blurry Land enabled, and ~977MiB/~488MiB without it.
    * GIMP.  GIMP 2.8 can only create PNGs that are 262,144px wide or high - is an arbitrary hardcoded sanity check.  GIMP 2.10 allows 524,288 wide or high.
    * libpng - libpng can only load maps that are < 1 million px wide or high, with default configuration.
    * Graphics card. This is the big one. Your graphics card probably has anywhere from 256MiB to 2GiB of vRAM.  If blurry land is enabled and the map has a typical amount of empty space, you can make a map w/ ~2x the pixels as a card has vRAM. But. Most people don't like using Blurry Land, so best to limit to ~½ the pixels as a card has vRAM. Targetting support for people on 256MiB of vRAM, that means a 2:1 rectangular map should not be larger than 16,384x8192 which coincidentally fits in the SDL 1.2 width limit.
    * There is also a completely arbitrary check in game for widths/height < ~billion pixels which avoids possible integer issues, and a limit on size in pixels of 6 billion or so, which was just a basic sanity limit.  However given the limitations above, these are not likely to be reached.
  * If there is no _mask.png_, this image will also be used for deciding what pixels are subject to collision: _alpha value_ not equal to 0 (so below max transparency) will be considered land
  * As of 0.9.19+, map.png is optional if a mask.png is provided.  If there is no map.png, the theme will be used to decorate the map.  No objects will be added to white areas.  Use black if you want objects.

=== preview.png ===
Preview image of the map
  * size: 256 x 128_

== Optional files (for advanced features and adjustments) ==
=== mask.png ===
Image defining the collision areas of the map.

  * Pixels with _alpha value_ = 0 will not be subject to collision
  * White pixels will be terrain
  * Red pixels will be indestructible terrain (regardless of game mode settings)
  * Black pixels will be terrain with background texture applied (Note: Adding any black pixels removes erasure protection from areas where the map.png is solid but the mask.png is transparent) - 0.9.17+
  * Blue pixels will be ice - 0.9.17+
  * Green pixels block portals - 0.9.18+  They are defined as "bouncy" in the code, although this functionality is not implemented, and could be susceptible to change.  If bouncing is implemented and the green pixels should only block portals, place a dotted line of single red pixels a few pixels above the green, spaced a few pixels apart.

*Examples:*
  * [http://hedgewars.googlecode.com/hg/share/hedgewars/Data/Maps/portal/mask.png Mask]  of [http://hedgewars.googlecode.com/hg/share/hedgewars/Data/Maps/portal/map.png Portal Map]
(Transparent areas may not be recognizeable as such in your browser/image preview program, so open e.g. in [http://www.gimp.org/ Gimp])


=== map.lua ===
A Lua-script to be used together with the map.

See the LuaGuide for more information on Hedgewars' scripting support.

== Image format ==
  * PNG, 8-bit/color RGBA (so 32 bit)
  * Gamma correction and colour profiles should not be applied, in order to ensure the map is loaded identically on OSX as it is on other operating systems by SDL.  To ensure this happens, please run:
pngcrush -rem gAMA -rem cHRM -rem iCCP -rem sRGB old/map.png new/map.png

or be sure your image editing software has these options disabled.

----
= Editing software recommendations =
== Images ==
A vector based drawing software is recommended for creating the maps.

(Reasons for that: Edges are usually automatically smoothed on export; Easier to meet [http://www.hedgewars.org/node/704 Hedgewars Graphics rules, style constraints, guidelines]; Images are easier to change, adjust and maintain style)

If you don't have one, check out the free open-source [http://inkscape.org Inkscape]: There are various [http://lmgtfy.com/?q=inkscape+tutorial Inkscape tutorials] online, so you should be able to get started easily.