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

52 lines
1.3 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
2021-07-25 21:00:19 -04:00
#include <QFileSystemWatcher>
2021-01-26 00:32:32 -05:00
#include <QWidget>
2021-07-25 21:00:19 -04:00
#include "common/settings.h"
2021-01-26 00:32:32 -05:00
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;
}
struct ControllerInput {
std::array<std::pair<float, float>, Settings::NativeAnalog::NUM_STICKS_HID> axis_values{};
std::array<bool, Settings::NativeButton::NumButtons> button_values{};
bool changed{};
};
struct ControllerCallback {
std::function<void(ControllerInput)> input;
};
2021-01-26 00:32:32 -05:00
class ControllerDialog : public QWidget {
Q_OBJECT
public:
2021-07-25 21:00:19 -04:00
explicit ControllerDialog(QWidget* parent = nullptr,
InputCommon::InputSubsystem* input_subsystem_ = 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-02-07 09:58:56 -05:00
void refreshConfiguration();
2021-01-26 00:32:32 -05:00
protected:
void showEvent(QShowEvent* ev) override;
void hideEvent(QHideEvent* ev) override;
private:
2021-07-25 21:00:19 -04:00
void InputController(ControllerInput input);
2021-01-26 00:32:32 -05:00
QAction* toggle_view_action = nullptr;
2021-07-25 21:00:19 -04:00
QFileSystemWatcher* watcher = nullptr;
2021-02-04 15:32:13 -05:00
PlayerControlPreview* widget;
2021-07-25 21:00:19 -04:00
InputCommon::InputSubsystem* input_subsystem;
2021-01-26 00:32:32 -05:00
};