Hook up quick savestate & quick loadstate hotkeys and map them to my preferred key mapping by default

This commit is contained in:
andres.delikat 2011-02-15 17:15:51 +00:00
parent 3fdd1b2ee4
commit d7b599ee5f
2 changed files with 16 additions and 0 deletions

View File

@ -38,6 +38,8 @@
public string FrameAdvanceBinding = "F";
public string ScreenshotBinding = "F12";
public string ToggleFullscreenBinding = "LeftAlt+Return, RightAlt+Return";
public string QuickSave = "I";
public string QuickLoad = "P";
// SMS / GameGear Settings
public bool SmsEnableFM = true;

View File

@ -138,6 +138,8 @@ namespace BizHawk.MultiClient
controls.BindMulti("Frame Advance", Global.Config.FrameAdvanceBinding);
controls.BindMulti("Screenshot", Global.Config.ScreenshotBinding);
controls.BindMulti("Toggle Fullscreen", Global.Config.ToggleFullscreenBinding);
controls.BindMulti("Quick Save State", Global.Config.QuickSave);
controls.BindMulti("Quick Load State", Global.Config.QuickLoad);
Global.ClientControls = controls;
var smsControls = new Controller(SMS.SmsController);
@ -352,6 +354,18 @@ namespace BizHawk.MultiClient
return;
}
if (Global.ClientControls["Quick Save State"])
{
if (!IsNullEmulator())
SaveState("QuickSave" + SaveSlot.ToString());
}
if (Global.ClientControls["Quick Load State"])
{
if (!IsNullEmulator())
LoadState("QuickSave" + SaveSlot.ToString());
}
if (Global.ClientControls["Hard Reset"])
{
Global.ClientControls.UnpressButton("Hard Reset");