BkmControllerAdapter - simplify and get rid of legacy support for random buttons, not such a good idea on an importer
This commit is contained in:
parent
831a64c7de
commit
23c1ccac7e
|
@ -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] != '.';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue