Skip to content
ssenegas edited this page Aug 28, 2017 · 9 revisions

The pitches in the games in the Kick Off Series were stored on the floppies using a technique called tiling. Two files are used for each pitch:

  • A bitmap which contains a number of 16 x 16 pixel tiles
  • A tilemap which holds indices into the bitmap.

The size of the maps are 80 x 96 tiles and consequently the size of a full image is 1280 x 1536 pixels.

Overall scale is 12 pixels to 1 yard, and the pitch size is 76 x 116 yards (912 x 1392 pixels).

classic

In open kick off it is nearly the same except that the tileset has been converted from IFF amiga format to PNG and the tilemap has been converted from binary to a TMX map format, which is a XML description of the tilemap used by TilED map editor.

TilED is a generic tile map editor for Windows/Linux/macOS that allows you to create tile layers as well as object layers, containing arbitrary shapes for trigger areas and other purposes.

Libgdx features a generic maps API including tiled maps and supports loading TMX/Tiled maps.

Clone this wiki locally