2021-01-22 01:51:24 +01: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 15:54:27 +01:00
|
|
|
class PlayerControlPreview;
|
2021-01-22 01:51:24 +01:00
|
|
|
|
2021-10-31 02:16:10 +01:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2021-10-16 02:07:47 +02:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2021-10-31 02:16:10 +01:00
|
|
|
namespace Core::HID {
|
|
|
|
class EmulatedController;
|
2021-11-01 21:17:53 +01:00
|
|
|
enum class ControllerTriggerType;
|
|
|
|
} // namespace Core::HID
|
2021-06-18 16:15:42 +02:00
|
|
|
|
2021-01-22 01:51:24 +01:00
|
|
|
class ControllerDialog : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-10-31 02:16:10 +01:00
|
|
|
explicit ControllerDialog(Core::System& system_,
|
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem_,
|
|
|
|
QWidget* parent = nullptr);
|
2021-01-22 01:51:24 +01:00
|
|
|
|
|
|
|
/// Returns a QAction that can be used to toggle visibility of this dialog.
|
|
|
|
QAction* toggleViewAction();
|
|
|
|
|
2021-10-31 02:16:10 +01:00
|
|
|
/// Reloads the widget to apply any changes in the configuration
|
|
|
|
void refreshConfiguration();
|
|
|
|
|
|
|
|
/// Disables events from the emulated controller
|
2021-10-16 02:07:47 +02:00
|
|
|
void UnloadController();
|
|
|
|
|
2021-01-22 01:51:24 +01:00
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent* ev) override;
|
|
|
|
void hideEvent(QHideEvent* ev) override;
|
|
|
|
|
|
|
|
private:
|
2021-10-31 02:16:10 +01: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 01:51:24 +01:00
|
|
|
QAction* toggle_view_action = nullptr;
|
2021-02-04 15:54:27 +01:00
|
|
|
PlayerControlPreview* widget;
|
2021-10-31 02:16:10 +01:00
|
|
|
Core::System& system;
|
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem;
|
2021-01-22 01:51:24 +01:00
|
|
|
};
|