2014-03-01 00:52:32 +00:00
|
|
|
#pragma once
|
2017-10-31 17:12:50 +00:00
|
|
|
#ifndef ES_CORE_GUIS_GUI_INPUT_CONFIG_H
|
|
|
|
#define ES_CORE_GUIS_GUI_INPUT_CONFIG_H
|
2012-07-22 21:15:55 +00:00
|
|
|
|
2015-04-19 09:57:10 +00:00
|
|
|
#include "components/BusyComponent.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "components/ComponentGrid.h"
|
|
|
|
#include "components/NinePatchComponent.h"
|
|
|
|
#include "GuiComponent.h"
|
2014-03-22 01:12:57 +00:00
|
|
|
|
2017-11-01 22:21:10 +00:00
|
|
|
class ComponentList;
|
2014-03-22 01:12:57 +00:00
|
|
|
class TextComponent;
|
2012-07-22 21:15:55 +00:00
|
|
|
|
2013-06-02 15:08:32 +00:00
|
|
|
class GuiInputConfig : public GuiComponent
|
2013-04-08 16:52:40 +00:00
|
|
|
{
|
2012-07-22 21:15:55 +00:00
|
|
|
public:
|
2014-03-22 01:12:57 +00:00
|
|
|
GuiInputConfig(Window* window, InputConfig* target, bool reconfigureAll, const std::function<void()>& okCallback);
|
2012-07-22 21:15:55 +00:00
|
|
|
|
2014-04-13 02:09:54 +00:00
|
|
|
void update(int deltaTime) override;
|
|
|
|
|
2014-03-22 01:12:57 +00:00
|
|
|
void onSizeChanged() override;
|
2013-04-09 18:13:47 +00:00
|
|
|
|
2012-07-22 21:15:55 +00:00
|
|
|
private:
|
2014-04-13 02:09:54 +00:00
|
|
|
void error(const std::shared_ptr<TextComponent>& text, const std::string& msg); // set text to "msg" + not greyed out
|
|
|
|
|
|
|
|
void setPress(const std::shared_ptr<TextComponent>& text); // set text to "PRESS ANYTHING" + not greyed out
|
|
|
|
void setNotDefined(const std::shared_ptr<TextComponent>& text); // set text to -NOT DEFINED- + greyed out
|
|
|
|
void setAssignedTo(const std::shared_ptr<TextComponent>& text, Input input); // set text to "BUTTON 2"/"AXIS 2+", etc.
|
|
|
|
|
|
|
|
bool assign(Input input, int inputId);
|
|
|
|
void clearAssignment(int inputId);
|
2019-04-11 01:52:21 +00:00
|
|
|
bool filterTrigger(Input input, InputConfig* config, int inputId);
|
2014-04-13 02:09:54 +00:00
|
|
|
|
|
|
|
void rowDone();
|
2014-03-22 01:12:57 +00:00
|
|
|
|
|
|
|
NinePatchComponent mBackground;
|
|
|
|
ComponentGrid mGrid;
|
|
|
|
|
|
|
|
std::shared_ptr<TextComponent> mTitle;
|
|
|
|
std::shared_ptr<TextComponent> mSubtitle1;
|
|
|
|
std::shared_ptr<TextComponent> mSubtitle2;
|
|
|
|
std::shared_ptr<ComponentList> mList;
|
2014-03-22 01:38:16 +00:00
|
|
|
std::vector< std::shared_ptr<TextComponent> > mMappings;
|
2014-03-22 01:12:57 +00:00
|
|
|
std::shared_ptr<ComponentGrid> mButtonGrid;
|
|
|
|
|
2013-04-09 18:13:47 +00:00
|
|
|
InputConfig* mTargetConfig;
|
2014-03-22 01:12:57 +00:00
|
|
|
bool mConfiguringRow; // next input captured by mList will be interpretted as a remap
|
|
|
|
bool mConfiguringAll; // move the cursor down after configuring a row and start configuring the next row until we reach the bottom
|
2014-04-13 02:09:54 +00:00
|
|
|
|
|
|
|
bool mHoldingInput;
|
|
|
|
Input mHeldInput;
|
|
|
|
int mHeldTime;
|
|
|
|
int mHeldInputId;
|
2019-04-11 01:52:21 +00:00
|
|
|
bool mSkipAxis;
|
2015-04-19 09:57:10 +00:00
|
|
|
|
|
|
|
BusyComponent mBusyAnim;
|
2012-07-22 21:15:55 +00:00
|
|
|
};
|
2017-10-31 17:12:50 +00:00
|
|
|
|
|
|
|
#endif // ES_CORE_GUIS_GUI_INPUT_CONFIG_H
|