You've already forked Diddy-Kong-Racing
mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-03-10 11:36:09 -07:00
* Split out functions in unknown_070110, and do some documenting on them. Also fixes the scoring script to include UNUSED funcs * Match func_80021400 * Match unused func_800B3678 * Commit suggestions * Match func_80009AB4 * Fix breaking NON_EQUIVALENT builds when I changed the LevelHeader struct * I swear I fixed this before the last push, but oh well. Here's the proper fix * Match func_80007FA4 * Add suggestions for PR, and do a NON_EQUIVALENT but near match of func_8005F310 * Add offsets to the sound_ids, and set them up in some arrays that are a list of sounds to play. * Update a few variables to floats to match func_800699E4 * Fix NON_EQUIVALENT * Nearly match func_80011134 * Match func_8001B668 and do some more documenting * Match func_80069A40 * Do a NON_EQUIVALENT, possible NON_MATHCING match of func_8005CB680 * Do NON_MATCHING of func_8005C364 + update diff.py * WIP func_8005A6F0 * Remove unk8004F77C struct as it's just Object_Racer * Match func_8005A6F0 * Match func_8002263C * WIP func_8005B818 * WIP func_80011570 and match catmull_rom_interpolation * Match func_80011570 * Remove some extra function declarations from C files, and used the .h files instead. * Better matches for the catmull math funcs * Get obj_loop_effectbox a little closer to matching * Match obj_loop_goldenballoon * Fix some minor whitespace issues. Co-authored-by: Ryan Myers <foldor@gmail.com>
1493 lines
37 KiB
C
1493 lines
37 KiB
C
#ifndef _STRUCTS_H_
|
|
#define _STRUCTS_H_
|
|
|
|
/* Note: Structs are not complete, take them with a grain of salt. */
|
|
|
|
#include "types.h"
|
|
#include "enums.h"
|
|
|
|
// Stolen from PD
|
|
// This hacky structure allows coords to be accessed using
|
|
// coord->x, coord->y and coord->z, but also as
|
|
// coord->f[0], coord->f[1] and coord->f[2].
|
|
// In some places code only matches when using the float array.
|
|
typedef struct Vec3f {
|
|
union {
|
|
struct {
|
|
f32 x;
|
|
f32 y;
|
|
f32 z;
|
|
};
|
|
f32 f[3];
|
|
};
|
|
} Vec3f;
|
|
|
|
/* Size: 0x20 bytes */
|
|
typedef struct MenuElement {
|
|
// Element Position
|
|
/* 0x00 */ s16 left;
|
|
/* 0x02 */ s16 top;
|
|
/* 0x04 */ s16 center;
|
|
/* 0x06 */ s16 middle;
|
|
/* 0x08 */ s16 right;
|
|
/* 0x0A */ s16 bottom;
|
|
// Element Color/Transparency
|
|
/* 0x0C */ u8 filterRed;
|
|
/* 0x0D */ u8 filterGreen;
|
|
/* 0x0E */ u8 filterBlue;
|
|
/* 0x0F */ u8 filterAlpha; // 0 = no filter color, 0xFF = full color.
|
|
/* 0x10 */ u8 opacity;
|
|
// Element Properties
|
|
/* 0x11 */ u8 textFont;
|
|
/* 0x12 */ u8 textAlignFlags;
|
|
// Element Type
|
|
/* 0x13 */ u8 elementType; // Source type? 0 = ascii text, 2 = number, 7 = texture
|
|
union {
|
|
/* 0x14 */ void *element; // Generic pointer
|
|
/* 0x14 */ char *asciiText; // Pointer to ascii text to be displayed on the screen.
|
|
/* 0x14 */ u32 *texture; // Pointer to texture to be displayed on the screen.
|
|
/* 0x14 */ s32 *number; // Pointer to a number to be displayed on the screen.
|
|
/* 0x14 */ u16 *numberU16; // Pointer to a number to be displayed on the screen.
|
|
/* 0x14 */ s32 value; // Some value for elementType == 5
|
|
} unk14_a;
|
|
// Element Background Color/Transparency
|
|
/* 0x18 */ s16 backgroundRed;
|
|
/* 0x1A */ s16 backgroundGreen;
|
|
/* 0x1C */ s16 backgroundBlue;
|
|
/* 0x1E */ s16 backgroundAlpha; // 0x0000 = No background, 0x00FF = full background color.
|
|
} MenuElement;
|
|
|
|
#define TEX_FORMAT_RGBA32 0
|
|
#define TEX_FORMAT_RGBA16 1
|
|
#define TEX_FORMAT_I8 2
|
|
#define TEX_FORMAT_I4 3
|
|
#define TEX_FORMAT_IA16 4
|
|
#define TEX_FORMAT_IA8 5
|
|
#define TEX_FORMAT_IA4 6
|
|
#define TEX_FORMAT_CI4 7
|
|
#define TEX_FORMAT_CI8 8
|
|
|
|
/* Size: 0x20 bytes */
|
|
typedef struct TextureHeader {
|
|
/* 0x00 */ u8 width;
|
|
/* 0x01 */ u8 height;
|
|
/* 0x02 */ u8 format; // Lower 4 bits determines image format.
|
|
// 0 = RGBA32
|
|
// 1 = RGBA16
|
|
// 2 = I8
|
|
// 3 = I4
|
|
// 4 = IA16
|
|
// 5 = IA8
|
|
// 6 = IA4
|
|
// 7 = CI4 (16 colors)
|
|
// 8 = CI8 (64 colors)
|
|
/* 0x03 */ u8 unk3;
|
|
/* 0x04 */ u8 unk4;
|
|
/* 0x05 */ u8 numberOfInstances; // Always 1 in the ROM.
|
|
/* 0x06 */ s16 flags;
|
|
// 0x04 = Interlaced texture
|
|
// 0x40 = U clamp flag. 0 = Wrap, 1 = Clamp
|
|
// 0x80 = V clamp flag. 0 = Wrap, 1 = Clamp
|
|
/* 0x08 */ s16 ciPaletteOffset;
|
|
/* 0x0A */ s16 numberOfCommands; // initialized in RAM; Number of commands in the texture display list. (Usually 0x07)
|
|
/* 0x0C */ s32* cmd; // initialized in RAM; Pointer to texture display list.
|
|
/* 0x10 */ u8 unk10;
|
|
/* 0x11 */ u8 unk11;
|
|
/* 0x12 */ u16 numOfTextures; // For animated textures, static textures are just 0x01. Each texture has it's own header.
|
|
/* 0x14 */ u16 frameAdvanceDelay; // How many frames to delay before moving to the next texture.
|
|
/* 0x16 */ s16 textureSize; // Size in number of bytes, including the header
|
|
/* 0x18 */ u8 unk18;
|
|
/* 0x19 */ u8 unk19;
|
|
/* 0x1A */ u8 unk1A;
|
|
/* 0x1B */ u8 unk1B;
|
|
/* 0x1C */ u8 unk1C;
|
|
/* 0x1D */ u8 isCompressed;
|
|
/* 0x1E */ u8 unk1E;
|
|
/* 0x1F */ u8 unk1F;
|
|
} TextureHeader;
|
|
|
|
// Probably not unique to the boot menu.
|
|
typedef struct DrawTexture {
|
|
TextureHeader *texture; // Pointer to texture to draw.
|
|
s16 xOffset; // Offset from the center of the screen.
|
|
s16 yOffset; // Offset from the center of the screen.
|
|
} DrawTexture;
|
|
|
|
/* Size: 0x18 bytes */
|
|
typedef struct Racer {
|
|
/* 0x00 */ u32 trophy_points;
|
|
/* 0x04 */ s8 best_times;
|
|
/* 0x05 */ s8 character;
|
|
/* 0x06 */ s8 starting_position;
|
|
/* 0x07 */ s8 unk7;
|
|
/* 0x08 */ u16 placements[4];
|
|
/* 0x10 */ u16 course_time;
|
|
/* 0x12 */ u16 lap_times[3];
|
|
} Racer;
|
|
|
|
/* Unknown Size */
|
|
typedef struct Settings4C {
|
|
u8 unk0;
|
|
u8 unk1;
|
|
s8 unk2;
|
|
u8 pad3[0xC];
|
|
u8 unkF;
|
|
} Settings4C;
|
|
|
|
#define TAJ_FLAGS_CAR_CHAL_UNLOCKED 0x01
|
|
#define TAJ_FLAGS_HOVER_CHAL_UNLOCKED 0x02
|
|
#define TAJ_FLAGS_PLANE_CHAL_UNLOCKED 0x04
|
|
#define TAJ_FLAGS_UNLOCKED_A_CHALLENGE (TAJ_FLAGS_CAR_CHAL_UNLOCKED | TAJ_FLAGS_HOVER_CHAL_UNLOCKED | TAJ_FLAGS_PLANE_CHAL_UNLOCKED)
|
|
#define TAJ_FLAGS_CAR_CHAL_COMPLETED 0x08
|
|
#define TAJ_FLAGS_HOVER_CHAL_COMPLETED 0x10
|
|
#define TAJ_FLAGS_PLANE_CHAL_COMPLETED 0x20
|
|
|
|
/* Size: 0x118 bytes */
|
|
typedef struct Settings {
|
|
/* 0x0000 */ s16 *balloonsPtr;
|
|
/* 0x0004 */ s32 *courseFlagsPtr;
|
|
/* 0x0008 */ u16 keys;
|
|
/* 0x000A */ u16 unkA;
|
|
/* 0x000C */ u16 bosses;
|
|
/* 0x000E */ u16 trophies;
|
|
/* 0x0010 */ u32 cutsceneFlags;
|
|
/* Cutscene flags:
|
|
* 0x1 = Lighthouse rocket cutscene
|
|
* 0x2 = T.T. help prompt
|
|
* 0x4 = Adventure 2 flag?
|
|
* 0x8 = Dino domain boss cutscene
|
|
* 0x10 = Sherbet island boss cutscene
|
|
* 0x20 = Snowflake mountain boss cutscene
|
|
* 0x40 = Dragon forest boss cutscene
|
|
* 0x80 = Future Fun Land boss cutscene
|
|
* 0x100 = Dino domain boss cutscene 2
|
|
* 0x200 = Shertbet island boss cutscene 2
|
|
* 0x400 = Snowflake mountain boss cutscene 2
|
|
* 0x800 = Dragon forest boss cutscene 2
|
|
* 0x2000 = Wizpig face cutscene
|
|
* 0x4000 = Dino domain key cutscene
|
|
* 0x8000 = Sherbet Island key cutscene
|
|
* 0x10000 = Snowflake mountain key cutscene
|
|
* 0x20000 = Dragon forest key cutscene
|
|
*/
|
|
/* 0x0014 */ u16 tajFlags;
|
|
/* Taj flags:
|
|
* 0x1 = Car challenge unlocked
|
|
* 0x2 = Hover challenge unlocked
|
|
* 0x4 = Plane challenge unlocked
|
|
* 0x8 = Car challenge completed
|
|
* 0x10 = Hover challenge completed
|
|
* 0x20 = Plane challenge completed
|
|
*/
|
|
/* 0x0016 */ u8 ttAmulet;
|
|
/* 0x0017 */ u8 wizpigAmulet;
|
|
/* 0x0018 */ u16 *flapInitialsPtr[3];
|
|
/* 0x0024 */ u16 *flapTimesPtr[3];
|
|
/* 0x0030 */ u16 *courseInitialsPtr[3];
|
|
/* 0x003C */ u16 *courseTimesPtr[3];
|
|
/* 0x0048 */ u8 worldId;
|
|
/* 0x0049 */ u8 courseId;
|
|
/* 0x004A */ u8 gObjectCount;
|
|
/* 0x004B */ u8 newGame;
|
|
/* 0x004C */ Settings4C *unk4C;
|
|
/* 0x0050 */ u32 filename;
|
|
/* 0x0054 */ Racer racers[8];
|
|
/* 0x0114 */ u8 timeTrialRacer;
|
|
/* 0x0115 */ char unk115[2];
|
|
/* 0x0117 */ u8 display_times;
|
|
} Settings;
|
|
|
|
/* Unknown size */
|
|
typedef struct LevelHeader_70 {
|
|
u8 pad0[0x10];
|
|
/* 0x10 */ u8 red;
|
|
/* 0x11 */ u8 green;
|
|
/* 0x12 */ u8 blue;
|
|
/* 0x13 */ u8 alpha;
|
|
} LevelHeader_70;
|
|
|
|
// Used to update the pulsating lights in Spaceport Alpha
|
|
typedef struct PulsatingLightDataFrame {
|
|
u16 value;
|
|
u16 time;
|
|
} PulsatingLightDataFrame;
|
|
|
|
typedef struct PulsatingLightData {
|
|
u16 numberFrames;
|
|
u16 currentFrame;
|
|
u16 time;
|
|
u16 totalTime;
|
|
s32 outColorValue;
|
|
PulsatingLightDataFrame frames[1]; // Length varies based on numberFrames.
|
|
} PulsatingLightData;
|
|
|
|
/* Size: 0xC4 bytes */
|
|
typedef struct LevelHeader {
|
|
/* 0x00 */ u8 world;
|
|
/* 0x01 */ u8 unk1;
|
|
/* 0x02 */ s8 unk2;
|
|
/* 0x03 */ u8 unk3;
|
|
/* 0x04 */ s8 unk4[4];
|
|
/* 0x08 */ f32 course_height;
|
|
|
|
/* 0x0C */ u8 padC[0x14];
|
|
|
|
/* 0x20 */ s32 *unk20;
|
|
|
|
/* 0x24 */ u8 pad24[6];
|
|
/* 0x2A */ u8 unk2A;
|
|
/* 0x2B */ u8 pad2B[9];
|
|
|
|
/* 0x34 */ s16 geometry;
|
|
/* 0x36 */ s16 collectables; // Objects such as bananas, balloons, etc.
|
|
/* 0x38 */ s16 skybox;
|
|
|
|
// Fog related?
|
|
/* 0x3A */ s16 fogNear;
|
|
/* 0x3C */ s16 fogFar;
|
|
/* 0x3E */ s16 fogR;
|
|
/* 0x40 */ s16 fogG;
|
|
/* 0x42 */ s16 fogB;
|
|
|
|
/* 0x44 */ u8 unk44[0x5];
|
|
|
|
/* 0x49 */ s8 unk49;
|
|
/* 0x4A */ s8 playerIndex;
|
|
/* 0x4B */ s8 laps;
|
|
/* 0x4C */ s8 race_type;
|
|
/* 0x4D */ s8 vehicle;
|
|
/* 0x4E */ s8 available_vehicles;
|
|
|
|
/* 0x4F */ s8 unk4F[3];
|
|
|
|
/* 0x52 */ u8 music;
|
|
/* 0x53 */ u8 unk53;
|
|
/* 0x54 */ u16 instruments;
|
|
|
|
/* 0x56 */ u8 pad56[0x1A];
|
|
|
|
/* 0x70 */ LevelHeader_70 *unk70;
|
|
/* 0x74 */ s8 *unk74[7];
|
|
|
|
// Weather related?
|
|
/* 0x90 */ s16 weatherEnable;
|
|
/* 0x92 */ s16 weatherType;
|
|
/* 0x94 */ u8 weatherIntensity;
|
|
/* 0x95 */ u8 weatherOpacity;
|
|
/* 0x96 */ s16 weatherVelX;
|
|
/* 0x98 */ s16 weatherVelY;
|
|
/* 0x9A */ s16 weatherVelZ;
|
|
|
|
/* 0x9C */ s8 cameraFOV; // Must be a value within [0, 90]
|
|
/* 0x9D */ u8 bgColorRed;
|
|
/* 0x9E */ u8 bgColorGreen;
|
|
/* 0x9F */ u8 bgColorBlue;
|
|
/* 0xA0 */ s32 unkA0;
|
|
/* 0xA4 */ TextureHeader *unkA4;
|
|
/* 0xA8 */ u16 unkA8;
|
|
/* 0xAA */ u16 unkAA;
|
|
/* 0xAC */ PulsatingLightData *pulseLightData;
|
|
|
|
/* 0xB0 */ s16 unkB0;
|
|
/* 0xB2 */ u8 unkB2;
|
|
/* 0xB3 */ u8 voiceLimit;
|
|
/* 0xB4 */ u8 unkB4;
|
|
/* 0xB5 */ u8 unkB5;
|
|
/* 0xB6 */ u8 unkB6;
|
|
/* 0xB7 */ u8 unkB7;
|
|
/* 0xB8 */ s8 unkB8;
|
|
/* 0xB9 */ u8 unkB9;
|
|
/* 0xBA */ s16 unkBA;
|
|
/* 0xBC */ u8 unkBC;
|
|
/* 0xBD */ u8 unkBD;
|
|
/* 0xBE */ u8 unkBE;
|
|
/* 0xBF */ u8 unkBF;
|
|
/* 0xC0 */ u8 unkC0;
|
|
/* 0xC1 */ u8 unkC1;
|
|
/* 0xC2 */ u8 unkC2;
|
|
/* 0xC3 */ u8 unkC3;
|
|
} LevelHeader;
|
|
|
|
/* Size: 0x50 bytes */
|
|
typedef struct {
|
|
/* 0x00 */ u32 unk00;
|
|
/* 0x04 */ u32 unk04;
|
|
/* 0x08 */ u32 unk08;
|
|
/* 0x0C */ f32 unk0C;
|
|
/* 0x10 */ u32 unk10;
|
|
/* 0x14 */ u32 unk14;
|
|
/* 0x18 */ f32 unk18;
|
|
/* 0x1C */ u32 unk1C;
|
|
/* 0x20 */ u32 unk20;
|
|
/* 0x24 */ u32 unk24;
|
|
/* 0x28 */ u32 unk28;
|
|
/* 0x2C */ u32 unk2C;
|
|
/* 0x30 */ u32 unk30;
|
|
/* 0x34 */ u32 unk34;
|
|
/* 0x38 */ u32 unk38;
|
|
/* 0x3C */ u32 unk3C;
|
|
/* 0x40 */ f32 unk40;
|
|
/* 0x44 */ f32 unk44;
|
|
/* 0x48 */ f32 unk48;
|
|
/* 0x4C */ u32 unk4C;
|
|
} dkr_wave_t;
|
|
|
|
/* Size: 8 bytes */
|
|
typedef struct TextureInfo {
|
|
/* 0x00 */ TextureHeader *texture;
|
|
/* 0x04 */ u8 width;
|
|
/* 0x05 */ u8 height;
|
|
/* 0x06 */ u8 format;
|
|
/* 0x07 */ u8 unk7;
|
|
} TextureInfo;
|
|
|
|
/* Size: 10 bytes */
|
|
typedef struct Vertex {
|
|
/* 0x00 */ s16 x;
|
|
/* 0x02 */ s16 y;
|
|
/* 0x04 */ s16 z;
|
|
/* 0x06 */ u8 r;
|
|
/* 0x07 */ u8 g;
|
|
/* 0x08 */ u8 b;
|
|
/* 0x09 */ u8 a;
|
|
} Vertex;
|
|
|
|
/* Size: 4 bytes */
|
|
typedef struct TexCoords {
|
|
s16 u, v;
|
|
} TexCoords;
|
|
|
|
/* Size: 16 bytes */
|
|
typedef struct Triangle {
|
|
union {
|
|
struct {
|
|
/* 0x00 */ u8 drawBackface; // 0x40 = Draw backface, 0x00 = Cull backface
|
|
/* 0x01 */ u8 vi0; // First vertex index
|
|
/* 0x02 */ u8 vi1; // Second vertex index
|
|
/* 0x03 */ u8 vi2; // Third vertex index
|
|
};
|
|
/* 0x00 */ u32 vertices; // For convenience?
|
|
};
|
|
/* 0x04 */ TexCoords uv0; // Texture coordinates for the first vertex
|
|
/* 0x08 */ TexCoords uv1; // Texture coordinates for the second vertex
|
|
/* 0x0C */ TexCoords uv2; // Texture coordinates for the third vertex
|
|
} Triangle;
|
|
|
|
/* Size: 12 bytes */
|
|
typedef struct TriangleBatchInfo {
|
|
/* 0x00 */ u8 textureIndex; // 0xFF = No texture
|
|
/* 0x02 */ s16 verticesOffset;
|
|
/* 0x04 */ s16 facesOffset;
|
|
/* 0x06 */ u8 unk6; // 0xFF = vertex colors, otherwise use dynamic lighting normals (Objects only)
|
|
/* 0x07 */ u8 unk7;
|
|
/* 0x08 */ u32 flags;
|
|
// 0x00000002 = ???
|
|
// 0x00000008 = ???
|
|
// 0x00000010 = Depth write
|
|
// 0x00000100 = Hidden/Invisible geometry
|
|
// 0x00000200 = ??? Used in func_80060AC8
|
|
// 0x00000800 = ???
|
|
// 0x00002000 = ???
|
|
// 0x00008000 = Environment mapping
|
|
// 0x00010000 = Texture is animated
|
|
// 0x00040000 = Has pulsating light data.
|
|
// 0x70000000 = bits 28, 29, & 30 are some kind of index. Not used in any levels.
|
|
} TriangleBatchInfo;
|
|
|
|
/* Size: 8 bytes */
|
|
typedef struct ObjectModel_44 {
|
|
/* 0x00 */ s32 *anim;
|
|
/* 0x04 */ s32 unk4; // Number of frames in animation?
|
|
} ObjectModel_44;
|
|
|
|
typedef struct ObjectModel {
|
|
/* 0x00 */ TextureInfo *textures;
|
|
/* 0x04 */ Vertex *vertices;
|
|
/* 0x08 */ Triangle *triangles;
|
|
/* 0x0C */ s32 *unkC;
|
|
/* 0x10 */ s32 *unk10;
|
|
u8 pad0[0x0E];
|
|
/* 0x22 */ s16 numberOfTextures;
|
|
/* 0x24 */ s16 numberOfVertices;
|
|
/* 0x26 */ s16 numberOfTriangles;
|
|
/* 0x28 */ s16 numberOfBatches;
|
|
u8 pad2A[4];
|
|
/* 0x2E */ u8 unk2E;
|
|
/* 0x30 */ s16 unk30;
|
|
u8 pad32[6];
|
|
/* 0x38 */ TriangleBatchInfo *batches;
|
|
/* 0x3C */ u8 pad3C[4];
|
|
/* 0x40 */ s32 *unk40;
|
|
/* 0x44 */ ObjectModel_44 *animations;
|
|
/* 0x48 */ s16 numberOfAnimations;
|
|
/* 0x4A */ u8 pad4A[6];
|
|
/* 0x50 */ s16 unk50;
|
|
} ObjectModel;
|
|
|
|
/* Size: 0x44 bytes */
|
|
typedef struct LevelModelSegment {
|
|
/* 0x00 */ Vertex *vertices;
|
|
/* 0x04 */ Triangle *triangles;
|
|
/* 0x08 */ s32 unk8;
|
|
/* 0x0C */ TriangleBatchInfo *batches;
|
|
/* 0x10 */ s32 unk10;
|
|
/* 0x14 */ u8 *unk14;
|
|
/* 0x18 */ s16 *unk18;
|
|
/* 0x1C */ s16 numberOfVertices;
|
|
/* 0x1E */ s16 numberOfTriangles;
|
|
/* 0x20 */ s16 numberOfBatches;
|
|
u8 pad22[0x09];
|
|
/* 0x2B */ s8 unk2B;
|
|
u8 pad2C[4];
|
|
/* 0x30 */ s16 unk30;
|
|
/* 0x32 */ s16 unk32;
|
|
s16 *unk34;
|
|
/* 0x38 */ s16 unk38;
|
|
u8 pad3A[6];
|
|
/* 0x40 */ u8 unk40;
|
|
u8 pad41[0x3];
|
|
} LevelModelSegment;
|
|
|
|
typedef struct LevelModelSegmentBoundingBox {
|
|
/* 0x00 */ s16 x1;
|
|
/* 0x02 */ s16 y1;
|
|
/* 0x04 */ s16 z1;
|
|
/* 0x06 */ s16 x2;
|
|
/* 0x08 */ s16 y2;
|
|
/* 0x0A */ s16 z2;
|
|
} LevelModelSegmentBoundingBox;
|
|
|
|
/* Size: 8 bytes */
|
|
typedef struct BspTreeNode {
|
|
s16 leftNode; // less than split value
|
|
s16 rightNode; // greater or equal to split value?
|
|
u8 splitType; // 0 = Camera X, 1 = Camera Y, 2 = Camera Z
|
|
u8 segmentIndex;
|
|
s16 splitValue; // Decides left or right
|
|
} BspTreeNode;
|
|
|
|
typedef struct LevelModel {
|
|
/* 0x00 */ TextureInfo *textures;
|
|
/* 0x04 */ LevelModelSegment *segments;
|
|
/* 0x08 */ LevelModelSegmentBoundingBox *segmentsBoundingBoxes;
|
|
/* 0x0C */ s32 unkC;
|
|
/* 0x10 */ u8 *segmentsBitfields;
|
|
/* 0x14 */ BspTreeNode *segmentsBspTree;
|
|
/* 0x18 */ s16 numberOfTextures;
|
|
/* 0x1A */ s16 numberOfSegments;
|
|
u8 pad1C[4];
|
|
/* 0x20 */ s32 unk20; //spriteIndex?
|
|
u8 pad24[0x14];
|
|
/* 0x38 */ u32 minimapColor;
|
|
/* 0x3C */ s16 unk3C;
|
|
/* 0x3E */ s16 unk3E;
|
|
/* 0x40 */ s16 unk40;
|
|
/* 0x42 */ s16 unk42;
|
|
/* 0x44 */ s16 unk44;
|
|
/* 0x46 */ s16 unk46;
|
|
/* 0x48 */ s32 modelSize;
|
|
} LevelModel;
|
|
|
|
typedef struct Object_3C {
|
|
u8 pad0[0x2];
|
|
s16 unk2;
|
|
s16 unk4;
|
|
s16 unk6;
|
|
s8 unk8;
|
|
u8 pad9[0x4];
|
|
u8 unkD;
|
|
} Object_3C;
|
|
|
|
typedef enum {
|
|
OBJECT_MODEL_TYPE_3D_MODEL,
|
|
OBJECT_MODEL_TYPE_SPRITE_BILLBOARD,
|
|
OBJECT_MODEL_TYPE_VEHICLE_PART,
|
|
OBJECT_MODEL_TYPE_UNKNOWN3,
|
|
OBJECT_MODEL_TYPE_UNKNOWN4
|
|
} ObjectModelType;
|
|
|
|
typedef struct ObjHeaderParticleEntry {
|
|
/* 0x00 */ s32 upper;
|
|
/* 0x04 */ s32 lower;
|
|
} ObjHeaderParticleEntry;
|
|
|
|
// Size: 0x18 bytes
|
|
typedef struct ObjectHeader24 {
|
|
u8 pad0[0x18];
|
|
} ObjectHeader24;
|
|
|
|
typedef struct ObjectHeader {
|
|
u8 pad0[0x4];
|
|
/* 0x04 */ f32 unk4;
|
|
/* 0x08 */ f32 unk8;
|
|
/* 0x0C */ f32 scale;
|
|
/* 0x10 */ s32 *modelIds;
|
|
/* 0x14 */ s32 *vehiclePartIds;
|
|
/* 0x18 */ s8 *vehiclePartIndices;
|
|
/* 0x1C */ ObjHeaderParticleEntry *objectParticles;
|
|
s32 pad20;
|
|
/* 0x24 */ ObjectHeader24 *unk24;
|
|
u8 pad28[8];
|
|
/* 0x30 */ u16 unk30;
|
|
/* 0x32 */ s16 unk32;
|
|
u8 pad34[9];
|
|
/* 0x3D */ u8 unk3D;
|
|
u8 pad3E[16];
|
|
s16 unk4E; //Used in func_8002A900?
|
|
u8 pad50[3];
|
|
/* 0x53 */ s8 modelType;
|
|
/* 0x54 */ s8 behaviorId;
|
|
/* 0x55 */ s8 numberOfModelIds; // size of array pointed by Object->unk68
|
|
u8 pad56;
|
|
/* 0x57 */ s8 unk57;
|
|
s8 unk58;
|
|
u8 pad59;
|
|
/* 0x5A */ s8 unk5A;
|
|
u8 pad5B[0x2];
|
|
/* 0x5D */ u8 unk5D; //Misc Asset index?
|
|
/* 0x5E */ u8 pad5E[0x2];
|
|
/* 0x60 */ char internalName[16];
|
|
/* 0x70 */ u8 unk70;
|
|
/* 0x71 */ u8 unk71;
|
|
u8 pad72[0x6];
|
|
} ObjectHeader;
|
|
|
|
typedef struct Object_44_0 {
|
|
u8 unk0;
|
|
u8 unk1;
|
|
} Object_44_0;
|
|
|
|
typedef struct Object_44_C {
|
|
u8 pad0[0x4];
|
|
s16 unk4;
|
|
s16 unk6;
|
|
s16 unk8;
|
|
s16 unkA;
|
|
s16 unkC;
|
|
s16 unkE;
|
|
u8 pad10[0x6];
|
|
s16 unk16;
|
|
s16 unk18;
|
|
s16 unk1A;
|
|
s16 unk1C;
|
|
} Object_44_C;
|
|
|
|
typedef struct Object_44 {
|
|
Object_44_0 *unk0;
|
|
u8 pad4[8];
|
|
Object_44_C *unkC;
|
|
} Object_44;
|
|
|
|
typedef struct Object_4C {
|
|
void *unk0;
|
|
f32 x_position;
|
|
f32 y_position;
|
|
f32 z_position;
|
|
u8 unk10;
|
|
u8 unk11;
|
|
u8 unk12;
|
|
u8 unk13;
|
|
s16 unk14;
|
|
s8 unk16;
|
|
s8 unk17;
|
|
} Object_4C;
|
|
|
|
typedef struct Object_50 {
|
|
f32 unk0;
|
|
u8 pad4[0x4];
|
|
s16 unk8;
|
|
s16 unkA;
|
|
} Object_50;
|
|
|
|
typedef struct Object_54 {
|
|
s32 unk0;
|
|
u8 unk4;
|
|
u8 unk5;
|
|
u8 unk6;
|
|
u8 unk7;
|
|
s16 unk8;
|
|
s16 unkA;
|
|
s16 unkC;
|
|
u8 unkE;
|
|
u8 unkF;
|
|
u8 unk10;
|
|
u8 unk11;
|
|
s16 unk12;
|
|
s16 unk14;
|
|
s16 unk16;
|
|
} Object_54;
|
|
|
|
typedef struct Object_5C {
|
|
u8 pad0[0x100];
|
|
void *unk100;
|
|
} Object_5C;
|
|
|
|
typedef struct Object_60 {
|
|
s32 unk0;
|
|
void *unk4; // Object* pointer
|
|
} Object_60;
|
|
|
|
struct Object;
|
|
|
|
typedef struct Object_LaserGun {
|
|
/* 0x00 */ u8 pad0[0xC];
|
|
/* 0x0C */ s16 unkC;
|
|
/* 0x0E */ u8 unkE;
|
|
/* 0x0F */ s8 unkF;
|
|
/* 0x10 */ u8 unk10;
|
|
/* 0x11 */ u8 unk11;
|
|
} Object_LaserGun;
|
|
|
|
typedef struct Object_Laser {
|
|
/* 0x000 */ s16 unk0;
|
|
/* 0x004 */ u8 unk4[0x185];
|
|
/* 0x187 */ s8 unk187;
|
|
} Object_Laser;
|
|
|
|
typedef struct Object_TrophyCabinet {
|
|
/* 0x0 */ s32 unk0;
|
|
/* 0x4 */ s16 unk4;
|
|
} Object_TrophyCabinet;
|
|
|
|
typedef struct Object_Animator {
|
|
/* 0x00 */ s16 segmentId;
|
|
/* 0x02 */ s16 batchId;
|
|
/* 0x04 */ s16 xSpeedFactor;
|
|
/* 0x06 */ s16 ySpeedFactor;
|
|
/* 0x08 */ s16 xSpeed;
|
|
/* 0x0A */ s16 ySpeed;
|
|
} Object_Animator;
|
|
|
|
typedef struct Object_Animation {
|
|
/* 0x00 */ u8 pad0[0x4A];
|
|
/* 0x4A */ s16 unk4A;
|
|
} Object_Animation;
|
|
|
|
typedef struct Object_WeaponBalloon {
|
|
/* 0x0 */ f32 unk0;
|
|
/* 0x4 */ s16 unk4;
|
|
/* 0x6 */ s8 unk6[0x2];
|
|
} Object_WeaponBalloon;
|
|
|
|
typedef struct Object_Weapon {
|
|
/* 0x00 */ u8 pad0[0x18];
|
|
/* 0x18 */ u8 unk18;
|
|
} Object_Weapon;
|
|
|
|
typedef struct Object_Butterfly {
|
|
/* 0x000 */ Triangle triangles[8];
|
|
/* 0x080 */ Vertex vertices[12];
|
|
/* 0x0F8 */ TextureHeader *texture;
|
|
/* 0x0FC */ u8 unkFC;
|
|
/* 0x0FD */ u8 unkFD;
|
|
/* 0x0FE */ u8 unkFE;
|
|
/* 0x0FF */ u8 unkFF;
|
|
/* 0x100 */ s32 unk100;
|
|
/* 0x104 */ s16 unk104;
|
|
/* 0x106 */ s16 unk106;
|
|
/* 0x108 */ f32 unk108;
|
|
} Object_Butterfly;
|
|
|
|
typedef struct Object_EffectBox {
|
|
/* 0x000 */ u8 pad0[0x1FE];
|
|
/* 0x1FE */ u8 unk1FE;
|
|
/* 0x1FF */ u8 unk1FF;
|
|
} Object_EffectBox;
|
|
|
|
typedef struct Object_EggCreator {
|
|
/* 0x0 */ u8 pad0[4];
|
|
/* 0x4 */ struct Object *unk4;
|
|
} Object_EggCreator;
|
|
|
|
typedef struct Object_UnkId58 {
|
|
/* 0x000 */ u8 pad0[0x1D6];
|
|
/* 0x1D6 */ s8 unk1D6;
|
|
} Object_UnkId58;
|
|
|
|
typedef struct Object_CharacterFlag {
|
|
/* 0x00 */ s32 unk0;
|
|
/* 0x04 */ s32 unk4;
|
|
/* 0x08 */ s32 unk8;
|
|
/* 0x0C */ s32 unkC;
|
|
/* 0x10 */ s32 unk10;
|
|
/* 0x14 */ s32 unk14;
|
|
/* 0x18 */ s32 unk18;
|
|
/* 0x1C */ s32 unk1C;
|
|
/* 0x20 */ s16 *unk20;
|
|
/* 0x24 */ u8 *unk24;
|
|
} Object_CharacterFlag;
|
|
|
|
typedef struct Object_Snowball {
|
|
/* 0x00 */ u8 pad0[0x20];
|
|
/* 0x20 */ u32 soundMask;
|
|
/* 0x24 */ s16 unk24;
|
|
/* 0x28 */ u8 pad28[0x12];
|
|
/* 0x38 */ s8 unk38;
|
|
} Object_Snowball;
|
|
|
|
typedef struct Object_AnimCamera {
|
|
/* 0x00 */ u8 pad0[0x30];
|
|
/* 0x30 */ s8 unk30;
|
|
/* 0x31 */ u8 pad31[0x13];
|
|
/* 0x44 */ s8 unk44;
|
|
} Object_AnimCamera;
|
|
|
|
typedef struct Object_AnimCar {
|
|
/* 0x000 */ u8 pad0[0x148];
|
|
/* 0x148 */ struct Object *unk148;
|
|
} Object_AnimCar;
|
|
|
|
typedef struct Object_InfoPoint {
|
|
/* 0x0 */ s16 unk0;
|
|
} Object_InfoPoint;
|
|
|
|
typedef struct Object_TTDoor {
|
|
/* 0x00 */ f32 unk0;
|
|
/* 0x04 */ u8 pad4[4];
|
|
/* 0x08 */ s32 unk8;
|
|
/* 0x0C */ u8 padC[3];
|
|
/* 0x0F */ s8 unkF;
|
|
/* 0x10 */ u8 pad10[2];
|
|
/* 0x12 */ u8 unk12;
|
|
/* 0x13 */ u8 unk13;
|
|
} Object_TTDoor;
|
|
|
|
typedef struct Object_WorldKey {
|
|
/* 0x0 */ s16 unk0;
|
|
} Object_WorldKey;
|
|
|
|
typedef struct Object_AudioLine {
|
|
/* 0x00 */ u8 unk0;
|
|
/* 0x01 */ u8 pad1;
|
|
/* 0x02 */ u16 unk2;
|
|
/* 0x04 */ u16 unk4;
|
|
/* 0x06 */ u16 unk6;
|
|
/* 0x08 */ union {
|
|
struct {
|
|
u8 unk8;
|
|
u8 unk9;
|
|
u8 unkA;
|
|
u8 padB;
|
|
} unk_struct;
|
|
s32 unk8_word;
|
|
} unk_union;
|
|
/* 0x0C */ u8 unkC;
|
|
/* 0x0D */ u8 unkD;
|
|
/* 0x0E */ u8 unkE;
|
|
/* 0x0F */ u8 unkF;
|
|
/* 0x10 */ u8 unk10;
|
|
/* 0x11 */ u8 unk11;
|
|
/* 0x12 */ u8 unk12;
|
|
} Object_AudioLine;
|
|
|
|
typedef struct Object_AudioReverb {
|
|
/* 0x0 */ u16 pad0;
|
|
/* 0x2 */ s16 unk2;
|
|
/* 0x4 */ u8 unk4;
|
|
/* 0x5 */ u8 unk5;
|
|
} Object_AudioReverb;
|
|
|
|
typedef struct Object_TexScroll {
|
|
/* 0x0 */ s16 unk0;
|
|
/* 0x2 */ s16 pad2;
|
|
/* 0x4 */ s16 unk4;
|
|
/* 0x6 */ s16 unk6;
|
|
/* 0x8 */ s16 unk8;
|
|
/* 0xA */ s16 unkA;
|
|
} Object_TexScroll;
|
|
|
|
typedef struct Object_Frog {
|
|
/* 0x00 */ f32 unk0;
|
|
/* 0x04 */ f32 unk4;
|
|
/* 0x08 */ f32 unk8;
|
|
/* 0x0C */ f32 unkC;
|
|
/* 0x10 */ f32 unk10;
|
|
/* 0x14 */ u8 unk14;
|
|
/* 0x15 */ u8 unk15;
|
|
/* 0x16 */ u8 pad16[3];
|
|
/* 0x19 */ u8 unk19;
|
|
/* 0x1A */ u8 pad1A[6];
|
|
/* 0x20 */ f32 unk20;
|
|
/* 0x24 */ f32 unk24;
|
|
/* 0x28 */ u8 pad28[8];
|
|
/* 0x30 */ f32 unk30;
|
|
} Object_Frog;
|
|
|
|
typedef struct Object_Wizpig2 {
|
|
/* 0x00 */ u8 pad0[0x70];
|
|
/* 0x70 */ u8 unk70;
|
|
/* 0x71 */ u8 pad71;
|
|
/* 0x72 */ u8 unk72;
|
|
/* 0x73 */ u8 pad73;
|
|
/* 0x74 */ f32 unk74;
|
|
} Object_Wizpig2;
|
|
|
|
typedef struct Object_Exit {
|
|
/* 0x00 */ f32 unk0;
|
|
/* 0x04 */ f32 unk4;
|
|
/* 0x08 */ f32 unk8;
|
|
/* 0x0C */ f32 unkC;
|
|
/* 0x10 */ s32 unk10;
|
|
/* 0x14 */ s8 unk14;
|
|
} Object_Exit;
|
|
|
|
/* Size: 0x224 - 548 bytes */
|
|
typedef struct Object_Racer {
|
|
/* 0x000 */ s16 playerIndex; // -1 = AI Controlled, 0 to 3 = Object controlled
|
|
/* 0x002 */ u8 unk2;
|
|
/* 0x003 */ s8 characterId; // Affects minimap color, horn, voice, etc.
|
|
/* 0x004 */ s32 unk4;
|
|
/* 0x008 */ f32 forwardVel;
|
|
/* 0x00C */ f32 unkC;
|
|
/* 0x010 */ s32 unk10;
|
|
/* 0x014 */ s32 unk14;
|
|
/* 0x018 */ s32 unk18;
|
|
/* 0x01C */ s32 unk1C;
|
|
/* 0x020 */ s32 unk20;
|
|
/* 0x024 */ s32 soundMask;
|
|
/* 0x028 */ u16 lastSoundID;
|
|
/* 0x02A */ u16 unk2A;
|
|
/* 0x02C */ f32 velocity;
|
|
/* 0x030 */ f32 lateral_velocity;
|
|
/* 0x034 */ s32 unk34; // I think this is the engine pitch for the hovercraft and plane, but I cannot yet confirm.
|
|
/* 0x038 */ f32 ox1;
|
|
/* 0x03C */ f32 oy1;
|
|
/* 0x040 */ f32 oz1;
|
|
/* 0x044 */ f32 ox2;
|
|
/* 0x048 */ f32 oy2;
|
|
/* 0x04C */ f32 oz2;
|
|
/* 0x050 */ f32 ox3;
|
|
/* 0x054 */ f32 oy3;
|
|
/* 0x058 */ f32 oz3;
|
|
/* 0x05C */ f32 prev_x_position;
|
|
/* 0x060 */ f32 prev_y_position;
|
|
/* 0x064 */ f32 prev_z_position;
|
|
/* 0x068 */ f32 unk68; // xPos
|
|
/* 0x06C */ f32 unk6C; // yPos
|
|
/* 0x070 */ f32 unk70; // zPos
|
|
/* 0x074 */ f32 unk74;
|
|
/* 0x078 */ f32 carBobX;
|
|
/* 0x07C */ f32 carBobY;
|
|
/* 0x080 */ f32 carBobZ;
|
|
/* 0x084 */ f32 unk84;
|
|
/* 0x088 */ f32 unk88;
|
|
/* 0x08C */ f32 stretch_height;
|
|
/* 0x090 */ f32 stretch_height_cap;
|
|
/* 0x094 */ f32 camera_zoom;
|
|
/* 0x098 */ f32 unk98; // Can only guess this is yaw.
|
|
/* 0x09C */ f32 pitch;
|
|
/* 0x0A0 */ f32 unkA0; // might be roll
|
|
/* 0x0A4 */ f32 unkA4;
|
|
/* 0x0A8 */ f32 checkpoint_distance;
|
|
/* 0x0AC */ f32 unkAC;
|
|
/* 0x0B0 */ f32 unkB0;
|
|
/* 0x0B4 */ f32 throttle;
|
|
/* 0x0B8 */ f32 brake;
|
|
/* 0x0BC */ f32 unkBC;
|
|
/* 0x0C0 */ f32 buoyancy;
|
|
/* 0x0C4 */ f32 unkC4;
|
|
/* 0x0C8 */ f32 unkC8;
|
|
/* 0x0CC */ f32 unkCC;
|
|
/* 0x0D0 */ f32 unkD0;
|
|
/* 0x0D4 */ s32 unkD4;
|
|
/* 0x0D8 */ Vec3f unkD8;
|
|
/* 0x0E4 */ Vec3f unkE4;
|
|
/* 0x0F0 */ Vec3f unkF0;
|
|
/* 0x0FC */ Vec3f unkFC;
|
|
/* 0x108 */ struct Object *unk108;
|
|
/* 0x10C */ s32 unk10C;
|
|
/* 0x110 */ s32 unk110;
|
|
/* 0x114 */ s32 unk114;
|
|
/* 0x118 */ s32 unk118;
|
|
/* 0x11C */ f32 unk11C;
|
|
/* 0x120 */ f32 unk120;
|
|
/* 0x124 */ f32 unk124;
|
|
/* 0x128 */ s32 lap_times[3];
|
|
/* 0x134 */ s32 unk134;
|
|
/* 0x138 */ s32 unk138;
|
|
/* 0x13C */ s32 unk13C;
|
|
/* 0x140 */ struct Object *unk140;
|
|
/* 0x144 */ struct Object *held_obj;
|
|
/* 0x148 */ struct Object *unk148;
|
|
/* 0x14C */ struct Object *unk14C;
|
|
/* 0x150 */ struct Object *unk150;
|
|
/* 0x154 */ struct Object *unk154;
|
|
/* 0x158 */ struct Object *unk158;
|
|
/* 0x15C */ struct Object *unk15C;
|
|
/* 0x160 */ s16 y_rotation_offset;
|
|
/* 0x162 */ s16 x_rotation_offset;
|
|
/* 0x164 */ s16 z_rotation_offset;
|
|
/* 0x166 */ s16 unk166; // I don't know exactly what these are, but this one in particular seems to cause a Y position offset.
|
|
/* 0x168 */ s16 unk168;
|
|
/* 0x16A */ s16 unk16A;
|
|
/* 0x166 */ s16 unk16C; // As for these, they seem to affect the turning direction of the racer's head.
|
|
/* 0x16E */ s16 unk16E;
|
|
/* 0x170 */ s16 unk170;
|
|
/* 0x172 */ s8 balloon_type;
|
|
/* 0x173 */ s8 balloon_quantity;
|
|
/* 0x174 */ s8 balloon_level;
|
|
/* 0x175 */ s8 unk175;
|
|
/* 0x176 */ s16 unk176;
|
|
/* 0x178 */ u8 *unk178;
|
|
/* 0x17C */ s32 shieldSoundMask;
|
|
/* 0x180 */ s32 unk180; // Soundmask for banana pickup, whether that's the only use I do not yet know.
|
|
/* 0x184 */ s8 unk184;
|
|
/* 0x185 */ s8 bananas;
|
|
/* 0x186 */ u8 unk186;
|
|
/* 0x187 */ s8 attackType;
|
|
/* 0x188 */ s8 unk188;
|
|
/* 0x189 */ s8 shieldType;
|
|
/* 0x18A */ s16 unk18A;
|
|
/* 0x18C */ s16 unk18C;
|
|
/* 0x18E */ s16 shieldTimer;
|
|
/* 0x190 */ s16 unk190;
|
|
/* 0x192 */ s8 unk192;
|
|
/* 0x193 */ s8 unk193;
|
|
/* 0x194 */ s8 unk194;
|
|
/* 0x195 */ s8 unk195;
|
|
/* 0x196 */ s16 unk196;
|
|
/* 0x198 */ s32 unk198;
|
|
/* 0x19C */ s16 unk19C;
|
|
/* 0x19E */ s16 unk19E;
|
|
/* 0x1A0 */ s16 unk1A0;
|
|
/* 0x1A2 */ s16 y_rotation_vel;
|
|
/* 0x1A4 */ s16 x_rotation_vel;
|
|
/* 0x1A6 */ s16 z_rotation_vel;
|
|
/* 0x1A8 */ s16 unk1A8;
|
|
/* 0x1AA */ u16 unk1AA;
|
|
/* 0x1AC */ s16 unk1AC;
|
|
/* 0x1AE */ s16 unk1AE;
|
|
/* 0x1B0 */ s16 unk1B0;
|
|
/* 0x1B2 */ s16 unk1B2;
|
|
/* 0x1B4 */ s32 unk1B4;
|
|
/* 0x1B8 */ s16 unk1B8;
|
|
/* 0x1BA */ s16 unk1BA;
|
|
/* 0x1BC */ s16 unk1BC;
|
|
/* 0x1BE */ s16 unk1BE;
|
|
/* 0x1C0 */ s16 unk1C0;
|
|
/* 0x1C2 */ s16 unk1C2;
|
|
/* 0x1C4 */ s16 unk1C4;
|
|
/* 0x1C6 */ s16 unk1C6;
|
|
/* 0x1C8 */ u8 unk1C8;
|
|
/* 0x1C9 */ u8 unk1C9;
|
|
/* 0x1CA */ s8 unk1CA;
|
|
/* 0x1CB */ u8 unk1CB;
|
|
/* 0x1CC */ s8 aiSkill;
|
|
/* 0x1CD */ u8 unk1CD;
|
|
/* 0x1CE */ u8 unk1CE;
|
|
/* 0x1CF */ s8 unk1CF;
|
|
/* 0x1D0 */ s8 spectateCamID;
|
|
/* 0x1D1 */ s8 unk1D1;
|
|
/* 0x1D2 */ s8 unk1D2;
|
|
/* 0x1D3 */ s8 boostTimer;
|
|
/* 0x1D4 */ u8 unk1D4;
|
|
/* 0x1D5 */ u8 unk1D5;
|
|
/* 0x1D6 */ s8 unk1D6;
|
|
/* 0x1D7 */ s8 unk1D7;
|
|
/* 0x1D8 */ s8 raceStatus;
|
|
/* 0x1D9 */ s8 unk1D9;
|
|
/* 0x1DA */ u8 unk1DA;
|
|
/* 0x1DB */ s8 spinout_timer;
|
|
/* 0x1DC */ u8 wheel_surfaces[4];
|
|
/* 0x1E0 */ s8 unk1E0;
|
|
/* 0x1E1 */ s8 steerAngle;
|
|
/* 0x1E2 */ s8 unk1E2;
|
|
/* 0x1E3 */ s8 unk1E3;
|
|
/* 0x1E4 */ s8 unk1E4;
|
|
/* 0x1E5 */ s8 unk1E5;
|
|
/* 0x1E6 */ s8 drift_direction;
|
|
/* 0x1E7 */ s8 unk1E7;
|
|
/* 0x1E8 */ s8 unk1E8;
|
|
/* 0x1E9 */ s8 unk1E9;
|
|
/* 0x1EA */ s8 unk1EA;
|
|
/* 0x1EB */ s8 unk1EB;
|
|
/* 0x1EC */ s8 unk1EC;
|
|
/* 0x1ED */ s8 squish_timer;
|
|
/* 0x1EE */ u8 unk1EE;
|
|
/* 0x1EF */ u8 boost_sound;
|
|
/* 0x1F0 */ u8 unk1F0;
|
|
/* 0x1F1 */ u8 unk1F1;
|
|
/* 0x1F2 */ u8 unk1F2;
|
|
/* 0x1F3 */ u8 unk1F3;
|
|
/* 0x1F4 */ u8 startInput;
|
|
/* 0x1F5 */ u8 unk1F5;
|
|
/* 0x1F6 */ s8 unk1F6;
|
|
/* 0x1F7 */ u8 transparency;
|
|
/* 0x290 */ u8 indicator_type;
|
|
/* 0x291 */ s8 indicator_timer;
|
|
/* 0x1FA */ s8 unk1FA;
|
|
/* 0x1FB */ s8 unk1FB;
|
|
/* 0x1FC */ u8 unk1FC;
|
|
/* 0x1FD */ u8 unk1FD;
|
|
/* 0x1FE */ u8 unk1FE;
|
|
/* 0x1FF */ u8 unk1FF;
|
|
/* 0x200 */ s8 transitionTimer;
|
|
/* 0x201 */ s8 unk201;
|
|
/* 0x202 */ s8 unk202;
|
|
/* 0x203 */ s8 boostType;
|
|
/* 0x204 */ s16 unk204;
|
|
/* 0x206 */ s16 unk206;
|
|
/* 0x208 */ s16 unk208;
|
|
/* 0x20A */ u8 unk20A;
|
|
/* 0x20B */ s8 unk20B;
|
|
/* 0x20C */ u8 throttleReleased;
|
|
/* 0x20D */ u8 unk20D;
|
|
/* 0x20E */ u16 unk20E;
|
|
/* 0x210 */ u8 unk210;
|
|
/* 0x211 */ s8 unk211;
|
|
/* 0x212 */ u8 unk212;
|
|
/* 0x213 */ s8 unk213;
|
|
/* 0x214 */ s8 unk214;
|
|
/* 0x215 */ s8 unk215;
|
|
/* 0x216 */ u8 unk216;
|
|
/* 0x217 */ u8 unk217;
|
|
/* 0x218 */ s32 unk218;
|
|
/* 0x21C */ s32 unk21C;
|
|
/* 0x220 */ s32 unk220;
|
|
} Object_Racer;
|
|
|
|
typedef struct Object_Bonus {
|
|
/* 0x00 */ f32 unk0;
|
|
/* 0x04 */ f32 unk4;
|
|
/* 0x08 */ f32 unk8;
|
|
/* 0x0C */ f32 unkC;
|
|
/* 0x10 */ s32 unk10;
|
|
/* 0x14 */ s8 unk14;
|
|
} Object_Bonus;
|
|
|
|
typedef struct Object_ModeChange {
|
|
/* 0x00 */ f32 unk0;
|
|
/* 0x04 */ f32 unk4;
|
|
/* 0x08 */ f32 unk8;
|
|
/* 0x0C */ f32 unkC;
|
|
/* 0x10 */ s32 unk10;
|
|
/* 0x14 */ s8 unk14;
|
|
} Object_ModeChange;
|
|
|
|
typedef struct Object_GoldenBalloon {
|
|
/* 0x00 */ f32 unk0;
|
|
/* 0x04 */ u8 pad4[0x8];
|
|
/* 0x0C */ u8 unkC;
|
|
/* 0x0D */ u8 unkD;
|
|
/* 0x0E */ u8 unkE;
|
|
/* 0x0F */ u8 unkF;
|
|
/* 0x10 */ s8 unk10;
|
|
/* 0x14 */ f32 unk14;
|
|
} Object_GoldenBalloon;
|
|
|
|
typedef struct Object_Door {
|
|
/* 0x00 */ f32 unk0;
|
|
/* 0x04 */ u8 pad4[0x4];
|
|
/* 0x08 */ s32 unk8;
|
|
/* 0x0A */ s16 padA;
|
|
/* 0x0E */ s8 unkE;
|
|
/* 0x0F */ u8 unkF;
|
|
/* 0x10 */ u8 unk10;
|
|
/* 0x11 */ u8 unk11;
|
|
/* 0x12 */ u8 unk12;
|
|
/* 0x13 */ u8 unk13;
|
|
/* 0x14 */ u8 unk14;
|
|
} Object_Door;
|
|
|
|
typedef struct Object_Trigger {
|
|
/* 0x00 */ f32 unk0;
|
|
/* 0x04 */ f32 unk4;
|
|
/* 0x08 */ f32 unk8;
|
|
/* 0x0C */ f32 unkC;
|
|
/* 0x10 */ s32 unk10;
|
|
/* 0x14 */ s8 unk14;
|
|
} Object_Trigger;
|
|
|
|
typedef struct Object_Audio {
|
|
/* 0x00 */ u16 unk0;
|
|
/* 0x02 */ u16 unk2;
|
|
/* 0x04 */ u8 unk4;
|
|
/* 0x05 */ u8 unk5;
|
|
/* 0x06 */ u8 unk6;
|
|
/* 0x07 */ u8 unk7;
|
|
/* 0x08 */ s32 unk8;
|
|
/* 0x0C */ u8 unkC;
|
|
/* 0x0D */ u8 unkD;
|
|
} Object_Audio;
|
|
|
|
typedef struct Object_MidiFade {
|
|
/* 0x00 */ u8 unk0;
|
|
/* 0x01 */ u8 unk1;
|
|
/* 0x02 */ u8 unk2;
|
|
/* 0x04 */ f32 unk4;
|
|
/* 0x08 */ f32 unk8;
|
|
/* 0x0C */ f32 unkC;
|
|
/* 0x10 */ f32 unk10;
|
|
/* 0x14 */ f32 unk14;
|
|
/* 0x18 */ f32 unk18;
|
|
/* 0x1C */ f32 unk1C;
|
|
/* 0x20 */ f32 unk20;
|
|
/* 0x24 */ f32 unk24;
|
|
/* 0x28 */ f32 unk28;
|
|
/* 0x2C */ f32 unk2C;
|
|
/* 0x2F */ u8 unk2F[16];
|
|
/* 0x40 */ u8 unk40;
|
|
} Object_MidiFade;
|
|
|
|
typedef struct Object_MidiFadePoint {
|
|
/* 0x00 */ u16 unk0;
|
|
/* 0x02 */ u16 unk2;
|
|
/* 0x04 */ f32 unk4;
|
|
/* 0x08 */ f32 unk8;
|
|
/* 0x0C */ u8 unkC[16];
|
|
/* 0x1C */ u8 unk1C;
|
|
} Object_MidiFadePoint;
|
|
|
|
typedef struct Object_PosArrow {
|
|
/* 0x000 */ s16 unk0;
|
|
/* 0x004 */ u8 pad4[0x14E];
|
|
/* 0x150 */ struct Object *unk150;
|
|
} Object_PosArrow;
|
|
|
|
typedef struct Object_Banana {
|
|
/* 0x0 */ u8 pad0[4];
|
|
/* 0x4 */ struct Object *spawner;
|
|
} Object_Banana;
|
|
|
|
typedef struct Object_FogChanger {
|
|
/* 0x0 */ s16 unk0;
|
|
} Object_FogChanger;
|
|
|
|
typedef struct Object_Taj {
|
|
/* 0x00 */ f32 unk0;
|
|
/* 0x04 */ u8 pad4[0x9];
|
|
/* 0x0D */ u8 unkD;
|
|
/* 0x0E */ u8 padE[0x1A];
|
|
/* 0x28 */ s16 unk28;
|
|
/* 0x2A */ u8 pad2A[0x2];
|
|
/* 0x2C */ s32 unk2C;
|
|
/* 0x30 */ u8 pad30[0x4];
|
|
/* 0x34 */ s16 unk34;
|
|
/* 0x36 */ s8 unk36;
|
|
} Object_Taj;
|
|
|
|
typedef struct Object_TT {
|
|
/* 0x0 */ f32 unk0;
|
|
/* 0x4 */ u8 pad4[0x9];
|
|
/* 0xD */ u8 unkD;
|
|
} Object_TT;
|
|
|
|
typedef struct Object_Bridge_WhaleRamp {
|
|
/* 0x0 */ f32 unk0;
|
|
/* 0x4 */ s32 unk4;
|
|
} Object_Bridge_WhaleRamp;
|
|
|
|
typedef struct Object_80011AD0 {
|
|
/* 0x00 */ u8 pad0[0x20];
|
|
/* 0x20 */ u32 unk20;
|
|
/* 0x24 */ u32 unk24;
|
|
/* 0x28 */ u8 pad28[0x48];
|
|
/* 0x70 */ u8 unk70;
|
|
/* 0x71 */ u8 pad71[0x3];
|
|
/* 0x74 */ f32 unk74;
|
|
/* 0x78 */ u8 pad78[0x80];
|
|
/* 0xF8 */ u32 unkF8;
|
|
/* 0xFC */ u8 unkFC;
|
|
} Object_80011AD0;
|
|
|
|
typedef struct Object_8001B7A8 {
|
|
u8 pad0[0x112];
|
|
/* 0x112 */ s16 unk112;
|
|
} Object_8001B7A8;
|
|
|
|
typedef struct Object_64_80021400 {
|
|
/* 0x00 */ u8 pad[0x2A];
|
|
/* 0x2A */ s16 unk2A;
|
|
} Object_64_80021400;
|
|
|
|
typedef struct Object_80021400_64 {
|
|
/* 0x000 */ u8 pad[0x64];
|
|
/* 0x064 */ struct Object_64_80021400 *obj64;
|
|
} Object_80021400_64;
|
|
|
|
typedef struct Object_64 {
|
|
union {
|
|
Object_LaserGun laser_gun;
|
|
Object_Laser laser;
|
|
Object_TrophyCabinet trophy_cabinet;
|
|
Object_Animator animator;
|
|
Object_Animation animation;
|
|
Object_WeaponBalloon weapon_balloon;
|
|
Object_Weapon weapon;
|
|
Object_Butterfly butterfly;
|
|
Object_EffectBox effect_box;
|
|
Object_EggCreator egg_creator;
|
|
Object_UnkId58 unkid58;
|
|
Object_CharacterFlag character_flag;
|
|
Object_Snowball snowball;
|
|
Object_AnimCamera anim_camera;
|
|
Object_AnimCar anim_car;
|
|
Object_InfoPoint info_point;
|
|
Object_TTDoor tt_door;
|
|
Object_WorldKey world_key;
|
|
Object_AudioLine audio_line;
|
|
Object_AudioReverb audio_reverb;
|
|
Object_TexScroll tex_scroll;
|
|
Object_Frog frog;
|
|
Object_Wizpig2 wizpig2;
|
|
Object_Exit exit;
|
|
Object_Racer racer;
|
|
Object_Bonus bonus;
|
|
Object_ModeChange mode_change;
|
|
Object_GoldenBalloon golden_balloon;
|
|
Object_Door door;
|
|
Object_Trigger trigger;
|
|
Object_Audio audio;
|
|
Object_MidiFade midi_fade;
|
|
Object_MidiFadePoint midi_fade_point;
|
|
Object_PosArrow pos_arrow;
|
|
Object_Banana banana;
|
|
Object_FogChanger fog_changer;
|
|
Object_Taj taj;
|
|
Object_TT tt;
|
|
Object_Bridge_WhaleRamp bridge_whale_ramp;
|
|
Object_80011AD0 obj80011AD0;
|
|
Object_8001B7A8 obj8001B7A8;
|
|
Object_80021400_64 obj80021400_64;
|
|
};
|
|
} Object_64;
|
|
|
|
typedef struct Object_68 {
|
|
/* 0x00 */ union {
|
|
ObjectModel *objModel;
|
|
TextureHeader *texHeader;
|
|
};
|
|
/* 0x04 */ u8 pad04[12];
|
|
/* 0x10 */ s16 unk10;
|
|
/* 0x14 */ u8 pad14[14];
|
|
/* 0x20 */ s8 unk20;
|
|
} Object_68;
|
|
|
|
/* Size: 0x20 bytes */
|
|
typedef struct Object_6C {
|
|
u8 pad0[0x4];
|
|
s16 unk4;
|
|
u8 pad6[0x1A];
|
|
} Object_6C;
|
|
|
|
/* Size: 0x018 bytes */
|
|
typedef struct ObjectTransform {
|
|
/* 0x0000 */ s16 y_rotation;
|
|
/* 0x0002 */ s16 x_rotation;
|
|
/* 0x0004 */ s16 z_rotation;
|
|
/* 0x0006 */ s16 unk6; // Flags?
|
|
/* 0x0008 */ f32 scale;
|
|
/* 0x000C */ f32 x_position;
|
|
/* 0x0010 */ f32 y_position;
|
|
/* 0x0014 */ f32 z_position;
|
|
} ObjectTransform;
|
|
|
|
/* Size: 0x44 bytes */
|
|
typedef struct ObjectSegment {
|
|
/* 0x0000 */ ObjectTransform trans;
|
|
/* 0x0018 */ s16 unk18;
|
|
/* 0x001A */ s16 unk1A;
|
|
/* 0x001C */ f32 x_velocity;
|
|
/* 0x0020 */ f32 y_velocity;
|
|
/* 0x0024 */ f32 z_velocity;
|
|
/* 0x0028 */ f32 unk28;
|
|
|
|
union {
|
|
struct {
|
|
/* 0x002C */ s16 upper;
|
|
/* 0x002E */ s16 lower;
|
|
} half;
|
|
/* 0x002C */ f32 word;
|
|
} unk2C;
|
|
|
|
/* 0x0030 */ f32 unk30;
|
|
|
|
union {
|
|
/* 0x0034 */ f32 unk34;
|
|
/* 0x0034 */ s16 levelSegmentIndex;
|
|
} unk34_a;
|
|
|
|
union {
|
|
struct {
|
|
/* 0x0038 */ u8 upper;
|
|
/* 0x0039 */ u8 lower;
|
|
} half;
|
|
/* 0x0038 */ s16 word;
|
|
} unk38;
|
|
|
|
/* 0x003A */ s8 unk3A;
|
|
/* 0x003B */ s8 unk3B;
|
|
|
|
union {
|
|
/* 0x003C */ Object_3C* unk3C;
|
|
/* 0x003C */ f32 unk3C_f;
|
|
} unk3C_a;
|
|
|
|
/* 0x0040 */ ObjectHeader *header;
|
|
} ObjectSegment;
|
|
|
|
/* Size: 0x0630 bytes */
|
|
typedef struct Object {
|
|
/* 0x0000 */ ObjectSegment segment;
|
|
/* 0x0044 */ void *unk44;
|
|
/* 0x0048 */ s16 behaviorId;
|
|
/* 0x004A */ s16 unk4A;
|
|
/* 0x004C */ Object_4C *unk4C; //player + 0x318
|
|
/* 0x0050 */ Object_50 *unk50; //player + 0x2F4
|
|
/* 0x0054 */ Object_54 *unk54; //player + 0x2C0
|
|
/* 0x0058 */ void *unk58; //player + 0x304
|
|
/* 0x005C */ Object_5C *unk5C;
|
|
|
|
/* 0x0060 */ Object_60 *unk60; //player + 0x340
|
|
/* 0x0064 */ Object_64 *unk64; //player + 0x98
|
|
/* 0x0068 */ Object_68 **unk68; //player + 0x80
|
|
/* 0x006C */ Object_6C *unk6C; //player + 0x370
|
|
/* 0x0070 */ u32 *unk70;
|
|
|
|
/* 0x0074 */ u32 unk74;
|
|
|
|
union {
|
|
/* 0x0078 */ ObjectTransform *trans78;
|
|
/* 0x0078 */ s32 unk78;
|
|
/* 0x0078 */ f32 unk78f;
|
|
};
|
|
|
|
union {
|
|
struct {
|
|
s16 upper;
|
|
s16 lower;
|
|
} half;
|
|
s32 word;
|
|
} unk7C;
|
|
|
|
/* 0x0080 */ void *unk80;
|
|
/* 0x0084 */ u32 unk84;
|
|
/* 0x0088 */ u32 unk88;
|
|
|
|
/* 0x008C */ u32 unk8C;
|
|
/* 0x0090 */ u32 unk90;
|
|
/* 0x0094 */ u32 unk94;
|
|
|
|
/* 0x0098 */ Object_64 obj;
|
|
|
|
// May be a part of obj (likely Object_Player).
|
|
/* 0x02B8 */ u8 pad2A8[0x8];
|
|
|
|
/* 0x02C0 */ f32 unk2C0;
|
|
|
|
/* 0x02C4 */ u8 red;
|
|
/* 0x02C5 */ u8 blue;
|
|
/* 0x02C6 */ u8 green;
|
|
/* 0x02C7 */ u8 alpha;
|
|
|
|
/* 0x02C8 */ u32 unk2C8;
|
|
/* 0x02CC */ u32 unk2CC;
|
|
/* 0x02D0 */ u32 unk2D0;
|
|
/* 0x02D4 */ u32 unk2D4;
|
|
/* 0x02D8 */ u32 unk2D8;
|
|
|
|
/* 0x02DC */ u16 unk2DC;
|
|
/* 0x02DE */ u16 unk2DE;
|
|
/* 0x02E0 */ u16 unk2E0;
|
|
|
|
/* 0x02E2 */ u16 unk2E2;
|
|
/* 0x02E4 */ u32 unk2E4;
|
|
|
|
/* 0x02E8 */ f32 unk2E8;
|
|
/* 0x02EC */ f32 unk2EC;
|
|
/* 0x02F0 */ u32 unk2F0;
|
|
|
|
/* 0x02F4 */ f32 shadow_scale;
|
|
/* 0x02F8 */ void *unk2F8;
|
|
/* 0x02FC */ u16 unk2FC;
|
|
/* 0x02FE */ u16 unk2FE;
|
|
/* 0x0300 */ u32 unk300;
|
|
|
|
/* 0x0304 */ f32 unk0304;
|
|
|
|
/* 0x0308 */ u32 unk308;
|
|
/* 0x030C */ u32 unk30C;
|
|
/* 0x0310 */ u32 unk310;
|
|
/* 0x0314 */ u32 unk314;
|
|
|
|
/* 0x0318 */ void *nearest_obj_ptr;
|
|
/* 0x031C */ f32 unk31C;
|
|
/* 0x0320 */ f32 unk320;
|
|
/* 0x0324 */ f32 unk324;
|
|
|
|
/* 0x0328 */ u32 unk328;
|
|
/* 0x032C */ u32 unk32C;
|
|
/* 0x0330 */ u32 unk330;
|
|
/* 0x0334 */ u32 unk334;
|
|
/* 0x0338 */ u32 unk338;
|
|
/* 0x033C */ u32 unk33C;
|
|
|
|
/* 0x0340 */ u32 unk340;
|
|
/* 0x0344 */ void *unk344;
|
|
/* 0x0348 */ void *unk348;
|
|
/* 0x034C */ void *unk34C;
|
|
/* 0x0350 */ void *unk350;
|
|
|
|
/* 0x0354 */ u32 unk354;
|
|
/* 0x0358 */ u32 unk358;
|
|
/* 0x035C */ u32 unk35C;
|
|
/* 0x0360 */ u32 unk360;
|
|
/* 0x0364 */ u32 unk364;
|
|
/* 0x0368 */ u32 unk368;
|
|
/* 0x036C */ u32 unk36C;
|
|
|
|
/* 0x0370 */ void *unk370;
|
|
/* 0x0374 */ s32 unk374;
|
|
|
|
u32 unk378[174]; // Not an array. Unknown values.
|
|
} Object;
|
|
|
|
// Unused
|
|
typedef struct GhostHeaderChecksum {
|
|
u8 levelID;
|
|
u8 vehicleID; // 0 = Car, 1 = Hovercraft, 2 = Plane
|
|
} GhostHeaderChecksum;
|
|
|
|
/* Size: 8 bytes */
|
|
typedef struct GhostHeader {
|
|
//GhostHeaderChecksum checksum;
|
|
s16 checksum;
|
|
u8 characterID; // 9 = T.T.
|
|
u8 unk3; // Might just be padding?
|
|
s16 time; // In frames, where 60 frames = 1 second.
|
|
s16 nodeCount;
|
|
} GhostHeader;
|
|
|
|
/* Size: 12 bytes */
|
|
typedef struct GhostNode {
|
|
s16 x;
|
|
s16 y;
|
|
s16 z;
|
|
s16 zRotation; // This order is correct.
|
|
s16 xRotation;
|
|
s16 yRotation;
|
|
} GhostNode;
|
|
|
|
/* Size: 12 bytes */
|
|
typedef struct GhostDataFrame {
|
|
u8 pad0[12];
|
|
} GhostDataFrame;
|
|
|
|
/* Size: 0x18 bytes */
|
|
typedef struct unk8011D510 {
|
|
/* 0x00 */ s16 unk0;
|
|
/* 0x02 */ s16 unk2;
|
|
/* 0x04 */ s16 unk4;
|
|
/* 0x06 */ u16 unk6;
|
|
/* 0x08 */ f32 unk8;
|
|
/* 0x0C */ f32 unkC;
|
|
/* 0x10 */ f32 unk10;
|
|
/* 0x14 */ f32 unk14;
|
|
} unk8011D510;
|
|
|
|
typedef struct unk80042178 {
|
|
u8 pad0[0x20];
|
|
} unk80042178;
|
|
|
|
#endif
|