mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 00:59:11 +01:00
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
|
|
||
|
#include "Config.h"
|
||
|
|
||
|
Plugin::Plugin()
|
||
|
{
|
||
|
// GCPads
|
||
|
for ( unsigned int i = 0; i<4; ++i )
|
||
|
controllers.push_back( new GCPad( i ) );
|
||
|
// Wiimotes / disabled, cause it only the GUI half is done
|
||
|
//for ( unsigned int i = 0; i<4; ++i )
|
||
|
// controllers.push_back( new Wiimote( i ) );
|
||
|
};
|
||
|
|
||
|
Plugin::~Plugin()
|
||
|
{
|
||
|
// delete pads
|
||
|
std::vector<ControllerEmu*>::const_iterator i = controllers.begin(),
|
||
|
e = controllers.end();
|
||
|
for ( ; i != e; ++i )
|
||
|
delete *i;
|
||
|
}
|
||
|
|
||
|
void Plugin::LoadConfig()
|
||
|
{
|
||
|
IniFile inifile;
|
||
|
|
||
|
std::ifstream file;
|
||
|
file.open( (std::string(File::GetUserPath(D_CONFIG_IDX)) + CONFIG_FILE_NAME ).c_str() );
|
||
|
inifile.Load( file );
|
||
|
file.close();
|
||
|
|
||
|
std::vector< ControllerEmu* >::const_iterator i = controllers.begin(),
|
||
|
e = controllers.end();
|
||
|
for ( ; i!=e; ++i )
|
||
|
(*i)->LoadConfig( inifile[ (*i)->GetName() ] );
|
||
|
}
|
||
|
|
||
|
void Plugin::SaveConfig()
|
||
|
{
|
||
|
IniFile inifile;
|
||
|
|
||
|
std::vector< ControllerEmu* >::const_iterator i = controllers.begin(),
|
||
|
e = controllers.end();
|
||
|
for ( ; i!=e; ++i )
|
||
|
(*i)->SaveConfig( inifile[ (*i)->GetName() ] );
|
||
|
|
||
|
// dont need to save empty values
|
||
|
inifile.Clean();
|
||
|
|
||
|
std::ofstream file;
|
||
|
file.open( (std::string(File::GetUserPath(D_CONFIG_IDX)) + CONFIG_FILE_NAME ).c_str() );
|
||
|
inifile.Save( file );
|
||
|
file.close();
|
||
|
}
|