2021-10-29 19:57:15 +02:00
|
|
|
#ifndef _NPC_H_
|
|
|
|
#define _NPC_H_
|
|
|
|
|
|
|
|
#include "common_structs.h"
|
|
|
|
#include "enums.h"
|
|
|
|
#include "script_api/map.h"
|
|
|
|
|
2022-09-08 14:12:26 +02:00
|
|
|
// battle and stage are optional in overloaded NPC_GROUP macros
|
2022-10-07 20:45:58 +02:00
|
|
|
#define NPC_GROUP(args...) VFUNC(NPC_GROUP, args)
|
2023-02-14 01:46:48 +01:00
|
|
|
#define NPC_GROUP1(npcs) { sizeof(npcs) / sizeof(NpcData), (NpcData*) &npcs, 0, 0 }
|
|
|
|
#define NPC_GROUP2(npcs, battle) { sizeof(npcs) / sizeof(NpcData), (NpcData*) &npcs, battle, 0 }
|
|
|
|
#define NPC_GROUP3(npcs, battle, stage) { sizeof(npcs) / sizeof(NpcData), (NpcData*) &npcs, battle, stage + 1 }
|
2022-09-08 14:12:26 +02:00
|
|
|
|
2023-02-03 07:16:32 +01:00
|
|
|
#define NPC_GROUP_EXPLICIT_SIZE(args...) VFUNC(NPC_GROUP_EXPLICIT_SIZE, args)
|
2023-02-14 01:46:48 +01:00
|
|
|
#define NPC_GROUP_EXPLICIT_SIZE3(npcs, start, count) { count, (NpcData*) &npcs[start], 0, 0 }
|
|
|
|
#define NPC_GROUP_EXPLICIT_SIZE4(npcs, start, count, battle) { count, (NpcData*) &npcs[start], battle, 0 }
|
|
|
|
#define NPC_GROUP_EXPLICIT_SIZE5(npcs, start, count, battle, stage) { count, (NpcData*) &npcs[start], battle, stage + 1 }
|
2023-02-03 07:16:32 +01:00
|
|
|
|
2023-02-14 01:46:48 +01:00
|
|
|
#define NO_DROPS { \
|
2023-01-12 03:09:13 +01:00
|
|
|
.dropFlags = NPC_DROP_FLAG_80, \
|
2023-02-14 01:46:48 +01:00
|
|
|
.heartDrops = { { F16(100), F16(0), 0, F16(0) }, }, \
|
|
|
|
.flowerDrops = { { F16(100), F16(0), 0, F16(0) }, }, \
|
2023-01-02 02:58:39 +01:00
|
|
|
}
|
|
|
|
|
2021-10-29 19:57:15 +02:00
|
|
|
#define STANDARD_HEART_DROPS(attempts) { \
|
|
|
|
{ F16(20), F16(70), attempts, F16(50) }, \
|
|
|
|
{ F16(30), F16(60), attempts, F16(50) }, \
|
|
|
|
{ F16(50), F16(50), attempts, F16(40) }, \
|
|
|
|
{ F16(80), F16(40), attempts, F16(40) }, \
|
|
|
|
{ F16(100), F16(30), attempts, F16(30) }, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GENEROUS_HEART_DROPS(attempts) { \
|
2022-12-06 00:29:22 +01:00
|
|
|
{ F16(20), F16(80), attempts, F16(50) }, \
|
|
|
|
{ F16(30), F16(70), attempts, F16(50) }, \
|
|
|
|
{ F16(50), F16(60), attempts, F16(40) }, \
|
|
|
|
{ F16(80), F16(50), attempts, F16(40) }, \
|
2021-10-29 19:57:15 +02:00
|
|
|
{ F16(100), F16(40), attempts, F16(30) }, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GENEROUS_WHEN_LOW_HEART_DROPS(attempts) { \
|
|
|
|
{ F16(20), F16(80), attempts, F16(60) }, \
|
|
|
|
{ F16(30), F16(70), attempts, F16(50) }, \
|
|
|
|
{ F16(50), F16(60), attempts, F16(50) }, \
|
|
|
|
{ F16(80), F16(50), attempts, F16(40) }, \
|
|
|
|
{ F16(100), F16(30), attempts, F16(30) }, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define STANDARD_FLOWER_DROPS(attempts) { \
|
|
|
|
{ F16(20), F16(50), attempts, F16(40) }, \
|
|
|
|
{ F16(30), F16(40), attempts, F16(40) }, \
|
|
|
|
{ F16(50), F16(40), attempts, F16(40) }, \
|
|
|
|
{ F16(80), F16(40), attempts, F16(40) }, \
|
|
|
|
{ F16(100), F16(30), attempts, F16(40) }, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GENEROUS_WHEN_LOW_FLOWER_DROPS(attempts) { \
|
|
|
|
{ F16(20), F16(70), attempts, F16(50) }, \
|
|
|
|
{ F16(30), F16(60), attempts, F16(50) }, \
|
|
|
|
{ F16(50), F16(50), attempts, F16(40) }, \
|
|
|
|
{ F16(80), F16(40), attempts, F16(40) }, \
|
|
|
|
{ F16(100), F16(30), attempts, F16(40) }, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define REDUCED_FLOWER_DROPS(attempts) { \
|
|
|
|
{ F16(20), F16(40), attempts, F16(40) }, \
|
|
|
|
{ F16(30), F16(40), attempts, F16(40) }, \
|
|
|
|
{ F16(50), F16(40), attempts, F16(40) }, \
|
|
|
|
{ F16(80), F16(40), attempts, F16(40) }, \
|
|
|
|
{ F16(100), F16(30), attempts, F16(40) }, \
|
|
|
|
}
|
|
|
|
|
2022-09-11 18:23:47 +02:00
|
|
|
#define OVERRIDE_MOVEMENT_SPEED(speed) ((s32)(speed * 32767))
|
|
|
|
#define NO_OVERRIDE_MOVEMENT_SPEED OVERRIDE_MOVEMENT_SPEED(-1.0f)
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2022-04-12 08:01:58 +02:00
|
|
|
typedef struct QuizRequirement {
|
|
|
|
s32 requiredStoryProgress;
|
|
|
|
s32 numQuestionsUnlocked;
|
|
|
|
} QuizRequirement; // size = 0x8
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
typedef struct NpcBlueprint {
|
|
|
|
/* 0x00 */ s32 flags;
|
|
|
|
/* 0x04 */ s32 initialAnim;
|
|
|
|
/* 0x08 */ void (*onUpdate)(struct Npc*);
|
|
|
|
/* 0x0C */ void (*onRender)(struct Npc*);
|
|
|
|
} NpcBlueprint; // size = 0x10
|
|
|
|
|
2022-09-08 14:12:26 +02:00
|
|
|
typedef struct MobileAISettings {
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x00 */ f32 moveSpeed;
|
|
|
|
/* 0x04 */ s32 moveTime;
|
|
|
|
/* 0x08 */ s32 waitTime;
|
|
|
|
/* 0x0C */ f32 alertRadius;
|
2022-04-29 06:32:16 +02:00
|
|
|
/* 0x10 */ f32 alertOffsetDist; // offset along npc->yaw of the test point for alert volume overlap, creates directionality to enemy 'sight'
|
|
|
|
/* 0x14 */ s32 playerSearchInterval; // how often to search for player (frames)
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x18 */ f32 chaseSpeed;
|
2022-04-29 06:32:16 +02:00
|
|
|
/* 0x1C */ s32 chaseTurnRate; // how many degrees this NPC can turn per frame while chasing
|
|
|
|
/* 0x20 */ s32 chaseUpdateInterval; // how often to re-run chase init and re-acquire player position (frames)
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x24 */ f32 chaseRadius;
|
2022-04-29 06:32:16 +02:00
|
|
|
/* 0x28 */ f32 chaseOffsetDist; // offset along npc->yaw of the test point for chase volume overlap, creates directionality to enemy 'sight'
|
2022-10-15 18:04:53 +02:00
|
|
|
/* 0x2C */ s32 unk_AI_2C; // probably a boolean for enable loitering after a wander movement
|
2022-09-08 14:12:26 +02:00
|
|
|
} MobileAISettings; // size = 0x30
|
|
|
|
|
2023-01-25 03:33:20 +01:00
|
|
|
typedef struct GuardAISettings {
|
|
|
|
/* 0x00 */ f32 alertRadius;
|
|
|
|
/* 0x04 */ f32 alertOffsetDist; // offset along npc->yaw of the test point for alert volume overlap, creates directionality to enemy 'sight'
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x08 */ s32 playerSearchInterval; // how often to search for player (frames)
|
|
|
|
/* 0x0C */ f32 chaseSpeed;
|
2022-09-10 19:04:04 +02:00
|
|
|
/* 0x10 */ s32 chaseTurnRate; // how many degrees this NPC can turn per frame while chasing
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x14 */ s32 chaseUpdateInterval; // how often to re-run chase init and re-acquire player position (frames)
|
2022-09-10 19:04:04 +02:00
|
|
|
/* 0x18 */ f32 chaseRadius;
|
|
|
|
/* 0x1C */ f32 chaseOffsetDist; // offset along npc->yaw of the test point for alert volume overlap, creates directionality to enemy 'sight'
|
2023-01-25 03:33:20 +01:00
|
|
|
/* 0x20 */ s32 unk_AI_20; // probably equivalent to unk_AI_2C in MobileAISettings
|
|
|
|
} GuardAISettings; // size = 0x24
|
2022-09-08 14:12:26 +02:00
|
|
|
|
|
|
|
struct FireBarData;
|
|
|
|
typedef void (*FireBarCallback)(struct FireBarData*, s32);
|
|
|
|
|
|
|
|
typedef struct FireBarAISettings {
|
|
|
|
/* 0x00 */ Vec3i centerPos;
|
|
|
|
/* 0x0C */ s32 rotationRate;
|
|
|
|
/* 0x10 */ s32 firstNpc;
|
|
|
|
/* 0x14 */ s32 npcCount;
|
|
|
|
/* 0x18 */ FireBarCallback callback;
|
|
|
|
} FireBarAISettings; // size = 0x1C
|
|
|
|
|
|
|
|
typedef struct FireBarData {
|
|
|
|
/* 0x00 */ s32 flags;
|
|
|
|
/* 0x04 */ Vec3f centerPos;
|
|
|
|
/* 0x10 */ f32 rotationRate;
|
|
|
|
/* 0x14 */ s32 firstNpc;
|
|
|
|
/* 0x18 */ s32 npcCount;
|
|
|
|
/* 0x1C */ FireBarCallback callback;
|
|
|
|
/* 0x20 */ s32 soundIndex;
|
|
|
|
/* 0x24 */ f32 lastDeltaYaw;
|
|
|
|
/* 0x28 */ f32 yaw;
|
|
|
|
/* 0x2C */ FireBarAISettings* settings;
|
|
|
|
} FireBarData; // size = 0x30
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
typedef struct NpcSettings {
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x00 */ AnimID defaultAnim;
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x04 */ s16 height;
|
|
|
|
/* 0x06 */ s16 radius;
|
|
|
|
/* 0x08 */ UNK_PTR otherAI;
|
2022-01-16 14:28:09 +01:00
|
|
|
/* 0x0C */ EvtScript* onInteract;
|
|
|
|
/* 0x10 */ EvtScript* ai;
|
|
|
|
/* 0x14 */ EvtScript* onHit;
|
|
|
|
/* 0x18 */ EvtScript* aux;
|
|
|
|
/* 0x1C */ EvtScript* onDefeat;
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x20 */ s32 flags;
|
2022-11-01 13:27:10 +01:00
|
|
|
/* 0x24 */ s32 unk_24;
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x28 */ s16 level;
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x2A */ s16 actionFlags; // action flags: 1 = jump on seeing player
|
2021-10-29 19:57:15 +02:00
|
|
|
} NpcSettings; // size = 0x2C
|
|
|
|
|
|
|
|
typedef struct ItemDrop {
|
|
|
|
/* 0x00 */ s16 item;
|
|
|
|
/* 0x02 */ s16 weight;
|
2022-09-28 22:52:12 +02:00
|
|
|
/* 0x04 */ s16 unk_04;
|
2021-10-29 19:57:15 +02:00
|
|
|
} ItemDrop; // size = 0x06
|
|
|
|
|
|
|
|
/// @brief Describes heart/flower drop chances after defeating an Npc in the overworld.
|
|
|
|
///
|
|
|
|
/// The algorithm for calculating the number of hearts/flowers from a StatDrop is:
|
|
|
|
/// - If current HP/FP > cutoff, drop 0.
|
|
|
|
/// - Roll generalChance. If it fails, drop 0.
|
|
|
|
/// - Roll chancePerAttempt attempts times. For each success, drop a heart/flower.
|
|
|
|
///
|
2023-02-14 01:46:48 +01:00
|
|
|
/// NpcData holds a table of StatDrops for each stat (hearts, flowers). All are checked together
|
2021-10-29 19:57:15 +02:00
|
|
|
/// and the number of hearts/flowers to drop is the total number of successful attempts for each stat.
|
|
|
|
///
|
|
|
|
/// Each heart/flower is worth 1 HP and 1 FP respectively, if picked up.
|
|
|
|
///
|
|
|
|
/// cutoff, generalChance, and chancePerAttempt are short fixed-point percentage values.
|
|
|
|
/// That is, `F16(0)` is a 0% chance and `F16(100)` is a 100% chance.
|
|
|
|
typedef struct StatDrop {
|
|
|
|
/* 0x00 */ s16 cutoff; ///< % of max HP/FP. If current HP/FP > cutoff, no hearts/flowers can be dropped.
|
|
|
|
/* 0x02 */ s16 generalChance; ///< % chance for any hearts/flowers to be dropped at all from this StatDrop.
|
|
|
|
/* 0x04 */ s16 attempts; ///< Maximum number of hearts/flowers that can be dropped from this StatDrop.
|
|
|
|
/* 0x06 */ s16 chancePerAttempt; ///< % chance for a single heart/flower to be dropped from each attempt.
|
|
|
|
} StatDrop; // size = 0x08
|
|
|
|
|
|
|
|
typedef struct EnemyDrops {
|
2021-11-11 05:30:59 +01:00
|
|
|
/* 0x00 */ u8 dropFlags;
|
2022-12-29 06:48:27 +01:00
|
|
|
/* 0x01 */ u8 itemDropChance; // %
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x02 */ ItemDrop itemDrops[8];
|
|
|
|
/* 0x32 */ StatDrop heartDrops[8];
|
|
|
|
/* 0x72 */ StatDrop flowerDrops[8];
|
|
|
|
/* 0xB2 */ s16 minCoinBonus;
|
|
|
|
/* 0xB4 */ s16 maxCoinBonus;
|
|
|
|
/* 0xB6 */ char unk_DE[2];
|
|
|
|
} EnemyDrops; // size = 0xB8
|
|
|
|
|
2022-12-29 06:48:27 +01:00
|
|
|
// TODO unify this with EnemyDrops (union? requires changing tons of data)
|
|
|
|
typedef struct EnemyDropsFlat {
|
|
|
|
/* 0x00 */ u8 dropFlags;
|
|
|
|
/* 0x01 */ u8 itemDropChance;
|
|
|
|
/* 0x02 */ s16 itemDrops[8 * 3];
|
|
|
|
/* 0x32 */ s16 heartDrops[8 * 4];
|
|
|
|
/* 0x72 */ s16 flowerDrops[8 * 4];
|
|
|
|
/* 0xB2 */ s16 minCoinBonus;
|
|
|
|
/* 0xB4 */ s16 maxCoinBonus;
|
|
|
|
/* 0xB6 */ char unk_DE[2];
|
|
|
|
} EnemyDropsFlat; // size = 0xB8
|
|
|
|
|
2021-10-29 19:57:15 +02:00
|
|
|
enum TerritoryShape { SHAPE_CYLINDER, SHAPE_RECT };
|
|
|
|
|
|
|
|
typedef struct {
|
2022-04-29 06:32:16 +02:00
|
|
|
/* 0x00 */ s32 skipPlayerDetectChance;
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x04 */ enum TerritoryShape shape;
|
|
|
|
/* 0x08 */ s32 pointX;
|
|
|
|
/* 0x0C */ s32 pointZ;
|
|
|
|
/* 0x10 */ s32 sizeX;
|
|
|
|
/* 0x14 */ s32 sizeZ;
|
2022-04-29 06:32:16 +02:00
|
|
|
/* 0x18 */ f32 halfHeight;
|
|
|
|
/* 0x1C */ s16 detectFlags; // 1 = ignore partner hiding (bow/sushie dont work) | 2 = ignore elevation
|
|
|
|
} EnemyDetectVolume; // size = 0x20
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
typedef struct {
|
2022-09-11 18:23:47 +02:00
|
|
|
/* 0x00 */ Vec3i centerPos;
|
|
|
|
/* 0x0C */ VecXZi wanderSize;
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x14 */ s32 moveSpeedOverride;
|
|
|
|
/* 0x18 */ enum TerritoryShape wanderShape;
|
2022-09-11 18:23:47 +02:00
|
|
|
/* 0x1C */ Vec3i detectPos;
|
|
|
|
/* 0x28 */ VecXZi detectSize;
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x30 */ enum TerritoryShape detectShape;
|
|
|
|
/* 0x34 */ s32 isFlying;
|
|
|
|
} EnemyTerritoryWander; // size = 0x38
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
/* 0x00 */ s32 numPoints;
|
|
|
|
/* 0x04 */ Vec3i points[10];
|
|
|
|
/* 0x7C */ s32 moveSpeedOverride;
|
2022-09-11 18:23:47 +02:00
|
|
|
/* 0x80 */ Vec3i detectPos;
|
|
|
|
/* 0x8C */ VecXZi detectSize;
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x94 */ enum TerritoryShape detectShape;
|
|
|
|
/* 0x98 */ s32 isFlying;
|
|
|
|
} EnemyTerritoryPatrol; // size = 0x9C
|
|
|
|
|
|
|
|
typedef union {
|
|
|
|
EnemyTerritoryWander wander;
|
|
|
|
EnemyTerritoryPatrol patrol;
|
2022-09-11 18:23:47 +02:00
|
|
|
s32 temp[48]; // TODO: remove when old map data is replaced
|
2021-10-29 19:57:15 +02:00
|
|
|
char PADDING[0xC0];
|
|
|
|
} EnemyTerritory; // size = 0xC0
|
|
|
|
|
2022-09-08 14:12:26 +02:00
|
|
|
typedef union NpcInitialVars {
|
|
|
|
/* 0x0 */ s32 value;
|
2022-10-15 18:04:53 +02:00
|
|
|
/* 0x0 */ s8 bytes[4];
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x0 */ s32* array;
|
|
|
|
} NpcInitialVars;
|
|
|
|
|
2023-02-14 01:46:48 +01:00
|
|
|
typedef struct NpcData {
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x000 */ s32 id;
|
|
|
|
/* 0x004 */ NpcSettings* settings;
|
|
|
|
/* 0x008 */ Vec3f pos;
|
|
|
|
/* 0x014 */ s32 flags;
|
|
|
|
/* 0x018 */ EvtScript* init;
|
|
|
|
/* 0x01C */ s32 initVarCount;
|
|
|
|
/* 0x020 */ NpcInitialVars initVar;
|
|
|
|
/* 0x024 */ s32 yaw;
|
|
|
|
/* 0x028 */ EnemyDrops drops;
|
|
|
|
/* 0x0E0 */ EnemyTerritory territory;
|
|
|
|
/* 0x1A0 */ struct {
|
|
|
|
/* 0x00 */ s32 idle;
|
|
|
|
/* 0x04 */ s32 walk;
|
|
|
|
/* 0x08 */ s32 run;
|
|
|
|
/* 0x0C */ s32 chase;
|
2022-09-11 18:23:47 +02:00
|
|
|
/* 0x10 */ s32 anim_4;
|
|
|
|
/* 0x14 */ s32 anim_5;
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x18 */ s32 death;
|
|
|
|
/* 0x1C */ s32 hit;
|
2022-09-11 18:23:47 +02:00
|
|
|
/* 0x20 */ s32 anim_8;
|
|
|
|
/* 0x24 */ s32 anim_9;
|
|
|
|
/* 0x28 */ s32 anim_A;
|
|
|
|
/* 0x2C */ s32 anim_B;
|
|
|
|
/* 0x30 */ s32 anim_C;
|
|
|
|
/* 0x34 */ s32 anim_D;
|
|
|
|
/* 0x38 */ s32 anim_E;
|
|
|
|
/* 0x3C */ s32 anim_F;
|
2022-09-08 14:12:26 +02:00
|
|
|
} animations;
|
|
|
|
/* 0x1E0 */ s8 unk__1E0;
|
|
|
|
/* 0x1E1 */ s8 unk__1E1;
|
|
|
|
/* 0x1E2 */ s8 unk__1E2;
|
|
|
|
/* 0x1E3 */ u8 aiDetectFlags;
|
|
|
|
/* 0x1E4 */ u32 aiFlags;
|
2023-02-15 09:18:27 +01:00
|
|
|
/* 0x1E8 */ AnimID* extraAnimations;
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x1EC */ s32 tattle;
|
2023-02-14 01:46:48 +01:00
|
|
|
} NpcData; // size = 0x1F0
|
2022-09-08 14:12:26 +02:00
|
|
|
|
|
|
|
/// Zero-terminated.
|
2022-11-01 13:27:10 +01:00
|
|
|
typedef struct NpcGroup {
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x00 */ s32 npcCount;
|
2023-02-14 01:46:48 +01:00
|
|
|
/* 0x04 */ NpcData* npcs;
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x08 */ s16 battle;
|
|
|
|
/* 0x0A */ s16 stage;
|
2022-11-01 13:27:10 +01:00
|
|
|
} NpcGroup; // size = 0x0C
|
|
|
|
|
|
|
|
typedef NpcGroup NpcGroupList[];
|
2022-09-08 14:12:26 +02:00
|
|
|
|
2022-04-17 17:36:37 +02:00
|
|
|
// function signature used for state handlers in AI main functions
|
2022-09-08 14:12:26 +02:00
|
|
|
typedef void AIStateHandler(Evt* script, MobileAISettings* settings, EnemyDetectVolume* territory);
|
2022-04-17 17:36:37 +02:00
|
|
|
|
2021-10-29 19:57:15 +02:00
|
|
|
typedef struct Enemy {
|
|
|
|
/* 0x00 */ s32 flags;
|
|
|
|
/* 0x04 */ s8 encounterIndex;
|
|
|
|
/* 0x05 */ s8 encountered;
|
|
|
|
/* 0x06 */ u8 scriptGroup; /* scripts launched for this npc controller will be assigned this group */
|
2023-02-18 09:13:07 +01:00
|
|
|
/* 0x07 */ s8 hitboxIsActive; // when set, contact will trigger a first strike
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x08 */ s16 npcID;
|
|
|
|
/* 0x0A */ s16 spawnPos[3];
|
2023-02-18 09:13:07 +01:00
|
|
|
/* 0x10 */ Vec3s unk_10; //TODO hitbox pos?
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x16 */ char unk_16[2];
|
2022-05-05 16:08:16 +02:00
|
|
|
/* 0x18 */ NpcSettings* npcSettings;
|
2022-01-16 14:28:09 +01:00
|
|
|
/* 0x1C */ EvtScript* initBytecode;
|
|
|
|
/* 0x20 */ EvtScript* interactBytecode;
|
|
|
|
/* 0x24 */ EvtScript* aiBytecode;
|
|
|
|
/* 0x28 */ EvtScript* hitBytecode;
|
|
|
|
/* 0x2C */ EvtScript* auxBytecode;
|
|
|
|
/* 0x30 */ EvtScript* defeatBytecode;
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0x34 */ struct Evt* initScript;
|
|
|
|
/* 0x38 */ struct Evt* interactScript;
|
|
|
|
/* 0x3C */ struct Evt* aiScript;
|
|
|
|
/* 0x40 */ struct Evt* hitScript;
|
|
|
|
/* 0x44 */ struct Evt* auxScript;
|
|
|
|
/* 0x48 */ struct Evt* defeatScript;
|
|
|
|
/* 0x4C */ s32 initScriptID;
|
|
|
|
/* 0x50 */ s32 interactScriptID;
|
|
|
|
/* 0x54 */ s32 aiScriptID;
|
|
|
|
/* 0x58 */ s32 hitScriptID;
|
|
|
|
/* 0x5C */ s32 auxScriptID;
|
|
|
|
/* 0x60 */ s32 defeatScriptID;
|
|
|
|
/* 0x64 */ UNK_PTR unk_64;
|
|
|
|
/* 0x68 */ char unk_68[4];
|
2022-04-05 11:52:06 +02:00
|
|
|
/* 0x6C */ union {
|
|
|
|
/* */ s32 varTable[16];
|
|
|
|
/* */ f32 varTableF[16];
|
|
|
|
/* */ void* varTablePtr[16];
|
|
|
|
/* */ };
|
2022-04-29 06:32:16 +02:00
|
|
|
/* 0xAC */ u8 aiDetectFlags; // detect player flags: 1 = require line of sight | 2 = adjust hitbox for moving player
|
2022-01-16 14:32:17 +01:00
|
|
|
/* 0xAD */ char unk_AD[3];
|
2022-04-29 06:32:16 +02:00
|
|
|
/* 0xB0 */ u32 aiFlags;
|
2023-02-10 09:00:28 +01:00
|
|
|
/* 0xB4 */ s8 aiSuspendTime;
|
2023-01-15 10:22:41 +01:00
|
|
|
/* 0xB5 */ s8 instigatorValue; // value is passed to first actor in formation if a battle is triggered with this enemy
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0xB6 */ char unk_B6[2];
|
2022-01-16 14:28:09 +01:00
|
|
|
/* 0xB8 */ EvtScript* unk_B8; // some bytecode
|
2021-10-29 19:57:15 +02:00
|
|
|
/* 0xBC */ struct Evt* unk_BC; // some script
|
|
|
|
/* 0xC0 */ s32 unk_C0; // some script ID
|
|
|
|
/* 0xC4 */ s32 unk_C4;
|
|
|
|
/* 0xC8 */ s32 unk_C8;
|
|
|
|
/* 0xCC */ s32* animList;
|
|
|
|
/* 0xD0 */ EnemyTerritory* territory;
|
|
|
|
/* 0xD4 */ EnemyDrops* drops;
|
|
|
|
/* 0xD8 */ u32 tattleMsg;
|
2022-05-31 20:39:46 +02:00
|
|
|
/* 0xDC */ s32 unk_DC;
|
2023-02-18 09:13:07 +01:00
|
|
|
/* 0xE0 */ s16 savedNpcYaw;
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0xE2 */ char unk_E2[6];
|
2023-02-18 09:13:07 +01:00
|
|
|
#ifdef _DEAD_H_
|
|
|
|
/* 0x0DC */ char unk_E8[32];
|
|
|
|
/* 0x108 */ Vec3f unk_108; // Associated NPC Pos?
|
|
|
|
/* 0x114 */ f32 unk_114;
|
|
|
|
/* 0x118 */ f32 unk_118;
|
|
|
|
#endif
|
|
|
|
} Enemy; // size = 0xE8, dead size = 0x11C
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2022-05-05 16:08:16 +02:00
|
|
|
typedef struct Encounter {
|
|
|
|
/* 0x00 */ s32 count;
|
|
|
|
/* 0x04 */ Enemy* enemy[16];
|
|
|
|
/* 0x44 */ s16 battle;
|
|
|
|
/* 0x46 */ s16 stage;
|
|
|
|
/* 0x48 */ s16 encounterID;
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x4A */ char unk_4C[2];
|
|
|
|
} Encounter; // size = 0x4C
|
2022-05-05 16:08:16 +02:00
|
|
|
|
|
|
|
typedef struct EncounterStatus {
|
|
|
|
/* 0x000 */ s32 flags;
|
2022-09-08 14:21:07 +02:00
|
|
|
/* 0x004 */ s8 firstStrikeType; /* 0 = none, 1 = player, 2 = enemy */
|
2022-05-05 16:08:16 +02:00
|
|
|
/* 0x005 */ s8 hitType; /* 1 = none/enemy, 2 = jump */
|
|
|
|
/* 0x006 */ s8 hitTier; /* 0 = normal, 1 = super, 2 = ultra */
|
|
|
|
/* 0x007 */ char unk_07;
|
|
|
|
/* 0x008 */ s8 unk_08;
|
|
|
|
/* 0x009 */ s8 battleOutcome; /* 0 = won, 1 = lost */
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x00A */ s8 battleTriggerCooldown; ///< set to 15 after victory, 45 after fleeing
|
2023-03-14 09:55:49 +01:00
|
|
|
/* 0x00B */ b8 hasMerleeCoinBonus; /* triple coins when TRUE */
|
2022-05-05 16:08:16 +02:00
|
|
|
/* 0x00C */ u8 damageTaken; /* valid after battle */
|
|
|
|
/* 0x00D */ char unk_0D;
|
|
|
|
/* 0x00E */ s16 coinsEarned; /* valid after battle */
|
2023-01-15 10:22:41 +01:00
|
|
|
/* 0x010 */ s8 instigatorValue;
|
2022-09-08 14:21:07 +02:00
|
|
|
/* 0x011 */ s8 allowFleeing;
|
2022-11-01 13:27:10 +01:00
|
|
|
/* 0x012 */ s8 scriptedBattle; ///< battle started by StartBattle but not by encounter
|
2022-10-09 11:09:41 +02:00
|
|
|
/* 0x013 */ s8 dropWhackaBump;
|
2022-05-05 16:08:16 +02:00
|
|
|
/* 0x014 */ s32 songID;
|
|
|
|
/* 0x018 */ s32 unk_18;
|
|
|
|
/* 0x01C */ s8 numEncounters; /* number of encounters for current map (in list) */
|
|
|
|
/* 0x01D */ s8 currentAreaIndex;
|
|
|
|
/* 0x01E */ u8 currentMapIndex;
|
|
|
|
/* 0x01F */ u8 currentEntryIndex;
|
|
|
|
/* 0x020 */ s8 mapID;
|
|
|
|
/* 0x021 */ s8 resetMapEncounterFlags;
|
|
|
|
/* 0x021 */ char unk_22[2];
|
|
|
|
/* 0x024 */ s32* npcGroupList;
|
|
|
|
/* 0x028 */ Encounter* encounterList[24];
|
|
|
|
/* 0x088 */ Encounter* currentEncounter;
|
|
|
|
/* 0x08C */ Enemy* currentEnemy;
|
|
|
|
/* 0x090 */ s32 fadeOutAmount;
|
|
|
|
/* 0x094 */ s32 unk_94;
|
|
|
|
/* 0x098 */ s32 fadeOutAccel;
|
|
|
|
/* 0x09C */ s32 battleStartCountdown;
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x0A0 */ s8 dizzyAttackStatus;
|
2022-05-05 16:08:16 +02:00
|
|
|
/* 0x0A1 */ char unk_A1[0x1];
|
2022-09-08 14:12:26 +02:00
|
|
|
/* 0x0A2 */ s16 dizzyAttackDuration;
|
2022-11-01 13:27:10 +01:00
|
|
|
/* 0x0A4 */ s8 unk_A4;
|
|
|
|
/* 0x0A5 */ char unk_A5[0x1];
|
|
|
|
/* 0x0A6 */ s16 unk_A6;
|
|
|
|
/* 0x0A8 */ s8 unk_A8;
|
|
|
|
/* 0x0A9 */ char unk_A9[0x1];
|
|
|
|
/* 0x0AA */ s16 unk_AA;
|
|
|
|
/* 0x0AC */ s8 unk_AC;
|
|
|
|
/* 0x0AD */ char unk_AD[0x1];
|
|
|
|
/* 0x0AE */ s16 unk_AE;
|
2022-05-05 16:08:16 +02:00
|
|
|
/* 0x0B0 */ s32 defeatFlags[60][12];
|
|
|
|
/* 0xFB0 */ s16 recentMaps[2];
|
|
|
|
/* 0xFB4 */ char unk_FB4[4];
|
|
|
|
} EncounterStatus; // size = 0xFB8
|
|
|
|
|
|
|
|
extern EncounterStatus gCurrentEncounter;
|
|
|
|
|
2022-04-29 06:32:16 +02:00
|
|
|
s32 basic_ai_check_player_dist(EnemyDetectVolume* arg0, Enemy* arg1, f32 arg2, f32 arg3, s8 arg4);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// The default Npc::onUpdate and Npc::onRender callback.
|
2021-12-20 16:59:25 +01:00
|
|
|
void STUB_npc_callback(Npc*);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
void mtx_ident_mirror_y(Matrix4f mtx);
|
|
|
|
|
|
|
|
void clear_npcs(void);
|
|
|
|
|
|
|
|
/// Points the current NPC list to the world or battle lists depending on game state.
|
|
|
|
void init_npc_list(void);
|
|
|
|
|
|
|
|
/// Iterates over the NPC list, doing absolutely nothing.
|
|
|
|
/// Presumably did something once upon a time but got commented out.
|
|
|
|
void npc_iter_no_op(void);
|
|
|
|
|
2023-02-15 09:18:27 +01:00
|
|
|
s32 create_npc_impl(NpcBlueprint* blueprint, AnimID* animList, s32 skipLoadingAnims);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-02-15 09:18:27 +01:00
|
|
|
s32 create_basic_npc(NpcBlueprint* blueprint);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-02-15 09:18:27 +01:00
|
|
|
s32 create_standard_npc(NpcBlueprint* blueprint, AnimID* animList);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-02-15 09:18:27 +01:00
|
|
|
s32 create_peach_npc(NpcBlueprint* blueprint);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
void free_npc_by_index(s32 listIndex);
|
|
|
|
|
|
|
|
void free_npc(Npc* npc);
|
|
|
|
|
|
|
|
Npc* get_npc_by_index(s32 listIndex);
|
|
|
|
|
|
|
|
void npc_do_world_collision(Npc* npc);
|
|
|
|
|
|
|
|
void npc_do_other_npc_collision(Npc* npc);
|
|
|
|
|
|
|
|
/// @returns TRUE if a collision occurred
|
|
|
|
s32 npc_do_player_collision(Npc* npc);
|
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
void npc_try_apply_gravity(Npc* npc);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
s32 npc_try_snap_to_ground(Npc* npc, f32 velocity);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// Updates all NPCs.
|
|
|
|
void update_npcs(void);
|
|
|
|
|
2022-04-05 14:53:40 +02:00
|
|
|
f32 npc_get_render_yaw(Npc* npc);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2022-10-16 16:22:18 +02:00
|
|
|
void appendGfx_npc(void* data);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// Renders all NPCs.
|
|
|
|
void render_npcs(void);
|
|
|
|
|
|
|
|
void npc_move_heading(Npc* npc, f32 speed, f32 yaw);
|
|
|
|
|
|
|
|
Npc* get_npc_unsafe(s32 npcID);
|
|
|
|
|
|
|
|
/// @returns NULL if not found
|
|
|
|
Npc* get_npc_safe(s32 npcID);
|
|
|
|
|
|
|
|
void enable_npc_shadow(Npc* npc);
|
|
|
|
|
|
|
|
void disable_npc_shadow(Npc* npc);
|
|
|
|
|
|
|
|
void update_npc_blur(Npc* npc);
|
|
|
|
|
2022-12-29 06:48:27 +01:00
|
|
|
void appendGfx_npc_blur(void* npc);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
void npc_enable_collisions(void);
|
|
|
|
|
|
|
|
void npc_disable_collisions(void);
|
|
|
|
|
|
|
|
void func_8003B1A8(void);
|
|
|
|
|
|
|
|
void npc_reload_all(void);
|
|
|
|
|
|
|
|
void set_npc_yaw(Npc* npc, f32 yaw);
|
|
|
|
|
|
|
|
void npc_set_palswap_mode_A(Npc* npc, s32 arg1);
|
|
|
|
|
|
|
|
void npc_set_palswap_mode_B(Npc* npc, s32 arg1);
|
|
|
|
|
|
|
|
void func_8003B420(Npc* npc);
|
|
|
|
|
|
|
|
void npc_set_palswap_1(Npc* npc, s32 palIndexA, s32 palIndexB, s32 timeHoldA, s32 timeAB);
|
|
|
|
|
|
|
|
void npc_set_palswap_2(Npc* npc, s32 timeHoldB, s32 timeBA, s32 palIndexC, s32 palIndexD);
|
|
|
|
|
2022-04-05 14:53:40 +02:00
|
|
|
void npc_draw_with_palswap(Npc* npc, s32 arg1, Matrix4f mtx);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2022-04-05 14:53:40 +02:00
|
|
|
void npc_draw_palswap_mode_0(Npc* npc, s32 arg1, Matrix4f mtx);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2022-04-05 14:53:40 +02:00
|
|
|
s32 npc_draw_palswap_mode_1(Npc*, s32, Matrix4f mtx);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2022-04-05 14:53:40 +02:00
|
|
|
u16 npc_blend_palette_colors(u16 colorA, u16 colorB, s32 lerpAlpha);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2022-04-05 14:53:40 +02:00
|
|
|
s32 npc_draw_palswap_mode_2(Npc*, s32, s32, Matrix4f mtx);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2022-04-05 14:53:40 +02:00
|
|
|
s32 npc_draw_palswap_mode_4(Npc*, s32, Matrix4f mtx);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
void npc_set_decoration(Npc* npc, s32 idx, s32 decorationType);
|
|
|
|
|
|
|
|
void npc_remove_decoration(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
s32 npc_update_decorations(Npc* npc);
|
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
void npc_remove_decoration_impl(Npc* npc, s32 idx);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
void npc_reset_current_decoration(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_update_decoration_none(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_remove_decoration_none(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_update_decoration_bowser_aura(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_remove_decoration_bowser_aura(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_update_decoration_sweat(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_remove_decoration_sweat(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_update_decoration_seeing_stars(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_remove_decoration_seeing_stars(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_update_decoration_glow_in_front(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_remove_decoration_glow_in_front(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_update_decoration_glow_behind(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_remove_decoration_glow_behind(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_update_decoration_charged(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc_remove_decoration_charged(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
void npc__reset_current_decoration(Npc* npc, s32 idx);
|
|
|
|
|
|
|
|
/// Finds the closest NPC to a given point within a radius. Ignores Y position.
|
|
|
|
///
|
2023-02-18 09:13:07 +01:00
|
|
|
/// NPCs with NPC_FLAG_PARTNER set are ignored.
|
|
|
|
/// See also npc_find_closest_simple(), which requires that NPC_FLAG_PARTNER be set.
|
2021-10-29 19:57:15 +02:00
|
|
|
///
|
|
|
|
/// @param x X position
|
|
|
|
/// @param y Y position (unused)
|
|
|
|
/// @param z Z position
|
|
|
|
/// @param radius No NPCs further than this distance will be considered
|
|
|
|
///
|
|
|
|
/// @returns NULL if there are no NPCs within radius
|
|
|
|
Npc* npc_find_closest(f32 x, f32 y, f32 z, f32 radius);
|
|
|
|
|
|
|
|
/// Finds the closest simple-hitbox NPC to a given point within a radius. Ignores Y position.
|
|
|
|
///
|
2023-02-18 09:13:07 +01:00
|
|
|
/// Only NPCs with NPC_FLAG_PARTNER set are considered.
|
|
|
|
/// See also npc_find_closest(), which requires that NPC_FLAG_PARTNER be unset.
|
2021-10-29 19:57:15 +02:00
|
|
|
///
|
|
|
|
/// @param x X position
|
|
|
|
/// @param y Y position (unused)
|
|
|
|
/// @param z Z position
|
|
|
|
/// @param radius No NPCs further than this distance will be considered
|
|
|
|
///
|
|
|
|
/// @returns NULL if there are no NPCs within radius
|
|
|
|
Npc* npc_find_closest_simple(f32 x, f32 y, f32 z, f32 radius);
|
|
|
|
|
|
|
|
//s32 npc_find_standing_on_entity();
|
|
|
|
|
|
|
|
s32 npc_get_collider_below(Npc* npc);
|
|
|
|
|
2023-05-09 05:46:47 +02:00
|
|
|
void npc_imgfx_update(Npc* npc);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-04-20 10:15:58 +02:00
|
|
|
void npc_set_imgfx_params(Npc* npc, s32 arg1, s32 arg2, s32 arg3, s32 arg4, s32 arg5, s32 arg6);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
void spawn_surface_effects(Npc* npc, SurfaceInteractMode mode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
void spawn_default_surface_effects(Npc* npc, SurfaceInteractMode mode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
void spawn_flower_surface_effects(Npc* npc, SurfaceInteractMode mode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
void spawn_cloud_surface_effects(Npc* npc, SurfaceInteractMode mode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
void spawn_snow_surface_effects(Npc* npc, SurfaceInteractMode mode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
void spawn_hedge_surface_effects(Npc* npc, SurfaceInteractMode mode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
2023-03-04 04:20:43 +01:00
|
|
|
void spawn_water_surface_effects(Npc* npc, SurfaceInteractMode mode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// Duplicate of set_defeated().
|
|
|
|
void COPY_set_defeated(s32 mapID, s32 encounterID);
|
|
|
|
|
|
|
|
void init_encounter_status(void);
|
|
|
|
|
|
|
|
void clear_encounter_status(void);
|
|
|
|
|
|
|
|
void func_8003E50C(void);
|
|
|
|
|
|
|
|
void func_8003E514(s8 arg0);
|
|
|
|
|
|
|
|
void update_encounters(void);
|
|
|
|
|
|
|
|
void draw_encounter_ui(void);
|
|
|
|
|
|
|
|
void draw_first_strike_ui(void);
|
|
|
|
|
2022-11-22 05:12:28 +01:00
|
|
|
void npc_render_worker_do_nothing(void);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
void make_npcs(s32 flags, s32 mapID, s32* npcGroupList);
|
|
|
|
|
|
|
|
s32 kill_encounter(Enemy* enemy);
|
|
|
|
|
|
|
|
void kill_enemy(Enemy* enemy);
|
|
|
|
|
|
|
|
/// Binds the specified ai script to the specified enemy
|
|
|
|
///
|
|
|
|
/// @param enemy pointer to the enemy to bind the script to
|
|
|
|
/// @param aiScriptBytecode pointer to the script to be bound.
|
2022-01-16 14:28:09 +01:00
|
|
|
s32 bind_enemy_ai(Enemy* enemy, EvtScript* aiScriptBytecode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// Binds the specified auxillary script to the specified enemy
|
|
|
|
///
|
|
|
|
/// @param enemy pointer to the enemy to bind the script to
|
|
|
|
/// @param auxScriptBytecode pointer to the script to be bound.
|
2022-01-16 14:28:09 +01:00
|
|
|
s32 bind_enemy_aux(Enemy* enemy, EvtScript* auxScriptBytecode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// Binds the specified interact script to the specified enemy
|
|
|
|
///
|
|
|
|
/// @param enemy pointer to the enemy to bind the script to
|
|
|
|
/// @param interactScriptBytecode pointer to the script to be bound.
|
2022-01-16 14:28:09 +01:00
|
|
|
s32 bind_enemy_interact(Enemy* enemy, EvtScript* interactScriptBytecode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// Binds the specified ai script to the npc matching the specified npcId
|
|
|
|
///
|
|
|
|
/// @param npcID ID of the desired npc
|
|
|
|
/// @param npcAiBytecode pointer to the script to be bound.
|
2022-01-16 14:28:09 +01:00
|
|
|
void bind_npc_ai(s32 npcID, EvtScript* npcAiBytecode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// Binds the specified auxillary script to the npc matching the specified npcId
|
|
|
|
///
|
|
|
|
/// @param npcID ID of the desired npc
|
|
|
|
/// @param npcAuxBytecode pointer to the script to be bound.
|
2022-01-16 14:28:09 +01:00
|
|
|
void bind_npc_aux(s32 npcID, EvtScript* npcAuxBytecode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// Binds the specified interact script to the npc matching the specified npcId
|
|
|
|
///
|
|
|
|
/// @param npcID ID of the desired npc
|
|
|
|
/// @param npcInteractBytecode pointer to the script to be bound.
|
2022-01-16 14:28:09 +01:00
|
|
|
void bind_npc_interact(s32 npcID, EvtScript* npcInteractBytecode);
|
2021-10-29 19:57:15 +02:00
|
|
|
|
|
|
|
/// Looks for an enemy matching the specified npcID.
|
|
|
|
///
|
|
|
|
/// @param npcID ID of the npc bound to the desired enemy.
|
|
|
|
///
|
|
|
|
/// @returns pointer to Enemy struct, if one is found. If one is not found, a panic occurs.
|
|
|
|
Enemy* get_enemy(s32 npcID);
|
|
|
|
|
|
|
|
/// Same as get_enemy(), with the exception of always returning a value if an enemy is not found.
|
|
|
|
///
|
|
|
|
/// @param npcID ID of the npc bound to the desired enemy.
|
|
|
|
///
|
|
|
|
/// @returns pointer to Enemy struct, if one is found. Otherwise, NULL.
|
|
|
|
Enemy* get_enemy_safe(s32 npcID);
|
|
|
|
|
2022-10-16 16:22:18 +02:00
|
|
|
void set_npc_sprite(Npc* npc, s32 anim, AnimID* extraAnimList);
|
|
|
|
|
2021-10-29 19:57:15 +02:00
|
|
|
#endif
|