mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 06:35:42 +00:00
2880b71b48
This enables use of non-controller peripherals, such as DirectInput steering wheels or flight sticks
121 lines
3.4 KiB
C++
121 lines
3.4 KiB
C++
#pragma once
|
|
#include "core/controller.h"
|
|
#include "core/types.h"
|
|
#include <QtWidgets/QPushButton>
|
|
#include <optional>
|
|
|
|
class QTimer;
|
|
|
|
class QtHostInterface;
|
|
|
|
class InputBindingWidget : public QPushButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputBindingWidget(QtHostInterface* host_interface, std::string section_name, std::string key_name, QWidget* parent);
|
|
~InputBindingWidget();
|
|
|
|
ALWAYS_INLINE InputBindingWidget* getNextWidget() const { return m_next_widget; }
|
|
ALWAYS_INLINE void setNextWidget(InputBindingWidget* widget) { m_next_widget = widget; }
|
|
|
|
public Q_SLOTS:
|
|
void bindToControllerAxis(int controller_index, int axis_index, bool inverted,
|
|
std::optional<bool> half_axis_positive);
|
|
void bindToControllerButton(int controller_index, int button_index);
|
|
void bindToControllerHat(int controller_index, int hat_index, const QString& hat_direction);
|
|
void beginRebindAll();
|
|
void clearBinding();
|
|
void reloadBinding();
|
|
|
|
protected Q_SLOTS:
|
|
void onClicked();
|
|
void onInputListenTimerTimeout();
|
|
|
|
protected:
|
|
enum : u32
|
|
{
|
|
TIMEOUT_FOR_SINGLE_BINDING = 5,
|
|
TIMEOUT_FOR_ALL_BINDING = 10
|
|
};
|
|
|
|
virtual bool eventFilter(QObject* watched, QEvent* event) override;
|
|
virtual bool event(QEvent* event) override;
|
|
virtual void mouseReleaseEvent(QMouseEvent* e) override;
|
|
|
|
virtual void startListeningForInput(u32 timeout_in_seconds);
|
|
virtual void stopListeningForInput();
|
|
virtual void openDialog();
|
|
|
|
bool isListeningForInput() const { return m_input_listen_timer != nullptr; }
|
|
void setNewBinding();
|
|
void updateText();
|
|
|
|
QtHostInterface* m_host_interface;
|
|
std::string m_section_name;
|
|
std::string m_key_name;
|
|
std::vector<std::string> m_bindings;
|
|
std::string m_new_binding_value;
|
|
QTimer* m_input_listen_timer = nullptr;
|
|
u32 m_input_listen_remaining_seconds = 0;
|
|
|
|
InputBindingWidget* m_next_widget = nullptr;
|
|
bool m_is_binding_all = false;
|
|
};
|
|
|
|
class InputButtonBindingWidget : public InputBindingWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputButtonBindingWidget(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
|
QWidget* parent);
|
|
~InputButtonBindingWidget();
|
|
|
|
protected:
|
|
void startListeningForInput(u32 timeout_in_seconds) override;
|
|
void stopListeningForInput() override;
|
|
void openDialog() override;
|
|
void hookControllerInput();
|
|
void unhookControllerInput();
|
|
};
|
|
|
|
class InputAxisBindingWidget : public InputBindingWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputAxisBindingWidget(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
|
Controller::AxisType axis_type, QWidget* parent);
|
|
~InputAxisBindingWidget();
|
|
|
|
protected:
|
|
bool eventFilter(QObject* watched, QEvent* event) override;
|
|
void startListeningForInput(u32 timeout_in_seconds) override;
|
|
void stopListeningForInput() override;
|
|
void openDialog() override;
|
|
void hookControllerInput();
|
|
void unhookControllerInput();
|
|
|
|
private:
|
|
Controller::AxisType m_axis_type;
|
|
};
|
|
|
|
class InputRumbleBindingWidget : public InputBindingWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputRumbleBindingWidget(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
|
QWidget* parent);
|
|
~InputRumbleBindingWidget();
|
|
|
|
private Q_SLOTS:
|
|
void bindToControllerRumble(int controller_index);
|
|
|
|
protected:
|
|
void startListeningForInput(u32 timeout_in_seconds) override;
|
|
void stopListeningForInput() override;
|
|
void hookControllerInput();
|
|
void unhookControllerInput();
|
|
}; |