diff --git a/BizHawk.Client.Common/config/Config.cs b/BizHawk.Client.Common/config/Config.cs
index f7b4ef9bc4..3f644e3694 100644
--- a/BizHawk.Client.Common/config/Config.cs
+++ b/BizHawk.Client.Common/config/Config.cs
@@ -203,7 +203,6 @@ namespace BizHawk.Client.Common
public bool DispFixAspectRatio = true;
public bool DispFixScaleInteger = true;
public bool DispFullscreenHacks = true;
- public bool DispSnowyNullEmulator = true;
public EDispManagerAR DispManagerAR = EDispManagerAR.System;
public int DispCustomUserARWidth = 1;
diff --git a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj
index 171b15f3e0..ab0d2a15db 100644
--- a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj
+++ b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj
@@ -76,6 +76,7 @@
False
..\References\LuaInterface.dll
+
..\References\Newtonsoft.Json.dll
diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs
index ab94c756ff..eff4a04b65 100644
--- a/BizHawk.Client.EmuHawk/MainForm.cs
+++ b/BizHawk.Client.EmuHawk/MainForm.cs
@@ -77,7 +77,6 @@ namespace BizHawk.Client.EmuHawk
ret.RequestGLContext = () => GlobalWin.GLManager.CreateGLContext();
ret.ActivateGLContext = (gl) => GlobalWin.GLManager.Activate((GLManager.ContextRef)gl);
ret.DeactivateGLContext = () => GlobalWin.GLManager.Deactivate();
- ret.DispSnowyNullEmulator = () => Global.Config.DispSnowyNullEmulator;
return ret;
}
@@ -198,7 +197,7 @@ namespace BizHawk.Client.EmuHawk
InitControls();
Global.CoreComm = CreateCoreComm();
CoreFileProvider.SyncCoreCommInputSignals();
- Global.Emulator = new NullEmulator(Global.CoreComm);
+ Global.Emulator = new NullEmulator(Global.CoreComm, Global.Config.GetCoreSettings());
Global.ActiveController = Global.NullControls;
Global.AutoFireController = Global.AutofireNullControls;
Global.AutofireStickyXORAdapter.SetOnOffPatternFromConfig();
@@ -3488,7 +3487,7 @@ namespace BizHawk.Client.EmuHawk
Global.Emulator.Dispose();
Global.CoreComm = CreateCoreComm();
CoreFileProvider.SyncCoreCommInputSignals();
- Global.Emulator = new NullEmulator(Global.CoreComm);
+ Global.Emulator = new NullEmulator(Global.CoreComm, Global.Config.GetCoreSettings());
Global.ActiveController = Global.NullControls;
Global.AutoFireController = Global.AutofireNullControls;
RewireSound();
@@ -3507,7 +3506,7 @@ namespace BizHawk.Client.EmuHawk
CloseGame(clearSram);
Global.CoreComm = CreateCoreComm();
CoreFileProvider.SyncCoreCommInputSignals();
- Global.Emulator = new NullEmulator(Global.CoreComm);
+ Global.Emulator = new NullEmulator(Global.CoreComm, Global.Config.GetCoreSettings());
Global.Game = GameInfo.NullInstance;
GlobalWin.Tools.Restart();
diff --git a/BizHawk.Client.EmuHawk/config/DisplayConfigLite.cs b/BizHawk.Client.EmuHawk/config/DisplayConfigLite.cs
index b46e3a9d39..75eec0de3a 100644
--- a/BizHawk.Client.EmuHawk/config/DisplayConfigLite.cs
+++ b/BizHawk.Client.EmuHawk/config/DisplayConfigLite.cs
@@ -20,7 +20,7 @@ namespace BizHawk.Client.EmuHawk.config
InitializeComponent();
rbNone.Checked = Global.Config.TargetDisplayFilter == 0;
- rbHq2x.Checked = Global.Config.TargetDisplayFilter == 1;
+ rbHq2x.Checked = Global.Config.TargetDisplayFilter == 1;
rbScanlines.Checked = Global.Config.TargetDisplayFilter == 2;
rbUser.Checked = Global.Config.TargetDisplayFilter == 3;
@@ -31,11 +31,20 @@ namespace BizHawk.Client.EmuHawk.config
rbFinalFilterBilinear.Checked = Global.Config.DispFinalFilter == 1;
rbFinalFilterBicubic.Checked = Global.Config.DispFinalFilter == 2;
- tbScanlineIntensity.Value = Global.Config.TargetScanlineFilterIntensity;
+ tbScanlineIntensity.Value = Global.Config.TargetScanlineFilterIntensity;
checkLetterbox.Checked = Global.Config.DispFixAspectRatio;
checkPadInteger.Checked = Global.Config.DispFixScaleInteger;
checkFullscreenHacks.Checked = Global.Config.DispFullscreenHacks;
- checkSnowyNullEmulator.Checked = Global.Config.DispSnowyNullEmulator;
+
+ // null emulator config hack
+ {
+ NullEmulator.NullEmulatorSettings s;
+ if (Global.Emulator is NullEmulator)
+ s = (Global.Emulator as dynamic).GetSettings();
+ else
+ s = (NullEmulator.NullEmulatorSettings)Global.Config.GetCoreSettings();
+ checkSnowyNullEmulator.Checked = s.SnowyDisplay;
+ }
if (Global.Config.DispManagerAR == Config.EDispManagerAR.None)
rbUseRaw.Checked = true;
@@ -52,7 +61,7 @@ namespace BizHawk.Client.EmuHawk.config
private void btnOk_Click(object sender, EventArgs e)
{
- if(rbNone.Checked)
+ if (rbNone.Checked)
Global.Config.TargetDisplayFilter = 0;
if (rbHq2x.Checked)
Global.Config.TargetDisplayFilter = 1;
@@ -61,18 +70,31 @@ namespace BizHawk.Client.EmuHawk.config
if (rbUser.Checked)
Global.Config.TargetDisplayFilter = 3;
- if(rbFinalFilterNone.Checked)
+ if (rbFinalFilterNone.Checked)
Global.Config.DispFinalFilter = 0;
- if(rbFinalFilterBilinear.Checked)
+ if (rbFinalFilterBilinear.Checked)
Global.Config.DispFinalFilter = 1;
- if(rbFinalFilterBicubic.Checked)
+ if (rbFinalFilterBicubic.Checked)
Global.Config.DispFinalFilter = 2;
Global.Config.TargetScanlineFilterIntensity = tbScanlineIntensity.Value;
Global.Config.DispFixAspectRatio = checkLetterbox.Checked;
Global.Config.DispFixScaleInteger = checkPadInteger.Checked;
Global.Config.DispFullscreenHacks = checkFullscreenHacks.Checked;
- Global.Config.DispSnowyNullEmulator = checkSnowyNullEmulator.Checked;
+
+ // HACK:: null emulator's settings don't persist to config normally
+ {
+ NullEmulator.NullEmulatorSettings s;
+ if (Global.Emulator is NullEmulator)
+ s = (Global.Emulator as dynamic).GetSettings();
+ else
+ s = (NullEmulator.NullEmulatorSettings)Global.Config.GetCoreSettings();
+ s.SnowyDisplay = checkSnowyNullEmulator.Checked;
+
+ Global.Config.PutCoreSettings(s);
+ if (Global.Emulator is NullEmulator)
+ (Global.Emulator as dynamic).PutSettings(s);
+ }
if (rbUseRaw.Checked)
Global.Config.DispManagerAR = Config.EDispManagerAR.None;
diff --git a/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs b/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs
index 375805b543..a3ab323e7b 100644
--- a/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs
+++ b/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs
@@ -2,16 +2,18 @@
using System.Collections.Generic;
using System.IO;
using BizHawk.Common;
+using System.ComponentModel;
namespace BizHawk.Emulation.Common
{
[CoreAttributes("NullHawk", "")]
- public class NullEmulator : IEmulator, IVideoProvider, ISyncSoundProvider, ISoundProvider
+ public class NullEmulator : IEmulator, IVideoProvider, ISyncSoundProvider, ISoundProvider, ISettable
{
- public NullEmulator(CoreComm comm)
+ public NullEmulator(CoreComm comm, object settings)
{
ServiceProvider = new BasicServiceProvider(this);
CoreComm = comm;
+ _settings = (NullEmulatorSettings)settings ?? new NullEmulatorSettings();
var d = DateTime.Now;
xmas = d.Month == 12 && d.Day >= 17 && d.Day <= 27;
@@ -44,7 +46,7 @@ namespace BizHawk.Emulation.Common
public void FrameAdvance(bool render, bool rendersound)
{
if (render == false) return;
- if (!CoreComm.DispSnowyNullEmulator())
+ if (!_settings.SnowyDisplay)
{
if (frameBufferClear) return;
frameBufferClear = true;
@@ -53,15 +55,18 @@ namespace BizHawk.Emulation.Common
}
frameBufferClear = false;
if (xmas)
+ {
for (int i = 0; i < 256 * 192; i++)
{
byte b = (byte)rand.Next();
frameBuffer[i] = Colors.ARGB(b, (byte)(255 - b), 0, 255);
}
- else
+ }
+ else
+ {
for (int i = 0; i < 256 * 192; i++)
- frameBuffer[i] = Colors.Luminosity((byte) rand.Next());
-
+ frameBuffer[i] = Colors.Luminosity((byte)rand.Next());
+ }
Frame++;
}
public ControllerDefinition ControllerDefinition { get { return NullController; } }
@@ -88,7 +93,7 @@ namespace BizHawk.Emulation.Common
{
nsamp = 735;
samples = sampbuff;
- if (!CoreComm.DispSnowyNullEmulator())
+ if (!_settings.SnowyDisplay)
return;
if (xmas)
pleg.Generate(samples);
@@ -100,7 +105,7 @@ namespace BizHawk.Emulation.Common
public void GetSamples(short[] samples)
{
- if (!CoreComm.DispSnowyNullEmulator())
+ if (!_settings.SnowyDisplay)
return;
if (xmas)
pleg.Generate(samples);
@@ -111,6 +116,45 @@ namespace BizHawk.Emulation.Common
get;
set;
}
+
+ private NullEmulatorSettings _settings;
+
+ public class NullEmulatorSettings
+ {
+ [DefaultValue(true)]
+ public bool SnowyDisplay { get; set; }
+
+ public NullEmulatorSettings()
+ {
+ SettingsUtil.SetDefaultValues(this);
+ }
+
+ public NullEmulatorSettings Clone()
+ {
+ return (NullEmulatorSettings)MemberwiseClone();
+ }
+ }
+
+ public NullEmulatorSettings GetSettings()
+ {
+ return _settings.Clone();
+ }
+
+ public object GetSyncSettings()
+ {
+ return null;
+ }
+
+ public bool PutSettings(NullEmulatorSettings o)
+ {
+ _settings = o;
+ return false;
+ }
+
+ public bool PutSyncSettings(object o)
+ {
+ return false;
+ }
}
#region super tone generator
diff --git a/BizHawk.Emulation.Common/CoreComms.cs b/BizHawk.Emulation.Common/CoreComms.cs
index bdac1530d2..94a1700789 100644
--- a/BizHawk.Emulation.Common/CoreComms.cs
+++ b/BizHawk.Emulation.Common/CoreComms.cs
@@ -56,8 +56,6 @@ namespace BizHawk.Emulation.Common
public Func