pineapple-src/src/yuzu/debugger/controller.h

61 lines
1.5 KiB
C
Raw Normal View History

2021-02-07 09:58:56 -05:00
// Copyright 2015 Citra Emulator Project
2021-01-26 00:32:32 -05:00
// 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:32:13 -05:00
class PlayerControlPreview;
2021-01-26 00:32:32 -05:00
2021-07-25 21:00:19 -04:00
namespace InputCommon {
class InputSubsystem;
}
2021-11-02 00:02:57 -04:00
namespace Core {
class System;
}
2021-07-25 21:00:19 -04:00
2021-11-02 00:02:57 -04:00
namespace Core::HID {
class EmulatedController;
enum class ControllerTriggerType;
} // namespace Core::HID
2021-07-25 21:00:19 -04:00
2021-01-26 00:32:32 -05:00
class ControllerDialog : public QWidget {
Q_OBJECT
public:
2021-11-02 00:02:57 -04:00
explicit ControllerDialog(Core::System& system_,
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem_,
QWidget* parent = nullptr);
2021-01-26 00:32:32 -05:00
/// Returns a QAction that can be used to toggle visibility of this dialog.
QAction* toggleViewAction();
2021-11-02 00:02:57 -04:00
/// Reloads the widget to apply any changes in the configuration
2021-02-07 09:58:56 -05:00
void refreshConfiguration();
2021-01-26 00:32:32 -05:00
2021-11-02 00:02:57 -04:00
/// Disables events from the emulated controller
void UnloadController();
2021-01-26 00:32:32 -05:00
protected:
void showEvent(QShowEvent* ev) override;
void hideEvent(QHideEvent* ev) override;
private:
2021-11-02 00:02:57 -04: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-26 00:32:32 -05:00
QAction* toggle_view_action = nullptr;
2021-02-04 15:32:13 -05:00
PlayerControlPreview* widget;
2021-11-02 00:02:57 -04:00
Core::System& system;
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem;
2021-01-26 00:32:32 -05:00
};