mirror of
https://github.com/ppy/osu.git
synced 2025-02-09 13:13:04 +08:00
38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
|
using System;
|
|||
|
using osu.Framework.Configuration;
|
|||
|
using osu.Framework.Graphics;
|
|||
|
using osu.Framework.Graphics.Containers;
|
|||
|
using osu.Framework.Graphics.Primitives;
|
|||
|
using osu.Framework.Graphics.Sprites;
|
|||
|
using osu.Framework.Graphics.UserInterface;
|
|||
|
using osu.Game.Graphics.Sprites;
|
|||
|
using osu.Game.Graphics.UserInterface;
|
|||
|
using System.Reflection;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace osu.Game.Overlays.Options
|
|||
|
{
|
|||
|
public class OptionEnumDropDown<T> : OptionDropDown<T>
|
|||
|
{
|
|||
|
public OptionEnumDropDown()
|
|||
|
{
|
|||
|
if (!typeof(T).IsEnum)
|
|||
|
throw new InvalidOperationException("OptionsDropdown only supports enums as the generic type argument");
|
|||
|
|
|||
|
List<KeyValuePair<string, T>> items = new List<KeyValuePair<string, T>>();
|
|||
|
foreach(var val in (T[])Enum.GetValues(typeof(T)))
|
|||
|
{
|
|||
|
var field = typeof(T).GetField(Enum.GetName(typeof(T), val));
|
|||
|
items.Add(
|
|||
|
new KeyValuePair<string, T>(
|
|||
|
field.GetCustomAttribute<DescriptionAttribute>()?.Description ?? Enum.GetName(typeof(T), val),
|
|||
|
val
|
|||
|
)
|
|||
|
);
|
|||
|
}
|
|||
|
Items = items;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|