mirror of
https://github.com/zeldaret/st
synced 2026-05-30 00:46:46 -04:00
530fcd8c07
* remove scratch links * UnkAdventureModeSystem1 OK * UnkStruct_ov024_020d8694_024 OK * UnkTitleCardSystem1_024 99% * UnkTitleCardSystem1_024 OK * fix regressions * title card vfunc_08 oddity * tools: make build.ninja deterministic and delink when objdiff rebuild-on-change * clean up link node mess * UnkStruct_020d8698_024 24% * UnkStruct_020d8698_024 49% * UnkStruct_020d8698_024 65% * fix build issues * UnkStruct_020d8698_024 92% * UnkStruct_020d8698_024 OK * delink data_ov024_020d8694 symbol * tools: revert previous objdiff change and reduce ds-rom logs on objdiff
96 lines
1.9 KiB
C++
96 lines
1.9 KiB
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
typedef s32 CargoType;
|
|
enum CargoType_ {
|
|
CargoType_None = -1,
|
|
CargoType_MegaIce,
|
|
CargoType_Wood,
|
|
CargoType_Iron,
|
|
CargoType_Fish,
|
|
CargoType_Cuccos,
|
|
CargoType_Vessel,
|
|
CargoType_DarkOre,
|
|
CargoType_Max,
|
|
};
|
|
|
|
class Cargo {
|
|
public:
|
|
/* 00 */ CargoType mType;
|
|
/* 04 */ unk32 mAmount;
|
|
/* 08 */ u32 mDecayTimer;
|
|
/* 0C */
|
|
|
|
Cargo() {
|
|
this->Clear();
|
|
}
|
|
|
|
void Set(unk32 type, unk32 amount) {
|
|
this->mType = type;
|
|
this->mAmount = amount;
|
|
this->mDecayTimer = 0;
|
|
}
|
|
|
|
void Clear() {
|
|
this->mType = CargoType_None;
|
|
this->mAmount = 0;
|
|
this->mDecayTimer = 0;
|
|
}
|
|
|
|
CargoType GetType() {
|
|
return this->mType;
|
|
}
|
|
|
|
bool IsTypeSet() {
|
|
return this->mType != CargoType_None;
|
|
}
|
|
|
|
unk32 GetAmount() {
|
|
return this->mAmount;
|
|
}
|
|
};
|
|
|
|
class CargoManager : public AutoInstance<CargoManager> {
|
|
public:
|
|
/* 00 */ Cargo mCargo;
|
|
/* 0C */ Cargo mCargo2;
|
|
/* 18 */ unk32 mUnk_18; // invicibility timer?
|
|
/* 1C */ bool mUnk_1C;
|
|
/* 20 */
|
|
|
|
Cargo *GetCargo() {
|
|
return &this->mCargo;
|
|
}
|
|
|
|
// overlay 1
|
|
CargoManager();
|
|
~CargoManager();
|
|
|
|
void func_ov001_020bf830();
|
|
|
|
static void Destroy(); // func_ov001_020bf428
|
|
|
|
// overlay 17
|
|
void Update();
|
|
void Reset();
|
|
void Init(unk32 type, unk32 amount);
|
|
void func_ov017_020bebdc();
|
|
void func_ov017_020bec20();
|
|
void RemoveAmount(unk32 decr);
|
|
bool func_ov017_020bec9c();
|
|
|
|
static void DoUpdate();
|
|
static bool IsNotUsingTimer(unk32 type);
|
|
|
|
// overlay 24
|
|
void SetCargo(unk32 type, unk32 amount);
|
|
void GetTypeAndAmount(unk32 *pType, unk32 *pAmount);
|
|
void func_ov024_020d5900();
|
|
void func_ov024_020d591c();
|
|
|
|
static CargoManager *Create();
|
|
};
|
|
|
|
extern CargoManager *gpCargoManager;
|