OpenKh

This is a centralized place for the documentation and other discoveries about the internal working of Kingdom Hearts games.

View on GitHub

Kingdom Hearts II - Area Data (ARD file format)

Describes how the game should behave before loading the map. This is responsible to spawn the player, NPC, enemies, run cutscenes, change music, invoke MSN files and way more.

Internally it is a BAR file, composed by micro files of different purpose:

Spawn Point

This is the easiest micro-format of an ARD file. This is mainly responsible to spawn objects inside a map, to describe how NPCs should roaming around, to describe how to interact with a specific NPC or even triggering an event like a cutscene or just by changing a map.

File structure

Offset Type Description
00 int File type; always 2.
04 int Spawn descriptor count

Spawn descriptor

When referring to entrance it means that is the index where to spawn the character to when loading the next map (simplified: which part of the map you’re coming from). When the entrance is 99, the playable character is spawn where the save point is located.

Offset Type Description
00 byte Type
01 byte Flag
02 short Id
04 short Entity count
06 short Event activator count
08 short Walk path count. Usually 1.
0a short Return Parameter
0c int Signal count
10 int Always 0
14 int Always 0
18 int Always 0
1c byte Area ID of a world
1d byte Entrance
1e byte Approach Direction Trigger
1f byte Unknown
20 int Unknown
24 int Unknown
28 int Always 0

Approach Direction Trigger determines if the event is triggered only when approaching from a specific direction or if it can be triggered by approaching it from any direction (even from above/below). An example of the former would be the room transition used in CoR skip where you land behind the trigger and have to move away from the exit for a bit in order to move to CoR: Depths. An example of the latter would be Cloud’s mandatory cutscene in HB.

Entity

Offset Type Description
0x00 int Model ID
04 float Position X
08 float Position Y
12 float Position Z
16 float Rotation X
14 float Rotation Y
18 float Rotation Z
1c byte Spawn type
1d byte Spawn argument
1e short Serial
20 int Argument 1
24 int Argument 2
28 int Talk message
2a short Spawn Delay
2c short Reaction command
30 short Spawn range
32 byte Level
33 byte Medal
34 int Always 0
38 int Always 0
3c int Always 0
Spawn types
ID Description Argument purpose
0 Do nothing  
1 Spawn at entrance Filter by entrance index
2 Used by enemies Unknown; possibly do not spawn unless a certain Signal value’s Argument is detected?
3 Used by enemies Unknown

Event activator

This is an invisible wall that is responsibe to activate an event. Which event is it, it is described in the spawn point descriptor. One common usage is changing the map when the player touch the map’s “border”.

Offset Type Description
00 short Collision box shape
02 short Option
04 float Position X
08 float Position Y
0c float Position Z
10 float Scale X
14 float Scale Y
18 float Scale Z
1c float Rotation X
20 float Rotation Y
24 float Rotation Z
28 int Flags
2c short Type
2e short BG group on
30 short BG group off
32 short Always 0
34 int Always 0
38 int Always 0
3c int Always 0
Event shape
ID Description
0 Parallelepiped?
1 Sphere?
Event option
ID Description
0 Change map?
1 Show next map name?

Walk path

Instructs all the entities to follow a walk path, defined by multiple points in the map.

From some early tests, the entities would pick a random point in the walk path and walk there from they were started from. There is no known way to make it follow in order. Also when the map is loaded, the entity can be randomly teleported in any of those walk path points.

Offset Type Description
00 short Serial
02 short Walk point count
04 byte Flag
04 byte Id
06 short Always 0

Walk point

Just a 12-byte structure, read as Vector3f.

Return Parameter

Unknown.

Offset Type Description
00 byte Id
01 byte Type
02 byte Rate
03 byte EntryType
04 byte Unknown
05 byte Unknown
06 short Unknown
08 int Unknown
0c int Unknown

Signal table

Seems to be used in conjunction with Event Activators and AI scripts.

An Event Activator to spawn enemies has both a Id and Entrance (called Place in MapStudio) value. When the Event Activator is triggered, the Entrance value is used as the Signal Id, and the Id value is used as the Argument. An AI script for a mission file can then detect that this Event Activator has been triggered using SIGNAL_CALLBACK (TR10), and subsequently do further actions like summoning barriers to prevent the player from leaving, calling the information bar for mission text, etc.

One such example is for the Cavern of Remembrance forced fights, used to force the player into finishing a mission when they step on a trigger point. The player will step on the Event Activator, whose Entrance value will be used as a signal by the missions AI script to cause the mission to start. Then, the Spawn Groups for the mission will detect that the Event Activator was stepped on using the Signal Id & Argument passed from the Event Activator’s Spawn Group, and spawn in the first spawn group for enemies.

Offset Type Description
00 short Signal ID
02 short Argument
04 byte Action
05 byte Always 0
06 byte Always 0
07 byte Always 0

Script

This is a micro-code that is responsible to change the behaviour of a specific map.

Every map have three script files: map, btl and evt, loaded in this very speicfic order. Each file have a list of programs, where every program is represented by an unique ID. When a map loads, the game instructs the map loader which program to load (sub_181cc0). A map can load only a single program per script file by their ID. This is done by the Local Set or by reading those information in the save data area. The IDs vary from 0 to 50 and are unique per area. However, all the IDs starting from 51 are unique per world. For instance, you can find the Program ID 6 in both TT02 and TT04. But you can only find the Program ID 55 in for the area 4 for Twilight Town world. This is helpful be coherent with the Local Set based on the story progress.

Structure

The file begins with a list of programs, defined as followed:

Offset Type Description
00 short Program ID
02 short Program length in bytes
04 byte[] Program data

Program

Each program is a list of functions, defined as followed:

Offset Type Description
00 short Operation code
02 short Parameter count for the operation
04 int[] Parameters

Operation code

There is a total of 30 operation codes for the spawn script. The parser can be found at sub_181d30.

Spawn

Loads a Spawn file. The parameter is a 4-byte string with the name of the spawn of the ARD’s BAR file. This is the most used opcode, with a usage count of 11949.

MapVisibility

Specify a 64-bit mask that is responsible to enable or disable specific map meshes and collisions. This is very common and used 2186 times.

The way it works is as follows:

.map files have two parts with a “Group” value. DrawModelInfo within the .doct, which is responsible for the visible mesh data, and collisionMesh within the .coct, which is responsible for the collision mesh data.

Each mesh inside of these two gets assigned a “Group” value, and depending on this value, specific bitmasks need to be toggled on or off in order to have those groups appear.

Example: Most meshes are assigned a default group value of 0. This corresponds to the bitmask of 1. So, to enable most of the map and collision meshes, we must specify 0x01 within the MapVisibility, like so:

MapVisibility 0x00000001 0x00000000

If we had some meshes that we wanted to turn on or off depending on story progress, we could assign those a group value of 1. Then, when we want to enable them, we must specify the bitmask 0x02 within MapVisibility, like so:

MapVisibility 0x00000003 0x00000000

This will enable meshes with both groups 0 and 1, and turn off meshes of any other group number.

RandomSpawn

This is used to randomly spawn a group of enemies. It is very similar to Spawn but it defines multiple spawns and the game will randomly choose one of them.

Not common (25 times), used in maps like bb00, bb06, ca14, etc. .

CasualSpawn

Casually spawn or not a specific enemy group. Defines an integer and, if the random number is inferior to the one defined, then the enemy group will spawn. The smaller the number is, the less are the chances to trigger that specific spawn. The enemy group is specified as a 4-byte string, exactly as Spawn. Very uncommon, used 17 times and only in the worlds BB, CA, LK and MU.

Capacity

Set the memory area 01c6053c, which represents an integer that holds the capacity of the current map. The bigger the capacity is the more amount of enemies can be loaded at once. It’s found 465 times and only in btl.

AllocEnemy

Set the memory area 0034ecd0, which represents the amount of memory reserved for enemies. It is not exactly clear why and how this is used. Found 34 times almost every time in btl.

EnemyHistoryDepth

Formerly known as Unknown06. Set the memory area 0034ecd8 with the 4-byte parameter. Changes the amount of room transitions needed to respawn an enemy if defeated.

GimmickHistoryDepth

Formerly known as Unknown07. Set the memory area 0034ecdc with the 4-byte parameter. Very uncommon as it’s ony found 7 times in the maps ca12 and nm02 in btl. Changes the amount of room transitions needed to respawn an object if destroyed.

SpawnAlt

Looks like similar to Spawn, but it’s way less used. Found 210 times, mostly in map and just once in wi00 as evt.

It can spawn alternate versions of entites depending on what conditions are met inside the ARDs AI file. In wi00 for example, different versions of the same entity are activated to be spawned depending on which Progress Flags are checked in the AI.

MapScript

Used to execute the bdx (AI) subfile within the ARD. The argument defines the index of the subfile to be used.

BarrierFlag

Set the memory area 0034ecc8, which seems to define which parts of the map are blocked by an invisible barrier. It might be related on enabling or disabling certain collisions of a map file. Found 203 times and only in map.

AreaSettings

Enqueue a message to perform a series of actions. Here it is possible to play an event, jump into another map, set the story flags, set the menu flags, set specific party members, obtain items or invoke the party menu. Refer to Area settings script to know more. This is commonly used, as the usage count tops 2408 times. It is only found in evt scripts.

Formerly known as Unknown0e. Set the memory area 0034ece0 with the first 4-byte parameter, which affects the minimap loaded in. The value used determines which index of filetype Tim2 to use to display the minimap. The game uses this whenever new exits open up or if an exit becomes inaccessible, like the path in eh04. A value of 99 can disable the minimap entirely.

Used 323 times and only in map.

Party

Set how the party member needs to be structured. According to dbg/member.bin, those are the only allowed values as a parameter:

Value Name Description
0 NO_FRIEND Allow only Sora.
1 DEFAULT Allow Donald and Goofy.
2 W_FRIEND Allow Donald, Goofy and world guest.
3 W_FRIEND_IN Same as W_FRIEND but forces the world guest to be in at the beginning.
4 W_FRIEND_FIX Same as W_FRIEND_IN, but you can not swap the world guest.
5 W_FRIEND_ONLY Allow only with Sora and the world guest.
6 DONALD_ONLY Only allow Sora and Donald.

Bgm

Set the map’s background musics. The single 4-byte parameter can be read as two 2-byte integers, which represents the field and battle music ID that can be found in bgm/music_xxx. They overrides the default field and battle music used in the current map.

MsgWall

Set the memory area 0034ece4, which represents the message displayed below when the player touches an invisible wall. Found 80 times and only in map. The argument specifies a text ID from sys.bar.

AllocPacket

Set the memory area 0034ecd4, which is related to the amount of memory reserved for the cache buffer. This opcode is unused.

Camera

Set the memory area 0034ece8, which sets the camera mode for the map with the first 4-byte parameter. It has a parameter of 1 or 2. Found 39 times and only in map for hb17, lk13, mu07 and po00.

Value Description
0 Default Camera
1 Locked overhead camera, like in po00. Press Select to get an overhead view.
2 Indoor type camera. Lower FoV and restricted Y-axis.
3 Left stick controls X-axis of the camera

StatusFlag3

Purpose unknown. Set the 3rd bit of the memory area 0034f240. Used 89 times.

Mission

Loads a mission file by specifying its MSN file name without path and extension.

Bar

Loads a BAR file by specifying the entire path. The %s symbol can be specified in the path to not hard-code the script to work just for a single language. The BAR file can be a layout or a minigame file.

StatusFlag5

Set the 5th bit of the memory area 0034f240. This is only used twice in mu07 and might be related to the mechanic of Sora entering in the tornado.

AllocEffect

Set the memory area 0034ecec and 0034ecf0 with the first two parameters, which seems to be used by the particle system. It is only used by hb33, hb34, hb38 and he15 in btl.

Progress

Set story flag.

VisibilityOn

It seems to do something with 01c60548. It is only used 3 times in hb13 by evt.

VisibilityOff

It seems to do something with 01c60550. It is only used 3 times in hb13 by evt.

If

Conditionals for the script based on the entrance. Used most often in the Coliseum.

Recov

Determines Sora and the party’s stats upon entering the room. The game will only check if Sora is using a form or summon when entering a room. Healing will refill items and reverting will refill Sora’s drive gauge.

Value Description
1 Heal party and revert Sora if he’s using a form or summon.
2 Heal party and revert Sora.
3 Heal party.
4 Revert Sora if he’s using a form or summon.
5 Revert Sora if he’s using a form or summon and lock his drive gauge.
6 Revert Sora.

BattleLevel

Override the battle level of the playing map. Usually used for special boss battle only.

Gacha

Spawn based on Bulky Vendor RNG. Very similar to Unknown03

Area settings script

The scene script contains functions with a variable amount of parameters.

Opcode Name Description
00 Event Play an event. Parameters: type, event name.
01 Jump Change maps. Parameters: padding, type, world, area, entrance, localset, fade type.
02 ProgressFlag Update story progress flag.
03 MenuFlag Unlock options in the menu.
04 Member Change party member. Values used are the same as for Party
05   Heals Sora’s stats depending on the argument (auto revert, full heal, HP&MP only)
06 Inventory Obtain one or more items. It is possible to obtain up to 7 items in a row.
07 PartyMenu Shows the party menu if Member is also defined. 1 shows standard “Party in/Party Out”, 2 shows the “Departing member” message.
08   Sets a flag. Purpose unknown.

Jump Parameters:

| Parameter | Description |——-|————- | Type | Exact function unsure. Type 1 seems to always use Localset 0, while Type 2 specifies a Localset | World | 2 character abbreviation for the world to jump to. | Area | Which map in that world to jump to | Entrance | Which spawn the Party will use | Localset | Specify a Program ID from the World to execute | FadeType | How to fade out a screen transition. -1 to use the current worlds room transition, 1 for a generic black fadeout.

Notes

*¹ When referred as always 0 means that there are no game files that set it as a value different than that. Still it is unknown if the field is actually used in-game, which would potentially lead to unused functionalities.

*² When sub_xxxxxx or a memory address is read, they refer to the values found in the retail version of Kingdom Hearts II: Final Mix, executable SLPM_66675.elf.