2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2015-10-26 02:28:15 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/IniFile.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
#include "Core/HW/Wiimote.h"
|
2015-10-26 02:28:15 +00:00
|
|
|
#include "InputCommon/ControllerEmu.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "InputCommon/InputConfig.h"
|
2015-10-26 02:28:15 +00:00
|
|
|
#include "InputCommon/ControllerInterface/ControllerInterface.h"
|
2010-06-04 20:03:03 +00:00
|
|
|
|
2014-08-31 04:04:15 +00:00
|
|
|
bool InputConfig::LoadConfig(bool isGC)
|
2010-06-03 18:05:08 +00:00
|
|
|
{
|
|
|
|
IniFile inifile;
|
2013-05-18 12:30:20 +00:00
|
|
|
bool useProfile[MAX_BBMOTES] = {false, false, false, false, false};
|
|
|
|
std::string num[MAX_BBMOTES] = {"1", "2", "3", "4", "BB"};
|
|
|
|
std::string profile[MAX_BBMOTES];
|
2013-01-10 01:41:14 +00:00
|
|
|
std::string path;
|
2013-01-09 20:03:43 +00:00
|
|
|
|
2015-06-12 11:56:53 +00:00
|
|
|
if (SConfig::GetInstance().GetUniqueID() != "00000000")
|
2013-01-09 20:03:43 +00:00
|
|
|
{
|
|
|
|
std::string type;
|
|
|
|
if (isGC)
|
2013-01-10 01:41:14 +00:00
|
|
|
{
|
2013-01-10 02:56:17 +00:00
|
|
|
type = "Pad";
|
2013-01-10 01:41:14 +00:00
|
|
|
path = "Profiles/GCPad/";
|
|
|
|
}
|
2013-01-09 20:03:43 +00:00
|
|
|
else
|
2013-01-10 01:41:14 +00:00
|
|
|
{
|
2013-01-10 02:56:17 +00:00
|
|
|
type = "Wiimote";
|
2013-01-10 01:41:14 +00:00
|
|
|
path = "Profiles/Wiimote/";
|
|
|
|
}
|
2014-06-16 05:12:43 +00:00
|
|
|
|
2015-06-12 11:56:53 +00:00
|
|
|
IniFile game_ini = SConfig::GetInstance().LoadGameIni();
|
2014-06-16 05:12:43 +00:00
|
|
|
IniFile::Section* control_section = game_ini.GetOrCreateSection("Controls");
|
|
|
|
|
2013-01-09 20:03:43 +00:00
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
2014-06-16 05:12:43 +00:00
|
|
|
if (control_section->Exists(type + "Profile" + num[i]))
|
2013-01-09 20:03:43 +00:00
|
|
|
{
|
2014-06-16 05:12:43 +00:00
|
|
|
if (control_section->Get(type + "Profile" + num[i], &profile[i]))
|
2013-09-07 21:02:49 +00:00
|
|
|
{
|
2014-02-08 05:50:37 +00:00
|
|
|
if (File::Exists(File::GetUserPath(D_CONFIG_IDX) + path + profile[i] + ".ini"))
|
2014-06-16 05:12:43 +00:00
|
|
|
{
|
2014-02-08 05:50:37 +00:00
|
|
|
useProfile[i] = true;
|
2014-06-16 05:12:43 +00:00
|
|
|
}
|
2014-02-08 05:50:37 +00:00
|
|
|
else
|
|
|
|
{
|
2015-02-07 20:27:26 +00:00
|
|
|
// TODO: PanicAlert shouldn't be used for this.
|
2014-02-08 05:50:37 +00:00
|
|
|
PanicAlertT("Selected controller profile does not exist");
|
|
|
|
}
|
2013-09-07 21:02:49 +00:00
|
|
|
}
|
2013-01-09 20:03:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-26 02:28:15 +00:00
|
|
|
if (inifile.Load(File::GetUserPath(D_CONFIG_IDX) + m_ini_name + ".ini"))
|
2010-07-10 06:48:24 +00:00
|
|
|
{
|
2014-01-31 00:51:21 +00:00
|
|
|
int n = 0;
|
2015-10-26 02:28:15 +00:00
|
|
|
for (auto& controller : m_controllers)
|
2010-10-03 04:29:34 +00:00
|
|
|
{
|
2014-01-31 00:51:21 +00:00
|
|
|
// Load settings from ini
|
2013-01-09 20:03:43 +00:00
|
|
|
if (useProfile[n])
|
|
|
|
{
|
|
|
|
IniFile profile_ini;
|
|
|
|
profile_ini.Load(File::GetUserPath(D_CONFIG_IDX) + path + profile[n] + ".ini");
|
2015-10-26 02:28:15 +00:00
|
|
|
controller->LoadConfig(profile_ini.GetOrCreateSection("Profile"));
|
2013-01-09 20:03:43 +00:00
|
|
|
}
|
|
|
|
else
|
2013-04-15 02:53:10 +00:00
|
|
|
{
|
2015-10-26 02:28:15 +00:00
|
|
|
controller->LoadConfig(inifile.GetOrCreateSection(controller->GetName()));
|
2013-04-15 02:53:10 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 00:51:21 +00:00
|
|
|
// Update refs
|
2015-10-26 02:28:15 +00:00
|
|
|
controller->UpdateReferences(g_controller_interface);
|
2014-01-31 00:51:21 +00:00
|
|
|
|
|
|
|
// Next profile
|
|
|
|
n++;
|
2010-10-03 04:29:34 +00:00
|
|
|
}
|
|
|
|
return true;
|
2010-07-10 06:48:24 +00:00
|
|
|
}
|
2010-10-03 04:29:34 +00:00
|
|
|
else
|
2010-07-10 06:48:24 +00:00
|
|
|
{
|
2015-10-26 02:28:15 +00:00
|
|
|
m_controllers[0]->LoadDefaults(g_controller_interface);
|
|
|
|
m_controllers[0]->UpdateReferences(g_controller_interface);
|
2010-10-03 04:29:34 +00:00
|
|
|
return false;
|
2010-06-04 20:03:03 +00:00
|
|
|
}
|
2010-06-03 18:05:08 +00:00
|
|
|
}
|
|
|
|
|
2014-08-31 04:04:15 +00:00
|
|
|
void InputConfig::SaveConfig()
|
2010-06-03 18:05:08 +00:00
|
|
|
{
|
2015-10-26 02:28:15 +00:00
|
|
|
std::string ini_filename = File::GetUserPath(D_CONFIG_IDX) + m_ini_name + ".ini";
|
2010-06-04 20:03:03 +00:00
|
|
|
|
2010-06-03 18:05:08 +00:00
|
|
|
IniFile inifile;
|
2010-07-03 08:04:10 +00:00
|
|
|
inifile.Load(ini_filename);
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2015-10-26 02:28:15 +00:00
|
|
|
for (auto& controller : m_controllers)
|
|
|
|
controller->SaveConfig(inifile.GetOrCreateSection(controller->GetName()));
|
2013-09-07 21:02:49 +00:00
|
|
|
|
2010-06-04 20:03:03 +00:00
|
|
|
inifile.Save(ini_filename);
|
2010-06-03 18:05:08 +00:00
|
|
|
}
|
2015-10-26 02:28:15 +00:00
|
|
|
|
|
|
|
ControllerEmu* InputConfig::GetController(int index)
|
|
|
|
{
|
|
|
|
return m_controllers.at(index).get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InputConfig::ClearControllers()
|
|
|
|
{
|
|
|
|
m_controllers.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool InputConfig::ControllersNeedToBeCreated() const
|
|
|
|
{
|
|
|
|
return m_controllers.empty();
|
|
|
|
}
|