mirror of
https://github.com/ppy/osu.git
synced 2026-05-16 14:23:22 +08:00
101 lines
3.3 KiB
C#
101 lines
3.3 KiB
C#
// 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;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.Drawables;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Tests.Visual.UserInterface;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Tests.Visual.Beatmaps
|
|
{
|
|
public partial class TestSceneBeatmapSetOnlineStatusPill : ThemeComparisonTestScene
|
|
{
|
|
private bool showUnknownStatus;
|
|
private bool animated = true;
|
|
|
|
protected override Drawable CreateContent() => new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Direction = FillDirection.Vertical,
|
|
Spacing = new Vector2(0, 10),
|
|
ChildrenEnumerable = Enum.GetValues(typeof(BeatmapOnlineStatus)).Cast<BeatmapOnlineStatus>().Select(status => new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 20,
|
|
Children = new Drawable[]
|
|
{
|
|
new BeatmapSetOnlineStatusPill
|
|
{
|
|
ShowUnknownStatus = showUnknownStatus,
|
|
Animated = animated,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Status = status
|
|
},
|
|
}
|
|
})
|
|
};
|
|
|
|
private IEnumerable<BeatmapSetOnlineStatusPill> statusPills => this.ChildrenOfType<BeatmapSetOnlineStatusPill>();
|
|
|
|
[Test]
|
|
public void TestFixedWidth()
|
|
{
|
|
AddStep("create themed content", () => CreateThemedContent(OverlayColourScheme.Red));
|
|
|
|
AddStep("set fixed width", () => statusPills.ForEach(pill =>
|
|
{
|
|
pill.AutoSizeAxes = Axes.Y;
|
|
pill.Width = 90;
|
|
}));
|
|
|
|
AddStep("toggle show unknown", () =>
|
|
{
|
|
showUnknownStatus = !showUnknownStatus;
|
|
CreateThemedContent(OverlayColourScheme.Red);
|
|
});
|
|
|
|
AddStep("toggle animate", () =>
|
|
{
|
|
animated = !animated;
|
|
CreateThemedContent(OverlayColourScheme.Red);
|
|
});
|
|
|
|
AddStep("unset fixed width", () => statusPills.ForEach(pill => pill.AutoSizeAxes = Axes.Both));
|
|
}
|
|
|
|
[Test]
|
|
public void TestChangeLabels()
|
|
{
|
|
AddStep("Change labels", () =>
|
|
{
|
|
foreach (var pill in this.ChildrenOfType<BeatmapSetOnlineStatusPill>())
|
|
{
|
|
switch (pill.Status)
|
|
{
|
|
// cycle at end
|
|
case BeatmapOnlineStatus.Loved:
|
|
pill.Status = BeatmapOnlineStatus.LocallyModified;
|
|
break;
|
|
|
|
default:
|
|
pill.Status = (pill.Status + 1);
|
|
break;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|