update pad callback infrastructure in vbanext core, remove unused stub in lynx core, disable in dual gb core until i get around to it, better comment in gb core
This commit is contained in:
parent
802dadcd64
commit
5f770e4696
|
@ -139,12 +139,11 @@ namespace BizHawk.Emulation.Cores.Atari.Lynx
|
|||
public int LagCount { get; set; }
|
||||
public bool IsLagFrame { get; private set; }
|
||||
|
||||
private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem();
|
||||
|
||||
// TODO: optimize managed to unmanaged using the ActiveChanged event
|
||||
// TODO
|
||||
public IInputCallbackSystem InputCallbacks
|
||||
{
|
||||
[FeatureNotImplemented]get { return _inputCallbacks; }
|
||||
[FeatureNotImplemented]
|
||||
get { throw new NotImplementedException(); }
|
||||
}
|
||||
|
||||
public string SystemId { get { return "Lynx"; } }
|
||||
|
|
|
@ -282,11 +282,23 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
|||
readcb = new LibVBANext.AddressCallback((addr) => CoreComm.MemoryCallbackSystem.CallRead(addr));
|
||||
writecb = new LibVBANext.AddressCallback((addr) => CoreComm.MemoryCallbackSystem.CallWrite(addr));
|
||||
tracecb = new LibVBANext.TraceCallback((addr, opcode) => CoreComm.Tracer.Put(Trace(addr, opcode)));
|
||||
_inputCallbacks.ActiveChanged += SyncPadCallback;
|
||||
}
|
||||
|
||||
bool _inputcbactive = false;
|
||||
void SyncPadCallback()
|
||||
{
|
||||
bool _inputcbactive_new = InputCallbacks.Any();
|
||||
if (_inputcbactive != _inputcbactive_new)
|
||||
{
|
||||
_inputcbactive = _inputcbactive_new;
|
||||
LibVBANext.SetPadCallback(Core, _inputcbactive ? padcb : null);
|
||||
}
|
||||
}
|
||||
|
||||
void SyncCallbacks()
|
||||
{
|
||||
LibVBANext.SetPadCallback(Core, InputCallbacks.Any() ? padcb : null);
|
||||
//LibVBANext.SetPadCallback(Core, InputCallbacks.Any() ? padcb : null);
|
||||
LibVBANext.SetFetchCallback(Core, CoreComm.MemoryCallbackSystem.HasExecutes ? fetchcb : null);
|
||||
LibVBANext.SetReadCallback(Core, CoreComm.MemoryCallbackSystem.HasReads ? readcb : null);
|
||||
LibVBANext.SetWriteCallback(Core, CoreComm.MemoryCallbackSystem.HasWrites ? writecb : null);
|
||||
|
|
|
@ -37,9 +37,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
public bool IsLagFrame { get; private set; }
|
||||
|
||||
private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem();
|
||||
|
||||
// TODO: optimize managed to unmanaged using the ActiveChanged event
|
||||
public IInputCallbackSystem InputCallbacks { [FeatureNotImplemented]get { return _inputCallbacks; } }
|
||||
// low priority TODO: due to certain aspects of the core implementation,
|
||||
// we don't smartly use the ActiveChanged event here.
|
||||
public IInputCallbackSystem InputCallbacks { get { return _inputCallbacks; } }
|
||||
|
||||
// all cycle counts are relative to a 2*1024*1024 mhz refclock
|
||||
|
||||
|
|
|
@ -78,18 +78,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
blip_right.SetRates(2097152 * 2, 44100);
|
||||
|
||||
SetMemoryDomains();
|
||||
|
||||
foreach (var callback in InputCallbacks)
|
||||
{
|
||||
L.InputCallbacks.Add(callback);
|
||||
R.InputCallbacks.Add(callback);
|
||||
}
|
||||
}
|
||||
|
||||
private readonly InputCallbackSystem _inputCallbacks = new InputCallbackSystem();
|
||||
|
||||
// TODO: optimize managed to unmanaged using the ActiveChanged event
|
||||
public IInputCallbackSystem InputCallbacks { [FeatureNotImplemented]get { return _inputCallbacks; } }
|
||||
// TODO: how to best work this under the new system? IInputCallbackSystem is far too unwieldly to actually implement
|
||||
public IInputCallbackSystem InputCallbacks { [FeatureNotImplemented]get { throw new NotImplementedException(); } }
|
||||
|
||||
public IVideoProvider VideoProvider { get { return this; } }
|
||||
public ISoundProvider SoundProvider { get { return null; } }
|
||||
|
|
Loading…
Reference in New Issue