misc cleanups

This commit is contained in:
adelikat 2020-04-12 17:41:55 -05:00
parent fd31922788
commit 46a7e64911
9 changed files with 106 additions and 138 deletions

View File

@ -8,17 +8,11 @@ namespace BizHawk.Client.Common
/// </summary>
public sealed class SystemInfo
{
#region Fields
private const JoypadButton UpDownLeftRight = JoypadButton.Up | JoypadButton.Down | JoypadButton.Left | JoypadButton.Right;
private const JoypadButton StandardButtons = JoypadButton.A | JoypadButton.B | JoypadButton.Start | JoypadButton.Select | UpDownLeftRight;
private static readonly List<SystemInfo> AllSystemInfos = new List<SystemInfo>();
#endregion
#region cTor(s)
/// <summary>
/// Initializes a new instance of the <see cref="SystemInfo"/> class
/// </summary>
@ -36,8 +30,6 @@ namespace BizHawk.Client.Common
AllSystemInfos.Add(this);
}
#endregion
#region Methods
#region Get SystemInfo
@ -268,23 +260,11 @@ namespace BizHawk.Client.Common
return base.Equals(obj);
}
/// <summary>
/// Gets the hashcode for current instance
/// </summary>
/// <returns>This instance hashcode</returns>
public override int GetHashCode()
{
return base.GetHashCode();
}
/// <summary>
/// Returns a <see cref="string"/> representation of current <see cref="SystemInfo"/>
/// In fact, return the same as DisplayName property
/// </summary>
public override string ToString()
{
return DisplayName;
}
public override string ToString() => DisplayName;
/// <summary>
/// Determine if two <see cref="SystemInfo"/> are equals.

View File

@ -108,7 +108,7 @@ namespace BizHawk.Client.Common.movie.import
// 020 16-byte md5sum of the ROM used
byte[] md5 = r.ReadBytes(16);
Result.Movie.HeaderEntries[MD5] = md5.BytesToHexString().ToLower();
Result.Movie.HeaderEntries[Md5] = md5.BytesToHexString().ToLower();
// 030 4-byte little-endian unsigned int: version of the emulator used
uint emuVersion = r.ReadUInt32();

View File

@ -85,7 +85,7 @@ namespace BizHawk.Client.Common
byte[] md5 = DecodeBlob(blob);
if (md5 != null && md5.Length == 16)
{
Result.Movie.HeaderEntries[MD5] = md5.BytesToHexString().ToLower();
Result.Movie.HeaderEntries[Md5] = md5.BytesToHexString().ToLower();
}
else
{

View File

@ -13,7 +13,7 @@ namespace BizHawk.Client.Common
internal abstract class MovieImporter : IMovieImport
{
protected const string EmulationOrigin = "emuOrigin";
protected const string MD5 = "MD5";
protected const string Md5 = "MD5";
protected const string MovieOrigin = "MovieOrigin";
public ImportResult Import(string path)

View File

@ -91,7 +91,7 @@ namespace BizHawk.Client.Common.movie.import
// 00e4-00f3: binary: rom MD5 digest
byte[] md5 = r.ReadBytes(16);
Result.Movie.HeaderEntries[MD5] = md5.BytesToHexString().ToLower();
Result.Movie.HeaderEntries[Md5] = md5.BytesToHexString().ToLower();
var ss = new SMS.SmsSyncSettings
{

View File

@ -32,15 +32,9 @@ namespace BizHawk.Client.Common
public string Message { get; set; }
public override string ToString()
{
return Frame.ToString() + '\t' + Message;
}
public override string ToString() => Frame.ToString() + '\t' + Message;
public override int GetHashCode()
{
return Frame.GetHashCode();
}
public override int GetHashCode() => Frame.GetHashCode();
public override bool Equals(object obj)
{

View File

@ -114,7 +114,7 @@ namespace BizHawk.Client.Common
cheat.Changed += CheatChanged;
if (Contains(cheat))
{
_cheatList.Remove(Global.CheatList.FirstOrDefault(c => c.Domain == cheat.Domain && c.Address == cheat.Address));
_cheatList.Remove(this.FirstOrDefault(c => c.Domain == cheat.Domain && c.Address == cheat.Address));
}
_cheatList.Add(cheat);

View File

@ -87,10 +87,7 @@ namespace BizHawk.Client.Common
/// <summary>
/// Ignore that stuff
/// </summary>
public override bool Poke(string value)
{
return false;
}
public override bool Poke(string value) => false;
/// <summary>
/// Ignore that stuff

View File

@ -45,17 +45,17 @@ namespace BizHawk.Client.Common
/// </summary>
static WatchList()
{
// Initialize mapping of columns to comparers for sorting.
// Initialize mapping of columns to comparer for sorting.
WatchComparers = new Dictionary<string, IComparer<Watch>>
{
{ Address, new WatchAddressComparer() },
{ Value, new WatchValueComparer() },
{ Prev, new WatchPreviousValueComparer() },
{ ChangesCol, new WatchChangeCountComparer() },
{ Diff, new WatchValueDifferenceComparer() },
{ Type, new WatchFullDisplayTypeComparer() },
{ Domain, new WatchDomainComparer() },
{ Notes, new WatchNoteComparer() }
[Address] = new WatchAddressComparer(),
[Value] = new WatchValueComparer(),
[Prev] = new WatchPreviousValueComparer(),
[ChangesCol] = new WatchChangeCountComparer(),
[Diff] = new WatchValueDifferenceComparer(),
[Type] = new WatchFullDisplayTypeComparer(),
[Domain] = new WatchDomainComparer(),
[Notes] = new WatchNoteComparer()
};
}
@ -410,8 +410,7 @@ namespace BizHawk.Client.Common
}
var isBizHawkWatch = true; // Hack to support .wch files from other emulators
using (var sr = file.OpenText())
{
using var sr = file.OpenText();
string line;
if (!append)
@ -516,8 +515,6 @@ namespace BizHawk.Client.Common
}
CurrentFileName = path;
}
Changes = append;
return true;