From 81d0b4ec9ebcffb3b4700a3ea66a4196497382e4 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 12 Jul 2020 10:18:08 -0400 Subject: [PATCH] Revert "Replace dynamic type w/ casts in CoreInventory/CLP" This reverts commit 9ee4821148c181fa90597ba9574d8ea4a943641f. # Conflicts: # src/BizHawk.Emulation.Cores/CoreLoadParameters.cs This didn't actually work, so revisit later --- .../BizHawk.Emulation.Cores.csproj | 1 + src/BizHawk.Emulation.Cores/CoreInventory.cs | 6 ++++-- .../CoreLoadParameters.cs | 18 +----------------- 3 files changed, 6 insertions(+), 19 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/src/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj index 38d9a30907..9da7006f0a 100644 --- a/src/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj +++ b/src/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj @@ -5,6 +5,7 @@ netstandard2.0 + diff --git a/src/BizHawk.Emulation.Cores/CoreInventory.cs b/src/BizHawk.Emulation.Cores/CoreInventory.cs index ba8d431dc8..09f0f75437 100644 --- a/src/BizHawk.Emulation.Cores/CoreInventory.cs +++ b/src/BizHawk.Emulation.Cores/CoreInventory.cs @@ -114,11 +114,13 @@ namespace BizHawk.Emulation.Cores { if (_useCoreLoadParameters) { + var paramType = typeof(CoreLoadParameters<,>).MakeGenericType(new[] { SettingsType, SyncSettingsType }); // TODO: clean this up - var param = (ICoreLoadParameters) Activator.CreateInstance(typeof(CoreLoadParameters<,>).MakeGenericType(SettingsType, SyncSettingsType)); + dynamic param = Activator.CreateInstance(paramType); param.Comm = comm; param.Game = game; - param.PutSettings(settings, syncSettings); + param.Settings = (dynamic)settings; + param.SyncSettings = (dynamic)syncSettings; param.Roms.Add(new RomGameFake { RomData = rom, diff --git a/src/BizHawk.Emulation.Cores/CoreLoadParameters.cs b/src/BizHawk.Emulation.Cores/CoreLoadParameters.cs index 91a7d2989f..23b4e86788 100644 --- a/src/BizHawk.Emulation.Cores/CoreLoadParameters.cs +++ b/src/BizHawk.Emulation.Cores/CoreLoadParameters.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; using System.Linq; using BizHawk.Emulation.Common; @@ -24,15 +23,7 @@ namespace BizHawk.Emulation.Cores DiscType DiscType { get; } public string DiscName { get; set; } } - internal interface ICoreLoadParameters - { - CoreComm Comm { set; } - GameInfo Game { set; } - List Roms { get; } - bool DeterministicEmulationRequested { set; } - void PutSettings(object settings, object syncSettings); - } - public class CoreLoadParameters : ICoreLoadParameters + public class CoreLoadParameters { public CoreComm Comm { get; set; } public GameInfo Game { get; set; } @@ -56,12 +47,5 @@ namespace BizHawk.Emulation.Cores /// public List Discs { get; set; } = new List(); public bool DeterministicEmulationRequested { get; set; } - void ICoreLoadParameters.PutSettings(object settings, object syncSettings) - { - if (!(settings is TSettiing typedSettings)) throw new ArgumentException("type does not match type param", nameof(settings)); - if (!(syncSettings is TSync typedSyncSettings)) throw new ArgumentException("type does not match type param", nameof(syncSettings)); - Settings = typedSettings; - SyncSettings = typedSyncSettings; - } } }