metaforce/Runtime/GuiSys/CGuiTableGroup.hpp

98 lines
2.5 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-03-09 19:47:37 -08:00
#include <functional>
#include <memory>
#include "Runtime/GuiSys/CGuiCompoundWidget.hpp"
2016-03-09 19:47:37 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-03-09 19:47:37 -08:00
2018-12-07 21:30:43 -08:00
class CGuiTableGroup : public CGuiCompoundWidget {
2016-03-10 16:23:16 -08:00
public:
2018-12-07 21:30:43 -08:00
class CRepeatState {
float x0_timer = 0.f;
public:
bool Update(float dt, bool state);
};
enum class TableSelectReturn { Changed, Unchanged, WrappedAround };
2016-03-17 19:45:45 -07:00
private:
2018-12-07 21:30:43 -08:00
CRepeatState xb8_decRepeat;
CRepeatState xbc_incRepeat;
int xc0_elementCount;
int xc4_userSelection;
int xc8_prevUserSelection;
int xcc_defaultUserSelection;
bool xd0_selectWraparound;
bool xd1_vertical = true;
std::function<void(CGuiTableGroup*)> xd4_doMenuAdvance;
std::function<void(CGuiTableGroup*)> xec_doMenuCancel;
std::function<void(CGuiTableGroup*, int)> x104_doMenuSelChange;
void DeactivateWorker(CGuiWidget* widget);
void ActivateWorker(CGuiWidget* widget);
TableSelectReturn DecrementSelectedRow();
TableSelectReturn IncrementSelectedRow();
void DoSelectPrevRow();
void DoSelectNextRow();
void DoCancel();
void DoAdvance();
bool PreDecrement();
void DoDecrement();
bool PreIncrement();
void DoIncrement();
2016-03-17 19:45:45 -07:00
public:
2018-12-07 21:30:43 -08:00
CGuiTableGroup(const CGuiWidgetParms& parms, int, int, bool);
FourCC GetWidgetTypeID() const override { return FOURCC('TBGP'); }
2016-03-17 19:45:45 -07:00
2018-12-07 21:30:43 -08:00
void SetMenuAdvanceCallback(std::function<void(CGuiTableGroup*)>&& cb) { xd4_doMenuAdvance = std::move(cb); }
2016-12-14 14:56:59 -08:00
2018-12-07 21:30:43 -08:00
void SetMenuCancelCallback(std::function<void(CGuiTableGroup*)>&& cb) { xec_doMenuCancel = std::move(cb); }
2016-12-14 14:56:59 -08:00
2018-12-07 21:30:43 -08:00
void SetMenuSelectionChangeCallback(std::function<void(CGuiTableGroup*, int)>&& cb) {
x104_doMenuSelChange = std::move(cb);
}
2016-12-14 14:56:59 -08:00
2018-12-07 21:30:43 -08:00
void SetColors(const zeus::CColor& selected, const zeus::CColor& unselected) {
int id = -1;
while (CGuiWidget* worker = GetWorkerWidget(++id)) {
if (id == xc4_userSelection)
worker->SetColor(selected);
else
worker->SetColor(unselected);
2016-12-15 20:35:49 -08:00
}
2018-12-07 21:30:43 -08:00
}
2016-12-15 20:35:49 -08:00
2018-12-07 21:30:43 -08:00
void SetVertical(bool v) { xd1_vertical = v; }
2018-12-07 21:30:43 -08:00
void SetUserSelection(int sel) {
xc8_prevUserSelection = xc4_userSelection;
xc4_userSelection = sel;
}
2016-12-15 20:35:49 -08:00
2018-12-07 21:30:43 -08:00
int GetElementCount() const { return xc0_elementCount; }
2017-05-07 12:35:52 -07:00
2018-12-07 21:30:43 -08:00
int GetUserSelection() const { return xc4_userSelection; }
2016-12-15 20:35:49 -08:00
2019-01-20 20:10:34 -08:00
bool IsWorkerSelectable(int) const;
void SelectWorker(int);
2019-01-21 20:23:51 -08:00
void DoSelectWorker(int);
void SetWorkersMouseActive(bool);
void ProcessUserInput(const CFinalInput& input) override;
2017-01-08 19:44:00 -08:00
bool AddWorkerWidget(CGuiWidget* worker) override { return true; }
2018-12-07 21:30:43 -08:00
static std::shared_ptr<CGuiWidget> Create(CGuiFrame* frame, CInputStream& in, CSimplePool* sp);
2016-03-10 16:23:16 -08:00
};
2016-03-09 19:47:37 -08:00
2021-04-10 01:42:06 -07:00
} // namespace metaforce