Cave unit definition file

From Pikmin Technical Knowledge Base
Revision as of 00:15, 18 October 2016 by Espyo (talk | contribs) (Created page with "In ''Pikmin 2'', each sublevel points to a cave unit list file. These files can be found in <code>/user/Mukki/mapunits/units</code>, and contain a list of units that the game...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

In Pikmin 2, each sublevel points to a cave unit list file. These files can be found in /user/Mukki/mapunits/units, and contain a list of units that the game is allowed to use to create the cave with.

Header

After a decorated set of comments that say units definition file comes a line containing the number of units defined in this file. This line is commented with number of units. Each unit's data is defined inside its own block, and conveniently has a comment before it that mentions its name.

Unit

The first line in the block is the version of the block's data format[unsure].

The second line is the internal name of the unit.

The third line consists of two words, each a number, that define how many cave grid cells this unit takes up. The first word is for the length in X, the second for the length in Z. Basically, this means "this unit is X by Z units big".

The fourth line determines the type of unit this is. 0 is a dead end, 1 is a room, and 2 is a corridor.

The fifth line determines the unit's flags.

To do: Document the unit's flags.

The sixth line indicates how many exits this unit has. The lines after this one contain data about each exit.

Exits

The first line in an exit's data is its index. This starts at 0.


To do: Document the remaining lines.