2017-04-17 08:43:48 +00:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using SQLite.Net.Attributes;
|
|
|
|
|
2017-07-26 07:28:32 +00:00
|
|
|
namespace osu.Game.Rulesets
|
2017-04-17 08:43:48 +00:00
|
|
|
{
|
2017-08-13 05:33:01 +00:00
|
|
|
public class RulesetInfo : IEquatable<RulesetInfo>
|
2017-04-17 08:43:48 +00:00
|
|
|
{
|
|
|
|
[PrimaryKey, AutoIncrement]
|
2017-04-17 10:44:03 +00:00
|
|
|
public int? ID { get; set; }
|
2017-04-17 08:43:48 +00:00
|
|
|
|
2017-04-18 00:47:16 +00:00
|
|
|
[Indexed(Unique = true)]
|
2017-04-17 08:43:48 +00:00
|
|
|
public string Name { get; set; }
|
|
|
|
|
2017-04-18 00:47:16 +00:00
|
|
|
[Indexed(Unique = true)]
|
2017-04-17 08:43:48 +00:00
|
|
|
public string InstantiationInfo { get; set; }
|
|
|
|
|
|
|
|
[Indexed]
|
|
|
|
public bool Available { get; set; }
|
|
|
|
|
2017-08-09 04:04:11 +00:00
|
|
|
public virtual Ruleset CreateInstance() => (Ruleset)Activator.CreateInstance(Type.GetType(InstantiationInfo), this);
|
2017-08-13 05:33:01 +00:00
|
|
|
|
2017-08-18 06:09:54 +00:00
|
|
|
public bool Equals(RulesetInfo other) => other != null && ID == other.ID && Available == other.Available && Name == other.Name && InstantiationInfo == other.InstantiationInfo;
|
2017-04-17 08:43:48 +00:00
|
|
|
}
|
2017-08-18 05:40:36 +00:00
|
|
|
}
|