BkmControllerAdapter - simplify and get rid of legacy support for random buttons, not such a good idea on an importer

This commit is contained in:
adelikat 2020-05-24 14:07:47 -05:00
parent 831a64c7de
commit 23c1ccac7e
1 changed files with 2 additions and 28 deletions

View File

@ -1,6 +1,4 @@
using System;
using BizHawk.Common;
using BizHawk.Common;
using BizHawk.Emulation.Common;
namespace BizHawk.Client.Common
@ -55,9 +53,6 @@ namespace BizHawk.Client.Common
case "Saturn Controller":
SetSaturnControllersAsMnemonic(mnemonic);
return;
case "PSP Controller":
// TODO
return;
case "GPGX Genesis Controller":
{
if (IsGenesis6Button())
@ -569,28 +564,7 @@ namespace BizHawk.Client.Common
_mnemonic = mnemonic;
}
public bool this[int c]
{
get
{
if (string.IsNullOrEmpty(_mnemonic))
{
return false;
}
if (_mnemonic[c] == '.')
{
return false;
}
if (_mnemonic[c] == '?')
{
return new Random((int)DateTime.Now.Ticks).Next(0, 10) > 5;
}
return true;
}
}
public bool this[int c] => !string.IsNullOrEmpty(_mnemonic) && _mnemonic[c] != '.';
}
}
}