Free Hero Mesh

Update of "Level file format"
Login
This is a mirror of the main repository for Free Hero Mesh. New tickets and changes will not be accepted at this mirror.
Overview

Artifact ID: e64a2af24373463e763280f11aaeee4ab05a5457
Page Name:Level file format
Date: 2018-08-18 05:13:29
Original User: zzo38
Parent: 9739db9f9336e742a6313626f2a0c620b9c9cdfb (diff)
Next 8bfb3f468c2a60f8e9fdb45cc25bf19258fb0721
Content

This document describes the file format for level files. The .level file is a Hamster archive, containing lumps CLASS.DEF, *.LVL, and LEVEL.IDX. All numbers (except the lump sizes) are small-endian.

CLASS.DEF

This lump consists of two parts, which are the list of classes and list of user messages; two zero bytes come after the list of classes before the list of user messages.

Each part consists of zero or more records concatenated together. Each record consists of a 16-bit number and then a null-terminated string.

The class section has class numbers (minimum 1) and class names (without the $ prefix). The user message section has user message numbers (minimum 256) and user message names (without the # prefix).

This data is used to determine what class/message the level data refers to, since reordering them in the class definition file may cause them to be internally renumbered, so in this way, first the CLASS.DEF lump is read in order to define the numbers before reading the class definition file, so only the class names that aren't mentioned in the level file will be auto-numbered, and then recorded in the CLASS.DEF lump once an object of that class is added to a level using the level editor.

*.LVL

The lump name starts with the zero-based ID number (instead of an asterisk), which must be from 0 to 65535.

The header of this lump consists of:

After that comes the objects. They should be in order starting at (1,1) and going right, going to the next line after that; within each cell, they go bottom (most density) to top (least density). Each object record consists of:

Normal flag byte:

MRU flag byte:

Either way, bit6 and bit5 should not both be set together. Also, if bit4 is not set for the first object, the Y coordinate is 1, and if bit5 is not set for the first object, the X coordinate is 0 (which is not a valid coordinate, unless bit6 is also set).

The MRU has two layers, one for the bottom object and one for the object directly above the bottom object. All data other than the coordinates are stored in the MRU. Objects above the second one are not stored in MRU. If the repeat count is nonzero, then in addition to the current cell, further cells to the right copy it too (this is only applicable for the bottom layer), leaving the cursor on the rightmost cell that has been written to.

The data type byte consists of:

After the data type byte will be the misc data; any misc data not defined implicitly has a value of zero. The data is represented as a 16-bit number, in order Misc1, Misc2, Misc3, whichever are present (as specified above).

(Note: In EKS Hero Meshm the data type is used only in the editor. In Free Hero Mesh, data is strongly typed and so the data type is used at run time too.)

After the objects is a byte with value 0xFF to indicate there are no more objects, and then the level strings (if any). The level strings are simply null-terminated strings (which can include formatting controls).

LEVEL.IDX

This lump contains a series of 16-bit numbers, which are the ID numbers of the levels, in the display order.