metaforce/Runtime/GuiSys/CGuiTableGroup.hpp

107 lines
2.8 KiB
C++
Raw Normal View History

2016-03-10 03:47:37 +00:00
#ifndef __URDE_CGUITABLEGROUP_HPP__
#define __URDE_CGUITABLEGROUP_HPP__
2016-03-11 00:23:16 +00:00
#include "CGuiCompoundWidget.hpp"
2016-03-10 03:47:37 +00:00
namespace urde
{
2016-03-11 00:23:16 +00:00
class CGuiTableGroup : public CGuiCompoundWidget
{
public:
struct SomeState
2016-03-18 02:45:45 +00:00
{
float x0_ = 0.f;
2016-03-18 02:45:45 +00:00
};
2016-12-16 04:35:49 +00:00
enum class TableSelectReturn
{
Changed,
Unchanged,
WrappedAround
};
2016-03-18 02:45:45 +00:00
private:
SomeState xb8_;
SomeState xbc_;
2016-12-16 04:35:49 +00:00
int xc0_elementCount;
int xc4_userSelection;
int xc8_prevUserSelection;
int xcc_defaultUserSelection;
bool xd0_selectWraparound;
bool xd1_ = true;
2016-12-16 23:05:29 +00:00
std::function<void(CGuiTableGroup*)> xd4_doMenuAdvance;
std::function<void(CGuiTableGroup*)> xec_doMenuCancel;
std::function<void(CGuiTableGroup*)> x104_doMenuSelChange;
2016-03-18 02:45:45 +00:00
public:
CGuiTableGroup(const CGuiWidgetParms& parms, int, int, bool);
2016-03-18 02:45:45 +00:00
FourCC GetWidgetTypeID() const {return FOURCC('TBGP');}
2016-12-16 23:05:29 +00:00
void SetMenuAdvanceCallback(std::function<void(CGuiTableGroup*)>&& cb)
2016-12-14 22:56:59 +00:00
{
xd4_doMenuAdvance = std::move(cb);
}
2016-12-16 23:05:29 +00:00
void SetMenuCancelCallback(std::function<void(CGuiTableGroup*)>&& cb)
2016-12-14 22:56:59 +00:00
{
xec_doMenuCancel = std::move(cb);
}
2016-12-16 23:05:29 +00:00
void SetMenuSelectionChangeCallback(std::function<void(CGuiTableGroup*)>&& cb)
2016-12-14 22:56:59 +00:00
{
x104_doMenuSelChange = std::move(cb);
}
2016-12-16 04:35:49 +00: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);
}
}
void SetD1(bool v) { xd1_ = v; }
2016-12-16 04:35:49 +00:00
void SetUserSelection(int sel)
{
xc8_prevUserSelection = xc4_userSelection;
xc4_userSelection = sel;
}
TableSelectReturn DecrementSelectedRow()
{
xc8_prevUserSelection = xc4_userSelection;
--xc4_userSelection;
if (xc4_userSelection < 0)
{
xc4_userSelection = xd0_selectWraparound ? xc0_elementCount - 1 : 0;
return xd0_selectWraparound ? TableSelectReturn::WrappedAround : TableSelectReturn::Unchanged;
}
return TableSelectReturn::Changed;
}
TableSelectReturn IncrementSelectedRow()
{
xc8_prevUserSelection = xc4_userSelection;
++xc4_userSelection;
if (xc4_userSelection >= xc0_elementCount)
{
xc4_userSelection = xd0_selectWraparound ? 0 : xc0_elementCount - 1;
return xd0_selectWraparound ? TableSelectReturn::WrappedAround : TableSelectReturn::Unchanged;
}
return TableSelectReturn::Changed;
}
int GetUserSelection() const { return xc4_userSelection; }
2016-03-18 02:45:45 +00:00
static CGuiTableGroup* Create(CGuiFrame* frame, CInputStream& in, bool);
2016-03-11 00:23:16 +00:00
};
2016-03-10 03:47:37 +00:00
}
#endif // __URDE_CGUITABLEGROUP_HPP__