2010-06-12 17:15:16 +00:00
|
|
|
// Copyright (C) 2010 Dolphin Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2010-06-12 17:39:33 +00:00
|
|
|
#include "InputConfig.h"
|
2013-01-09 20:03:43 +00:00
|
|
|
#include "../../Core/Src/ConfigManager.h"
|
2010-06-04 20:03:03 +00:00
|
|
|
|
2010-06-12 18:45:39 +00:00
|
|
|
InputPlugin::~InputPlugin()
|
2010-06-03 18:05:08 +00:00
|
|
|
{
|
|
|
|
// delete pads
|
|
|
|
std::vector<ControllerEmu*>::const_iterator i = controllers.begin(),
|
|
|
|
e = controllers.end();
|
|
|
|
for ( ; i != e; ++i )
|
|
|
|
delete *i;
|
|
|
|
}
|
|
|
|
|
2013-01-09 20:03:43 +00:00
|
|
|
bool InputPlugin::LoadConfig(bool isGC)
|
2010-06-03 18:05:08 +00:00
|
|
|
{
|
|
|
|
IniFile inifile;
|
2013-01-09 20:03:43 +00: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 01:41:14 +00:00
|
|
|
std::string path;
|
2013-01-09 20:03:43 +00:00
|
|
|
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.GetUniqueID() != "00000000")
|
|
|
|
{
|
|
|
|
std::string type;
|
|
|
|
if (isGC)
|
2013-01-10 01:41:14 +00:00
|
|
|
{
|
2013-01-09 20:03:43 +00:00
|
|
|
type = "GC";
|
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-09 20:03:43 +00:00
|
|
|
type = "Wii";
|
2013-01-10 01:41:14 +00:00
|
|
|
path = "Profiles/Wiimote/";
|
|
|
|
}
|
2013-01-09 20:03:43 +00:00
|
|
|
game_ini.Load(File::GetUserPath(D_GAMECONFIG_IDX) + SConfig::GetInstance().m_LocalCoreStartupParameter.GetUniqueID() + ".ini");
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
if (game_ini.Exists("Core", (type + "Profile" + num[i]).c_str()))
|
|
|
|
{
|
|
|
|
game_ini.Get("Core", (type + "Profile" + num[i]).c_str(), &profile[i]);
|
2013-01-10 01:41:14 +00: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 20:03:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inifile.Load(File::GetUserPath(D_CONFIG_IDX) + ini_name + ".ini"))
|
2010-07-10 06:48:24 +00:00
|
|
|
{
|
2010-10-03 04:29:34 +00:00
|
|
|
std::vector< ControllerEmu* >::const_iterator
|
|
|
|
i = controllers.begin(),
|
|
|
|
e = controllers.end();
|
2013-01-09 20:03:43 +00:00
|
|
|
for (int n = 0; i!=e; ++i, ++n)
|
2010-10-03 04:29:34 +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");
|
|
|
|
(*i)->LoadConfig(profile_ini.GetOrCreateSection("Profile"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
(*i)->LoadConfig(inifile.GetOrCreateSection((*i)->GetName().c_str()));
|
2010-10-03 04:29:34 +00:00
|
|
|
// update refs
|
2010-10-12 19:42:29 +00:00
|
|
|
(*i)->UpdateReferences(g_controller_interface);
|
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
|
|
|
{
|
2010-10-12 19:42:29 +00:00
|
|
|
controllers[0]->LoadDefaults(g_controller_interface);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-06-12 18:45:39 +00:00
|
|
|
void InputPlugin::SaveConfig()
|
2010-06-03 18:05:08 +00:00
|
|
|
{
|
2011-02-28 20:40:15 +00:00
|
|
|
std::string ini_filename = File::GetUserPath(D_CONFIG_IDX) + 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
|
|
|
|
|
|
|
std::vector< ControllerEmu* >::const_iterator i = controllers.begin(),
|
|
|
|
e = controllers.end();
|
|
|
|
for ( ; i!=e; ++i )
|
2010-06-04 20:03:03 +00:00
|
|
|
(*i)->SaveConfig(inifile.GetOrCreateSection((*i)->GetName().c_str()));
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2010-06-04 20:03:03 +00:00
|
|
|
inifile.Save(ini_filename);
|
2010-06-03 18:05:08 +00:00
|
|
|
}
|