metaforce/Runtime/GuiSys/CAuiMeter.hpp

35 lines
890 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-03-10 03:47:37 +00:00
#include <memory>
#include <vector>
#include "Runtime/GCNTypes.hpp"
#include "Runtime/GuiSys/CGuiGroup.hpp"
2016-03-10 03:47:37 +00:00
2021-04-10 08:42:06 +00:00
namespace metaforce {
class CSimplePool;
2016-03-10 03:47:37 +00:00
2018-12-08 05:30:43 +00:00
class CAuiMeter : public CGuiGroup {
bool xc4_noRoundUp;
s32 xc8_maxCapacity;
s32 xcc_capacity;
s32 xd0_value = 0;
std::vector<CGuiGroup*> xd4_workers;
void UpdateMeterWorkers();
2016-03-11 00:23:16 +00:00
public:
2018-12-08 05:30:43 +00:00
CAuiMeter(const CGuiWidgetParms& parms, bool noRoundUp, u32 maxCapacity, u32 workerCount);
FourCC GetWidgetTypeID() const override { return FOURCC('METR'); }
void OnVisibleChange() override;
2018-12-08 05:30:43 +00:00
void SetCurrValue(s32 val);
void SetCapacity(s32 cap);
void SetMaxCapacity(s32 cap);
CGuiWidget* GetWorkerWidget(int id) const override;
bool AddWorkerWidget(CGuiWidget* worker) override;
2018-12-08 05:30:43 +00:00
static std::shared_ptr<CGuiWidget> Create(CGuiFrame* frame, CInputStream& in, CSimplePool* sp);
2016-03-10 03:47:37 +00:00
};
2021-04-10 08:42:06 +00:00
} // namespace metaforce