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;
|
2019-07-15 14:42:54 +08:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2018-04-13 17:19:50 +08:00
|
|
|
using Newtonsoft.Json;
|
2021-05-15 05:45:58 +08:00
|
|
|
using osu.Framework.Extensions.ObjectExtensions;
|
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]
|
2018-04-13 17:19:50 +08:00
|
|
|
public class RulesetInfo : IEquatable<RulesetInfo>
|
|
|
|
{
|
|
|
|
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.
|
2019-09-04 19:27:27 +08:00
|
|
|
public virtual Ruleset CreateInstance()
|
|
|
|
{
|
|
|
|
if (!Available) return null;
|
|
|
|
|
2021-05-15 05:45:58 +08:00
|
|
|
var ruleset = (Ruleset)Activator.CreateInstance(Type.GetType(InstantiationInfo).AsNonNull());
|
2019-12-24 15:05:20 +08:00
|
|
|
|
|
|
|
// overwrite the pre-populated RulesetInfo with a potentially database attached copy.
|
|
|
|
ruleset.RulesetInfo = this;
|
|
|
|
|
|
|
|
return ruleset;
|
2019-09-04 19:27:27 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
public bool Equals(RulesetInfo other) => other != null && ID == other.ID && Available == other.Available && Name == other.Name && InstantiationInfo == other.InstantiationInfo;
|
2018-07-19 17:43:11 +08:00
|
|
|
|
2019-07-15 14:50:50 +08:00
|
|
|
public override bool Equals(object obj) => obj is RulesetInfo rulesetInfo && Equals(rulesetInfo);
|
|
|
|
|
2019-07-15 14:42:54 +08:00
|
|
|
[SuppressMessage("ReSharper", "NonReadonlyMemberInGetHashCode")]
|
|
|
|
public override int GetHashCode()
|
|
|
|
{
|
|
|
|
unchecked
|
|
|
|
{
|
|
|
|
var hashCode = ID.HasValue ? ID.GetHashCode() : 0;
|
|
|
|
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}";
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|