2020-10-03 15:22:44 +00:00
|
|
|
#include "global.h"
|
2020-05-18 18:24:00 +00:00
|
|
|
|
2021-08-30 01:24:32 +00:00
|
|
|
// Linker symbol declarations (used in the table below)
|
|
|
|
#define DEFINE_EFFECT_SS(name, _1) DECLARE_OVERLAY_SEGMENT(name)
|
|
|
|
#define DEFINE_EFFECT_SS_UNSET(_0)
|
2020-05-18 18:24:00 +00:00
|
|
|
|
2021-08-30 01:24:32 +00:00
|
|
|
#include "tables/effect_ss_table.h"
|
2020-05-18 18:24:00 +00:00
|
|
|
|
2021-08-30 01:24:32 +00:00
|
|
|
#undef DEFINE_EFFECT_SS
|
|
|
|
#undef DEFINE_EFFECT_SS_UNSET
|
|
|
|
|
|
|
|
// Init Vars declarations (also used in the table below)
|
|
|
|
#define DEFINE_EFFECT_SS(name, _1) extern EffectSsInit name##_InitVars;
|
|
|
|
#define DEFINE_EFFECT_SS_UNSET(_0)
|
|
|
|
|
|
|
|
#include "tables/effect_ss_table.h"
|
|
|
|
|
|
|
|
#undef DEFINE_EFFECT_SS
|
|
|
|
#undef DEFINE_EFFECT_SS_UNSET
|
|
|
|
|
|
|
|
// Effect SS Overlay Table definition
|
2022-10-02 15:38:09 +00:00
|
|
|
#define DEFINE_EFFECT_SS(name, _1) \
|
|
|
|
{ \
|
|
|
|
(uintptr_t)_ovl_##name##SegmentRomStart, \
|
|
|
|
(uintptr_t)_ovl_##name##SegmentRomEnd, \
|
|
|
|
_ovl_##name##SegmentStart, \
|
|
|
|
_ovl_##name##SegmentEnd, \
|
|
|
|
NULL, \
|
|
|
|
&name##_InitVars, \
|
|
|
|
1, \
|
2021-08-30 01:24:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
#define DEFINE_EFFECT_SS_UNSET(_0) { 0 },
|
2020-05-18 18:24:00 +00:00
|
|
|
|
|
|
|
EffectSsOverlay gEffectSsOverlayTable[] = {
|
2021-08-30 01:24:32 +00:00
|
|
|
#include "tables/effect_ss_table.h"
|
2020-05-18 18:24:00 +00:00
|
|
|
};
|
2021-08-30 01:24:32 +00:00
|
|
|
|
|
|
|
#undef DEFINE_EFFECT_SS
|
|
|
|
#undef DEFINE_EFFECT_SS_UNSET
|