mirror of
https://github.com/zeldaret/tp
synced 2026-08-18 13:43:24 -04:00
kankyo mostly done (#2269)
* work on kankyo * some more kankyo work * kankyo almost done * kankyo mostly done * first cleanup pass * some more renaming * rename a bunch of kankyo vars * fix regression
This commit is contained in:
@@ -11,12 +11,12 @@ struct color_RGB_class {
|
||||
|
||||
// Invented name; Used as u8 `darkLv` in dKydata_darkworldInfo_c.
|
||||
enum dKyd_DARKLV {
|
||||
FARON = 0,
|
||||
ELDIN = 1,
|
||||
LANAYRU = 2,
|
||||
TEST = 5, // Only used with nonexistent test stages
|
||||
UNCLEARABLE = 6, // Default. Palace of Twilight stages use this
|
||||
ALWAYS_DARK = 8, // Unused. Forces Twilight
|
||||
KY_DARKLV_FARON = 0,
|
||||
KY_DARKLV_ELDIN = 1,
|
||||
KY_DARKLV_LANAYRU = 2,
|
||||
KY_DARKLV_TEST = 5, // Only used with nonexistent test stages
|
||||
KY_DARKLV_UNCLEARABLE = 6, // Default. Palace of Twilight stages use this
|
||||
KY_DARKLV_ALWAYS = 8, // Unused. Forces Twilight
|
||||
};
|
||||
|
||||
class dKydata_darkworldInfo_c {
|
||||
@@ -53,7 +53,7 @@ enum BloomType {
|
||||
};
|
||||
|
||||
#define BLOOMINFO_MAX 64
|
||||
class dkydata_bloomInfo_info_class {
|
||||
class dKydata_BloomInfo_c {
|
||||
public:
|
||||
/* 0x0 */ u8 mType;
|
||||
/* 0x1 */ u8 mThreshold;
|
||||
@@ -76,10 +76,10 @@ void* dKyd_dmvrbox_getp();
|
||||
dKyd_lightSchejule* dKyd_schejule_getp();
|
||||
dKyd_lightSchejule* dKyd_schejule_boss_getp();
|
||||
void dKyd_xfog_table_set(u8);
|
||||
void* dKyd_maple_col_getp();
|
||||
color_RGB_class* dKyd_maple_col_getp();
|
||||
dKydata_darkworldInfo_c* dKyd_darkworld_tbl_getp();
|
||||
dKydata_lightsizeInfo_c* dKyd_light_size_tbl_getp();
|
||||
dKydata_lightsizeInfo_c* dKyd_light_tw_size_tbl_getp();
|
||||
dkydata_bloomInfo_info_class* dKyd_BloomInf_tbl_getp(int);
|
||||
dKydata_BloomInfo_c* dKyd_BloomInf_tbl_getp(int);
|
||||
|
||||
#endif /* D_KANKYO_D_KANKYO_DATA_H */
|
||||
|
||||
Reference in New Issue
Block a user