From cb517aadeda1d04b99660f79450cf6c8d8b2540d Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sun, 10 Feb 2019 16:22:29 -0600 Subject: [PATCH] Game Linking: resolve #321 --- BizHawk.Client.EmuHawk/MainForm.Designer.cs | 9 +++++---- BizHawk.Client.EmuHawk/MainForm.Events.cs | 10 ++++++++++ .../Interfaces/Services/ILinkable.cs | 2 +- .../Nintendo/GBHawkLink/GBHawkLink.IEmulator.cs | 5 ++--- .../Nintendo/GBHawkLink/GBHawkLink.IStatable.cs | 2 -- .../Consoles/Nintendo/GBHawkLink/GBHawkLink.cs | 8 +++++--- .../Consoles/Nintendo/Gameboy/Gambatte.ILinkable.cs | 2 +- .../Nintendo/Gameboy/GambatteLink.IEmulator.cs | 1 - .../Consoles/Nintendo/Gameboy/GambatteLink.cs | 6 +++++- .../Consoles/Sega/GGHawkLink/GGHawkLink.IEmulator.cs | 1 - .../Consoles/Sega/GGHawkLink/GGHawkLink.IStatable.cs | 2 -- .../Consoles/Sega/GGHawkLink/GGHawkLink.cs | 8 +++++--- 12 files changed, 34 insertions(+), 22 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.Designer.cs b/BizHawk.Client.EmuHawk/MainForm.Designer.cs index 753dc7f1d2..930017ff83 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Designer.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Designer.cs @@ -3865,10 +3865,11 @@ this.LinkConnectStatusBarButton.Size = new System.Drawing.Size(16, 17); this.LinkConnectStatusBarButton.Text = "Link connection is currently enabled"; this.LinkConnectStatusBarButton.ToolTipText = "Link connection is currently enabled"; - // - // UpdateNotification - // - this.UpdateNotification.IsLink = true; + this.LinkConnectStatusBarButton.Click += new System.EventHandler(this.LinkConnectStatusBarButton_Click); + // + // UpdateNotification + // + this.UpdateNotification.IsLink = true; this.UpdateNotification.LinkColor = System.Drawing.Color.Red; this.UpdateNotification.Name = "UpdateNotification"; this.UpdateNotification.Size = new System.Drawing.Size(46, 17); diff --git a/BizHawk.Client.EmuHawk/MainForm.Events.cs b/BizHawk.Client.EmuHawk/MainForm.Events.cs index 1bf17ff65e..b3d811d72c 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -3124,6 +3124,16 @@ namespace BizHawk.Client.EmuHawk ProfileFirstBootLabel.Visible = false; } + private void LinkConnectStatusBarButton_Click(object sender, EventArgs e) + { + // toggle Link status (only outside of a movie session) + if (!Global.MovieSession.Movie.IsPlaying || Global.MovieSession.Movie.IsFinished) + { + Emulator.AsLinkable().LinkConnected ^= true; + Console.WriteLine("Cable connect status to {0}", Emulator.AsLinkable().LinkConnected); + } + } + private void UpdateNotification_Click(object sender, EventArgs e) { GlobalWin.Sound.StopSound(); diff --git a/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs b/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs index 8285623eef..c406b57200 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs @@ -9,6 +9,6 @@ /// /// Gets a value indicating whether or not the link cable is currently connected /// - bool LinkConnected { get; } + bool LinkConnected { get; set; } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IEmulator.cs index 6b32a8b273..e272ccc7ad 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IEmulator.cs @@ -66,7 +66,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink { _cableconnected ^= true; Console.WriteLine("Cable connect status to {0}", _cableconnected); - LinkConnected = _cableconnected; } _cablediscosignal = cablediscosignalNew; @@ -101,7 +100,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink // the signal to shift out a bit is when serial_clock = 1 if (((L.serialport.serial_clock == 1) || (L.serialport.serial_clock == 2)) && !do_r_next) { - if (LinkConnected) + if (_cableconnected) { L.serialport.send_external_bit((byte)(L.serialport.serial_data & 0x80)); @@ -119,7 +118,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink { do_r_next = false; - if (LinkConnected) + if (_cableconnected) { R.serialport.send_external_bit((byte)(R.serialport.serial_data & 0x80)); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IStatable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IStatable.cs index 7b3049f1e2..215b4ca51c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IStatable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IStatable.cs @@ -61,8 +61,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink ser.Sync("_cablediscosignal", ref _cablediscosignal); ser.Sync("do_r_next", ref do_r_next); _controllerDeck.SyncState(ser); - - LinkConnected = _cableconnected; } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.cs index 486fa0255d..4900fca9b9 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.cs @@ -70,8 +70,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink SetupMemoryDomains(); HardReset(); - - LinkConnected = _cableconnected; } public void HardReset() @@ -88,7 +86,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink private readonly ITraceable _tracer; - public bool LinkConnected { get; private set; } + public bool LinkConnected + { + get { return _cableconnected; } + set { _cableconnected = value; } + } private void ExecFetch(ushort addr) { diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.ILinkable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.ILinkable.cs index 05066dfed8..93f65cbff6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.ILinkable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.ILinkable.cs @@ -10,6 +10,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy { public partial class Gameboy : ILinkable { - public bool LinkConnected { get; private set; } + public bool LinkConnected { get; set; } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.IEmulator.cs index c10f340eae..1458fd746e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.IEmulator.cs @@ -34,7 +34,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy { _cableconnected ^= true; Console.WriteLine("Cable connect status to {0}", _cableconnected); - LinkConnected = _cableconnected; } _cablediscosignal = cablediscosignalNew; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs index d83ce630f6..2a908e7c23 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs @@ -51,7 +51,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy SetMemoryDomains(); } - public bool LinkConnected { get; private set; } + public bool LinkConnected + { + get { return _cableconnected; } + set { _cableconnected = value; } + } private bool _disposed = false; diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.IEmulator.cs index 26ce78049c..4604c7edef 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.IEmulator.cs @@ -34,7 +34,6 @@ namespace BizHawk.Emulation.Cores.Sega.GGHawkLink { _cableconnected ^= true; Console.WriteLine("Cable connect status to {0}", _cableconnected); - LinkConnected = _cableconnected; } _cablediscosignal = cablediscosignalNew; diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.IStatable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.IStatable.cs index cf789a0f58..a220384e44 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.IStatable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.IStatable.cs @@ -60,8 +60,6 @@ namespace BizHawk.Emulation.Cores.Sega.GGHawkLink ser.Sync("_cablediscosignal", ref _cablediscosignal); ser.Sync("do_r_next", ref do_r_next); _controllerDeck.SyncState(ser); - - LinkConnected = _cableconnected; } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.cs b/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.cs index 5dc1786a04..1401820939 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.cs @@ -64,8 +64,6 @@ namespace BizHawk.Emulation.Cores.Sega.GGHawkLink HardReset(); - LinkConnected = _cableconnected; - L.stand_alone = false; R.stand_alone = false; } @@ -84,7 +82,11 @@ namespace BizHawk.Emulation.Cores.Sega.GGHawkLink private readonly ITraceable _tracer; - public bool LinkConnected { get; private set; } + public bool LinkConnected + { + get { return _cableconnected; } + set { _cableconnected = value; } + } private void ExecFetch(ushort addr) {