new pce cores - add some button name overrides, and support mnemonics

This commit is contained in:
adelikat 2020-06-13 15:11:00 -05:00
parent b1c2ed0d3d
commit 573b544a88
3 changed files with 23 additions and 2 deletions

View File

@ -445,6 +445,17 @@ namespace BizHawk.Client.Common
["V"] = '5',
["VI"] = '6',
},
["PCE"] = new Dictionary<string, char>
{
["I"] = '1',
["II"] = '2',
["III"] = '3',
["IV"] = '4',
["V"] = '5',
["VI"] = '6',
["Mode: Set 2-button"] = 'm',
["Mode: Set 6-button"] = 'M'
},
["NDS"] = new Dictionary<string, char>
{
["LidOpen"] = 'o',

View File

@ -52,7 +52,12 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE
protected override IDictionary<string, string> ButtonNameOverrides { get; } = new Dictionary<string, string>
{
{ "RIGHT →", "Right up my arse" },
["UP ↑"] = "Up",
["DOWN ↓"] = "Down",
["LEFT ←"] = "Left",
["RIGHT →"] = "Right",
["SELECT"] = "Select",
["RUN"] = "Run"
};
// pce always has two layers, sgx always has 4, and mednafen knows this

View File

@ -61,7 +61,12 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCE
protected override IDictionary<string, string> ButtonNameOverrides { get; } = new Dictionary<string, string>
{
{ "RIGHT →", "Right up my arse" },
["UP ↑"] = "Up",
["DOWN ↓"] = "Down",
["LEFT ←"] = "Left",
["RIGHT →"] = "Right",
["SELECT"] = "Select",
["RUN"] = "Run"
};
// pce always has two layers, sgx always has 4, and mednafen knows this