2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-06-12 17:15:16 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2015-10-25 22:28:15 -04:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2014-02-17 05:18:15 -05:00
|
|
|
#include <vector>
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2019-01-10 09:02:38 -06:00
|
|
|
#include "InputCommon/ControllerInterface/ControllerInterface.h"
|
2019-08-17 14:40:58 -05:00
|
|
|
#include "InputCommon/DynamicInputTextureManager.h"
|
2019-01-10 09:02:38 -06:00
|
|
|
|
2023-04-13 09:38:09 -04:00
|
|
|
namespace Common
|
|
|
|
{
|
|
|
|
class IniFile;
|
|
|
|
}
|
|
|
|
|
2017-02-08 22:15:43 -05:00
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
|
|
|
class EmulatedController;
|
|
|
|
}
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2014-08-31 00:04:15 -04:00
|
|
|
class InputConfig
|
2010-06-03 18:05:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2024-02-04 15:29:36 +01:00
|
|
|
InputConfig(const std::string& ini_name, const std::string& gui_name,
|
2024-02-04 17:36:15 +01:00
|
|
|
const std::string& profile_directory_name, const std::string& profile_key);
|
2024-02-04 15:29:36 +01:00
|
|
|
|
|
|
|
~InputConfig();
|
|
|
|
|
|
|
|
bool LoadConfig();
|
2010-06-03 18:05:08 +00:00
|
|
|
void SaveConfig();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2015-10-25 22:28:15 -04:00
|
|
|
template <typename T, typename... Args>
|
|
|
|
void CreateController(Args&&... args)
|
|
|
|
{
|
2021-02-27 16:41:50 -06:00
|
|
|
m_controllers.emplace_back(std::make_unique<T>(std::forward<Args>(args)...));
|
2015-10-25 22:28:15 -04:00
|
|
|
}
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2021-05-04 23:47:55 +03:00
|
|
|
ControllerEmu::EmulatedController* GetController(int index) const;
|
2015-10-25 22:28:15 -04:00
|
|
|
void ClearControllers();
|
|
|
|
bool ControllersNeedToBeCreated() const;
|
2016-06-22 01:33:53 +12:00
|
|
|
bool IsControllerControlledByGamepadDevice(int index) const;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2015-10-25 22:28:15 -04:00
|
|
|
std::string GetGUIName() const { return m_gui_name; }
|
2024-02-04 17:36:15 +01:00
|
|
|
std::string GetProfileKey() const { return m_profile_key; }
|
2024-02-04 16:31:15 +01:00
|
|
|
std::string GetProfileDirectoryName() const { return m_profile_directory_name; }
|
|
|
|
std::string GetUserProfileDirectoryPath() const;
|
|
|
|
std::string GetSysProfileDirectoryPath() const;
|
2021-02-12 17:21:48 -08:00
|
|
|
int GetControllerCount() const;
|
2018-04-12 14:18:04 +02:00
|
|
|
|
2019-01-10 09:02:38 -06:00
|
|
|
// These should be used after creating all controllers and before clearing them, respectively.
|
|
|
|
void RegisterHotplugCallback();
|
|
|
|
void UnregisterHotplugCallback();
|
|
|
|
|
2023-04-13 09:38:09 -04:00
|
|
|
void GenerateControllerTextures(const Common::IniFile& file);
|
2021-02-27 16:41:50 -06:00
|
|
|
|
2015-10-25 22:28:15 -04:00
|
|
|
private:
|
2019-01-10 09:02:38 -06:00
|
|
|
ControllerInterface::HotplugCallbackHandle m_hotplug_callback_handle;
|
2017-02-08 22:15:43 -05:00
|
|
|
std::vector<std::unique_ptr<ControllerEmu::EmulatedController>> m_controllers;
|
2015-10-25 22:28:15 -04:00
|
|
|
const std::string m_ini_name;
|
|
|
|
const std::string m_gui_name;
|
2024-02-04 16:31:15 +01:00
|
|
|
const std::string m_profile_directory_name;
|
2024-02-04 17:36:15 +01:00
|
|
|
const std::string m_profile_key;
|
2019-08-17 14:40:58 -05:00
|
|
|
InputCommon::DynamicInputTextureManager m_dynamic_input_tex_config_manager;
|
2010-06-03 18:05:08 +00:00
|
|
|
};
|