2020-05-19 14:39:01 +02:00
|
|
|
#ifndef _SM64_TYPES_H_
|
|
|
|
#define _SM64_TYPES_H_
|
2019-08-25 06:46:40 +02:00
|
|
|
|
|
|
|
// This file contains various data types used in Super Mario 64 that don't yet
|
|
|
|
// have an appropriate header.
|
|
|
|
|
|
|
|
#include <ultra64.h>
|
2019-11-03 20:36:27 +01:00
|
|
|
#include "macros.h"
|
2020-10-16 12:56:37 +02:00
|
|
|
#include "pc/network/version.h"
|
2022-08-11 10:23:54 +02:00
|
|
|
#include "src/pc/platform.h"
|
2020-02-03 06:51:26 +01:00
|
|
|
|
|
|
|
// Certain functions are marked as having return values, but do not
|
|
|
|
// actually return a value. This causes undefined behavior, which we'd rather
|
|
|
|
// avoid on modern GCC. This only impacts -O2 and can matter for both the function
|
|
|
|
// itself and functions that call it.
|
|
|
|
#ifdef AVOID_UB
|
|
|
|
#define BAD_RETURN(cmd) void
|
|
|
|
#else
|
|
|
|
#define BAD_RETURN(cmd) cmd
|
|
|
|
#endif
|
|
|
|
|
2019-08-25 06:46:40 +02:00
|
|
|
struct Controller
|
|
|
|
{
|
|
|
|
/*0x00*/ s16 rawStickX; //
|
|
|
|
/*0x02*/ s16 rawStickY; //
|
2022-01-18 05:50:39 +01:00
|
|
|
/*0x04*/ f32 stickX; // [-64, 64] positive is right
|
|
|
|
/*0x08*/ f32 stickY; // [-64, 64] positive is up
|
|
|
|
/*0x0C*/ f32 stickMag; // distance from center [0, 64]
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x10*/ u16 buttonDown;
|
|
|
|
/*0x12*/ u16 buttonPressed;
|
|
|
|
/*0x14*/ OSContStatus *statusData;
|
|
|
|
/*0x18*/ OSContPad *controllerData;
|
2022-01-18 05:50:39 +01:00
|
|
|
/*0x1C*/ s32 port;
|
2020-06-20 16:22:33 +02:00
|
|
|
/*ext */ s16 extStickX; // additional (right) stick values
|
|
|
|
/*ext */ s16 extStickY;
|
2019-08-25 06:46:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef f32 Vec2f[2];
|
|
|
|
typedef f32 Vec3f[3]; // X, Y, Z, where Y is up
|
|
|
|
typedef s16 Vec3s[3];
|
|
|
|
typedef s32 Vec3i[3];
|
|
|
|
typedef f32 Vec4f[4];
|
|
|
|
typedef s16 Vec4s[4];
|
|
|
|
|
|
|
|
typedef f32 Mat4[4][4];
|
|
|
|
|
2019-11-03 20:36:27 +01:00
|
|
|
typedef uintptr_t GeoLayout;
|
|
|
|
typedef uintptr_t LevelScript;
|
|
|
|
typedef s16 Movtex;
|
|
|
|
typedef s16 MacroObject;
|
|
|
|
typedef s16 Collision;
|
|
|
|
typedef s16 Trajectory;
|
|
|
|
typedef s16 PaintingData;
|
|
|
|
typedef uintptr_t BehaviorScript;
|
2022-03-13 09:17:10 +01:00
|
|
|
typedef u8 Texture;
|
2019-11-03 20:36:27 +01:00
|
|
|
|
2022-09-27 04:11:51 +02:00
|
|
|
typedef u8 Color[3];
|
|
|
|
|
2019-08-25 06:46:40 +02:00
|
|
|
enum SpTaskState {
|
|
|
|
SPTASK_STATE_NOT_STARTED,
|
|
|
|
SPTASK_STATE_RUNNING,
|
|
|
|
SPTASK_STATE_INTERRUPTED,
|
|
|
|
SPTASK_STATE_FINISHED,
|
|
|
|
SPTASK_STATE_FINISHED_DP
|
|
|
|
};
|
|
|
|
|
2021-08-13 03:13:41 +02:00
|
|
|
enum AreaTimerType {
|
|
|
|
AREA_TIMER_TYPE_NONE,
|
|
|
|
AREA_TIMER_TYPE_LOOP,
|
|
|
|
AREA_TIMER_TYPE_MAXIMUM,
|
|
|
|
};
|
|
|
|
|
2019-08-25 06:46:40 +02:00
|
|
|
struct SPTask
|
|
|
|
{
|
|
|
|
/*0x00*/ OSTask task;
|
|
|
|
/*0x40*/ OSMesgQueue *msgqueue;
|
|
|
|
/*0x44*/ OSMesg msg;
|
|
|
|
/*0x48*/ enum SpTaskState state;
|
|
|
|
}; // size = 0x4C, align = 0x8
|
|
|
|
|
|
|
|
struct VblankHandler
|
|
|
|
{
|
|
|
|
OSMesgQueue *queue;
|
|
|
|
OSMesg msg;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define ANIM_FLAG_NOLOOP (1 << 0) // 0x01
|
|
|
|
#define ANIM_FLAG_FORWARD (1 << 1) // 0x02
|
|
|
|
#define ANIM_FLAG_2 (1 << 2) // 0x04
|
|
|
|
#define ANIM_FLAG_HOR_TRANS (1 << 3) // 0x08
|
|
|
|
#define ANIM_FLAG_VERT_TRANS (1 << 4) // 0x10
|
|
|
|
#define ANIM_FLAG_5 (1 << 5) // 0x20
|
|
|
|
#define ANIM_FLAG_6 (1 << 6) // 0x40
|
|
|
|
#define ANIM_FLAG_7 (1 << 7) // 0x80
|
|
|
|
|
|
|
|
struct Animation {
|
|
|
|
/*0x00*/ s16 flags;
|
2022-02-19 05:27:10 +01:00
|
|
|
/*0x02*/ s16 animYTransDivisor;
|
|
|
|
/*0x04*/ s16 startFrame;
|
|
|
|
/*0x06*/ s16 loopStart;
|
|
|
|
/*0x08*/ s16 loopEnd;
|
|
|
|
/*0x0A*/ s16 unusedBoneCount;
|
2019-11-03 20:36:27 +01:00
|
|
|
/*0x0C*/ const s16 *values;
|
|
|
|
/*0x10*/ const u16 *index;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x14*/ u32 length; // only used with Mario animations to determine how much to load. 0 otherwise.
|
|
|
|
};
|
|
|
|
|
2019-11-03 20:36:27 +01:00
|
|
|
#define ANIMINDEX_NUMPARTS(animindex) (sizeof(animindex) / sizeof(u16) / 6 - 1)
|
|
|
|
|
2019-08-25 06:46:40 +02:00
|
|
|
struct GraphNode
|
|
|
|
{
|
|
|
|
/*0x00*/ s16 type; // structure type
|
|
|
|
/*0x02*/ s16 flags; // hi = drawing layer, lo = rendering modes
|
|
|
|
/*0x04*/ struct GraphNode *prev;
|
|
|
|
/*0x08*/ struct GraphNode *next;
|
|
|
|
/*0x0C*/ struct GraphNode *parent;
|
|
|
|
/*0x10*/ struct GraphNode *children;
|
2022-03-10 03:01:03 +01:00
|
|
|
/*0x14*/ const void *georef;
|
2022-04-23 12:05:16 +02:00
|
|
|
/*????*/ u8 extraFlags;
|
2019-08-25 06:46:40 +02:00
|
|
|
};
|
|
|
|
|
2022-02-19 05:27:10 +01:00
|
|
|
struct AnimInfo
|
2019-08-25 06:46:40 +02:00
|
|
|
{
|
|
|
|
/*0x00 0x38*/ s16 animID;
|
|
|
|
/*0x02 0x3A*/ s16 animYTrans;
|
|
|
|
/*0x04 0x3C*/ struct Animation *curAnim;
|
|
|
|
/*0x08 0x40*/ s16 animFrame;
|
|
|
|
/*0x0A 0x42*/ u16 animTimer;
|
|
|
|
/*0x0C 0x44*/ s32 animFrameAccelAssist;
|
|
|
|
/*0x10 0x48*/ s32 animAccel;
|
2020-07-29 03:28:12 +02:00
|
|
|
s16 prevAnimFrame;
|
|
|
|
s16 prevAnimID;
|
|
|
|
u32 prevAnimFrameTimestamp;
|
|
|
|
struct Animation *prevAnimPtr;
|
2019-08-25 06:46:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct GraphNodeObject
|
|
|
|
{
|
|
|
|
/*0x00*/ struct GraphNode node;
|
|
|
|
/*0x14*/ struct GraphNode *sharedChild;
|
2022-02-19 05:27:10 +01:00
|
|
|
/*0x18*/ s8 areaIndex;
|
|
|
|
/*0x19*/ s8 activeAreaIndex;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x1A*/ Vec3s angle;
|
|
|
|
/*0x20*/ Vec3f pos;
|
2020-07-29 03:28:12 +02:00
|
|
|
Vec3s prevAngle;
|
|
|
|
Vec3f prevPos;
|
|
|
|
u32 prevTimestamp;
|
|
|
|
Vec3f prevShadowPos;
|
|
|
|
u32 prevShadowPosTimestamp;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x2C*/ Vec3f scale;
|
2020-07-29 03:28:12 +02:00
|
|
|
Vec3f prevScale;
|
|
|
|
u32 prevScaleTimestamp;
|
2022-02-19 05:27:10 +01:00
|
|
|
/*0x38*/ struct AnimInfo animInfo;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x4C*/ struct SpawnInfo *unk4C;
|
2020-07-04 17:18:55 +02:00
|
|
|
/*0x50*/ Mat4 *throwMatrix; // matrix ptr
|
2020-07-29 03:28:12 +02:00
|
|
|
Mat4 prevThrowMatrix;
|
|
|
|
u32 prevThrowMatrixTimestamp;
|
2022-04-27 07:42:57 +02:00
|
|
|
Mat4 *throwMatrixPrev;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x54*/ Vec3f cameraToObject;
|
2020-07-29 03:28:12 +02:00
|
|
|
u32 skipInterpolationTimestamp;
|
2022-08-11 10:23:54 +02:00
|
|
|
bool skipInViewCheck;
|
2019-08-25 06:46:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ObjectNode
|
|
|
|
{
|
|
|
|
struct GraphNodeObject gfx;
|
|
|
|
struct ObjectNode *next;
|
|
|
|
struct ObjectNode *prev;
|
|
|
|
};
|
|
|
|
|
2019-11-03 20:36:27 +01:00
|
|
|
// NOTE: Since ObjectNode is the first member of Object, it is difficult to determine
|
|
|
|
// whether some of these pointers point to ObjectNode or Object.
|
|
|
|
|
2019-08-25 06:46:40 +02:00
|
|
|
struct Object
|
|
|
|
{
|
|
|
|
/*0x000*/ struct ObjectNode header;
|
|
|
|
/*0x068*/ struct Object *parentObj;
|
|
|
|
/*0x06C*/ struct Object *prevObj;
|
|
|
|
/*0x070*/ u32 collidedObjInteractTypes;
|
|
|
|
/*0x074*/ s16 activeFlags;
|
|
|
|
/*0x076*/ s16 numCollidedObjs;
|
|
|
|
/*0x078*/ struct Object *collidedObjs[4];
|
|
|
|
/*0x088*/
|
|
|
|
union
|
|
|
|
{
|
|
|
|
// Object fields. See object_fields.h.
|
|
|
|
u32 asU32[0x50];
|
|
|
|
s32 asS32[0x50];
|
|
|
|
s16 asS16[0x50][2];
|
|
|
|
f32 asF32[0x50];
|
|
|
|
} rawData;
|
2019-11-03 20:36:27 +01:00
|
|
|
union {
|
|
|
|
s16 *asS16P[0x50];
|
|
|
|
s32 *asS32P[0x50];
|
|
|
|
struct Animation **asAnims[0x50];
|
|
|
|
struct Waypoint *asWaypoint[0x50];
|
|
|
|
struct ChainSegment *asChainSegment[0x50];
|
|
|
|
struct Object *asObject[0x50];
|
|
|
|
struct Surface *asSurface[0x50];
|
|
|
|
void *asVoidPtr[0x50];
|
|
|
|
const void *asConstVoidPtr[0x50];
|
|
|
|
} ptrData;
|
2019-10-05 21:08:05 +02:00
|
|
|
/*0x1C8*/ u32 unused1;
|
2020-04-03 20:57:26 +02:00
|
|
|
/*0x1CC*/ const BehaviorScript *curBhvCommand;
|
|
|
|
/*0x1D0*/ u32 bhvStackIndex;
|
|
|
|
/*0x1D4*/ uintptr_t bhvStack[8];
|
|
|
|
/*0x1F4*/ s16 bhvDelayTimer;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x1F6*/ s16 respawnInfoType;
|
|
|
|
/*0x1F8*/ f32 hitboxRadius;
|
|
|
|
/*0x1FC*/ f32 hitboxHeight;
|
|
|
|
/*0x200*/ f32 hurtboxRadius;
|
|
|
|
/*0x204*/ f32 hurtboxHeight;
|
|
|
|
/*0x208*/ f32 hitboxDownOffset;
|
2019-11-03 20:36:27 +01:00
|
|
|
/*0x20C*/ const BehaviorScript *behavior;
|
2020-08-02 04:03:26 +02:00
|
|
|
/*0x210*/ u32 heldByPlayerIndex;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x214*/ struct Object *platform;
|
2022-03-10 07:58:45 +01:00
|
|
|
/*0x218*/ Collision *collisionData;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x21C*/ Mat4 transform;
|
|
|
|
/*0x25C*/ void *respawnInfo;
|
2022-03-10 05:11:45 +01:00
|
|
|
/*?????*/ u8 coopFlags;
|
2021-08-13 03:13:41 +02:00
|
|
|
/*?????*/ enum AreaTimerType areaTimerType;
|
2021-08-04 04:21:50 +02:00
|
|
|
/*?????*/ u32 areaTimer;
|
2021-08-13 03:13:41 +02:00
|
|
|
/*?????*/ u32 areaTimerDuration;
|
2021-08-19 09:31:20 +02:00
|
|
|
/*?????*/ void (*areaTimerRunOnceCallback)(void);
|
2021-08-06 10:02:07 +02:00
|
|
|
/*?????*/ u8 globalPlayerIndex;
|
2022-03-29 03:57:52 +02:00
|
|
|
/*?????*/ struct Object* usingObj;
|
2022-04-20 07:36:47 +02:00
|
|
|
/*?????*/ u8 hookRender;
|
2022-06-02 08:04:21 +02:00
|
|
|
/*?????*/ u8 setHome;
|
2019-08-25 06:46:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ObjectHitbox
|
|
|
|
{
|
|
|
|
/*0x00*/ u32 interactType;
|
|
|
|
/*0x04*/ u8 downOffset;
|
|
|
|
/*0x05*/ s8 damageOrCoinValue;
|
|
|
|
/*0x06*/ s8 health;
|
|
|
|
/*0x07*/ s8 numLootCoins;
|
|
|
|
/*0x08*/ s16 radius;
|
|
|
|
/*0x0A*/ s16 height;
|
|
|
|
/*0x0C*/ s16 hurtboxRadius;
|
|
|
|
/*0x0E*/ s16 hurtboxHeight;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Waypoint
|
|
|
|
{
|
|
|
|
s16 flags;
|
|
|
|
Vec3s pos;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Surface
|
|
|
|
{
|
|
|
|
/*0x00*/ s16 type;
|
|
|
|
/*0x02*/ s16 force;
|
|
|
|
/*0x04*/ s8 flags;
|
|
|
|
/*0x05*/ s8 room;
|
|
|
|
/*0x06*/ s16 lowerY;
|
|
|
|
/*0x08*/ s16 upperY;
|
|
|
|
/*0x0A*/ Vec3s vertex1;
|
|
|
|
/*0x10*/ Vec3s vertex2;
|
|
|
|
/*0x16*/ Vec3s vertex3;
|
|
|
|
/*0x1C*/ struct {
|
|
|
|
f32 x;
|
|
|
|
f32 y;
|
|
|
|
f32 z;
|
|
|
|
} normal;
|
|
|
|
/*0x28*/ f32 originOffset;
|
|
|
|
/*0x2C*/ struct Object *object;
|
2020-07-29 03:28:12 +02:00
|
|
|
Vec3s prevVertex1;
|
|
|
|
Vec3s prevVertex2;
|
|
|
|
Vec3s prevVertex3;
|
|
|
|
u32 modifiedTimestamp;
|
2019-08-25 06:46:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MarioBodyState
|
|
|
|
{
|
|
|
|
/*0x00*/ u32 action;
|
2020-02-03 06:51:26 +01:00
|
|
|
/*0x04*/ s8 capState; /// see MarioCapGSCId
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x05*/ s8 eyeState;
|
|
|
|
/*0x06*/ s8 handState;
|
2020-02-03 06:51:26 +01:00
|
|
|
/*0x07*/ s8 wingFlutter; /// whether Mario's wing cap wings are fluttering
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x08*/ s16 modelState;
|
|
|
|
/*0x0A*/ s8 grabPos;
|
2020-02-03 06:51:26 +01:00
|
|
|
/*0x0B*/ u8 punchState; /// 2 bits for type of punch, 6 bits for punch animation timer
|
|
|
|
/*0x0C*/ Vec3s torsoAngle;
|
|
|
|
/*0x12*/ Vec3s headAngle;
|
|
|
|
/*0x18*/ Vec3f heldObjLastPosition; /// also known as HOLP
|
2020-09-03 08:50:27 +02:00
|
|
|
/*????*/ Vec3f torsoPos;
|
|
|
|
/*????*/ Vec3f handFootPos[4];
|
2022-03-26 05:36:46 +01:00
|
|
|
/*????*/ u32 updateTorsoTime;
|
2022-04-21 03:21:36 +02:00
|
|
|
/*????*/ Vec3f headPos;
|
2020-09-03 08:50:27 +02:00
|
|
|
//u8 padding[4];
|
2019-10-05 21:08:05 +02:00
|
|
|
};
|
|
|
|
|
2019-11-03 20:36:27 +01:00
|
|
|
struct OffsetSizePair
|
2019-10-05 21:08:05 +02:00
|
|
|
{
|
|
|
|
u32 offset;
|
|
|
|
u32 size;
|
2019-08-25 06:46:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MarioAnimDmaRelatedThing
|
|
|
|
{
|
2019-10-05 21:08:05 +02:00
|
|
|
u32 count;
|
|
|
|
u8 *srcAddr;
|
2019-11-03 20:36:27 +01:00
|
|
|
struct OffsetSizePair anim[1]; // dynamic size
|
2019-08-25 06:46:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MarioAnimation
|
|
|
|
{
|
|
|
|
struct MarioAnimDmaRelatedThing *animDmaTable;
|
2019-10-05 21:08:05 +02:00
|
|
|
u8 *currentAnimAddr;
|
2019-08-25 06:46:40 +02:00
|
|
|
struct Animation *targetAnim;
|
|
|
|
u8 padding[4];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MarioState
|
|
|
|
{
|
2020-08-13 04:14:35 +02:00
|
|
|
/*0x00*/ u16 playerIndex;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x02*/ u16 input;
|
|
|
|
/*0x04*/ u32 flags;
|
|
|
|
/*0x08*/ u32 particleFlags;
|
|
|
|
/*0x0C*/ u32 action;
|
|
|
|
/*0x10*/ u32 prevAction;
|
2019-10-05 21:08:05 +02:00
|
|
|
/*0x14*/ u32 terrainSoundAddend;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x18*/ u16 actionState;
|
|
|
|
/*0x1A*/ u16 actionTimer;
|
|
|
|
/*0x1C*/ u32 actionArg;
|
|
|
|
/*0x20*/ f32 intendedMag;
|
|
|
|
/*0x24*/ s16 intendedYaw;
|
|
|
|
/*0x26*/ s16 invincTimer;
|
|
|
|
/*0x28*/ u8 framesSinceA;
|
|
|
|
/*0x29*/ u8 framesSinceB;
|
|
|
|
/*0x2A*/ u8 wallKickTimer;
|
|
|
|
/*0x2B*/ u8 doubleJumpTimer;
|
|
|
|
/*0x2C*/ Vec3s faceAngle;
|
|
|
|
/*0x32*/ Vec3s angleVel;
|
|
|
|
/*0x38*/ s16 slideYaw;
|
|
|
|
/*0x3A*/ s16 twirlYaw;
|
|
|
|
/*0x3C*/ Vec3f pos;
|
|
|
|
/*0x48*/ Vec3f vel;
|
|
|
|
/*0x54*/ f32 forwardVel;
|
|
|
|
/*0x58*/ f32 slideVelX;
|
|
|
|
/*0x5C*/ f32 slideVelZ;
|
|
|
|
/*0x60*/ struct Surface *wall;
|
|
|
|
/*0x64*/ struct Surface *ceil;
|
|
|
|
/*0x68*/ struct Surface *floor;
|
|
|
|
/*0x6C*/ f32 ceilHeight;
|
|
|
|
/*0x70*/ f32 floorHeight;
|
|
|
|
/*0x74*/ s16 floorAngle;
|
|
|
|
/*0x76*/ s16 waterLevel;
|
|
|
|
/*0x78*/ struct Object *interactObj;
|
|
|
|
/*0x7C*/ struct Object *heldObj;
|
|
|
|
/*0x80*/ struct Object *usedObj;
|
|
|
|
/*0x84*/ struct Object *riddenObj;
|
|
|
|
/*0x88*/ struct Object *marioObj;
|
|
|
|
/*0x8C*/ struct SpawnInfo *spawnInfo;
|
|
|
|
/*0x90*/ struct Area *area;
|
2020-01-03 16:38:57 +01:00
|
|
|
/*0x94*/ struct PlayerCameraState *statusForCamera;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x98*/ struct MarioBodyState *marioBodyState;
|
|
|
|
/*0x9C*/ struct Controller *controller;
|
|
|
|
/*0xA0*/ struct MarioAnimation *animation;
|
|
|
|
/*0xA4*/ u32 collidedObjInteractTypes;
|
|
|
|
/*0xA8*/ s16 numCoins;
|
|
|
|
/*0xAA*/ s16 numStars;
|
|
|
|
/*0xAC*/ s8 numKeys; // Unused key mechanic
|
|
|
|
/*0xAD*/ s8 numLives;
|
|
|
|
/*0xAE*/ s16 health;
|
|
|
|
/*0xB0*/ s16 unkB0;
|
|
|
|
/*0xB2*/ u8 hurtCounter;
|
|
|
|
/*0xB3*/ u8 healCounter;
|
|
|
|
/*0xB4*/ u8 squishTimer;
|
|
|
|
/*0xB5*/ u8 fadeWarpOpacity;
|
|
|
|
/*0xB6*/ u16 capTimer;
|
2020-06-02 18:44:34 +02:00
|
|
|
/*0xB8*/ s16 prevNumStarsForDialog;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0xBC*/ f32 peakHeight;
|
|
|
|
/*0xC0*/ f32 quicksandDepth;
|
|
|
|
/*0xC4*/ f32 unkC4;
|
2020-08-27 08:29:40 +02:00
|
|
|
/*0xC8*/ s16 currentRoom;
|
|
|
|
/*0xCA*/ struct Object* heldByObj;
|
2020-09-03 08:50:27 +02:00
|
|
|
/*????*/ u8 isSnoring;
|
2020-09-06 03:05:57 +02:00
|
|
|
/*????*/ struct Object* bubbleObj;
|
2020-09-08 18:33:55 +02:00
|
|
|
/*????*/ u8 freeze;
|
2020-09-26 21:07:43 +02:00
|
|
|
|
|
|
|
// Variables for a spline curve animation (used for the flight path in the grand star cutscene)
|
|
|
|
/*????*/ Vec4s* splineKeyframe;
|
2022-01-18 04:23:52 +01:00
|
|
|
/*????*/ f32 splineKeyframeFraction;
|
|
|
|
/*????*/ s32 splineState;
|
2020-09-29 04:58:37 +02:00
|
|
|
|
|
|
|
/*????*/ Vec3f nonInstantWarpPos;
|
2020-10-14 03:33:51 +02:00
|
|
|
/*????*/ struct Character* character;
|
2021-08-05 03:47:59 +02:00
|
|
|
/*????*/ u8 wasNetworkVisible;
|
2021-09-05 23:17:20 +02:00
|
|
|
/*????*/ f32 minimumBoneY;
|
|
|
|
/*????*/ f32 curAnimOffset;
|
2022-04-15 03:25:42 +02:00
|
|
|
/*????*/ u8 knockbackTimer;
|
2022-04-23 09:35:49 +02:00
|
|
|
/*????*/ u8 specialTripleJump;
|
2022-06-01 03:26:27 +02:00
|
|
|
/*????*/ Vec3f wallNormal;
|
2019-08-25 06:46:40 +02:00
|
|
|
};
|
|
|
|
|
2022-02-16 07:13:10 +01:00
|
|
|
struct TextureInfo
|
|
|
|
{
|
2022-05-07 07:03:12 +02:00
|
|
|
u8* texture;
|
|
|
|
u8 bitSize;
|
|
|
|
u32 width;
|
|
|
|
u32 height;
|
2022-02-16 07:13:10 +01:00
|
|
|
};
|
|
|
|
|
2020-08-03 08:02:29 +02:00
|
|
|
#define PLAY_MODE_NORMAL 0
|
|
|
|
#define PLAY_MODE_PAUSED 2
|
|
|
|
#define PLAY_MODE_CHANGE_AREA 3
|
|
|
|
#define PLAY_MODE_CHANGE_LEVEL 4
|
|
|
|
#define PLAY_MODE_FRAME_ADVANCE 5
|
|
|
|
|
2021-04-06 01:32:06 +02:00
|
|
|
#define MAX_PLAYERS 16
|
2020-08-07 07:52:32 +02:00
|
|
|
|
2022-03-10 05:11:45 +01:00
|
|
|
#define COOP_OBJ_FLAG_NETWORK (1 << 0)
|
|
|
|
#define COOP_OBJ_FLAG_LUA (1 << 1)
|
|
|
|
#define COOP_OBJ_FLAG_NON_SYNC (1 << 2)
|
|
|
|
|
2022-02-16 07:13:10 +01:00
|
|
|
#include "src/game/characters.h"
|
2022-03-31 08:04:41 +02:00
|
|
|
#include "data/dynos.c.h"
|
2022-02-16 07:13:10 +01:00
|
|
|
|
2020-06-02 18:44:34 +02:00
|
|
|
#endif // _SM64_TYPES_H_
|