1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 18:07:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/SettingsFooter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

119 lines
3.9 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2017-03-06 16:20:19 +08:00
using osu.Framework.Allocation;
2019-06-20 11:48:45 +08:00
using osu.Framework.Development;
2017-03-06 16:20:19 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2022-06-29 17:56:15 +08:00
using osu.Framework.Logging;
2017-03-06 16:20:19 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
2017-03-06 16:20:19 +08:00
using osu.Game.Graphics.Sprites;
2019-06-03 12:38:06 +08:00
using osu.Game.Graphics.UserInterface;
2017-07-26 12:22:46 +08:00
using osu.Game.Rulesets;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings
2017-03-06 16:20:19 +08:00
{
public class SettingsFooter : FillFlowContainer
2017-03-06 16:20:19 +08:00
{
[BackgroundDependencyLoader]
2022-01-15 08:06:39 +08:00
private void load(OsuGameBase game, RulesetStore rulesets)
2017-03-06 16:20:19 +08:00
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
Direction = FillDirection.Vertical;
Padding = new MarginPadding { Top = 20, Bottom = 30, Horizontal = SettingsPanel.CONTENT_MARGINS };
2018-04-13 17:19:50 +08:00
2022-06-29 18:37:02 +08:00
FillFlowContainer modes;
2018-04-13 17:19:50 +08:00
2017-03-06 16:20:19 +08:00
Children = new Drawable[]
{
2022-06-29 18:37:02 +08:00
modes = new FillFlowContainer
2017-03-06 16:20:19 +08:00
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Direction = FillDirection.Full,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
2017-03-06 16:20:19 +08:00
Spacing = new Vector2(5),
Padding = new MarginPadding { Bottom = 10 },
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = game.Name,
Font = OsuFont.GetFont(size: 18, weight: FontWeight.Bold),
2017-03-06 16:20:19 +08:00
},
2019-06-20 11:48:45 +08:00
new BuildDisplay(game.Version, DebugUtils.IsDebugBuild)
2017-03-06 16:20:19 +08:00
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
2019-06-03 12:38:06 +08:00
}
2017-03-06 16:20:19 +08:00
};
2022-06-29 18:37:02 +08:00
foreach (var ruleset in rulesets.AvailableRulesets)
{
try
{
var icon = new ConstrainedIconContainer
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Icon = ruleset.CreateInstance().CreateIcon(),
Colour = Color4.Gray,
Size = new Vector2(20),
};
modes.Add(icon);
}
catch
{
Logger.Log($"Could not create ruleset icon for {ruleset.Name}. Please check for an update from the developer.", level: LogLevel.Error);
}
}
}
2019-06-03 12:38:06 +08:00
private class BuildDisplay : OsuAnimatedButton
{
2019-06-03 12:38:06 +08:00
private readonly string version;
private readonly bool isDebug;
[Resolved]
private OsuColour colours { get; set; }
public BuildDisplay(string version, bool isDebug)
2019-06-01 14:46:38 +08:00
{
2019-06-03 12:38:06 +08:00
this.version = version;
this.isDebug = isDebug;
Content.RelativeSizeAxes = Axes.Y;
Content.AutoSizeAxes = AutoSizeAxes = Axes.X;
Height = 20;
2019-06-01 14:46:38 +08:00
}
2019-06-03 12:38:06 +08:00
[BackgroundDependencyLoader(true)]
private void load(ChangelogOverlay changelog)
{
if (!isDebug)
Action = () => changelog?.ShowBuild(OsuGameBase.CLIENT_STREAM_NAME, version);
Add(new OsuSpriteText
{
Font = OsuFont.GetFont(size: 16),
Text = version,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Padding = new MarginPadding(5),
Colour = isDebug ? colours.Red : Color4.White,
});
}
2017-03-06 16:20:19 +08:00
}
}
2018-01-05 19:21:19 +08:00
}