1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/ScreenTitle.cs

108 lines
3.4 KiB
C#
Raw Normal View History

2019-03-09 06:44:01 +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.
using System;
2019-03-09 06:44:01 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-12-26 02:56:43 +08:00
using osu.Framework.Graphics.Shapes;
2019-03-29 13:03:00 +08:00
using osu.Framework.Graphics.Sprites;
2019-03-09 06:44:01 +08:00
using osu.Game.Graphics.Sprites;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Graphics.UserInterface
{
public abstract class ScreenTitle : CompositeDrawable, IHasAccentColour
2019-03-09 06:44:01 +08:00
{
2019-12-26 03:09:14 +08:00
public const float ICON_WIDTH = ICON_SIZE + spacing;
2019-12-26 02:56:43 +08:00
public const float ICON_SIZE = 30;
2019-12-26 03:09:14 +08:00
private const float spacing = 6;
2019-12-26 02:56:43 +08:00
private const int text_offset = 2;
private SpriteIcon iconSprite;
2019-03-09 06:44:01 +08:00
private readonly OsuSpriteText titleText, pageText;
2019-03-29 13:03:00 +08:00
protected IconUsage Icon
2019-03-09 06:44:01 +08:00
{
set
{
if (iconSprite == null)
throw new InvalidOperationException($"Cannot use {nameof(Icon)} with a custom {nameof(CreateIcon)} function.");
iconSprite.Icon = value;
}
2019-03-09 06:44:01 +08:00
}
protected string Title
2019-03-09 06:44:01 +08:00
{
set => titleText.Text = value;
}
protected string Section
2019-03-09 06:44:01 +08:00
{
set => pageText.Text = value;
}
public Color4 AccentColour
{
get => pageText.Colour;
set => pageText.Colour = value;
}
protected virtual Drawable CreateIcon() => iconSprite = new SpriteIcon
{
Size = new Vector2(ICON_SIZE),
};
protected ScreenTitle()
2019-03-09 06:44:01 +08:00
{
AutoSizeAxes = Axes.Both;
InternalChildren = new Drawable[]
{
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
2019-12-26 03:09:14 +08:00
Spacing = new Vector2(spacing, 0),
2019-12-26 02:56:43 +08:00
Direction = FillDirection.Horizontal,
Children = new[]
2019-03-09 06:44:01 +08:00
{
2019-12-26 02:56:43 +08:00
CreateIcon().With(t =>
{
t.Anchor = Anchor.Centre;
t.Origin = Anchor.Centre;
}),
titleText = new OsuSpriteText
2019-03-09 06:44:01 +08:00
{
2019-12-26 02:56:43 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(size: 20, weight: FontWeight.Bold),
Margin = new MarginPadding { Bottom = text_offset }
},
new CircularContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Masking = true,
Size = new Vector2(4),
Child = new Box
{
2019-12-26 02:56:43 +08:00
RelativeSizeAxes = Axes.Both,
Colour = Color4.Gray,
}
2019-12-26 02:56:43 +08:00
},
pageText = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(size: 20),
Margin = new MarginPadding { Bottom = text_offset }
2019-03-09 06:44:01 +08:00
}
}
},
2019-03-09 06:44:01 +08:00
};
}
}
}