using System.Text.Json.Serialization;
namespace Blahblah.FlowerStory.Server;
///
/// 常数类
///
public sealed class Constants
{
///
/// 其他分类
///
public const string CategoryOther = "other";
///
/// 未知事件
///
public const string EventUnknown = "unknown";
///
/// 类别字典
///
public static readonly Dictionary Categories = new()
{
[0] = new(CategoryOther, "其他"),
[1] = new("cactus", "仙人球"),
[2] = new("hibiscus", "扶桑花"),
[3] = new("bougainvillea", "三角梅"),
[4] = new("sunflower", "太阳花"),
[5] = new("milanflower", "米兰花"),
[6] = new("jasmine", "茉莉花"),
[7] = new("periwinkle", "长春花"),
[8] = new("nasturtium", "旱金莲"),
[9] = new("mirabilis", "紫薇花"),
[10] = new("tigerthornplum", "虎刺梅"),
[11] = new("geranium", "天竺葵"),
[12] = new("ballorchid", "球兰"),
[13] = new("medalchrysanthemum", "勋章菊"),
[14] = new("dianthus", "石竹"),
[15] = new("fivecolorplum", "五色梅"),
[16] = new("fuchsia", "倒挂金钟"),
[17] = new("bamboocrabapple", "竹节海棠"),
[18] = new("impatiens", "凤仙花"),
[19] = new("beautysakura", "美女樱"),
[20] = new("petunias", "矮牵牛"),
[21] = new("desertrose", "沙漠玫瑰"),
[22] = new("trailingcampanula", "蔓性风铃花"),
[23] = new("chineserose", "月季花"),
};
///
/// 事件字典
///
public static readonly Dictionary Events = new()
{
[(int)EventTypes.Unknown] = new(EventUnknown, "未知"),
[(int)EventTypes.Buy] = new("buy", "购买", true),
[(int)EventTypes.Born] = new("born", "出生", true),
[3] = new("changebasin", "换盆"),
[4] = new("watering", "浇水"),
[5] = new("fertilize", "施肥"),
[6] = new("germination", "发芽"),
[7] = new("blossom", "开花"),
[8] = new("fallenleaves", "落叶"),
[9] = new("prune", "修剪"),
[10] = new("sick", "生病"),
[(int)EventTypes.Death] = new("death", "死亡", true),
[(int)EventTypes.Sell] = new("sell", "出售", true),
[(int)EventTypes.Share] = new("share", "分享"),
};
}
///
/// 事件类型枚举
///
public enum EventTypes
{
///
/// 未知
///
Unknown = 0,
///
/// 购买
///
Buy = 1,
///
/// 出生
///
Born = 2,
///
/// 死亡
///
Death = 11,
///
/// 出售
///
Sell = 12,
///
/// 分享
///
Share = 13,
}
///
/// 事件类
///
/// 名称
/// 描述
/// 是否唯一
public record Event(string Name, string? Description = null, bool Unique = false) : NamedItem(Name, Description)
{
///
/// 是否唯一
///
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool Unique { get; init; } = Unique;
}
///
/// 命名对象类
///
/// 名称
/// 描述
public record NamedItem(string Name, string? Description = null)
{
///
/// 名称
///
public string Name { get; init; } = Name;
///
/// 描述
///
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Description { get; init; } = Description;
}