metaforce/Runtime/GuiSys/CGuiSliderGroup.hpp

64 lines
1.8 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 <array>
2016-03-17 15:19:25 -07: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 {
class CSimplePool;
2016-03-09 19:47:37 -08:00
2018-12-07 21:30:43 -08:00
class CGuiSliderGroup : public CGuiCompoundWidget {
public:
2019-01-21 20:23:51 -08:00
enum class EState { None, Decreasing, Increasing, MouseMove };
private:
2018-12-07 21:30:43 -08:00
float xb8_minVal;
float xbc_maxVal;
float xc0_roundedCurVal;
float xc4_curVal;
float xc8_increment;
std::array<CGuiWidget*, 2> xcc_sliderRangeWidgets{};
2018-12-07 21:30:43 -08:00
std::function<void(CGuiSliderGroup*, float)> xd8_changeCallback;
EState xf0_state = EState::None;
bool xf4_24_inputPending : 1 = false;
mutable bool m_mouseInside : 1 = false;
bool m_mouseDown : 1 = false;
2019-01-21 20:23:51 -08:00
mutable float m_mouseT = 0.f;
2018-12-07 21:30:43 -08:00
void StartDecreasing();
void StartIncreasing();
2016-03-10 16:23:16 -08:00
public:
2018-12-07 21:30:43 -08:00
CGuiSliderGroup(const CGuiWidgetParms& parms, float a, float b, float c, float d);
FourCC GetWidgetTypeID() const override { return FOURCC('SLGP'); }
2018-12-07 21:30:43 -08:00
EState GetState() const { return xf0_state; }
void SetSelectionChangedCallback(std::function<void(CGuiSliderGroup*, float)>&& func);
void SetIncrement(float inc) { xc8_increment = inc; }
void SetMinVal(float min) {
xb8_minVal = min;
SetCurVal(xc0_roundedCurVal);
}
void SetMaxVal(float max) {
xbc_maxVal = max;
SetCurVal(xc0_roundedCurVal);
}
void SetCurVal(float cur);
float GetGurVal() const { return xc0_roundedCurVal; }
bool TestCursorHit(const zeus::CMatrix4f& vp, const zeus::CVector2f& point) const override;
2019-01-21 20:23:51 -08:00
void ProcessUserInput(const CFinalInput& input) override;
void Update(float dt) override;
2018-12-07 21:30:43 -08:00
bool AddWorkerWidget(CGuiWidget* worker) override;
CGuiWidget* GetWorkerWidget(int id) const override;
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