Allow setting different profiles for different controllers, and automatically use the appropriate profile directory.
This commit is contained in:
parent
b8691df723
commit
e32b1526b3
|
@ -136,11 +136,6 @@ bool BootCore(const std::string& _rFilename)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (game_ini.Exists("Core", "WiiProfile"))
|
|
||||||
game_ini.Get("Core", "WiiProfile", &StartUp.strWiiControllerProfile);
|
|
||||||
if (game_ini.Exists("Core", "GCProfile"))
|
|
||||||
game_ini.Get("Core", "GCProfile", &StartUp.strGCControllerProfile);
|
|
||||||
|
|
||||||
// Run the game
|
// Run the game
|
||||||
// Init the core
|
// Init the core
|
||||||
if (!Core::Init())
|
if (!Core::Init())
|
||||||
|
@ -158,6 +153,7 @@ void Stop()
|
||||||
|
|
||||||
SCoreStartupParameter& StartUp = SConfig::GetInstance().m_LocalCoreStartupParameter;
|
SCoreStartupParameter& StartUp = SConfig::GetInstance().m_LocalCoreStartupParameter;
|
||||||
|
|
||||||
|
StartUp.m_strUniqueID = "00000000";
|
||||||
if (config_cache.valid)
|
if (config_cache.valid)
|
||||||
{
|
{
|
||||||
config_cache.valid = false;
|
config_cache.valid = false;
|
||||||
|
@ -173,8 +169,6 @@ void Stop()
|
||||||
StartUp.bDSPHLE = config_cache.bDSPHLE;
|
StartUp.bDSPHLE = config_cache.bDSPHLE;
|
||||||
StartUp.bDisableWiimoteSpeaker = config_cache.bDisableWiimoteSpeaker;
|
StartUp.bDisableWiimoteSpeaker = config_cache.bDisableWiimoteSpeaker;
|
||||||
StartUp.m_strVideoBackend = config_cache.strBackend;
|
StartUp.m_strVideoBackend = config_cache.strBackend;
|
||||||
StartUp.strGCControllerProfile = "";
|
|
||||||
StartUp.strWiiControllerProfile = "";
|
|
||||||
VideoBackend::ActivateBackend(StartUp.m_strVideoBackend);
|
VideoBackend::ActivateBackend(StartUp.m_strVideoBackend);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -139,8 +139,6 @@ struct SCoreStartupParameter
|
||||||
int iTheme;
|
int iTheme;
|
||||||
int iPosX, iPosY, iWidth, iHeight;
|
int iPosX, iPosY, iWidth, iHeight;
|
||||||
|
|
||||||
std::string strGCControllerProfile;
|
|
||||||
std::string strWiiControllerProfile;
|
|
||||||
enum EBootBS2
|
enum EBootBS2
|
||||||
{
|
{
|
||||||
BOOT_DEFAULT,
|
BOOT_DEFAULT,
|
||||||
|
|
|
@ -56,7 +56,7 @@ void Initialize(void* const hwnd)
|
||||||
g_controller_interface.Initialize();
|
g_controller_interface.Initialize();
|
||||||
|
|
||||||
// load the saved controller config
|
// load the saved controller config
|
||||||
g_plugin.LoadConfig(SConfig::GetInstance().m_LocalCoreStartupParameter.strGCControllerProfile);
|
g_plugin.LoadConfig(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetStatus(u8 _numPAD, SPADStatus* _pPADStatus)
|
void GetStatus(u8 _numPAD, SPADStatus* _pPADStatus)
|
||||||
|
|
|
@ -45,7 +45,7 @@ void Initialize(void* const hwnd)
|
||||||
g_controller_interface.SetHwnd(hwnd);
|
g_controller_interface.SetHwnd(hwnd);
|
||||||
g_controller_interface.Initialize();
|
g_controller_interface.Initialize();
|
||||||
|
|
||||||
g_plugin.LoadConfig(SConfig::GetInstance().m_LocalCoreStartupParameter.strWiiControllerProfile);
|
g_plugin.LoadConfig(false);
|
||||||
|
|
||||||
WiimoteReal::Initialize();
|
WiimoteReal::Initialize();
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
// http://code.google.com/p/dolphin-emu/
|
// http://code.google.com/p/dolphin-emu/
|
||||||
|
|
||||||
#include "InputConfig.h"
|
#include "InputConfig.h"
|
||||||
|
#include "../../Core/Src/ConfigManager.h"
|
||||||
|
|
||||||
InputPlugin::~InputPlugin()
|
InputPlugin::~InputPlugin()
|
||||||
{
|
{
|
||||||
|
@ -26,25 +27,53 @@ InputPlugin::~InputPlugin()
|
||||||
delete *i;
|
delete *i;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool InputPlugin::LoadConfig(std::string ini)
|
bool InputPlugin::LoadConfig(bool isGC)
|
||||||
{
|
{
|
||||||
IniFile inifile;
|
IniFile inifile;
|
||||||
std::string ini2 = ini;
|
IniFile game_ini;
|
||||||
if (ini == "")
|
bool useProfile[4] = {false, false, false, false};
|
||||||
ini = ini_name;
|
std::string num[4] = {"1", "2", "3", "4"};
|
||||||
if (inifile.Load(File::GetUserPath(D_CONFIG_IDX) + ini + ".ini"))
|
std::string profile[4];
|
||||||
|
|
||||||
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.GetUniqueID() != "00000000")
|
||||||
|
{
|
||||||
|
std::string type;
|
||||||
|
if (isGC)
|
||||||
|
type = "GC";
|
||||||
|
else
|
||||||
|
type = "Wii";
|
||||||
|
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()))
|
||||||
|
{
|
||||||
|
useProfile[i] = true;
|
||||||
|
game_ini.Get("Core", (type + "Profile" + num[i]).c_str(), &profile[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (inifile.Load(File::GetUserPath(D_CONFIG_IDX) + ini_name + ".ini"))
|
||||||
{
|
{
|
||||||
std::vector< ControllerEmu* >::const_iterator
|
std::vector< ControllerEmu* >::const_iterator
|
||||||
i = controllers.begin(),
|
i = controllers.begin(),
|
||||||
e = controllers.end();
|
e = controllers.end();
|
||||||
for (; i!=e; ++i)
|
for (int n = 0; i!=e; ++i, ++n)
|
||||||
{
|
{
|
||||||
// load settings from ini
|
// load settings from ini
|
||||||
std::string section;
|
if (useProfile[n])
|
||||||
section = (*i)->GetName();
|
{
|
||||||
if (ini2 != "")
|
IniFile profile_ini;
|
||||||
section = "Profile";
|
std::string path;
|
||||||
(*i)->LoadConfig(inifile.GetOrCreateSection(section.c_str()));
|
if (isGC)
|
||||||
|
path = "Profiles/GCPad/";
|
||||||
|
else
|
||||||
|
path = "Profiles/Wiimote/";
|
||||||
|
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()));
|
||||||
// update refs
|
// update refs
|
||||||
(*i)->UpdateReferences(g_controller_interface);
|
(*i)->UpdateReferences(g_controller_interface);
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ public:
|
||||||
|
|
||||||
~InputPlugin();
|
~InputPlugin();
|
||||||
|
|
||||||
bool LoadConfig(std::string ini);
|
bool LoadConfig(bool isGC);
|
||||||
void SaveConfig();
|
void SaveConfig();
|
||||||
|
|
||||||
std::vector< ControllerEmu* > controllers;
|
std::vector< ControllerEmu* > controllers;
|
||||||
|
|
Loading…
Reference in New Issue