From 939762d9fb4d4ebaced41fc9cb0d505a59863cd8 Mon Sep 17 00:00:00 2001 From: feos Date: Thu, 13 Jun 2024 19:07:15 +0300 Subject: [PATCH] uae: cd swapping will happen later --- src/BizHawk.Emulation.Common/CoreComms.cs | 4 +- .../Computers/Amiga/PUAE.cs | 58 +++++-------------- 2 files changed, 17 insertions(+), 45 deletions(-) diff --git a/src/BizHawk.Emulation.Common/CoreComms.cs b/src/BizHawk.Emulation.Common/CoreComms.cs index d8572275e1..0d4c528dd1 100644 --- a/src/BizHawk.Emulation.Common/CoreComms.cs +++ b/src/BizHawk.Emulation.Common/CoreComms.cs @@ -28,12 +28,12 @@ namespace BizHawk.Emulation.Common public ICoreFileProvider CoreFileProvider { get; } /// - /// Gets a message to show. reasonably annoying (dialog box), shouldn't be used most of the time + /// Gets a message to show. Reasonably annoying (dialog box), shouldn't be used most of the time /// public Action ShowMessage { get; } /// - /// Gets a message to show. less annoying (OSD message). Should be used for ignorable helpful messages + /// Gets a message to show for optional duration in seconds. Less annoying (OSD message). Should be used for ignorable helpful messages /// public Action Notify { get; } diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs index 73b2f9492b..ac7b125035 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs @@ -20,12 +20,13 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga { internal CoreComm _comm { get; } private readonly List _roms; - private readonly List _discs; + //private readonly List _discs; private LibPUAE _puae; private List _args; - private static string _chipsetCompatible = ""; - private static int _currentDrive = 0; - private static int _currentSlot = 0; + private string _chipsetCompatible = ""; + private int _currentDrive = 0; + private int _currentSlot = 0; + private byte[] _currentRom; private bool _nextSlotPressed = false; private bool _nextDrivePressed = false; @@ -45,7 +46,7 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga { _comm = lp.Comm; _roms = lp.Roms; - _discs = lp.Discs; + //_discs = lp.Discs; _syncSettings = lp.SyncSettings ?? new(); var filesToRemove = new List(); CreateArguments(_syncSettings); @@ -168,41 +169,22 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga if (!_nextSlotPressed) { _currentSlot++; - _currentSlot %= _roms.Count + _discs.Count; - - string selectedFile; - if (_currentSlot < _roms.Count) - { - selectedFile = _roms[_currentSlot].Game.Name; - } - else - { - selectedFile = _discs[_currentSlot - _roms.Count].DiscName; - } - _comm.Notify(selectedFile, null); + _currentSlot %= _roms.Count; + var selectedFile = _roms[_currentSlot]; + _currentRom = selectedFile.FileData; + _comm.Notify(selectedFile.Game.Name, null); } } - _nextSlotPressed = controller.IsPressed(Inputs.NS); - if (controller.IsPressed(Inputs.ND)) { if (!_nextDrivePressed) { _currentDrive++; - _currentDrive %= _syncSettings.FloppyDrives + (_discs.Count > 0 ? 1 : 0); - - string selectedDrive; - if (_currentDrive < _syncSettings.FloppyDrives) - { - selectedDrive = "FD" + _currentDrive; - } - else - { - selectedDrive = "CD"; - } - _comm.Notify(selectedDrive, null); + _currentDrive %= _syncSettings.FloppyDrives; + _comm.Notify($"Selected FD{ _currentDrive } Drive", null); } } + _nextSlotPressed = controller.IsPressed(Inputs.NS); _nextDrivePressed = controller.IsPressed(Inputs.ND); fi.MouseX = controller.AxisValue(Inputs.X); @@ -224,24 +206,14 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga return fi; } - public void SaveStateBinary(BinaryWriter writer) + protected override void SaveStateBinaryInternal(BinaryWriter writer) { - using (_exe.EnterExit()) - { - _exe.SaveStateBinary(writer); - } - writer.Write(_nextSlotPressed); writer.Write(_nextDrivePressed); } - public void LoadStateBinary(BinaryReader reader) + protected override void LoadStateBinaryInternal(BinaryReader reader) { - using (_exe.EnterExit()) - { - _exe.LoadStateBinary(reader); - } - _nextSlotPressed = reader.ReadBoolean(); _nextDrivePressed = reader.ReadBoolean(); }