2021-01-22 00:51:24 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class QAction;
|
|
|
|
class QHideEvent;
|
|
|
|
class QShowEvent;
|
2021-02-04 14:54:27 +00:00
|
|
|
class PlayerControlPreview;
|
2021-01-22 00:51:24 +00:00
|
|
|
|
2021-10-31 01:16:10 +00:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Core::HID {
|
2021-11-05 01:05:58 +00:00
|
|
|
class HIDCore;
|
2021-10-31 01:16:10 +00:00
|
|
|
class EmulatedController;
|
2021-11-01 20:17:53 +00:00
|
|
|
enum class ControllerTriggerType;
|
|
|
|
} // namespace Core::HID
|
2021-06-18 15:15:42 +01:00
|
|
|
|
2021-01-22 00:51:24 +00:00
|
|
|
class ControllerDialog : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-11-05 01:05:58 +00:00
|
|
|
explicit ControllerDialog(Core::HID::HIDCore& hid_core_,
|
2021-10-31 01:16:10 +00:00
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem_,
|
|
|
|
QWidget* parent = nullptr);
|
2021-01-22 00:51:24 +00:00
|
|
|
|
|
|
|
/// Returns a QAction that can be used to toggle visibility of this dialog.
|
|
|
|
QAction* toggleViewAction();
|
|
|
|
|
2021-10-31 01:16:10 +00:00
|
|
|
/// Reloads the widget to apply any changes in the configuration
|
|
|
|
void refreshConfiguration();
|
|
|
|
|
|
|
|
/// Disables events from the emulated controller
|
2021-10-16 01:07:47 +01:00
|
|
|
void UnloadController();
|
|
|
|
|
2021-01-22 00:51:24 +00:00
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent* ev) override;
|
|
|
|
void hideEvent(QHideEvent* ev) override;
|
|
|
|
|
|
|
|
private:
|
2021-10-31 01:16:10 +00:00
|
|
|
/// Redirects input from the widget to the TAS driver
|
|
|
|
void ControllerUpdate(Core::HID::ControllerTriggerType type);
|
|
|
|
|
|
|
|
int callback_key;
|
|
|
|
bool is_controller_set{};
|
|
|
|
Core::HID::EmulatedController* controller;
|
|
|
|
|
2021-01-22 00:51:24 +00:00
|
|
|
QAction* toggle_view_action = nullptr;
|
2021-02-04 14:54:27 +00:00
|
|
|
PlayerControlPreview* widget;
|
2021-11-05 01:05:58 +00:00
|
|
|
Core::HID::HIDCore& hid_core;
|
2021-10-31 01:16:10 +00:00
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem;
|
2021-01-22 00:51:24 +00:00
|
|
|
};
|