diff --git a/src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs b/src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs index 4842cc1f86..40fe23c00d 100644 --- a/src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs +++ b/src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs @@ -34,6 +34,7 @@ namespace BizHawk.Client.EmuHawk Icon = ToolIcon; SystemDropDown.Items.AddRange(new[] { + VSystemID.Raw.Amiga, VSystemID.Raw.AmstradCPC, VSystemID.Raw.AppleII, VSystemID.Raw.Arcade, diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs index a577c8f0a5..1986b655d5 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/LibPUAE.cs @@ -8,11 +8,7 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga { public abstract class LibPUAE : LibWaterboxCore { - public const int PAL_WIDTH = 720; - public const int PAL_HEIGHT = 576; - public const int NTSC_WIDTH = 720; - public const int NTSC_HEIGHT = 480; - public const int KEY_COUNT = 0x68; + public const int KEY_COUNT = 0x68; [BizImport(CC, Compatibility = true)] public abstract bool Init(int argc, string[] argv); diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs index 6fb5f5db49..e6cf3bdb4b 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.ISettable.cs @@ -10,8 +10,6 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga { public partial class PUAE : ISettable { - public const int FASTMEM_AUTO = -1; - public enum MachineConfig { [Display(Name = "A500 OCS KS1.3 512K 512K")] @@ -113,12 +111,25 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga Auto } + public enum DriveType + { + DRV_NONE = -1, + DRV_35_DD = 0, + DRV_35_HD, + DRV_525_SD, + DRV_35_DD_ESCOM, + DRV_PC_525_ONLY_40, + DRV_PC_35_ONLY_80, + DRV_PC_525_40_80, + DRV_525_DD, + DRV_FB + } + private void CreateArguments(PUAESyncSettings settings) { _args = new List { "puae", - "-0", "romfile", }; switch(settings.MachineConfig) diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs index 1343a332ac..a0d0d70253 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs @@ -19,15 +19,22 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga private LibPUAE _puae; private List _args; private static string _chipsetCompatible = ""; + + public const int PAL_WIDTH = 720; + public const int PAL_HEIGHT = 576; + public const int NTSC_WIDTH = 720; + public const int NTSC_HEIGHT = 480; + public const int FASTMEM_AUTO = -1; + public const int MAX_FLOPPIES = 4; [CoreConstructor(VSystemID.Raw.Amiga)] public PUAE(CoreLoadParameters lp) : base(lp.Comm, new Configuration { - DefaultWidth = LibPUAE.PAL_WIDTH, - DefaultHeight = LibPUAE.PAL_HEIGHT, - MaxWidth = LibPUAE.PAL_WIDTH, - MaxHeight = LibPUAE.PAL_HEIGHT, + DefaultWidth = PAL_WIDTH, + DefaultHeight = PAL_HEIGHT, + MaxWidth = PAL_WIDTH, + MaxHeight = PAL_HEIGHT, MaxSamples = 2 * 1024, SystemId = VSystemID.Raw.Amiga, DefaultFpsNumerator = 50, @@ -35,6 +42,9 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga }) { _syncSettings = lp.SyncSettings ?? new(); + var filesToRemove = new List(); + CreateArguments(_syncSettings); + ControllerDefinition = InitInput(); _puae = PreInit(new WaterboxOptions { @@ -48,12 +58,13 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga SkipMemoryConsistencyCheck = lp.Comm.CorePreferences.HasFlag(CoreComm.CorePreferencesFlags.WaterboxMemoryConsistencyCheck), }); - var filesToRemove = new List(); - - CreateArguments(_syncSettings); - - _exe.AddReadonlyFile(lp.Roms[0].FileData, "romfile"); - filesToRemove.Add("romfile"); + for (var index = 0; index < MAX_FLOPPIES && index < lp.Roms.Count; index++) + { + _exe.AddReadonlyFile(lp.Roms[index].FileData, "disk" + index); + filesToRemove.Add("disk" + index); + AppendSetting($"floppy{ index }=disk{ index }"); + AppendSetting($"floppy{ index }type={ (int)DriveType.DRV_35_DD }"); + } var (kickstartData, kickstartInfo) = CoreComm.CoreFileProvider.GetFirmwareWithGameInfoOrThrow( new(VSystemID.Raw.Amiga, _chipsetCompatible), @@ -65,8 +76,6 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga "-r", kickstartInfo.Name }); - ControllerDefinition = InitInput(); - if (!_puae.Init(_args.Count, _args.ToArray())) throw new InvalidOperationException("Core rejected the rom!"); @@ -95,8 +104,8 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga }); controller - .AddAxis("Mouse X", (0).RangeTo(LibPUAE.PAL_WIDTH), LibPUAE.PAL_WIDTH / 2) - .AddAxis("Mouse Y", (0).RangeTo(LibPUAE.PAL_HEIGHT), LibPUAE.PAL_HEIGHT / 2); + .AddAxis("Mouse X", (0).RangeTo(PAL_WIDTH), PAL_WIDTH / 2) + .AddAxis("Mouse Y", (0).RangeTo(PAL_HEIGHT), PAL_HEIGHT / 2); foreach (var b in controller.BoolButtons) {