1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 06:27:24 +08:00
osu-lazer/osu.Game/Overlays/Mods/EditPresetPopover.cs

141 lines
4.8 KiB
C#
Raw Normal View History

2023-03-07 01:00:40 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Extensions;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface;
using osu.Game.Graphics.UserInterfaceV2;
using osu.Game.Localisation;
using osu.Game.Rulesets.Mods;
using osuTK;
namespace osu.Game.Overlays.Mods
{
internal partial class EditPresetPopover : OsuPopover
{
private readonly ModPresetPanel button;
private readonly LabelledTextBox nameTextBox;
private readonly LabelledTextBox descriptionTextBox;
2023-03-07 20:13:35 +08:00
private readonly ShearedButton useCurrentModButton;
2023-03-07 01:00:40 +08:00
private readonly ShearedButton createButton;
[Resolved]
private Bindable<IReadOnlyList<Mod>> selectedMods { get; set; } = null!;
private readonly ModPreset preset;
public EditPresetPopover(ModPresetPanel modPresetPanel)
{
button = modPresetPanel;
preset = button.Preset.Value;
Child = new FillFlowContainer
{
Width = 300,
AutoSizeAxes = Axes.Y,
Spacing = new Vector2(7),
2023-03-07 20:13:35 +08:00
Direction = FillDirection.Vertical,
2023-03-07 01:00:40 +08:00
Children = new Drawable[]
{
nameTextBox = new LabelledTextBox
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Label = CommonStrings.Name,
TabbableContentContainer = this
},
descriptionTextBox = new LabelledTextBox
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Label = CommonStrings.Description,
TabbableContentContainer = this
},
2023-03-07 20:13:35 +08:00
new FillFlowContainer
2023-03-07 01:00:40 +08:00
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
2023-03-07 20:13:35 +08:00
Direction = FillDirection.Horizontal,
AutoSizeAxes = Axes.Y,
Spacing = new Vector2(7),
Children = new Drawable[]
{
useCurrentModButton = new ShearedButton
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = "Use Current Mods",
Action = trySaveCurrentMod
},
createButton = new ShearedButton
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = Resources.Localisation.Web.CommonStrings.ButtonsSave,
Action = tryEditPreset
},
}
2023-03-07 01:00:40 +08:00
}
}
};
}
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider, OsuColour colours)
{
Body.BorderThickness = 3;
Body.BorderColour = colours.Orange1;
nameTextBox.Current.Value = preset.Name;
descriptionTextBox.Current.Value = preset.Description;
createButton.DarkerColour = colours.Orange1;
createButton.LighterColour = colours.Orange0;
createButton.TextColour = colourProvider.Background6;
2023-03-07 20:13:35 +08:00
useCurrentModButton.DarkerColour = colours.Blue1;
useCurrentModButton.LighterColour = colours.Blue0;
useCurrentModButton.TextColour = colourProvider.Background6;
2023-03-07 01:00:40 +08:00
}
2023-03-07 20:13:35 +08:00
private void trySaveCurrentMod()
2023-03-07 01:00:40 +08:00
{
2023-03-09 21:23:13 +08:00
if (button.SaveCurrentMod())
2023-03-07 20:13:35 +08:00
return;
2023-03-07 01:00:40 +08:00
2023-03-09 21:23:13 +08:00
Body.Shake();
2023-03-07 01:00:40 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
ScheduleAfterChildren(() => GetContainingInputManager().ChangeFocus(nameTextBox));
}
private void tryEditPreset()
{
if (string.IsNullOrWhiteSpace(nameTextBox.Current.Value))
{
Body.Shake();
return;
}
button.Preset.PerformWrite(s =>
{
s.Name = nameTextBox.Current.Value;
s.Description = descriptionTextBox.Current.Value;
});
this.HidePopover();
}
}
}