EvilEngine/Assets: Difference between revisions

Content added Content deleted
Battlepedia>Wowaname
mNo edit summary
Battlepedia>Seil
No edit summary
Line 1: Line 1:
''[[Spongebob Squarepants: Battle For Bikini Bottom]]'' works by using '''assets''', which can be different formats such as models, textures, animations, object placement information, and many others. Assets are defined by AHDR sections in the [[HIP (File Format)|HIP archives]] and uniquely identified by their [[Asset ID]]. It is not yet known what all different asset types do.
Heavy Iron games store all of their data for each scene in '''assets''', which can be different formats such as models, textures, animations, object placement information, and many others. Assets are defined by AHDR sections in the [[HIP (File Format)|HIP archives]] and uniquely identified by their [[Asset ID]]. It is not yet known what all different asset types do.


==Classes of Assets==
==Classes of Assets==
Line 7: Line 7:
These are assets whose data is composed of a RenderWare binary stream, with the tree structure commonly found in them. These assets can be opened in [https://www.gta-modding.com/area/file-33-rw-analyze.html RW Analyze]. They are: [[BSP]], [[JSP]], [[MODL]], [[RWTX]].
These are assets whose data is composed of a RenderWare binary stream, with the tree structure commonly found in them. These assets can be opened in [https://www.gta-modding.com/area/file-33-rw-analyze.html RW Analyze]. They are: [[BSP]], [[JSP]], [[MODL]], [[RWTX]].


===Object Assets===
===Base Assets===
Many assets extend from Base Assets (also referred to as object assets), which define objects in the level that can interact with each other by using [[Events#Links|links]]. Base assets start with an 8 byte header, defined by the <code>xBaseAsset</code> struct:
Object assets are a class which start with the following 8 byte header, and are able to send and recieve [[events]].

<source lang=cpp>
struct xBaseAsset
{
unsigned int id;
unsigned char baseType;
unsigned char linkCount;
unsigned short baseFlags;
}
</source>


{| class="wikitable"
{| class="wikitable"
! Offset !! Type !! Variable !! Description
! Offset !! Variable !! Description
|-
|-
| 0x00 || [[AssetID]] || '''Asset ID''' || Asset ID of entry. Should match the asset ID of the asset in the [[HIP (File Format)#AHDR|AHDR]].
| 0x00 || '''id''' || [[Asset ID]] of entry. Should match the asset ID of the asset in the [[HIP (File Format)#AHDR|AHDR]].
|-
|-
| 0x04 || byte || '''Object ID''' || Unique to each object type. The asset table below shows the object ID for each type.
| 0x04 || '''baseType''' || Unique to each base asset type. The asset table below shows the base type for each type.
|-
|-
| 0x05 || '''linkCount''' || The number of links present at/near the end of the asset.
| 0x05 || byte || '''Number of Events''' ||
|-
|-
| 0x06 || short || '''Flags''' || Common flags represented as a 16-bit bitfield although only the 5 lowest bits are ever used.
| 0x06 || '''baseFlags''' || Common flags represented as a 16-bit bitfield although only the 5 lowest bits are ever used.
* 1 - '''Enabled''' - Initial enabled/disabled state. 0 = disabled, 1 = enabled
* 0x1 - '''Enabled''' - Initial enabled/disabled state. If the object is disabled, it won't receive events.
* 2 - '''Persistent''' - If an asset is persistent, it will keep track of its current state and restore it on the next scene prepare (player respawn, level reload, etc.) For example, if you make a [[BUTN|button]] persistent and press it in-game, the next time you load the level the button will automatically re-press itself.
* 0x2 - '''Persistent''' - If an asset is persistent, it will keep track of its current state and restore it on the next scene prepare (player respawn, level reload, etc.) For example, if you make a [[BUTN|button]] persistent and press it in-game, the next time you load the level the button will automatically re-press itself.
* 4 - unknown - Always 1
* 0x4 - '''Valid''' - Always 1.
* 8 - '''Visible During Cutscenes'''
* 0x8 - '''Visible During Cutscenes''' - Whether to keep the object visible or not during cutscenes.
* 16 - '''Receive Shadows''' - Used by some placeable asset types but not all. Asset types known to use this flag: [[BUTN]], [[PLAT]], [[SIMP]]
* 0x10 - '''Receive Shadows''' - Whether to receive shadows from the player, NPCs, pickups, etc. Asset types known to use this flag: [[BUTN]], [[PLAT]], [[SIMP]]
|}
|}


The data that follows this header differs depending on the asset type. Some object assets are placeable assets as well (defined below).
The data that follows this header differs depending on the asset type. Some base assets are entity assets as well (defined below).


These objects have, at the end of their data, an array of [[events]], with the amount of entries specified in this header. The only exception for this is the [[PLYR]] assets, which still has one field after the events.
These objects have, at the end of their data, an array of [[Events#Links|links]], with the amount of entries specified in this header. The only exception for this is the [[PLYR]] assets, which still has one field after the events.


===Placeable Assets===
===Entity Assets===
Placeable assets are object assets which have a 3D placement in the world and the following common header (not all objects with a position follow this, though; for example, [[MRKR]] have a position but are not even object assets). They start with the 8 byte object asset header detailed above, then are followed by this:
Entity assets (also referred to as placeable assets) are base assets which have a 3D placement in the world and the following common header (not all objects with a position follow this, though; for example, [[MRKR]] have a position but are not even base assets). They start with a 0x54 byte header, which is defined by the <code>xEntAsset</code> struct (which extends from <code>xBaseAsset</code>):

<source lang=cpp>
struct xEntAsset : xBaseAsset
{
unsigned char flags;
unsigned char subtype;
unsigned char pflags;
unsigned char moreFlags;
unsigned char pad;
unsigned int surfaceID;
xVec3 ang;
xVec3 pos;
xVec3 scale;
float redMult;
float greenMult;
float blueMult;
float seeThru;
float seeThruSpeed;
unsigned int modelInfoID;
unsigned int animListID;
};
</source>


{| class="wikitable"
{| class="wikitable"
! Offset !! Type !! Variable !! Description
! Offset !! Variable !! Description
|-
|-
| 0x08 || byte || '''Visibility flags''' || Flags stored in a bitfield, most likely related to visibility. Can be changed dynamically mid-game through events. (?)
| 0x08 || '''flags''' || Flags stored in a bitfield, most likely related to visibility. Can be changed dynamically mid-game through events. (?)
* 1 - '''Visible''', used by [[BOUL]], [[BUTN]], [[DSTR]], [[EGEN]], [[PKUP]], [[PLAT]], [[PLYR]], [[SIMP]], [[TRIG]], [[UI]], [[UIFT]], [[VIL]]
* 1 - '''Visible''', used by [[BOUL]], [[BUTN]], [[DSTR]], [[EGEN]], [[PKUP]], [[PLAT]], [[PLYR]], [[SIMP]], [[TRIG]], [[UI]], [[UIFT]], [[VIL]]
* 2 - '''Stackable'''. Enabling this will cause the object to fall down and stack on top of other objects. This is mainly used for [[DSTR|Destructible Objects]], such as a table with a picture on top of it (when the table is destroyed, the picture falls to the ground). Note that this disables [[PLAT]] movement. Works with [[PLAT]], [[BUTN]], [[DSTR]], [[VIL]] (?), and possibly others. Enabling this on a [[SIMP]] will crash the game.
* 2 - '''Stackable'''. Enabling this will cause the object to fall down and stack on top of other objects. This is mainly used for [[DSTR|Destructible Objects]], such as a table with a picture on top of it (when the table is destroyed, the picture falls to the ground). Note that this disables [[PLAT]] movement. Works with [[PLAT]], [[BUTN]], [[DSTR]], [[VIL]] (?), and possibly others. Enabling this on a [[SIMP]] will crash the game.
Line 47: Line 79:
* 128 - Unused
* 128 - Unused
|-
|-
| 0x09 || byte || '''Type flags''' || Defines the subtype of the asset. Usually 0 except for the asset types listed below.
| 0x09 || '''subType''' || Defines the subtype of the asset. Usually 0 except for the asset types listed below.
* [[PKUP]] - [[PKUP#Types (0x09)|Pickup types]]
* [[PKUP]] - [[PKUP#Types (0x09)|Pickup types]]
* [[PLAT]] - [[PLAT#Types (0x09)|Platform types]]
* [[PLAT]] - [[PLAT#Types (0x09)|Platform types]]
* [[TRIG]] - 0 = Box, 1 = Sphere
* [[TRIG]] - 0 = Box, 1 = Sphere, 2 = Cylinder
|-
|-
| 0x0A || byte || '''Unknown flags''' || Always 0.
| 0x0A || '''pflags''' || Always 0.
|-
|-
| 0x0B || byte || '''Solidity flags''' || Flags stored in a bitfield, most likely related to collision. Can be changed dynamically mid-game through events. (?) Always 0 for [[BOUL]], [[PLYR]], and [[TRIG]].
| 0x0B || '''moreFlags''' || Flags stored in a bitfield, most likely related to collision. Can be changed dynamically mid-game through events. (?) Always 0 for [[BOUL]], [[PLYR]], and [[TRIG]].
* 1 - Unused
* 1 - Unused
* 2 - '''Precise Collision'''. When enabled, the collision shape is the exact shape of the model. When disabled, the collision shape is the bounding box of the model. Used by [[BUTN]], [[DSTR]], [[EGEN]], [[PKUP]], [[PLAT]], [[SIMP]], [[UI]], [[UIFT]], [[VIL]]
* 2 - '''Precise Collision'''. When enabled, the collision shape is the exact shape of the model. When disabled, the collision shape is the bounding box of the model. Used by [[BUTN]], [[DSTR]], [[EGEN]], [[PKUP]], [[PLAT]], [[SIMP]], [[UI]], [[UIFT]], [[VIL]]
Line 64: Line 96:
* 128 - '''Unknown''', used by [[PLAT]], [[SIMP]]
* 128 - '''Unknown''', used by [[PLAT]], [[SIMP]]
|-
|-
| 0x0C || int || '''Unknown''' || Always null. '''Not present in some versions of placeable assets''', mainly beta/unused assets and non-BFBB assets.
| 0x0C || '''pad''' || Always null. '''Not present in some versions of entity assets''', mainly beta/unused assets and non-BFBB assets. Those assets only have a 0x50-byte header.
|-
| 0x10 || '''surfaceID''' || [[SURF]] ID for [[SIMP]], [[PLAT]], [[UI]], [[EGEN]], and possibly others.
|-
| 0x14 || '''ang''' || A (Yaw, Pitch, Roll) rotation vector (in radians).
|-
| 0x20 || '''pos''' || A (X, Y, Z) position vector.
|-
|-
| 0x2C || '''scale''' || A (X, Y, Z) scale vector.
| 0x10 || [[AssetID]] ([[SURF]]) || '''Surface''' || Surface for [[SIMP]], [[PLAT]], [[UI]], [[EGEN]], and possibly others.
|-
|-
| 0x14 || [[Vector3]] || '''Rotation''' || A (Yaw, Pitch, Roll) rotation vector (in radians).
| 0x38 || '''redMult''' || Red color multiplier (0 to 1).
|-
|-
| 0x20 || [[Vector3]] || '''Position''' || A (X, Y, Z) position vector.
| 0x3C || '''greenMult''' || Green color multiplier (0 to 1).
|-
|-
| 0x2C || [[Vector3]] || '''Scale''' || A (X, Y, Z) scale vector.
| 0x40 || '''blueMult''' || Blue color multiplier (0 to 1).
|-
|-
| 0x38 || [[Vector4]] || '''Color''' || A (R, G, B, A) color vector (values range from 0 to 1). Usually (1.0, 1.0, 1.0, 1.0) in all types.
| 0x44 || '''seeThru''' || Alpha color multiplier (0 to 1).
|-
|-
| 0x48 || float || '''Unknown''' || Usually 255.0 in all types.
| 0x48 || '''seeThruSpeed''' || Usually 255.0 in all types.
|-
|-
| 0x4C || [[AssetID]] ([[MODL]]/[[MINF]]) || '''Model''' || Model for [[BOUL]], [[BUTN]], [[DSTR]], [[EGEN]], [[HANG]], [[PEND]], [[PLAT]], [[PKUP]], [[PLYR]], [[SIMP]], [[UI]] and [[VIL]]
| 0x4C || '''modelInfoID''' || [[MODL]]/[[MINF]] ID for [[BOUL]], [[BUTN]], [[DSTR]], [[EGEN]], [[HANG]], [[PEND]], [[PLAT]], [[PKUP]], [[PLYR]], [[SIMP]], [[UI]] and [[VIL]]
|-
|-
| 0x50 || [[AssetID]] ([[ALST]]/[[ANIM]]/[[SND]]) || '''Animation/Sound''' || Animation/animation list for [[SIMP]], [[PLAT]], [[DSTR]], and possibly others. Sound for [[UI]].
| 0x50 || '''animListID''' || [[ALST]]/[[ANIM]] ID for [[SIMP]], [[PLAT]], [[DSTR]], and possibly others. [[SND]] ID for [[UI]].
|}
|}


Line 97: Line 135:
! Description
! Description
! Type
! Type
! Object ID
! Base Type
! 1
! 1
! 2
! 2
Line 103: Line 141:
! 4
! 4
! 5
! 5
! Notes
|-
|-
| align=center | [[ALST]]
| align=center | [[ALST]]
Line 108: Line 147:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[ANIM]]
| align=center | [[ANIM]]
Line 114: Line 153:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[ATBL]]
| align=center | [[ATBL]]
Line 120: Line 159:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[ATKT]]
| align=center | [[ATKT]]
Line 126: Line 165:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || || || ✔ ||
|| || || || ✔ || ||
|-
|-
| align=center | [[BINK]]
| align=center | [[BINK]]
Line 132: Line 171:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || || || ✔ || ✔
|| || || || ✔ || ✔ ||
|-
|-
| align=center | [[BOUL]]
| align=center | [[BOUL]]
|| Boulder
|| Boulder
|| Placeable
|| Entity
| align=center | 0x2F
| align=center | 0x2F
|| || ✔ || ✔ || ✔ || ✔
|| || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[BSP]]
| align=center | [[BSP]]
Line 144: Line 183:
|| RenderWare
|| RenderWare
| align=center | -
| align=center | -
|| ✔ || || || ||
|| ✔ || || || || ||
|-
|-
| align=center | [[BUTN]]
| align=center | [[BUTN]]
|| Button
|| Button
|| Placeable
|| Entity
| align=center | 0x18
| align=center | 0x18
|| ✔ || ✔ || ✔ || ✔ ||
|| ✔ || ✔ || ✔ || ✔ || ||
|-
|-
| align=center | [[CAM]]
| align=center | [[CAM]]
|| Camera
|| Camera
|| Object
|| Base
| align=center | 0x07
| align=center | 0x07
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[CCRV]]
| align=center | [[CCRV]]
|| Camera Curve
|| Camera Curve
|| Object
|| Base
| align=center | 0x8D
| align=center | 0x8D
|| || || || || ✔
|| || || || || ✔ ||
|-
|-
| align=center | [[CNTR]]
| align=center | [[CNTR]]
|| Counter
|| Counter
|| Object
|| Base
| align=center | 0x16
| align=center | 0x16
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[COLL]]
| align=center | [[COLL]]
Line 174: Line 213:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || ✔ || ✔ || ✔
|| || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[COND]]
| align=center | [[COND]]
|| Conditional
|| Conditional
|| Object
|| Base
| align=center | 0x1F
| align=center | 0x1F
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[CRDT]]
| align=center | [[CRDT]]
Line 186: Line 225:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || ✔ || ✔ || ✔
|| || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[CSN]]
| align=center | [[CSN]]
Line 192: Line 231:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || ✔ || ✔ ||
|| || ✔ || ✔ || ✔ || ||
|-
|-
| align=center | [[CSNM]]
| align=center | [[CSNM]]
|| Cutscene Mgr
|| Cutscene Mgr
|| Object
|| Base
| align=center | 0x28
| align=center | 0x28
|| ✔ || ✔ || ✔ || ✔ ||
|| ✔ || ✔ || ✔ || ✔ || ||
|-
|-
| align=center | [[CSSS]]
| align=center | [[CSSS]]
Line 204: Line 243:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || || ✔ || ✔ ||
|| || || ✔ || ✔ || ||
|-
|-
| align=center | [[CTOC]]
| align=center | [[CTOC]]
Line 210: Line 249:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ ||
|| ✔ || ✔ || ✔ || ✔ || ||
|-
|-
| align=center | [[DEST]]
| align=center | [[DEST]]
Line 216: Line 255:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || || ✔ || ✔ || ✔
|| || || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[DPAT]]
| align=center | [[DPAT]]
|| Dispatcher
|| Dispatcher
|| Object
|| Base
| align=center | 0x1E
| align=center | 0x1E
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[DSCO]]
| align=center | [[DSCO]]
|| Disco Floor
|| Disco Floor
|| Object
|| Base
| align=center | 0x00
| align=center | 0x00
|| || ✔ || ✔ || ||
|| || ✔ || ✔ || || ||
|-
|-
| align=center | [[DSTR]]
| align=center | [[DSTR]]
|| Destructible Object
|| Destructible Object
|| Placeable
|| Entity
| align=center | 0x1B
| align=center | 0x1B
|| ✔ || ✔ || || ||
|| ✔ || ✔ || || || ||
|-
|-
| align=center | [[DTRK]]
| align=center | [[DTRK]]
||
||
|| Object
|| Base
| align=center | 0xCD
| align=center | 0xCD
|| || || || ✔ ||
|| || || || ✔ || ||
|-
|-
| align=center | [[DUPC]]
| align=center | [[DUPC]]
||
||
|| Object
|| Base
| align=center | 0x42
| align=center | 0x42
|| || || || ✔ ||
|| || || || ✔ || ||
|-
|-
| align=center | [[DYNA]]
| align=center | [[DYNA]]
|| Dynamic Type
|| Dynamic Type
|| Object
|| Base
| align=center | 0x00
| align=center | 0x00
|| || ✔ || ✔ || ✔ || ✔
|| || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[EGEN]]
| align=center | [[EGEN]]
|| Electric Arc Generator
|| Electric Arc Generator
|| Placeable
|| Entity
| align=center | 0x29
| align=center | 0x29
|| ✔ || ✔ || ✔ || ||
|| ✔ || ✔ || ✔ || || ||
|-
|-
| align=center | [[ENV]]
| align=center | [[ENV]]
|| Environment
|| Environment
|| Object
|| Base
| align=center | 0x05
| align=center | 0x05
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[FLY]]
| align=center | [[FLY]]
Line 270: Line 309:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || ✔ || ||
|| || ✔ || ✔ || || ||
|-
|-
| align=center | [[FOG]]
| align=center | [[FOG]]
|| Fog
|| Fog
|| Object
|| Base
| align=center | 0x24
| align=center | 0x24
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[GRSM]]
| align=center | [[GRSM]]
|| Grass Mesh
|| Grass Mesh
|| Object
|| Base
| align=center | 0xCD
| align=center | 0xCD
|| || || || ✔ ||
|| || || || ✔ || ||
|-
|-
| align=center | [[GRUP]]
| align=center | [[GRUP]]
|| Group
|| Group
|| Object
|| Base
| align=center | 0x11
| align=center | 0x11
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[GUST]]
| align=center | [[GUST]]
|| Gust
|| Gust
|| Object
|| Base
| align=center | 0x1C
| align=center | 0x1C
|| ✔ || || || ||
|| ✔ || || || || ||
|-
|-
| align=center | [[HANG]]
| align=center | [[HANG]]
|| Hangable
|| Hangable
|| Placeable
|| Entity
| align=center | 0x17
| align=center | 0x17
|| ✔ || || || || ✔
|| ✔ || || || || ✔ ||
|-
|-
| align=center | [[JAW]]
| align=center | [[JAW]]
Line 306: Line 345:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || ✔ || || ✔
|| || ✔ || ✔ || || ✔ ||
|-
|-
| align=center | [[JSP]]
| align=center | [[JSP]]
Line 312: Line 351:
|| RenderWare
|| RenderWare
| align=center | -
| align=center | -
|| || ✔ || ✔ || ✔ || ✔
|| || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[LITE]]
| align=center | [[LITE]]
|| Light
|| Light
|| Object
|| Base
| align=center | 0x25
| align=center | 0x25
|| ✔ || || || ||
|| ✔ || || || || ||
|-
|-
| align=center | [[LKIT]]
| align=center | [[LKIT]]
Line 324: Line 363:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || ✔ || ✔ || ✔
|| || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[LOBM]]
| align=center | [[LOBM]]
|| LobMaster
|| LobMaster
|| Object
|| Base
| align=center | 0x23
| align=center | 0x23
|| ✔ || || || ||
|| ✔ || || || || ||
|-
|-
| align=center | [[LODT]]
| align=center | [[LODT]]
Line 336: Line 375:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || ✔ || ✔ || ✔
|| || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[MAPR]]
| align=center | [[MAPR]]
Line 342: Line 381:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[MINF]]
| align=center | [[MINF]]
Line 348: Line 387:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[MODL]]
| align=center | [[MODL]]
Line 354: Line 393:
|| RenderWare
|| RenderWare
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[MPHT]]
| align=center | [[MPHT]]
Line 360: Line 399:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || || || ||
|| ✔ || || || || ||
|-
|-
| align=center | [[MRKR]]
| align=center | [[MRKR]]
Line 366: Line 405:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[MVPT]]
| align=center | [[MVPT]]
|| Move Point
|| Move Point
|| Object
|| Base
| align=center | 0x0D
| align=center | 0x0D
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[NGMS]]
| align=center | [[NGMS]]
|| NavMesh
|| NavMesh
|| Object
|| Base
| align=center | 0x9A<br>0xCD
| align=center | 0x9A<br>0xCD
|| || || || ✔ || ✔ || '''Object ID notes:'''<br>0x9A is only used in Rise of the Underminer.<br>0xCD is only used in The Incredibles.
|| || || || ✔ || ✔ || '''Base Type notes:'''<br>0x9A is only used in Rise of the Underminer.<br>0xCD is only used in The Incredibles.
|-
|-
| align=center | [[NPC]]
| align=center | [[NPC]]
|| NPC
|| NPC
|| Placeable
|| Entity
| align=center | 0x02
| align=center | 0x02
|| ✔ || || || ||
|| ✔ || || || || ||
|-
|-
| align=center | [[NPCS]]
| align=center | [[NPCS]]
Line 390: Line 429:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || || || ✔ || ✔
|| || || || ✔ || ✔ ||
|-
|-
| align=center | [[ONEL]]
| align=center | [[ONEL]]
Line 396: Line 435:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || || || ✔ ||
|| || || || ✔ || ||
|-
|-
| align=center | [[PARE]]
| align=center | [[PARE]]
|| Particle Emitter
|| Particle Emitter
|| Object
|| Base
| align=center | 0x26
| align=center | 0x26
|| ✔ || ✔ || ✔ || || ✔
|| ✔ || ✔ || ✔ || || ✔ ||
|-
|-
| align=center | [[PARP]]
| align=center | [[PARP]]
|| Particle Emitter Property
|| Particle Emitter Property
|| Object
|| Base
| align=center | 0x2E
| align=center | 0x2E
|| || ✔ || ✔ || || ✔
|| || ✔ || ✔ || || ✔ ||
|-
|-
| align=center | [[PARS]]
| align=center | [[PARS]]
|| Particle System
|| Particle System
|| Object
|| Base
| align=center | 0x27
| align=center | 0x27
|| ✔ || ✔ || ✔ || || ✔
|| ✔ || ✔ || ✔ || || ✔ ||
|-
|-
| align=center | [[PEND]]
| align=center | [[PEND]]
|| Pendulum
|| Pendulum
|| Placeable
|| Entity
| align=center | 0x12
| align=center | 0x12
|| ✔ || || || ||
|| ✔ || || || || ||
|-
|-
| align=center | [[PGRS]]
| align=center | [[PGRS]]
|| Prog(?) Script
|| Prog(?) Script
|| Object
|| Base
| align=center | 0x75
| align=center | 0x75
|| || || || ✔ || ✔
|| || || || ✔ || ✔ ||
|-
|-
| align=center | [[PICK]]
| align=center | [[PICK]]
Line 432: Line 471:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || || ✔
|| ✔ || ✔ || ✔ || || ✔ ||
|-
|-
| align=center | [[PIPT]]
| align=center | [[PIPT]]
Line 438: Line 477:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || ✔ || ✔ || ✔
|| || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[PKUP]]
| align=center | [[PKUP]]
|| Pickup
|| Pickup
|| Placeable
|| Entity
| align=center | 0x04
| align=center | 0x04
|| ✔ || ✔ || ✔ || ||
|| ✔ || ✔ || ✔ || || ||
|-
|-
| align=center | [[PLAT]]
| align=center | [[PLAT]]
|| Platform
|| Platform
|| Placeable
|| Entity
| align=center | 0x06
| align=center | 0x06
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[PLYR]]
| align=center | [[PLYR]]
|| Player
|| Player
|| Placeable
|| Entity
| align=center | 0x03
| align=center | 0x03
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[PORT]]
| align=center | [[PORT]]
|| Portal
|| Portal
|| Object
|| Base
| align=center | 0x10
| align=center | 0x10
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[PRJT]]
| align=center | [[PRJT]]
|| Projectile
|| Projectile
|| Object
|| Base
| align=center | 0x22
| align=center | 0x22
|| ✔ || || || ||
|| ✔ || || || || ||
|-
|-
| align=center | [[RANM]]
| align=center | [[RANM]]
|| Reactive Animation List
|| Reactive Animation List
|| Object
|| Base
| align=center | 0x00
| align=center | 0x00
|| || || ✔ || ✔ ||
|| || || ✔ || ✔ || ||
|-
|-
| align=center | [[RAW]]
| align=center | [[RAW]]
Line 480: Line 519:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || || ✔ || ✔
|| || ✔ || || ✔ || ✔ ||
|-
|-
| align=center | [[RWTX]]
| align=center | [[RWTX]]
Line 486: Line 525:
|| RenderWare
|| RenderWare
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SCRP]]
| align=center | [[SCRP]]
|| Script
|| Script
|| Object
|| Base
| align=center | 0x2A
| align=center | 0x2A
|| || || ✔ || ✔ || ✔
|| || || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SDFX]]
| align=center | [[SDFX]]
|| Sound FX
|| Sound FX
|| Object
|| Base
| align=center | 0x4B
| align=center | 0x4B
|| || || ✔ || ✔ || ✔
|| || || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SFX]]
| align=center | [[SFX]]
|| Sound FX
|| Sound FX
|| Object
|| Base
| align=center | 0x13
| align=center | 0x13
|| ✔ || ✔ || || ||
|| ✔ || ✔ || || || ||
|-
|-
| align=center | [[SGRP]]
| align=center | [[SGRP]]
|| Sound Group
|| Sound Group
|| Object
|| Base
| align=center | 0x4A
| align=center | 0x4A
|| || || ✔ || ✔ || ✔
|| || || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SHDW]]
| align=center | [[SHDW]]
Line 516: Line 555:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || || ||
|| || ✔ || || || ||
|-
|-
| align=center | [[SHRP]]
| align=center | [[SHRP]]
Line 522: Line 561:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || ✔ || ✔ || ✔
|| || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SIMP]]
| align=center | [[SIMP]]
|| Simple Object
|| Simple Object
|| Placeable
|| Entity
| align=center | 0x0B
| align=center | 0x0B
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SLID]]
| align=center | [[SLID]]
|| Slide Property
|| Slide Property
|| Object
|| Base
| align=center | 0x46
| align=center | 0x46
|| || || || ✔ ||
|| || || || ✔ || ||
|-
|-
| align=center | [[SND]]
| align=center | [[SND]]
Line 540: Line 579:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SNDI]]
| align=center | [[SNDI]]
Line 546: Line 585:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SNDS]]
| align=center | [[SNDS]]
Line 552: Line 591:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SPLN]]
| align=center | [[SPLN]]
|| Spline
|| Spline
|| Object
|| Base
| align=center | 0x49
| align=center | 0x49
|| || || ✔ || ✔ || ✔
|| || || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[SPLP]]
| align=center | [[SPLP]]
Line 564: Line 603:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || || || ✔ ||
|| || || || ✔ || ||
|-
|-
| align=center | [[SSET]]
| align=center | [[SSET]]
|| Scene Settings
|| Scene Settings
|| Object
|| Base
| align=center | 0x54
| align=center | 0x54
|| || || || ✔ ||
|| || || || ✔ || ||
|-
|-
| align=center | [[SUBT]]
| align=center | [[SUBT]]
|| Subtitles
|| Subtitles
|| Object
|| Base
| align=center | 0x00
| align=center | 0x00
|| || || || ✔ || ✔
|| || || || ✔ || ✔ ||
|-
|-
| align=center | [[SURF]]
| align=center | [[SURF]]
|| Surface
|| Surface
|| Object
|| Base
| align=center | 0x1A
| align=center | 0x1A
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[TEXS]]
| align=center | [[TEXS]]
Line 588: Line 627:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || || ✔ || ✔ || ✔
|| || || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[TEXT]]
| align=center | [[TEXT]]
Line 594: Line 633:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[TIMR]]
| align=center | [[TIMR]]
|| Timer
|| Timer
|| Object
|| Base
| align=center | 0x0E
| align=center | 0x0E
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[TPIK]]
| align=center | [[TPIK]]
|| Pickup Types
|| Pickup Types
|| Object
|| Base
| align=center | 0x00
| align=center | 0x00
|| || || || ✔ || ✔
|| || || || ✔ || ✔ ||
|-
|-
| align=center | [[TRIG]]
| align=center | [[TRIG]]
|| Trigger
|| Trigger
|| Placeable
|| Entity
| align=center | 0x01
| align=center | 0x01
|| ✔ || ✔ || ✔ || ✔ || ✔
|| ✔ || ✔ || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[TRWT]]
| align=center | [[TRWT]]
|| Throwables
|| Throwables
|| Object
|| Base
| align=center | 0x00
| align=center | 0x00
|| || || || ✔ || ✔
|| || || || ✔ || ✔ ||
|-
|-
| align=center | [[UI]]
| align=center | [[UI]]
|| UI
|| UI
|| Placeable
|| Entity
| align=center | 0x20
| align=center | 0x20
|| ✔ || ✔ || || ||
|| ✔ || ✔ || || || ||
|-
|-
| align=center | [[UIFT]]
| align=center | [[UIFT]]
|| UI Font
|| UI Font
|| Placeable
|| Entity
| align=center | 0x21
| align=center | 0x21
|| ✔ || ✔ || || ||
|| ✔ || ✔ || || || ||
|-
|-
| align=center | [[UIM]]
| align=center | [[UIM]]
|| UI Motion
|| UI Motion
|| Object
|| Base
| align=center | 0x53
| align=center | 0x53
|| || || ✔ || ✔ || ✔
|| || || ✔ || ✔ || ✔ ||
|-
|-
| align=center | [[VIL]]
| align=center | [[VIL]]
|| NPC
|| NPC
|| Placeable
|| Entity
| align=center | 0x2B
| align=center | 0x2B
|| || ✔ || || ✔ ||
|| || ✔ || || ✔ || ||
|-
|-
| align=center | [[VILP]]
| align=center | [[VILP]]
Line 648: Line 687:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || ✔ || || ||
|| || ✔ || || || ||
|-
|-
| align=center | [[VOLU]]
| align=center | [[VOLU]]
|| Volume
|| Volume
|| Object
|| Base
| align=center | 0x1D
| align=center | 0x1D
|| ✔ || || || || ✔
|| ✔ || || || || ✔ ||
|-
|-
| align=center | [[WIRE]]
| align=center | [[WIRE]]
Line 660: Line 699:
|| Binary
|| Binary
| align=center | -
| align=center | -
|| || || || ✔ || ✔
|| || || || ✔ || ✔ ||
|-
|-
| align=center | [[ZLIN]]
| align=center | [[ZLIN]]
|| Zip Line
|| Zip Line
|| Object
|| Base
| align=center | 0x40
| align=center | 0x40
|| || || || ✔ ||
|| || || || ✔ || ||
|}
|}