2008-12-08 05:25:12 +00:00
|
|
|
|
// Copyright (C) 2003-2008 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/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
|
#include "IniFile.h"
|
2009-02-09 13:10:29 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#include "Config.h"
|
2009-02-09 13:10:29 +00:00
|
|
|
|
#include "EmuDefinitions.h" // for PadMapping
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
Config g_Config;
|
|
|
|
|
|
|
|
|
|
Config::Config()
|
|
|
|
|
{
|
2009-02-10 17:25:08 +00:00
|
|
|
|
// Set all default values to zero
|
2008-12-08 05:25:12 +00:00
|
|
|
|
memset(this, 0, sizeof(Config));
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-09 13:10:29 +00:00
|
|
|
|
void Config::Load(bool ChangePad)
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
|
|
|
|
std::string temp;
|
|
|
|
|
IniFile iniFile;
|
|
|
|
|
iniFile.Load(FULL_CONFIG_DIR "Wiimote.ini");
|
|
|
|
|
|
2009-02-15 18:57:00 +00:00
|
|
|
|
// General
|
|
|
|
|
iniFile.Get("Settings", "SidewaysDPad", &bSidewaysDPad, false);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
iniFile.Get("Settings", "WideScreen", &bWideScreen, false);
|
|
|
|
|
iniFile.Get("Settings", "NunchuckConnected", &bNunchuckConnected, false);
|
|
|
|
|
iniFile.Get("Settings", "ClassicControllerConnected", &bClassicControllerConnected, false);
|
2009-01-25 23:07:15 +00:00
|
|
|
|
|
2009-02-15 18:57:00 +00:00
|
|
|
|
// Real Wiimote
|
2009-01-25 23:07:15 +00:00
|
|
|
|
iniFile.Get("Real", "Connect", &bConnectRealWiimote, true);
|
|
|
|
|
iniFile.Get("Real", "Use", &bUseRealWiimote, true);
|
2009-01-28 16:09:08 +00:00
|
|
|
|
iniFile.Get("Real", "UpdateStatus", &bUpdateRealWiimote, true);
|
2009-02-03 11:45:59 +00:00
|
|
|
|
iniFile.Get("Real", "AccNeutralX", &iAccNeutralX, 0);
|
|
|
|
|
iniFile.Get("Real", "AccNeutralY", &iAccNeutralY, 0);
|
|
|
|
|
iniFile.Get("Real", "AccNeutralZ", &iAccNeutralZ, 0);
|
|
|
|
|
iniFile.Get("Real", "AccNunNeutralX", &iAccNunNeutralX, 0);
|
|
|
|
|
iniFile.Get("Real", "AccNunNeutralY", &iAccNunNeutralY, 0);
|
|
|
|
|
iniFile.Get("Real", "AccNunNeutralZ", &iAccNunNeutralZ, 0);
|
2009-02-09 13:10:29 +00:00
|
|
|
|
|
2009-02-15 18:57:00 +00:00
|
|
|
|
// Default controls
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
int WmA = 65, WmB = 65,
|
|
|
|
|
Wm1 = 49, Wm2 = 50,
|
|
|
|
|
WmP = 80, WmM = 77, WmH = 72,
|
|
|
|
|
WmL = 37, WmR = 39, WmU = 38, WmD = 40, // Regular directional keys
|
|
|
|
|
WmShake = 83, // S
|
|
|
|
|
|
|
|
|
|
NcZ = 90, NcC = 67,
|
|
|
|
|
NcL = 100, NcR = 102, NcU = 104, NcD = 101, // Numpad
|
|
|
|
|
NcShake = 68; // D
|
|
|
|
|
#else
|
|
|
|
|
int WmA = 0, WmB = 0,
|
|
|
|
|
Wm1 = 0, Wm2 = 0,
|
|
|
|
|
WmP = 0, WmM = 0, WmH = 0,
|
|
|
|
|
WmL = 0, WmR = 0, WmU = 0, WmD = 0,
|
|
|
|
|
WmShake = 0,
|
|
|
|
|
|
|
|
|
|
NcZ = 0, NcC = 0, NcL = 0, NcR = 0, NcU = 0
|
|
|
|
|
NcShake = 0;
|
|
|
|
|
#endif
|
2009-02-09 13:10:29 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 1; i++)
|
|
|
|
|
{
|
|
|
|
|
// ==================================================================
|
|
|
|
|
// Slot specific settings
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
std::string SectionName = StringFromFormat("Wiimote%i", i + 1);
|
2009-02-10 00:41:43 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "NoTriggerFilter", &bNoTriggerFilter, false);
|
2009-02-15 02:01:43 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "TriggerType", &Trigger.Type, Trigger.TRIGGER_OFF);
|
2009-02-12 08:46:48 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "TriggerRollRange", &Trigger.Range.Roll, 50);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "TriggerPitchRange", &Trigger.Range.Pitch, false);
|
2009-02-15 18:23:42 +00:00
|
|
|
|
|
|
|
|
|
// Wiimote
|
2009-02-15 18:57:00 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmA", &WiiMoteEmu::PadMapping[i].Wm.A, WmA);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmB", &WiiMoteEmu::PadMapping[i].Wm.B, WmB);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "Wm1", &WiiMoteEmu::PadMapping[i].Wm.One, Wm1);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "Wm2", &WiiMoteEmu::PadMapping[i].Wm.Two, Wm2);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmP", &WiiMoteEmu::PadMapping[i].Wm.P, WmP);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmM", &WiiMoteEmu::PadMapping[i].Wm.M, WmM);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmH", &WiiMoteEmu::PadMapping[i].Wm.H, WmH);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmL", &WiiMoteEmu::PadMapping[i].Wm.L, WmL);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmR", &WiiMoteEmu::PadMapping[i].Wm.R, WmR);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmU", &WiiMoteEmu::PadMapping[i].Wm.U, WmU);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmD", &WiiMoteEmu::PadMapping[i].Wm.D, WmD);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "WmShake", &WiiMoteEmu::PadMapping[i].Wm.Shake, WmShake);
|
2009-02-15 18:23:42 +00:00
|
|
|
|
|
|
|
|
|
// Nunchuck
|
2009-02-15 02:01:43 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "NunchuckStick", &Nunchuck.Type, Nunchuck.KEYBOARD);
|
2009-02-15 18:57:00 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "NcZ", &WiiMoteEmu::PadMapping[i].Nc.Z, NcZ);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "NcC", &WiiMoteEmu::PadMapping[i].Nc.C, NcC);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "NcL", &WiiMoteEmu::PadMapping[i].Nc.L, NcL);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "NcR", &WiiMoteEmu::PadMapping[i].Nc.R, NcR);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "NcU", &WiiMoteEmu::PadMapping[i].Nc.U, NcU);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "NcD", &WiiMoteEmu::PadMapping[i].Nc.D, NcD);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "NcShake", &WiiMoteEmu::PadMapping[i].Nc.Shake, NcShake);
|
2009-02-09 13:10:29 +00:00
|
|
|
|
|
|
|
|
|
// Don't update this when we are loading settings from the ConfigBox
|
|
|
|
|
if(!ChangePad)
|
|
|
|
|
{
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "DeviceID", &WiiMoteEmu::PadMapping[i].ID, 0);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "Enabled", &WiiMoteEmu::PadMapping[i].enabled, true);
|
|
|
|
|
}
|
2009-02-10 17:25:08 +00:00
|
|
|
|
|
|
|
|
|
// Check if the pad ID is within the range of avaliable pads
|
|
|
|
|
if (WiiMoteEmu::PadMapping[i].ID > (WiiMoteEmu::NumPads - 1)) WiiMoteEmu::PadMapping[i].ID = (WiiMoteEmu::NumPads - 1);
|
2009-02-09 13:10:29 +00:00
|
|
|
|
// ===================
|
|
|
|
|
|
|
|
|
|
// ==================================================================
|
|
|
|
|
// Joypad specific settings
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
// Current joypad device ID: PadMapping[i].ID
|
|
|
|
|
// Current joypad name: joyinfo[PadMapping[i].ID].Name
|
|
|
|
|
|
|
|
|
|
/* Prevent a crash from illegal access to joyinfo that will only have values for
|
|
|
|
|
the current amount of connected PadMapping */
|
2009-02-10 20:20:52 +00:00
|
|
|
|
if(WiiMoteEmu::PadMapping[i].ID >= WiiMoteEmu::joyinfo.size()) continue;
|
2009-02-09 13:10:29 +00:00
|
|
|
|
|
|
|
|
|
// Create a section name
|
|
|
|
|
SectionName = WiiMoteEmu::joyinfo[WiiMoteEmu::PadMapping[i].ID].Name;
|
|
|
|
|
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "left_x", &WiiMoteEmu::PadMapping[i].Axis.Lx, 0);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "left_y", &WiiMoteEmu::PadMapping[i].Axis.Ly, 1);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "right_x", &WiiMoteEmu::PadMapping[i].Axis.Rx, 2);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "right_y", &WiiMoteEmu::PadMapping[i].Axis.Ry, 3);
|
2009-02-10 17:25:08 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "l_trigger", &WiiMoteEmu::PadMapping[i].Axis.Tl, 1004);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "r_trigger", &WiiMoteEmu::PadMapping[i].Axis.Tr, 1005);
|
2009-02-14 13:03:21 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "DeadZoneL", &WiiMoteEmu::PadMapping[i].DeadZoneL, 0);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "DeadZoneR", &WiiMoteEmu::PadMapping[i].DeadZoneR, 0);
|
2009-02-09 13:10:29 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "TriggerType", &WiiMoteEmu::PadMapping[i].triggertype, 0);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "Diagonal", &WiiMoteEmu::PadMapping[i].SDiagonal, "100%");
|
2009-02-12 16:43:35 +00:00
|
|
|
|
iniFile.Get(SectionName.c_str(), "Circle2Square", &WiiMoteEmu::PadMapping[i].bCircle2Square, false);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "RollInvert", &WiiMoteEmu::PadMapping[i].bRollInvert, false);
|
|
|
|
|
iniFile.Get(SectionName.c_str(), "PitchInvert", &WiiMoteEmu::PadMapping[i].bPitchInvert, false);
|
2009-02-09 13:10:29 +00:00
|
|
|
|
}
|
|
|
|
|
// =============================
|
|
|
|
|
Console::Print("Load()\n");
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-10 17:25:08 +00:00
|
|
|
|
void Config::Save(int Slot)
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
|
|
|
|
IniFile iniFile;
|
|
|
|
|
iniFile.Load(FULL_CONFIG_DIR "Wiimote.ini");
|
|
|
|
|
iniFile.Set("Settings", "SidewaysDPad", bSidewaysDPad);
|
|
|
|
|
iniFile.Set("Settings", "WideScreen", bWideScreen);
|
|
|
|
|
iniFile.Set("Settings", "NunchuckConnected", bNunchuckConnected);
|
|
|
|
|
iniFile.Set("Settings", "ClassicControllerConnected", bClassicControllerConnected);
|
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
iniFile.Set("Real", "Connect", bConnectRealWiimote);
|
2009-01-28 16:09:08 +00:00
|
|
|
|
iniFile.Set("Real", "Use", bUseRealWiimote);
|
2009-02-01 13:01:50 +00:00
|
|
|
|
iniFile.Set("Real", "UpdateStatus", bUpdateRealWiimote);
|
2009-02-03 11:45:59 +00:00
|
|
|
|
iniFile.Set("Real", "AccNeutralX", iAccNeutralX);
|
|
|
|
|
iniFile.Set("Real", "AccNeutralY", iAccNeutralY);
|
|
|
|
|
iniFile.Set("Real", "AccNeutralZ", iAccNeutralZ);
|
|
|
|
|
iniFile.Set("Real", "AccNunNeutralX", iAccNunNeutralX);
|
|
|
|
|
iniFile.Set("Real", "AccNunNeutralY", iAccNunNeutralY);
|
|
|
|
|
iniFile.Set("Real", "AccNunNeutralZ", iAccNunNeutralZ);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-02-09 13:10:29 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 1; i++)
|
|
|
|
|
{
|
|
|
|
|
// ==================================================================
|
|
|
|
|
// Slot specific settings
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
std::string SectionName = StringFromFormat("Wiimote%i", i + 1);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "Enabled", WiiMoteEmu::PadMapping[i].enabled);
|
2009-02-10 17:25:08 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "NoTriggerFilter", bNoTriggerFilter);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "TriggerType", Trigger.Type);
|
2009-02-12 08:46:48 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "TriggerRollRange", Trigger.Range.Roll);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "TriggerPitchRange", Trigger.Range.Pitch);
|
2009-02-15 18:23:42 +00:00
|
|
|
|
|
|
|
|
|
// Wiimote
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmA", WiiMoteEmu::PadMapping[i].Wm.A);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmB", WiiMoteEmu::PadMapping[i].Wm.B);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "Wm1", WiiMoteEmu::PadMapping[i].Wm.One);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "Wm2", WiiMoteEmu::PadMapping[i].Wm.Two);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmP", WiiMoteEmu::PadMapping[i].Wm.P);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmM", WiiMoteEmu::PadMapping[i].Wm.M);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmH", WiiMoteEmu::PadMapping[i].Wm.H);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmL", WiiMoteEmu::PadMapping[i].Wm.L);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmR", WiiMoteEmu::PadMapping[i].Wm.R);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmU", WiiMoteEmu::PadMapping[i].Wm.U);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmD", WiiMoteEmu::PadMapping[i].Wm.D);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "WmShake", WiiMoteEmu::PadMapping[i].Wm.Shake);
|
|
|
|
|
|
|
|
|
|
// Nunchuck
|
2009-02-15 02:01:43 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "NunchuckStick", Nunchuck.Type);
|
2009-02-15 18:23:42 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "NcZ", WiiMoteEmu::PadMapping[i].Nc.Z);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "NcC", WiiMoteEmu::PadMapping[i].Nc.C);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "NcL", WiiMoteEmu::PadMapping[i].Nc.L);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "NcR", WiiMoteEmu::PadMapping[i].Nc.R);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "NcU", WiiMoteEmu::PadMapping[i].Nc.U);
|
2009-02-15 18:57:00 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "NcD", WiiMoteEmu::PadMapping[i].Nc.D);
|
2009-02-15 18:23:42 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "NcShake", WiiMoteEmu::PadMapping[i].Nc.Shake);
|
2009-02-09 13:10:29 +00:00
|
|
|
|
|
|
|
|
|
// Save the physical device ID number
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "DeviceID", WiiMoteEmu::PadMapping[i].ID);
|
|
|
|
|
// ===================
|
|
|
|
|
|
|
|
|
|
// ==================================================================
|
|
|
|
|
// Joypad specific settings
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
// Current joypad device ID: PadMapping[i].ID
|
|
|
|
|
// Current joypad name: joyinfo[PadMapping[i].ID].Name
|
|
|
|
|
|
|
|
|
|
/* Save joypad specific settings. Check for "PadMapping[i].ID < SDL_NumJoysticks()" to
|
|
|
|
|
avoid reading a joyinfo that does't exist */
|
2009-02-10 20:20:52 +00:00
|
|
|
|
if(WiiMoteEmu::PadMapping[i].ID >= WiiMoteEmu::joyinfo.size()) continue;
|
2009-02-09 13:10:29 +00:00
|
|
|
|
|
|
|
|
|
// Create a new section name after the joypad name
|
|
|
|
|
SectionName = WiiMoteEmu::joyinfo[WiiMoteEmu::PadMapping[i].ID].Name;
|
|
|
|
|
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "left_x", WiiMoteEmu::PadMapping[i].Axis.Lx);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "left_y", WiiMoteEmu::PadMapping[i].Axis.Ly);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "right_x", WiiMoteEmu::PadMapping[i].Axis.Rx);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "right_y", WiiMoteEmu::PadMapping[i].Axis.Ry);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "l_trigger", WiiMoteEmu::PadMapping[i].Axis.Tl);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "r_trigger", WiiMoteEmu::PadMapping[i].Axis.Tr);
|
|
|
|
|
|
2009-02-14 13:03:21 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "DeadZoneL", WiiMoteEmu::PadMapping[i].DeadZoneL);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "DeadZoneR", WiiMoteEmu::PadMapping[i].DeadZoneR);
|
2009-02-14 01:15:35 +00:00
|
|
|
|
//iniFile.Set(SectionName.c_str(), "controllertype", WiiMoteEmu::PadMapping[i].controllertype);
|
2009-02-09 13:10:29 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "TriggerType", WiiMoteEmu::PadMapping[i].triggertype);
|
2009-02-12 08:46:48 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "Diagonal", WiiMoteEmu::PadMapping[i].SDiagonal);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "Circle2Square", WiiMoteEmu::PadMapping[i].bCircle2Square);
|
2009-02-12 16:43:35 +00:00
|
|
|
|
iniFile.Set(SectionName.c_str(), "RollInvert", WiiMoteEmu::PadMapping[i].bRollInvert);
|
|
|
|
|
iniFile.Set(SectionName.c_str(), "PitchInvert", WiiMoteEmu::PadMapping[i].bPitchInvert);
|
2009-02-09 13:10:29 +00:00
|
|
|
|
// ======================================
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
iniFile.Save(FULL_CONFIG_DIR "Wiimote.ini");
|
2009-02-09 13:10:29 +00:00
|
|
|
|
Console::Print("Save()\n");
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|