Add Toggle Key Priority hotkey

This commit is contained in:
adelikat 2017-05-14 13:53:25 -05:00
parent 5b44f0960f
commit 58500fef0c
3 changed files with 29 additions and 0 deletions

View File

@ -151,6 +151,7 @@ namespace BizHawk.Client.Common
Bind("General", "Screen Raw to Clipboard", "Ctrl+C"),
Bind("General", "Screen Client to Clipboard", "Ctrl+Shift+C"),
Bind("General", "Toggle Skip Lag Frame"),
Bind("General", "Toggle Key Priority"),
Bind("Save States", "Save State 0", "Shift+F10"),
Bind("Save States", "Save State 1", "Shift+F1"),

View File

@ -124,6 +124,9 @@ namespace BizHawk.Client.EmuHawk
Global.Config.SkipLagFrame ^= true;
GlobalWin.OSD.AddMessage("Skip Lag Frames toggled " + (Global.Config.SkipLagFrame ? "On" : "Off"));
break;
case "Toggle Key Priority":
ToggleKeyPriority();
break;
// Save States
case "Save State 0":

View File

@ -2679,6 +2679,31 @@ namespace BizHawk.Client.EmuHawk
CoreNameStatusBarButton.ToolTipText = attributes.Ported ? "(ported) " : "";
}
private void ToggleKeyPriority()
{
Global.Config.Input_Hotkey_OverrideOptions++;
if (Global.Config.Input_Hotkey_OverrideOptions > 2)
{
Global.Config.Input_Hotkey_OverrideOptions = 0;
}
UpdateKeyPriorityIcon();
switch (Global.Config.Input_Hotkey_OverrideOptions)
{
default:
break;
case 0:
GlobalWin.OSD.AddMessage("Key priority set to Both Hotkey and Input");
break;
case 1:
GlobalWin.OSD.AddMessage("Key priority set to Input over Hotkey");
break;
case 2:
GlobalWin.OSD.AddMessage("Key priority set to Gamepad");
break;
}
}
#endregion
#region Frame Loop