-
Notifications
You must be signed in to change notification settings - Fork 1
AIV: File Format
Gynt edited this page Sep 10, 2024
·
1 revision
An AIV file is divided into data sections (just like a .map file, but a .map file also has a preview header section).
The relevant sections to know about are the following:
| ID | Name | Description |
|---|---|---|
| 2007 | constructions | 100x100 matrix of type uint16, containing the construction type |
| 2008 | steps | 100x100 matrix of type uint32, containing the steps |
| 2010 | step count | Amount of steps in total |
| 2011 | pauses | Ten int32 indicating which step has a pause |
| 2012 | units | Unit (and brazier and flag) locations. Structure is int[24][10] => int[unitType][slotID], so every unit type has 10 slots available |
| 2014 | pause | uint32 how long the pause is |