osu/osu.Desktop/Overlays/VersionManager.cs

88 lines
3.0 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 09:19:50 +00:00
using osu.Framework.Allocation;
2019-06-20 03:48:45 +00:00
using osu.Framework.Development;
2018-04-13 09:19:50 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
using osu.Game;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
2018-11-20 07:51:59 +00:00
using osuTK;
using osuTK.Graphics;
2018-04-13 09:19:50 +00:00
namespace osu.Desktop.Overlays
{
public class VersionManager : OverlayContainer
{
[BackgroundDependencyLoader]
private void load(OsuColour colours, TextureStore textures, OsuGameBase game)
2018-04-13 09:19:50 +00:00
{
AutoSizeAxes = Axes.Both;
Anchor = Anchor.BottomCentre;
Origin = Anchor.BottomCentre;
Alpha = 0;
Children = new Drawable[]
{
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(5),
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Children = new Drawable[]
{
new OsuSpriteText
{
Font = OsuFont.GetFont(weight: FontWeight.Bold),
2018-04-13 09:19:50 +00:00
Text = game.Name
},
new OsuSpriteText
{
2019-06-20 03:48:45 +00:00
Colour = DebugUtils.IsDebugBuild ? colours.Red : Color4.White,
2018-04-13 09:19:50 +00:00
Text = game.Version
},
}
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Font = OsuFont.Numeric.With(size: 12),
2018-04-13 09:19:50 +00:00
Colour = colours.Yellow,
Text = @"Development Build"
},
new Sprite
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
2018-08-30 22:04:40 +00:00
Texture = textures.Get(@"Menu/dev-build-footer"),
2018-04-13 09:19:50 +00:00
},
}
}
};
}
protected override void PopIn()
{
2018-12-27 10:22:24 +00:00
this.FadeIn(1400, Easing.OutQuint);
2018-04-13 09:19:50 +00:00
}
protected override void PopOut()
{
2018-12-27 10:22:24 +00:00
this.FadeOut(500, Easing.OutQuint);
2018-04-13 09:19:50 +00:00
}
}
}