1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:47:24 +08:00
osu-lazer/osu.Game/Overlays/OverlayTitle.cs

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

94 lines
2.9 KiB
C#
Raw Normal View History

2020-03-25 05:03:38 +08:00
// 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.
2022-06-17 15:37:17 +08:00
#nullable disable
2020-03-25 05:03:38 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
using osu.Framework.Localisation;
2020-03-25 05:03:38 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osuTK;
namespace osu.Game.Overlays
{
public abstract partial class OverlayTitle : CompositeDrawable, INamedOverlayComponent
2020-03-25 05:03:38 +08:00
{
2020-09-18 05:56:08 +08:00
public const float ICON_SIZE = 30;
private readonly OsuSpriteText titleText;
2020-03-25 05:03:38 +08:00
private readonly Container icon;
private LocalisableString title;
public LocalisableString Title
2020-03-25 05:03:38 +08:00
{
get => title;
protected set => titleText.Text = title = value;
2020-03-25 05:03:38 +08:00
}
public LocalisableString Description { get; protected set; }
private string iconTexture;
public string IconTexture
2020-03-25 05:03:38 +08:00
{
get => iconTexture;
protected set => icon.Child = new OverlayTitleIcon(iconTexture = value);
2020-03-25 05:03:38 +08:00
}
protected OverlayTitle()
{
AutoSizeAxes = Axes.Both;
InternalChild = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Spacing = new Vector2(10, 0),
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
icon = new Container
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Margin = new MarginPadding { Horizontal = 5 }, // compensates for osu-web sprites having around 5px of whitespace on each side
2020-09-18 05:56:08 +08:00
Size = new Vector2(ICON_SIZE)
2020-03-25 05:03:38 +08:00
},
titleText = new OsuSpriteText
2020-03-25 05:03:38 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(size: 20, weight: FontWeight.Regular),
Margin = new MarginPadding { Vertical = 17.5f } // 15px padding + 2.5px line-height difference compensation
}
}
};
}
private partial class OverlayTitleIcon : Sprite
{
private readonly string textureName;
public OverlayTitleIcon(string textureName)
{
this.textureName = textureName;
2020-03-25 05:03:38 +08:00
RelativeSizeAxes = Axes.Both;
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
FillMode = FillMode.Fit;
}
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
Texture = textures.Get(textureName);
}
}
}
}