From d99d2dd3dc37cb24432912c9d8fbca0e1f93c54b Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 18 Jul 2017 10:37:17 -0500 Subject: [PATCH 1/5] PCE - start support for peripheral support - implement a controller deck and wire it up to the controller logic, with the same options as previously, 5 ports, with None and Gamepad as options. No ui for the new system. Old system code and ui still left in --- .../BizHawk.Emulation.Cores.csproj | 1 + .../Consoles/PC Engine/PCEngine.IEmulator.cs | 2 +- .../Consoles/PC Engine/PCEngine.ISettable.cs | 35 +++- .../Consoles/PC Engine/PCEngine.Input.cs | 18 +- .../Consoles/PC Engine/PCEngine.cs | 18 +- .../Consoles/PC Engine/PceControllerDeck.cs | 162 ++++++++++++++++++ 6 files changed, 217 insertions(+), 19 deletions(-) create mode 100644 BizHawk.Emulation.Cores/Consoles/PC Engine/PceControllerDeck.cs diff --git a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj index 07fb3f1ede..75343412ce 100644 --- a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj +++ b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj @@ -1005,6 +1005,7 @@ + PCEngine.cs diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.IEmulator.cs index ce4d1af49a..5fa7f01d7e 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.IEmulator.cs @@ -6,7 +6,7 @@ namespace BizHawk.Emulation.Cores.PCEngine { public IEmulatorServiceProvider ServiceProvider { get; private set; } - public ControllerDefinition ControllerDefinition => PCEngineController; + public ControllerDefinition ControllerDefinition => _controllerDeck.Definition; public void FrameAdvance(IController controller, bool render, bool rendersound) { diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs index 28694b69d5..39e6d2dcaf 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs @@ -1,4 +1,7 @@ -using BizHawk.Emulation.Common; +using System.ComponentModel; + +using BizHawk.Common; +using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.PCEngine { @@ -62,6 +65,36 @@ namespace BizHawk.Emulation.Cores.PCEngine public class PCESyncSettings { + [DefaultValue(PceControllerType.GamePad)] + [DisplayName("Port 1 Device")] + [Description("The type of controller plugged into the first controller port")] + [TypeConverter(typeof(DescribableEnumConverter))] + public PceControllerType Port1 { get; set; } = PceControllerType.GamePad; + + [DefaultValue(PceControllerType.Unplugged)] + [DisplayName("Port 2 Device")] + [Description("The type of controller plugged into the second controller port")] + [TypeConverter(typeof(DescribableEnumConverter))] + public PceControllerType Port2 { get; set; } = PceControllerType.Unplugged; + + [DefaultValue(PceControllerType.Unplugged)] + [DisplayName("Port 3 Device")] + [Description("The type of controller plugged into the third controller port")] + [TypeConverter(typeof(DescribableEnumConverter))] + public PceControllerType Port3 { get; set; } = PceControllerType.Unplugged; + + [DefaultValue(PceControllerType.Unplugged)] + [DisplayName("Port 4 Device")] + [Description("The type of controller plugged into the fourth controller port")] + [TypeConverter(typeof(DescribableEnumConverter))] + public PceControllerType Port4 { get; set; } = PceControllerType.Unplugged; + + [DefaultValue(PceControllerType.Unplugged)] + [DisplayName("Port 5 Device")] + [Description("The type of controller plugged into the fifth controller port")] + [TypeConverter(typeof(DescribableEnumConverter))] + public PceControllerType Port5 { get; set; } = PceControllerType.Unplugged; + public ControllerSetting[] Controllers = { new ControllerSetting { IsConnected = true }, diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs index c40788c08a..52b5c7e444 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs @@ -63,6 +63,8 @@ namespace BizHawk.Emulation.Cores.PCEngine } } + private readonly PceControllerDeck _controllerDeck; + private byte ReadInput() { InputCallbacks.Call(); @@ -72,21 +74,7 @@ namespace BizHawk.Emulation.Cores.PCEngine if (player < 6) { _lagged = false; - if (SEL == false) // return buttons - { - if (_controller.IsPressed("P" + player + " B1")) value &= 0xFE; - if (_controller.IsPressed("P" + player + " B2")) value &= 0xFD; - if (_controller.IsPressed("P" + player + " Select")) value &= 0xFB; - if (_controller.IsPressed("P" + player + " Run")) value &= 0xF7; - } - else - { - //return directions - if (_controller.IsPressed("P" + player + " Up")) value &= 0xFE; - if (_controller.IsPressed("P" + player + " Right")) value &= 0xFD; - if (_controller.IsPressed("P" + player + " Down")) value &= 0xFB; - if (_controller.IsPressed("P" + player + " Left")) value &= 0xF7; - } + value &= _controllerDeck.Read(player, _controller, SEL); } if (Region == "Japan") diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs index 32ca565b65..d3d43f1464 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs @@ -41,7 +41,14 @@ namespace BizHawk.Emulation.Cores.PCEngine Settings = (PCESettings)settings ?? new PCESettings(); _syncSettings = (PCESyncSettings)syncSettings ?? new PCESyncSettings(); Init(game, rom); - SetControllerButtons(); + + _controllerDeck = new PceControllerDeck( + _syncSettings.Port1, + _syncSettings.Port2, + _syncSettings.Port3, + _syncSettings.Port4, + _syncSettings.Port5); + //SetControllerButtons(); // TODO: get rid of this method } public PCEngine(CoreComm comm, GameInfo game, Disc disc, object Settings, object syncSettings) @@ -96,7 +103,14 @@ namespace BizHawk.Emulation.Cores.PCEngine // the default RomStatusDetails don't do anything with Disc CoreComm.RomStatusDetails = string.Format("{0}\r\nDisk partial hash:{1}", game.Name, new DiscSystem.DiscHasher(disc).OldHash()); - SetControllerButtons(); + + _controllerDeck = new PceControllerDeck( + _syncSettings.Port1, + _syncSettings.Port2, + _syncSettings.Port3, + _syncSettings.Port4, + _syncSettings.Port5); + //SetControllerButtons(); } // ROM diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PceControllerDeck.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PceControllerDeck.cs new file mode 100644 index 0000000000..ac5a9efd24 --- /dev/null +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PceControllerDeck.cs @@ -0,0 +1,162 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +using BizHawk.Emulation.Common; + +namespace BizHawk.Emulation.Cores.PCEngine +{ + public enum PceControllerType + { + Unplugged, + GamePad + } + + public class PceControllerDeck + { + private static readonly Type[] Implementors = + { + typeof(UnpluggedController), // Order must match PceControllerType enum values + typeof(StandardController) + }; + + public PceControllerDeck( + PceControllerType controller1, + PceControllerType controller2, + PceControllerType controller3, + PceControllerType controller4, + PceControllerType controller5) + { + Port1 = (IPort)Activator.CreateInstance(Implementors[(int)controller1], 1); + Port2 = (IPort)Activator.CreateInstance(Implementors[(int)controller2], 2); + Port3 = (IPort)Activator.CreateInstance(Implementors[(int)controller3], 3); + Port4 = (IPort)Activator.CreateInstance(Implementors[(int)controller4], 4); + Port5 = (IPort)Activator.CreateInstance(Implementors[(int)controller5], 5); + + Definition = new ControllerDefinition + { + Name = "PC Engine Controller", + BoolButtons = Port1.Definition.BoolButtons + .Concat(Port2.Definition.BoolButtons) + .Concat(Port3.Definition.BoolButtons) + .Concat(Port4.Definition.BoolButtons) + .Concat(Port5.Definition.BoolButtons) + .ToList() + }; + + Definition.FloatControls.AddRange(Port1.Definition.FloatControls); + Definition.FloatControls.AddRange(Port2.Definition.FloatControls); + Definition.FloatControls.AddRange(Port3.Definition.FloatControls); + Definition.FloatControls.AddRange(Port4.Definition.FloatControls); + Definition.FloatControls.AddRange(Port5.Definition.FloatControls); + + Definition.FloatRanges.AddRange(Port1.Definition.FloatRanges); + Definition.FloatRanges.AddRange(Port2.Definition.FloatRanges); + Definition.FloatRanges.AddRange(Port3.Definition.FloatRanges); + Definition.FloatRanges.AddRange(Port4.Definition.FloatRanges); + Definition.FloatRanges.AddRange(Port5.Definition.FloatRanges); + } + + private readonly IPort Port1; + private readonly IPort Port2; + private readonly IPort Port3; + private readonly IPort Port4; + private readonly IPort Port5; + + public byte Read(int portNum, IController c, bool sel) + { + switch (portNum) + { + default: + throw new ArgumentException($"Invalid {nameof(portNum)}: {portNum}"); + case 1: + return Port1.Read(c, sel); + case 2: + return Port2.Read(c, sel); + case 3: + return Port3.Read(c, sel); + case 4: + return Port4.Read(c, sel); + case 5: + return Port5.Read(c, sel); + } + } + + public ControllerDefinition Definition { get; } + } + + public interface IPort + { + byte Read(IController c, bool sel); + + ControllerDefinition Definition { get; } + + int PortNum { get; } + } + + public class UnpluggedController : IPort + { + public UnpluggedController(int portNum) + { + PortNum = portNum; + Definition = new ControllerDefinition + { + BoolButtons = new List() + }; + } + + public byte Read(IController c, bool sel) + { + return 0x3F; + } + + public ControllerDefinition Definition { get; } + + public int PortNum { get; } + } + + public class StandardController : IPort + { + public StandardController(int portNum) + { + PortNum = portNum; + Definition = new ControllerDefinition + { + BoolButtons = BaseDefinition + .Select(b => $"P{PortNum} " + b) + .ToList() + }; + } + + public ControllerDefinition Definition { get; } + + public int PortNum { get; } + + public byte Read(IController c, bool sel) + { + byte result = 0x3F; + + if (sel == false) + { + if (c.IsPressed($"P{PortNum} B1")) result &= 0xFE; + if (c.IsPressed($"P{PortNum} B2")) result &= 0xFD; + if (c.IsPressed($"P{PortNum} Select")) result &= 0xFB; + if (c.IsPressed($"P{PortNum} Run")) result &= 0xF7; + } + else + { + if (c.IsPressed($"P{PortNum} Up")) { result &= 0xFE; } + if (c.IsPressed($"P{PortNum} Right")) { result &= 0xFD; } + if (c.IsPressed($"P{PortNum} Down")) { result &= 0xFB; } + if (c.IsPressed($"P{PortNum} Left")) { result &= 0xF7; } + } + + return result; + } + + private static readonly string[] BaseDefinition = + { + "Up", "Down", "Left", "Right", "Select", "Run", "B2", "B1" + }; + } +} From 9fc8b8700d008d30b401cef6c22bfeb8f2d1efda Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 18 Jul 2017 11:01:50 -0500 Subject: [PATCH 2/5] PCE - add ui for controller config --- .../PCE/PCEControllerConfig.Designer.cs | 104 ++++++++++-------- .../config/PCE/PCEControllerConfig.cs | 31 +----- .../Consoles/PC Engine/PCEngine.ISettable.cs | 26 ++--- 3 files changed, 71 insertions(+), 90 deletions(-) diff --git a/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.Designer.cs b/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.Designer.cs index f52aefb6fc..c78a658baa 100644 --- a/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.Designer.cs +++ b/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.Designer.cs @@ -28,52 +28,63 @@ /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PCEControllerConfig)); - this.CancelBtn = new System.Windows.Forms.Button(); - this.OkBtn = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // CancelBtn - // - this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.CancelBtn.Location = new System.Drawing.Point(235, 145); - this.CancelBtn.Name = "CancelBtn"; - this.CancelBtn.Size = new System.Drawing.Size(60, 23); - this.CancelBtn.TabIndex = 3; - this.CancelBtn.Text = "&Cancel"; - this.CancelBtn.UseVisualStyleBackColor = true; - this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click); - // - // OkBtn - // - this.OkBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.OkBtn.Location = new System.Drawing.Point(169, 145); - this.OkBtn.Name = "OkBtn"; - this.OkBtn.Size = new System.Drawing.Size(60, 23); - this.OkBtn.TabIndex = 2; - this.OkBtn.Text = "&OK"; - this.OkBtn.UseVisualStyleBackColor = true; - this.OkBtn.Click += new System.EventHandler(this.OkBtn_Click); - // - // PCEControllerConfig - // - this.AcceptButton = this.OkBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.CancelBtn; - this.ClientSize = new System.Drawing.Size(307, 180); - this.Controls.Add(this.CancelBtn); - this.Controls.Add(this.OkBtn); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "PCEControllerConfig"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Controller Settings"; - this.Load += new System.EventHandler(this.PCEControllerConfig_Load); - this.ResumeLayout(false); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PCEControllerConfig)); + this.CancelBtn = new System.Windows.Forms.Button(); + this.OkBtn = new System.Windows.Forms.Button(); + this.ControllerPropertyGrid = new System.Windows.Forms.PropertyGrid(); + this.SuspendLayout(); + // + // CancelBtn + // + this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.CancelBtn.Location = new System.Drawing.Point(235, 203); + this.CancelBtn.Name = "CancelBtn"; + this.CancelBtn.Size = new System.Drawing.Size(60, 23); + this.CancelBtn.TabIndex = 3; + this.CancelBtn.Text = "&Cancel"; + this.CancelBtn.UseVisualStyleBackColor = true; + this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click); + // + // OkBtn + // + this.OkBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.OkBtn.Location = new System.Drawing.Point(169, 203); + this.OkBtn.Name = "OkBtn"; + this.OkBtn.Size = new System.Drawing.Size(60, 23); + this.OkBtn.TabIndex = 2; + this.OkBtn.Text = "&OK"; + this.OkBtn.UseVisualStyleBackColor = true; + this.OkBtn.Click += new System.EventHandler(this.OkBtn_Click); + // + // ControllerPropertyGrid + // + this.ControllerPropertyGrid.Location = new System.Drawing.Point(12, 12); + this.ControllerPropertyGrid.Name = "ControllerPropertyGrid"; + this.ControllerPropertyGrid.PropertySort = System.Windows.Forms.PropertySort.Alphabetical; + this.ControllerPropertyGrid.Size = new System.Drawing.Size(283, 181); + this.ControllerPropertyGrid.TabIndex = 4; + this.ControllerPropertyGrid.ToolbarVisible = false; + // + // PCEControllerConfig + // + this.AcceptButton = this.OkBtn; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.CancelButton = this.CancelBtn; + this.ClientSize = new System.Drawing.Size(307, 238); + this.Controls.Add(this.ControllerPropertyGrid); + this.Controls.Add(this.CancelBtn); + this.Controls.Add(this.OkBtn); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "PCEControllerConfig"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "Controller Settings"; + this.Load += new System.EventHandler(this.PCEControllerConfig_Load); + this.ResumeLayout(false); } @@ -81,5 +92,6 @@ private System.Windows.Forms.Button CancelBtn; private System.Windows.Forms.Button OkBtn; + private System.Windows.Forms.PropertyGrid ControllerPropertyGrid; } } \ No newline at end of file diff --git a/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.cs b/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.cs index 0eec5d71e9..ba5af970fa 100644 --- a/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.cs +++ b/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.cs @@ -1,6 +1,4 @@ using System; -using System.Drawing; -using System.Linq; using System.Windows.Forms; using BizHawk.Emulation.Cores.PCEngine; @@ -10,6 +8,8 @@ namespace BizHawk.Client.EmuHawk { public partial class PCEControllerConfig : Form { + private PCEngine.PCESyncSettings _controllerSettings; + public PCEControllerConfig() { InitializeComponent(); @@ -18,36 +18,15 @@ namespace BizHawk.Client.EmuHawk private void PCEControllerConfig_Load(object sender, EventArgs e) { var pceSettings = ((PCEngine)Global.Emulator).GetSyncSettings(); - for (int i = 0; i < 5; i++) - { - Controls.Add(new Label - { - Text = "Controller " + (i + 1), - Location = new Point(15, 15 + (i * 25)) - }); - Controls.Add(new CheckBox - { - Text = "Connected", - Name = "Controller" + i, - Location = new Point(135, 15 + (i * 25)), - Checked = pceSettings.Controllers[i].IsConnected - }); - } + _controllerSettings = pceSettings; // Assumes only controller data is in sync settings! If there are ever more sync settings, this dialog should just become a general sync settings dialog (or both settings/sync settings) + ControllerPropertyGrid.SelectedObject = _controllerSettings; } private void OkBtn_Click(object sender, EventArgs e) { var pceSettings = ((PCEngine)Global.Emulator).GetSyncSettings(); - Controls - .OfType() - .OrderBy(c => c.Name) - .ToList() - .ForEach(c => - { - var index = int.Parse(c.Name.Replace("Controller", "")); - pceSettings.Controllers[index].IsConnected = c.Checked; - }); + pceSettings = _controllerSettings; GlobalWin.MainForm.PutCoreSyncSettings(pceSettings); DialogResult = DialogResult.OK; Close(); diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs index 39e6d2dcaf..5a58dedea1 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs @@ -69,8 +69,8 @@ namespace BizHawk.Emulation.Cores.PCEngine [DisplayName("Port 1 Device")] [Description("The type of controller plugged into the first controller port")] [TypeConverter(typeof(DescribableEnumConverter))] - public PceControllerType Port1 { get; set; } = PceControllerType.GamePad; - + public PceControllerType Port1 { get; set; } = PceControllerType.GamePad; + [DefaultValue(PceControllerType.Unplugged)] [DisplayName("Port 2 Device")] [Description("The type of controller plugged into the second controller port")] @@ -106,13 +106,7 @@ namespace BizHawk.Emulation.Cores.PCEngine public PCESyncSettings Clone() { - var ret = new PCESyncSettings(); - for (int i = 0; i < Controllers.Length; i++) - { - ret.Controllers[i].IsConnected = Controllers[i].IsConnected; - } - - return ret; + return (PCESyncSettings)MemberwiseClone(); } public class ControllerSetting @@ -122,15 +116,11 @@ namespace BizHawk.Emulation.Cores.PCEngine public static bool NeedsReboot(PCESyncSettings x, PCESyncSettings y) { - for (int i = 0; i < x.Controllers.Length; i++) - { - if (x.Controllers[i].IsConnected != y.Controllers[i].IsConnected) - { - return true; - } - } - - return false; + return x.Port1 != y.Port1 + || x.Port2 != y.Port2 + || x.Port3 != y.Port3 + || x.Port4 != y.Port4 + || x.Port5 != y.Port5; } } } From 46e4ae05d67452837e50c8cb13000deb49913825 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 18 Jul 2017 11:05:11 -0500 Subject: [PATCH 3/5] PCE - rip out old controller config logic --- .../Consoles/PC Engine/PCEngine.ISettable.cs | 15 ------- .../Consoles/PC Engine/PCEngine.Input.cs | 41 +------------------ .../Consoles/PC Engine/PCEngine.cs | 2 - 3 files changed, 1 insertion(+), 57 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs index 5a58dedea1..00f27089c4 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.ISettable.cs @@ -38,7 +38,6 @@ namespace BizHawk.Emulation.Cores.PCEngine { bool ret = PCESyncSettings.NeedsReboot(o, _syncSettings); _syncSettings = o; - // SetControllerButtons(); // not safe to change the controller during emulation, so instead make it a reboot event return ret; } @@ -95,25 +94,11 @@ namespace BizHawk.Emulation.Cores.PCEngine [TypeConverter(typeof(DescribableEnumConverter))] public PceControllerType Port5 { get; set; } = PceControllerType.Unplugged; - public ControllerSetting[] Controllers = - { - new ControllerSetting { IsConnected = true }, - new ControllerSetting { IsConnected = false }, - new ControllerSetting { IsConnected = false }, - new ControllerSetting { IsConnected = false }, - new ControllerSetting { IsConnected = false } - }; - public PCESyncSettings Clone() { return (PCESyncSettings)MemberwiseClone(); } - public class ControllerSetting - { - public bool IsConnected { get; set; } - } - public static bool NeedsReboot(PCESyncSettings x, PCESyncSettings y) { return x.Port1 != y.Port1 diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs index 52b5c7e444..b22c525347 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs @@ -1,46 +1,7 @@ -using BizHawk.Emulation.Common; - -namespace BizHawk.Emulation.Cores.PCEngine +namespace BizHawk.Emulation.Cores.PCEngine { public partial class PCEngine { - private readonly ControllerDefinition PCEngineController = new ControllerDefinition - { - Name = "PC Engine Controller", - BoolButtons = - { - "P1 Up", "P1 Down", "P1 Left", "P1 Right", "P1 Select", "P1 Run", "P1 B2", "P1 B1", - "P2 Up", "P2 Down", "P2 Left", "P2 Right", "P2 Select", "P2 Run", "P2 B2", "P2 B1", - "P3 Up", "P3 Down", "P3 Left", "P3 Right", "P3 Select", "P3 Run", "P3 B2", "P3 B1", - "P4 Up", "P4 Down", "P4 Left", "P4 Right", "P4 Select", "P4 Run", "P4 B2", "P4 B1", - "P5 Up", "P5 Down", "P5 Left", "P5 Right", "P5 Select", "P5 Run", "P5 B2", "P5 B1" - } - }; - - private void SetControllerButtons() - { - ControllerDefinition.BoolButtons.Clear(); - ControllerDefinition.FloatControls.Clear(); - - for (int i = 0; i < 5; i++) - { - if (_syncSettings.Controllers[i].IsConnected) - { - ControllerDefinition.BoolButtons.AddRange(new[] - { - "P" + (i + 1) + " Up", - "P" + (i + 1) + " Down", - "P" + (i + 1) + " Left", - "P" + (i + 1) + " Right", - "P" + (i + 1) + " Select", - "P" + (i + 1) + " Run", - "P" + (i + 1) + " B1", - "P" + (i + 1) + " B2" - }); - } - } - } - private int SelectedController; private byte InputByte; diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs index d3d43f1464..3eda6208b5 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs @@ -48,7 +48,6 @@ namespace BizHawk.Emulation.Cores.PCEngine _syncSettings.Port3, _syncSettings.Port4, _syncSettings.Port5); - //SetControllerButtons(); // TODO: get rid of this method } public PCEngine(CoreComm comm, GameInfo game, Disc disc, object Settings, object syncSettings) @@ -110,7 +109,6 @@ namespace BizHawk.Emulation.Cores.PCEngine _syncSettings.Port3, _syncSettings.Port4, _syncSettings.Port5); - //SetControllerButtons(); } // ROM From eaaf424a2c92c07b19f6c920ce3eeee0be70af64 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 18 Jul 2017 11:16:42 -0500 Subject: [PATCH 4/5] PCE - refactor virtual pad logic to use the controller deck --- .../tools/VirtualPads/schema/PceSchema.cs | 48 +++++++++++++++---- 1 file changed, 38 insertions(+), 10 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PceSchema.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PceSchema.cs index 5b5f6d26f5..1b6545b7b2 100644 --- a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PceSchema.cs +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PceSchema.cs @@ -1,7 +1,10 @@ using System.Collections.Generic; using System.Drawing; +using System.Linq; +using System.Windows.Forms; using BizHawk.Emulation.Common; +using BizHawk.Emulation.Cores.PCEngine; namespace BizHawk.Client.EmuHawk { @@ -13,9 +16,34 @@ namespace BizHawk.Client.EmuHawk { public IEnumerable GetPadSchemas(IEmulator core) { - for (var i = 0; i < core.ControllerDefinition.PlayerCount; i++) + var ss = ((PCEngine)core).GetSyncSettings(); + + var padSchemas = new[] { - yield return StandardController(i + 1); + ss.Port1, + ss.Port2, + ss.Port3, + ss.Port4, + ss.Port5, + } + .Where(p => p != PceControllerType.Unplugged) + .Select((p, i) => GenerateSchemaForPort(p, i + 1)) + .Where(s => s != null); + + return padSchemas; + } + + private static PadSchema GenerateSchemaForPort(PceControllerType type, int controller) + { + switch (type) + { + default: + MessageBox.Show($"{type} is not supported yet"); + return null; + case PceControllerType.Unplugged: + return null; + case PceControllerType.GamePad: + return StandardController(controller); } } @@ -29,7 +57,7 @@ namespace BizHawk.Client.EmuHawk { new PadSchema.ButtonSchema { - Name = "P" + controller + " Up", + Name = $"P{controller} Up", DisplayName = "", Icon = Properties.Resources.BlueUp, Location = new Point(14, 12), @@ -37,7 +65,7 @@ namespace BizHawk.Client.EmuHawk }, new PadSchema.ButtonSchema { - Name = "P" + controller + " Down", + Name = $"P{controller} Down", DisplayName = "", Icon = Properties.Resources.BlueDown, Location = new Point(14, 56), @@ -45,7 +73,7 @@ namespace BizHawk.Client.EmuHawk }, new PadSchema.ButtonSchema { - Name = "P" + controller + " Left", + Name = $"P{controller} Left", DisplayName = "", Icon = Properties.Resources.Back, Location = new Point(2, 34), @@ -53,7 +81,7 @@ namespace BizHawk.Client.EmuHawk }, new PadSchema.ButtonSchema { - Name = "P" + controller + " Right", + Name = $"P{controller} Right", DisplayName = "", Icon = Properties.Resources.Forward, Location = new Point(24, 34), @@ -61,28 +89,28 @@ namespace BizHawk.Client.EmuHawk }, new PadSchema.ButtonSchema { - Name = "P" + controller + " B2", + Name = $"P{controller} B2", DisplayName = "II", Location = new Point(122, 34), Type = PadSchema.PadInputType.Boolean }, new PadSchema.ButtonSchema { - Name = "P" + controller + " B1", + Name = $"P{controller} B1", DisplayName = "I", Location = new Point(146, 34), Type = PadSchema.PadInputType.Boolean }, new PadSchema.ButtonSchema { - Name = "P" + controller + " Select", + Name = $"P{controller} Select", DisplayName = "s", Location = new Point(52, 34), Type = PadSchema.PadInputType.Boolean }, new PadSchema.ButtonSchema { - Name = "P" + controller + " Run", + Name = $"P{controller} Run", DisplayName = "R", Location = new Point(74, 34), Type = PadSchema.PadInputType.Boolean From 3109bdcc6a423fd531399e57a00081bab6e5f202 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 18 Jul 2017 11:20:02 -0500 Subject: [PATCH 5/5] PCE - cleanup --- .../config/PCE/PCEControllerConfig.cs | 5 +- .../Consoles/PC Engine/PCEngine.Input.cs | 24 ++++---- .../Consoles/PC Engine/PceControllerDeck.cs | 60 +++++++++---------- 3 files changed, 43 insertions(+), 46 deletions(-) diff --git a/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.cs b/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.cs index ba5af970fa..c67095376c 100644 --- a/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.cs +++ b/BizHawk.Client.EmuHawk/config/PCE/PCEControllerConfig.cs @@ -24,10 +24,7 @@ namespace BizHawk.Client.EmuHawk private void OkBtn_Click(object sender, EventArgs e) { - var pceSettings = ((PCEngine)Global.Emulator).GetSyncSettings(); - - pceSettings = _controllerSettings; - GlobalWin.MainForm.PutCoreSyncSettings(pceSettings); + GlobalWin.MainForm.PutCoreSyncSettings(_controllerSettings); DialogResult = DialogResult.OK; Close(); } diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs index b22c525347..015f16f8ad 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.Input.cs @@ -2,25 +2,25 @@ { public partial class PCEngine { - private int SelectedController; - private byte InputByte; + private int _selectedController; + private byte _inputByte; - public bool SEL => (InputByte & 1) != 0; - public bool CLR => (InputByte & 2) != 0; + private bool Sel => (_inputByte & 1) != 0; + private bool Clr => (_inputByte & 2) != 0; private void WriteInput(byte value) { - bool prevSEL = SEL; - InputByte = value; + bool prevSel = Sel; + _inputByte = value; - if (SEL && CLR) + if (Sel && Clr) { - SelectedController = 0; + _selectedController = 0; } - if (CLR == false && prevSEL == false && SEL == true) + if (Clr == false && prevSel == false && Sel) { - SelectedController = (SelectedController + 1); + _selectedController = _selectedController + 1; } } @@ -31,11 +31,11 @@ InputCallbacks.Call(); byte value = 0x3F; - int player = SelectedController + 1; + int player = _selectedController + 1; if (player < 6) { _lagged = false; - value &= _controllerDeck.Read(player, _controller, SEL); + value &= _controllerDeck.Read(player, _controller, Sel); } if (Region == "Japan") diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PceControllerDeck.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PceControllerDeck.cs index ac5a9efd24..6108be5955 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PceControllerDeck.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PceControllerDeck.cs @@ -27,41 +27,41 @@ namespace BizHawk.Emulation.Cores.PCEngine PceControllerType controller4, PceControllerType controller5) { - Port1 = (IPort)Activator.CreateInstance(Implementors[(int)controller1], 1); - Port2 = (IPort)Activator.CreateInstance(Implementors[(int)controller2], 2); - Port3 = (IPort)Activator.CreateInstance(Implementors[(int)controller3], 3); - Port4 = (IPort)Activator.CreateInstance(Implementors[(int)controller4], 4); - Port5 = (IPort)Activator.CreateInstance(Implementors[(int)controller5], 5); + _port1 = (IPort)Activator.CreateInstance(Implementors[(int)controller1], 1); + _port2 = (IPort)Activator.CreateInstance(Implementors[(int)controller2], 2); + _port3 = (IPort)Activator.CreateInstance(Implementors[(int)controller3], 3); + _port4 = (IPort)Activator.CreateInstance(Implementors[(int)controller4], 4); + _port5 = (IPort)Activator.CreateInstance(Implementors[(int)controller5], 5); Definition = new ControllerDefinition { Name = "PC Engine Controller", - BoolButtons = Port1.Definition.BoolButtons - .Concat(Port2.Definition.BoolButtons) - .Concat(Port3.Definition.BoolButtons) - .Concat(Port4.Definition.BoolButtons) - .Concat(Port5.Definition.BoolButtons) + BoolButtons = _port1.Definition.BoolButtons + .Concat(_port2.Definition.BoolButtons) + .Concat(_port3.Definition.BoolButtons) + .Concat(_port4.Definition.BoolButtons) + .Concat(_port5.Definition.BoolButtons) .ToList() }; - Definition.FloatControls.AddRange(Port1.Definition.FloatControls); - Definition.FloatControls.AddRange(Port2.Definition.FloatControls); - Definition.FloatControls.AddRange(Port3.Definition.FloatControls); - Definition.FloatControls.AddRange(Port4.Definition.FloatControls); - Definition.FloatControls.AddRange(Port5.Definition.FloatControls); + Definition.FloatControls.AddRange(_port1.Definition.FloatControls); + Definition.FloatControls.AddRange(_port2.Definition.FloatControls); + Definition.FloatControls.AddRange(_port3.Definition.FloatControls); + Definition.FloatControls.AddRange(_port4.Definition.FloatControls); + Definition.FloatControls.AddRange(_port5.Definition.FloatControls); - Definition.FloatRanges.AddRange(Port1.Definition.FloatRanges); - Definition.FloatRanges.AddRange(Port2.Definition.FloatRanges); - Definition.FloatRanges.AddRange(Port3.Definition.FloatRanges); - Definition.FloatRanges.AddRange(Port4.Definition.FloatRanges); - Definition.FloatRanges.AddRange(Port5.Definition.FloatRanges); + Definition.FloatRanges.AddRange(_port1.Definition.FloatRanges); + Definition.FloatRanges.AddRange(_port2.Definition.FloatRanges); + Definition.FloatRanges.AddRange(_port3.Definition.FloatRanges); + Definition.FloatRanges.AddRange(_port4.Definition.FloatRanges); + Definition.FloatRanges.AddRange(_port5.Definition.FloatRanges); } - private readonly IPort Port1; - private readonly IPort Port2; - private readonly IPort Port3; - private readonly IPort Port4; - private readonly IPort Port5; + private readonly IPort _port1; + private readonly IPort _port2; + private readonly IPort _port3; + private readonly IPort _port4; + private readonly IPort _port5; public byte Read(int portNum, IController c, bool sel) { @@ -70,15 +70,15 @@ namespace BizHawk.Emulation.Cores.PCEngine default: throw new ArgumentException($"Invalid {nameof(portNum)}: {portNum}"); case 1: - return Port1.Read(c, sel); + return _port1.Read(c, sel); case 2: - return Port2.Read(c, sel); + return _port2.Read(c, sel); case 3: - return Port3.Read(c, sel); + return _port3.Read(c, sel); case 4: - return Port4.Read(c, sel); + return _port4.Read(c, sel); case 5: - return Port5.Read(c, sel); + return _port5.Read(c, sel); } }