mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
73 lines
2.4 KiB
C#
73 lines
2.4 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.Collections.Generic;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Development;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Rulesets;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Settings
|
|
{
|
|
public class SettingsFooter : FillFlowContainer
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuGameBase game, OsuColour colours, RulesetStore rulesets)
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
Direction = FillDirection.Vertical;
|
|
Padding = new MarginPadding { Top = 20, Bottom = 30 };
|
|
|
|
var modes = new List<Drawable>();
|
|
|
|
foreach (var ruleset in rulesets.AvailableRulesets)
|
|
{
|
|
var icon = new ConstrainedIconContainer
|
|
{
|
|
Icon = ruleset.CreateInstance().CreateIcon(),
|
|
Colour = Color4.Gray,
|
|
Size = new Vector2(20),
|
|
};
|
|
|
|
modes.Add(icon);
|
|
}
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new FillFlowContainer
|
|
{
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
Direction = FillDirection.Full,
|
|
AutoSizeAxes = Axes.Both,
|
|
Children = modes,
|
|
Spacing = new Vector2(5),
|
|
Padding = new MarginPadding { Bottom = 10 },
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
Text = game.Name,
|
|
TextSize = 18,
|
|
Font = @"Exo2.0-Bold",
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
TextSize = 14,
|
|
Text = game.Version,
|
|
Colour = DebugUtils.IsDebug ? colours.Red : Color4.White,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
} |