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;
|
|
|
|
|
using System.Collections.Generic;
|
2019-05-25 14:09:31 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
|
{
|
|
|
|
|
public class SkinInfo : IHasFiles<SkinFileInfo>, IEquatable<SkinInfo>, IHasPrimaryKey, ISoftDelete
|
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2018-11-28 18:01:22 +08:00
|
|
|
|
public string Hash { get; set; }
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public string Creator { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<SkinFileInfo> Files { get; set; }
|
|
|
|
|
|
2019-05-25 14:09:31 +08:00
|
|
|
|
public List<DatabasedSetting> Settings { get; set; }
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public bool DeletePending { get; set; }
|
|
|
|
|
|
2019-08-29 15:38:39 +08:00
|
|
|
|
public static SkinInfo Default { get; } = new SkinInfo
|
|
|
|
|
{
|
|
|
|
|
Name = "osu!lazer",
|
|
|
|
|
Creator = "team osu!"
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public bool Equals(SkinInfo other) => other != null && ID == other.ID;
|
|
|
|
|
|
2020-05-24 21:30:56 +08:00
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
string author = Creator == null ? string.Empty : $"({Creator})";
|
|
|
|
|
return $"{Name} {author}".Trim();
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|