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
96 lines
2.7 KiB
C++
96 lines
2.7 KiB
C++
#pragma once
|
|
#include "common/types.h"
|
|
#include "core/controller.h"
|
|
#include "ui_inputbindingdialog.h"
|
|
#include <QtWidgets/QDialog>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class QtHostInterface;
|
|
|
|
class InputBindingDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputBindingDialog(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
|
std::vector<std::string> bindings, QWidget* parent);
|
|
~InputBindingDialog();
|
|
|
|
protected 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 onAddBindingButtonClicked();
|
|
void onRemoveBindingButtonClicked();
|
|
void onClearBindingsButtonClicked();
|
|
void onInputListenTimerTimeout();
|
|
|
|
protected:
|
|
enum : u32
|
|
{
|
|
TIMEOUT_FOR_BINDING = 5
|
|
};
|
|
|
|
virtual bool eventFilter(QObject* watched, QEvent* event) override;
|
|
|
|
virtual void startListeningForInput(u32 timeout_in_seconds);
|
|
virtual void stopListeningForInput();
|
|
|
|
bool isListeningForInput() const { return m_input_listen_timer != nullptr; }
|
|
void addNewBinding(std::string new_binding);
|
|
|
|
void updateList();
|
|
void saveListToSettings();
|
|
|
|
Ui::InputBindingDialog m_ui;
|
|
|
|
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;
|
|
};
|
|
|
|
class InputButtonBindingDialog final : public InputBindingDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputButtonBindingDialog(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
|
std::vector<std::string> bindings, QWidget* parent);
|
|
~InputButtonBindingDialog();
|
|
|
|
protected:
|
|
void startListeningForInput(u32 timeout_in_seconds) override;
|
|
void stopListeningForInput() override;
|
|
void hookControllerInput();
|
|
void unhookControllerInput();
|
|
};
|
|
|
|
class InputAxisBindingDialog final : public InputBindingDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputAxisBindingDialog(QtHostInterface* host_interface, std::string section_name, std::string key_name,
|
|
std::vector<std::string> bindings, Controller::AxisType axis_type, QWidget* parent);
|
|
~InputAxisBindingDialog();
|
|
|
|
protected:
|
|
bool eventFilter(QObject* watched, QEvent* event) override;
|
|
void startListeningForInput(u32 timeout_in_seconds) override;
|
|
void stopListeningForInput() override;
|
|
void hookControllerInput();
|
|
void unhookControllerInput();
|
|
|
|
private:
|
|
Controller::AxisType m_axis_type;
|
|
};
|