Land Data file

From Worms Knowledge Base

Revision as of 09:04, 26 April 2017 by Pac-Man (Talk | contribs) (Unknown value near object placement correctly documented, note about embedded image data alignment)

Jump to: navigation, search
(Up to File formats)

The Land Data File (located at Data\land.dat) contains an uncompressed version of the map, as generated by the land generator (formerly landgen.exe). Aside the map colour data and collision mask, it contains some parameters such as water height and object placement coordinates. Some 3rd-party software such as CutWorm allow customizing the game map by creating/editing this file directly.

File Format

The format differs slightly between Worms 2 and Worms Armaggedon / Worms World Party.

Game Type Length Description
[W2][WA][WWP] int 4 Signature reading "LND\x1A".
[W2][WA][WWP] int 4 Complete file length in bytes.
[W2][WA][WWP] int 4 Width of map in pixels.
[W2][WA][WWP] int 4 Height of map in pixels.
[W2][WA][WWP] bool 4 Indestructible cavern border
  • 0 = no border
  • non-zero = top border
[—][WA][WWP] int 4 Water height in pixels.
[—][WA][—] int 4 Unknown number.
[W2][WA][WWP] int 4 Number of object placement structures following, each:
  • X position (int, 4 bytes)
  • Y position (int, 4 bytes)
[W2][—][—] int 4 Unknown number, often (always?) 0.
[W2][WA][WWP] IMG - Uncompressed color (8 bpp) image, being the visual foreground land.
[W2][WA][WWP] IMG - Uncompressed monochrome (1 bpp) image, being the collision mask (black determines collidable pixels).
[W2][WA][WWP] IMG - Uncompressed color (8 bpp) image, being the visual background land.
[W2][—][—] IMG - Uncompressed monochrome (1 bpp) image, small size, often (always?) empty, with unknown meaning.
[W2][WA][WWP] string - 1 byte length-prefixed string, being the absolute path to the land texture.
[W2][WA][WWP] string - 1 byte length-prefixed string, being the absolute path to the water.dir file.

Object Placement Coordinates

Each worm, mine, and oil barrel are randomly placed at one of these coordinates at the beginning of the game. The more excess coordinate points there are, the more possibilities there are for each object placement. Not all mines or oil barrels will be placed if there are fewer object placement coordinates than there are objects. Worms will be placed outside of the map if there are fewer object placement coordinates than there are worms or if object placement coordinates overlap each other. The game can crash if worms are placed outside of the map.

Embedded Images

The images embedded in land.dat files are read like typical Image file data, with the following exceptions:

  • W2 has a fourth blank, monochrome image of smaller sizes than the map.
  • WWP aligns the image data following the image size by 4 bytes (but only for the embedded images in land.dat), all other games do not.

Land.dat use for custom color maps in WormNet2

Etho planned on developing a new map file format for Worms World Party that players would have been able to use with the program CutWorm. The format allowed WWP players to play customized color maps with each other on WormNet2. Map makers had the option to customize all three layers that land.dat uses, the border & water setting, object placement coordinates, and water type/color settings.

Online and offline tests where these parameters were properly adjusted have worked successfully with no desync errors. So far, tests to increase the size of a map beyond the size 1920 x 696 have failed.

Personal tools