2016-07-29 12:45:49 +00:00
|
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2017-01-22 19:02:29 +00:00
|
|
|
|
#include <array>
|
|
|
|
|
#include <functional>
|
2016-09-20 15:21:23 +00:00
|
|
|
|
#include <memory>
|
2017-01-22 19:02:29 +00:00
|
|
|
|
#include <string>
|
2016-07-29 12:45:49 +00:00
|
|
|
|
#include <QKeyEvent>
|
2016-09-18 00:38:01 +00:00
|
|
|
|
#include <QWidget>
|
2016-12-09 23:59:09 +00:00
|
|
|
|
#include <boost/optional.hpp>
|
2017-01-22 19:02:29 +00:00
|
|
|
|
#include "common/param_package.h"
|
2016-07-29 12:45:49 +00:00
|
|
|
|
#include "core/settings.h"
|
|
|
|
|
#include "ui_configure_input.h"
|
|
|
|
|
|
|
|
|
|
class QPushButton;
|
|
|
|
|
class QString;
|
|
|
|
|
class QTimer;
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
2016-09-18 00:38:01 +00:00
|
|
|
|
class ConfigureInput;
|
2016-07-29 12:45:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ConfigureInput : public QWidget {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit ConfigureInput(QWidget* parent = nullptr);
|
|
|
|
|
|
|
|
|
|
/// Save all button configurations to settings file
|
|
|
|
|
void applyConfiguration();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
std::unique_ptr<Ui::ConfigureInput> ui;
|
|
|
|
|
|
2016-12-09 23:59:09 +00:00
|
|
|
|
std::unique_ptr<QTimer> timer;
|
2016-07-29 12:45:49 +00:00
|
|
|
|
|
2017-01-22 19:02:29 +00:00
|
|
|
|
/// This will be the the setting function when an input is awaiting configuration.
|
|
|
|
|
boost::optional<std::function<void(int)>> key_setter;
|
|
|
|
|
|
|
|
|
|
std::array<Common::ParamPackage, Settings::NativeButton::NumButtons> buttons_param;
|
|
|
|
|
std::array<Common::ParamPackage, Settings::NativeAnalog::NumAnalogs> analogs_param;
|
|
|
|
|
|
|
|
|
|
static constexpr int ANALOG_SUB_BUTTONS_NUM = 5;
|
|
|
|
|
|
|
|
|
|
/// Each button input is represented by a QPushButton.
|
|
|
|
|
std::array<QPushButton*, Settings::NativeButton::NumButtons> button_map;
|
|
|
|
|
|
|
|
|
|
/// Each analog input is represented by five QPushButtons which represents up, down, left, right
|
|
|
|
|
/// and modifier
|
|
|
|
|
std::array<std::array<QPushButton*, ANALOG_SUB_BUTTONS_NUM>, Settings::NativeAnalog::NumAnalogs>
|
|
|
|
|
analog_map;
|
|
|
|
|
|
|
|
|
|
static const std::array<std::string, ANALOG_SUB_BUTTONS_NUM> analog_sub_buttons;
|
2016-07-29 12:45:49 +00:00
|
|
|
|
|
2016-12-09 23:59:09 +00:00
|
|
|
|
/// Load configuration settings.
|
|
|
|
|
void loadConfiguration();
|
2016-07-29 12:45:49 +00:00
|
|
|
|
/// Restore all buttons to their default values.
|
|
|
|
|
void restoreDefaults();
|
2016-12-09 23:59:09 +00:00
|
|
|
|
/// Update UI to reflect current configuration.
|
|
|
|
|
void updateButtonLabels();
|
|
|
|
|
|
2017-01-22 19:02:29 +00:00
|
|
|
|
/// Called when the button was pressed.
|
|
|
|
|
void handleClick(QPushButton* button, std::function<void(int)> new_key_setter);
|
2016-12-09 23:59:09 +00:00
|
|
|
|
/// Handle key press events.
|
|
|
|
|
void keyPressEvent(QKeyEvent* event) override;
|
2016-07-29 12:45:49 +00:00
|
|
|
|
};
|