2019-01-24 16:43:03 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
using System;
|
2021-11-24 14:23:05 +08:00
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2019-07-15 14:42:54 +08:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2018-04-13 17:19:50 +08:00
|
|
|
using Newtonsoft.Json;
|
2020-09-04 19:34:26 +08:00
|
|
|
using osu.Framework.Testing;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets
|
|
|
|
{
|
2020-09-04 19:34:26 +08:00
|
|
|
[ExcludeFromDynamicCompile]
|
2021-12-14 23:31:35 +08:00
|
|
|
[Table(@"RulesetInfo")]
|
2021-11-19 17:59:14 +08:00
|
|
|
public sealed class EFRulesetInfo : IEquatable<EFRulesetInfo>, IRulesetInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
public int? ID { get; set; }
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
public string ShortName { get; set; }
|
|
|
|
|
2021-05-13 04:42:26 +08:00
|
|
|
public string InstantiationInfo { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
public bool Available { get; set; }
|
|
|
|
|
2019-12-24 15:05:20 +08:00
|
|
|
// TODO: this should probably be moved to RulesetStore.
|
2021-11-22 15:39:26 +08:00
|
|
|
public Ruleset CreateInstance()
|
2019-09-04 19:27:27 +08:00
|
|
|
{
|
2021-11-23 19:17:07 +08:00
|
|
|
if (!Available)
|
|
|
|
throw new RulesetLoadException(@"Ruleset not available");
|
2019-09-04 19:27:27 +08:00
|
|
|
|
2021-11-23 19:17:07 +08:00
|
|
|
var type = Type.GetType(InstantiationInfo);
|
|
|
|
|
|
|
|
if (type == null)
|
|
|
|
throw new RulesetLoadException(@"Type lookup failure");
|
|
|
|
|
|
|
|
var ruleset = Activator.CreateInstance(type) as Ruleset;
|
|
|
|
|
|
|
|
if (ruleset == null)
|
|
|
|
throw new RulesetLoadException(@"Instantiation failure");
|
2019-12-24 15:05:20 +08:00
|
|
|
|
|
|
|
// overwrite the pre-populated RulesetInfo with a potentially database attached copy.
|
2021-11-24 11:16:08 +08:00
|
|
|
// ruleset.RulesetInfo = this;
|
2019-12-24 15:05:20 +08:00
|
|
|
|
|
|
|
return ruleset;
|
2019-09-04 19:27:27 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-11-19 17:59:14 +08:00
|
|
|
public bool Equals(EFRulesetInfo other) => other != null && ID == other.ID && Available == other.Available && Name == other.Name && InstantiationInfo == other.InstantiationInfo;
|
2018-07-19 17:43:11 +08:00
|
|
|
|
2021-11-19 17:59:14 +08:00
|
|
|
public override bool Equals(object obj) => obj is EFRulesetInfo rulesetInfo && Equals(rulesetInfo);
|
2019-07-15 14:50:50 +08:00
|
|
|
|
2021-12-03 17:01:29 +08:00
|
|
|
public bool Equals(IRulesetInfo other) => other is RulesetInfo b && Equals(b);
|
|
|
|
|
2019-07-15 14:42:54 +08:00
|
|
|
[SuppressMessage("ReSharper", "NonReadonlyMemberInGetHashCode")]
|
|
|
|
public override int GetHashCode()
|
|
|
|
{
|
|
|
|
unchecked
|
|
|
|
{
|
2021-10-27 12:04:41 +08:00
|
|
|
int hashCode = ID.HasValue ? ID.GetHashCode() : 0;
|
2019-07-15 14:42:54 +08:00
|
|
|
hashCode = (hashCode * 397) ^ (InstantiationInfo != null ? InstantiationInfo.GetHashCode() : 0);
|
|
|
|
hashCode = (hashCode * 397) ^ (Name != null ? Name.GetHashCode() : 0);
|
|
|
|
hashCode = (hashCode * 397) ^ Available.GetHashCode();
|
|
|
|
return hashCode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-18 06:17:12 +08:00
|
|
|
public override string ToString() => Name ?? $"{Name} ({ShortName}) ID: {ID}";
|
2021-10-01 15:31:11 +08:00
|
|
|
|
|
|
|
#region Implementation of IHasOnlineID
|
|
|
|
|
2021-11-24 14:23:05 +08:00
|
|
|
[NotMapped]
|
|
|
|
public int OnlineID
|
|
|
|
{
|
|
|
|
get => ID ?? -1;
|
|
|
|
set => ID = value >= 0 ? value : (int?)null;
|
|
|
|
}
|
2021-10-01 15:31:11 +08:00
|
|
|
|
|
|
|
#endregion
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|