osu/osu.Game/Overlays/VersionManager.cs

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

98 lines
3.2 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
2022-06-17 07:37:17 +00:00
#nullable disable
2017-02-14 07:13:25 +00:00
using osu.Framework.Allocation;
2019-06-20 03:48:45 +00:00
using osu.Framework.Development;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2017-02-13 11:06:51 +00:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
using osu.Game.Graphics;
2017-09-18 13:32:49 +00:00
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.Game.Overlays
{
public class VersionManager : VisibilityContainer
{
[BackgroundDependencyLoader]
private void load(OsuColour colours, TextureStore textures, OsuGameBase game)
{
AutoSizeAxes = Axes.Both;
Anchor = Anchor.BottomCentre;
Origin = Anchor.BottomCentre;
2018-04-13 09:19:50 +00:00
2017-02-13 11:06:51 +00:00
Alpha = 0;
2018-04-13 09:19:50 +00:00
FillFlowContainer mainFill;
2017-02-13 11:06:51 +00:00
Children = new Drawable[]
{
mainFill = new FillFlowContainer
2017-02-13 11:06:51 +00:00
{
AutoSizeAxes = Axes.Both,
2017-03-04 10:00:17 +00:00
Direction = FillDirection.Vertical,
2017-02-13 11:06:51 +00:00
Children = new Drawable[]
{
2017-03-01 18:33:01 +00:00
new FillFlowContainer
2017-02-13 11:06:51 +00:00
{
AutoSizeAxes = Axes.Both,
2017-03-04 10:00:17 +00:00
Direction = FillDirection.Horizontal,
2017-03-01 18:33:01 +00:00
Spacing = new Vector2(5),
2017-02-13 11:06:51 +00:00
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Children = new Drawable[]
{
new OsuSpriteText
{
Font = OsuFont.GetFont(weight: FontWeight.Bold),
Text = game.Name
2017-02-13 11:06:51 +00:00
},
new OsuSpriteText
{
2019-06-20 03:48:45 +00:00
Colour = DebugUtils.IsDebugBuild ? colours.Red : Color4.White,
Text = game.Version
2017-02-13 11:06:51 +00:00
},
}
},
}
}
};
if (!game.IsDeployedBuild)
{
mainFill.AddRange(new Drawable[]
{
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Font = OsuFont.Numeric.With(size: 12),
Colour = colours.Yellow,
Text = @"Development Build"
},
new Sprite
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
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);
}
}
}