2010-06-12 19:15:16 +02: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 20:05:08 +02:00
|
|
|
|
2010-06-12 19:39:33 +02:00
|
|
|
#include "InputConfig.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 01:15:11 +01:00
|
|
|
bool InputPlugin::LoadConfig(std::string ini)
|
2010-06-03 20:05:08 +02:00
|
|
|
{
|
|
|
|
IniFile inifile;
|
2013-01-09 01:15:11 +01:00
|
|
|
std::string ini2 = ini;
|
|
|
|
if (ini == "")
|
|
|
|
ini = ini_name;
|
|
|
|
if (inifile.Load(File::GetUserPath(D_CONFIG_IDX) + ini + ".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();
|
|
|
|
for (; i!=e; ++i)
|
|
|
|
{
|
|
|
|
// load settings from ini
|
2013-01-09 01:15:11 +01:00
|
|
|
std::string section;
|
|
|
|
section = (*i)->GetName();
|
|
|
|
if (ini2 != "")
|
|
|
|
section = "Profile";
|
|
|
|
(*i)->LoadConfig(inifile.GetOrCreateSection(section.c_str()));
|
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
|
|
|
}
|