mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 21:38:00 +08:00
b4f30dd417
The existing OptionDropdown only supported enums and was thus renamed to OptionEnumDropDown. A new OptionDropdown has been created in its place to allow binding to arbitrary values, with a set of user-provided items.
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;
|
|
}
|
|
}
|
|
}
|