mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
165 lines
4.2 KiB
C#
165 lines
4.2 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Modes;
|
|
|
|
namespace osu.Game.Overlays.Mods
|
|
{
|
|
class AlwaysPresentFlowContainer : FlowContainer
|
|
{
|
|
public override bool IsPresent => true;
|
|
}
|
|
|
|
public class ModSection : Container
|
|
{
|
|
private OsuSpriteText headerLabel;
|
|
|
|
private AlwaysPresentFlowContainer buttonsContainer;
|
|
public FlowContainer ButtonsContainer => buttonsContainer;
|
|
|
|
public Action<Mod> Action;
|
|
|
|
public Mod[] SelectedMods
|
|
{
|
|
get
|
|
{
|
|
List<Mod> selectedMods = new List<Mod>();
|
|
|
|
foreach (ModButton button in Buttons)
|
|
{
|
|
Mod selectedMod = button.SelectedMod;
|
|
if (selectedMod != null)
|
|
{
|
|
selectedMods.Add(selectedMod);
|
|
}
|
|
}
|
|
|
|
return selectedMods.ToArray();
|
|
}
|
|
}
|
|
|
|
private string header;
|
|
public string Header
|
|
{
|
|
get
|
|
{
|
|
return header;
|
|
}
|
|
set
|
|
{
|
|
header = value;
|
|
headerLabel.Text = value;
|
|
}
|
|
}
|
|
|
|
private ModButton[] buttons = {};
|
|
public ModButton[] Buttons
|
|
{
|
|
get
|
|
{
|
|
return buttons;
|
|
}
|
|
set
|
|
{
|
|
if (value == buttons) return;
|
|
buttons = value;
|
|
|
|
foreach (ModButton button in value)
|
|
{
|
|
button.Colour = Colour;
|
|
button.Action = buttonPressed;
|
|
}
|
|
|
|
buttonsContainer.Add(value);
|
|
}
|
|
}
|
|
|
|
private Color4 colour = Color4.White;
|
|
new public Color4 Colour
|
|
{
|
|
get
|
|
{
|
|
return colour;
|
|
}
|
|
set
|
|
{
|
|
if (value == colour) return;
|
|
colour = value;
|
|
|
|
foreach (ModButton button in buttons)
|
|
{
|
|
button.Colour = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
public void DeselectAll()
|
|
{
|
|
foreach (ModButton button in buttons)
|
|
{
|
|
button.Deselect();
|
|
}
|
|
}
|
|
|
|
private void buttonPressed(Mod mod)
|
|
{
|
|
Action?.Invoke(mod);
|
|
}
|
|
|
|
public ModSection()
|
|
{
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
headerLabel = new OsuSpriteText
|
|
{
|
|
Origin = Anchor.TopLeft,
|
|
Anchor = Anchor.TopLeft,
|
|
Position = new Vector2(0f, 0f),
|
|
Font = @"Exo2.0-Bold",
|
|
Text = Header,
|
|
},
|
|
buttonsContainer = new AlwaysPresentFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Origin = Anchor.BottomLeft,
|
|
Anchor = Anchor.BottomLeft,
|
|
Spacing = new Vector2(50f, 0f),
|
|
Margin = new MarginPadding
|
|
{
|
|
Top = 6,
|
|
},
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|