2017-02-23 10:16:23 +08: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 OpenTK;
|
|
|
|
using OpenTK.Graphics;
|
2017-03-02 13:24:32 +08:00
|
|
|
using OpenTK.Input;
|
2017-02-23 10:16:23 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-03-02 13:24:32 +08:00
|
|
|
using osu.Framework.Input;
|
2017-02-23 10:16:23 +08:00
|
|
|
using osu.Game.Graphics.Sprites;
|
2017-04-18 15:05:58 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2017-03-12 21:13:43 +08:00
|
|
|
using System;
|
2017-05-05 11:16:41 +08:00
|
|
|
using System.Linq;
|
|
|
|
using System.Collections.Generic;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Mods
|
|
|
|
{
|
2017-03-07 00:12:06 +08:00
|
|
|
public abstract class ModSection : Container
|
2017-02-23 10:16:23 +08:00
|
|
|
{
|
2017-03-23 12:41:50 +08:00
|
|
|
private readonly OsuSpriteText headerLabel;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
2017-05-05 11:16:41 +08:00
|
|
|
public FillFlowContainer<ModButtonEmpty> ButtonsContainer { get; }
|
2017-02-23 10:16:23 +08:00
|
|
|
|
|
|
|
public Action<Mod> Action;
|
2017-03-07 00:12:06 +08:00
|
|
|
protected abstract Key[] ToggleKeys { get; }
|
2017-03-07 00:19:38 +08:00
|
|
|
public abstract ModType ModType { get; }
|
2017-03-07 00:12:06 +08:00
|
|
|
|
2017-02-23 10:16:23 +08:00
|
|
|
public string Header
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2017-03-06 17:14:41 +08:00
|
|
|
return headerLabel.Text;
|
2017-02-23 10:16:23 +08:00
|
|
|
}
|
|
|
|
set
|
|
|
|
{
|
|
|
|
headerLabel.Text = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-05 11:16:41 +08:00
|
|
|
public IEnumerable<Mod> SelectedMods => buttons.Select(b => b.SelectedMod).Where(m => m != null);
|
|
|
|
|
|
|
|
public IEnumerable<Mod> Mods
|
2017-02-23 10:16:23 +08:00
|
|
|
{
|
|
|
|
set
|
|
|
|
{
|
2017-05-05 11:16:41 +08:00
|
|
|
var modContainers = value.Select(m =>
|
2017-02-23 10:16:23 +08:00
|
|
|
{
|
2017-05-05 11:16:41 +08:00
|
|
|
if (m == null)
|
|
|
|
return new ModButtonEmpty();
|
|
|
|
else
|
|
|
|
return new ModButton(m)
|
|
|
|
{
|
|
|
|
SelectedColour = selectedColour,
|
|
|
|
Action = Action,
|
|
|
|
};
|
|
|
|
}).ToArray();
|
2017-02-23 10:16:23 +08:00
|
|
|
|
2017-05-05 11:16:41 +08:00
|
|
|
ButtonsContainer.Children = modContainers;
|
|
|
|
buttons = modContainers.OfType<ModButton>().ToArray();
|
2017-02-23 10:16:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-05 11:16:41 +08:00
|
|
|
private ModButton[] buttons = { };
|
|
|
|
|
2017-02-23 10:16:23 +08:00
|
|
|
private Color4 selectedColour = Color4.White;
|
|
|
|
public Color4 SelectedColour
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return selectedColour;
|
|
|
|
}
|
|
|
|
set
|
|
|
|
{
|
|
|
|
if (value == selectedColour) return;
|
|
|
|
selectedColour = value;
|
|
|
|
|
|
|
|
foreach (ModButton button in buttons)
|
|
|
|
button.SelectedColour = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-02 13:24:32 +08:00
|
|
|
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
|
|
|
|
{
|
|
|
|
var index = Array.IndexOf(ToggleKeys, args.Key);
|
2017-05-05 11:16:41 +08:00
|
|
|
if (index > -1 && index < buttons.Length)
|
|
|
|
buttons[index].SelectNext();
|
2017-03-02 13:24:32 +08:00
|
|
|
|
|
|
|
return base.OnKeyDown(state, args);
|
|
|
|
}
|
|
|
|
|
2017-02-23 10:16:23 +08:00
|
|
|
public void DeselectAll()
|
|
|
|
{
|
|
|
|
foreach (ModButton button in buttons)
|
|
|
|
button.Deselect();
|
2017-05-05 11:16:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void DeselectTypes(Type[] modTypes)
|
|
|
|
{
|
|
|
|
foreach (var button in buttons)
|
|
|
|
{
|
|
|
|
Mod selected = button.SelectedMod;
|
|
|
|
if (selected == null) continue;
|
|
|
|
foreach (Type type in modTypes)
|
|
|
|
if (type.IsInstanceOfType(selected))
|
|
|
|
button.Deselect();
|
2017-02-23 10:16:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-09 16:44:45 +08:00
|
|
|
protected ModSection()
|
2017-02-23 10:16:23 +08:00
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
headerLabel = new OsuSpriteText
|
|
|
|
{
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
Position = new Vector2(0f, 0f),
|
2017-03-06 17:14:41 +08:00
|
|
|
Font = @"Exo2.0-Bold"
|
2017-02-23 10:16:23 +08:00
|
|
|
},
|
2017-05-05 11:16:41 +08:00
|
|
|
ButtonsContainer = new FillFlowContainer<ModButtonEmpty>
|
2017-02-23 10:16:23 +08:00
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
Spacing = new Vector2(50f, 0f),
|
|
|
|
Margin = new MarginPadding
|
|
|
|
{
|
|
|
|
Top = 6,
|
|
|
|
},
|
2017-03-07 00:12:06 +08:00
|
|
|
AlwaysPresent = true
|
2017-02-23 10:16:23 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|