2013-04-18 05:09:55 +02:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-06-03 20:05:08 +02:00
|
|
|
|
2010-06-12 19:39:33 +02:00
|
|
|
#include "InputConfig.h"
|
2013-01-09 21:03:43 +01:00
|
|
|
#include "../../Core/Src/ConfigManager.h"
|
2010-06-04 22:03:03 +02:00
|
|
|
|
2010-06-12 20:45:39 +02:00
|
|
|
InputPlugin::~InputPlugin()
|
2010-06-03 20:05:08 +02:00
|
|
|
{
|
|
|
|
// delete pads
|
|
|
|
std::vector<ControllerEmu*>::const_iterator i = controllers.begin(),
|
|
|
|
e = controllers.end();
|
|
|
|
for ( ; i != e; ++i )
|
|
|
|
delete *i;
|
|
|
|
}
|
|
|
|
|
2013-01-09 21:03:43 +01:00
|
|
|
bool InputPlugin::LoadConfig(bool isGC)
|
2010-06-03 20:05:08 +02:00
|
|
|
{
|
|
|
|
IniFile inifile;
|
2013-01-09 21:03:43 +01:00
|
|
|
IniFile game_ini;
|
|
|
|
bool useProfile[4] = {false, false, false, false};
|
|
|
|
std::string num[4] = {"1", "2", "3", "4"};
|
|
|
|
std::string profile[4];
|
2013-01-10 02:41:14 +01:00
|
|
|
std::string path;
|
2013-01-09 21:03:43 +01:00
|
|
|
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.GetUniqueID() != "00000000")
|
|
|
|
{
|
|
|
|
std::string type;
|
|
|
|
if (isGC)
|
2013-01-10 02:41:14 +01:00
|
|
|
{
|
2013-01-10 03:56:17 +01:00
|
|
|
type = "Pad";
|
2013-01-10 02:41:14 +01:00
|
|
|
path = "Profiles/GCPad/";
|
|
|
|
}
|
2013-01-09 21:03:43 +01:00
|
|
|
else
|
2013-01-10 02:41:14 +01:00
|
|
|
{
|
2013-01-10 03:56:17 +01:00
|
|
|
type = "Wiimote";
|
2013-01-10 02:41:14 +01:00
|
|
|
path = "Profiles/Wiimote/";
|
|
|
|
}
|
2013-01-09 21:03:43 +01:00
|
|
|
game_ini.Load(File::GetUserPath(D_GAMECONFIG_IDX) + SConfig::GetInstance().m_LocalCoreStartupParameter.GetUniqueID() + ".ini");
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
2013-01-10 03:56:17 +01:00
|
|
|
if (game_ini.Exists("Controls", (type + "Profile" + num[i]).c_str()))
|
2013-01-09 21:03:43 +01:00
|
|
|
{
|
2013-01-10 03:56:17 +01:00
|
|
|
game_ini.Get("Controls", (type + "Profile" + num[i]).c_str(), &profile[i]);
|
2013-01-10 02:41:14 +01:00
|
|
|
if (File::Exists(File::GetUserPath(D_CONFIG_IDX) + path + profile[i] + ".ini"))
|
|
|
|
useProfile[i] = true;
|
|
|
|
else
|
|
|
|
PanicAlertT("Selected controller profile does not exist");
|
2013-01-09 21:03:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inifile.Load(File::GetUserPath(D_CONFIG_IDX) + ini_name + ".ini"))
|
2010-07-10 08:48:24 +02:00
|
|
|
{
|
2010-10-03 06:29:34 +02:00
|
|
|
std::vector< ControllerEmu* >::const_iterator
|
|
|
|
i = controllers.begin(),
|
|
|
|
e = controllers.end();
|
2013-01-09 21:03:43 +01:00
|
|
|
for (int n = 0; i!=e; ++i, ++n)
|
2010-10-03 06:29:34 +02:00
|
|
|
{
|
|
|
|
// load settings from ini
|
2013-01-09 21:03:43 +01:00
|
|
|
if (useProfile[n])
|
|
|
|
{
|
|
|
|
IniFile profile_ini;
|
|
|
|
profile_ini.Load(File::GetUserPath(D_CONFIG_IDX) + path + profile[n] + ".ini");
|
|
|
|
(*i)->LoadConfig(profile_ini.GetOrCreateSection("Profile"));
|
|
|
|
}
|
|
|
|
else
|
2013-04-15 04:53:10 +02:00
|
|
|
{
|
2013-01-09 21:03:43 +01:00
|
|
|
(*i)->LoadConfig(inifile.GetOrCreateSection((*i)->GetName().c_str()));
|
2013-04-15 04:53:10 +02:00
|
|
|
}
|
|
|
|
|
2010-10-03 06:29:34 +02:00
|
|
|
// update refs
|
2010-10-12 21:42:29 +02:00
|
|
|
(*i)->UpdateReferences(g_controller_interface);
|
2010-10-03 06:29:34 +02:00
|
|
|
}
|
|
|
|
return true;
|
2010-07-10 08:48:24 +02:00
|
|
|
}
|
2010-10-03 06:29:34 +02:00
|
|
|
else
|
2010-07-10 08:48:24 +02:00
|
|
|
{
|
2010-10-12 21:42:29 +02:00
|
|
|
controllers[0]->LoadDefaults(g_controller_interface);
|
|
|
|
controllers[0]->UpdateReferences(g_controller_interface);
|
2010-10-03 06:29:34 +02:00
|
|
|
return false;
|
2010-06-04 22:03:03 +02:00
|
|
|
}
|
2010-06-03 20:05:08 +02:00
|
|
|
}
|
|
|
|
|
2010-06-12 20:45:39 +02:00
|
|
|
void InputPlugin::SaveConfig()
|
2010-06-03 20:05:08 +02:00
|
|
|
{
|
2011-02-28 21:40:15 +01:00
|
|
|
std::string ini_filename = File::GetUserPath(D_CONFIG_IDX) + ini_name + ".ini";
|
2010-06-04 22:03:03 +02:00
|
|
|
|
2010-06-03 20:05:08 +02:00
|
|
|
IniFile inifile;
|
2010-07-03 10:04:10 +02:00
|
|
|
inifile.Load(ini_filename);
|
2010-06-03 20:05:08 +02:00
|
|
|
|
|
|
|
std::vector< ControllerEmu* >::const_iterator i = controllers.begin(),
|
|
|
|
e = controllers.end();
|
|
|
|
for ( ; i!=e; ++i )
|
2010-06-04 22:03:03 +02:00
|
|
|
(*i)->SaveConfig(inifile.GetOrCreateSection((*i)->GetName().c_str()));
|
2010-06-03 20:05:08 +02:00
|
|
|
|
2010-06-04 22:03:03 +02:00
|
|
|
inifile.Save(ini_filename);
|
2010-06-03 20:05:08 +02:00
|
|
|
}
|