mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 20:47:26 +08:00
96 lines
2.7 KiB
C#
96 lines
2.7 KiB
C#
// 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 osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.Textures;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using System;
|
|
|
|
namespace osu.Game.Overlays.News
|
|
{
|
|
public class NewsHeader : BreadcrumbControlOverlayHeader
|
|
{
|
|
private const string front_page_string = "frontpage";
|
|
|
|
private NewsHeaderTitle title;
|
|
|
|
public readonly Bindable<string> Current = new Bindable<string>(null);
|
|
|
|
public Action ShowFrontPage;
|
|
|
|
public NewsHeader()
|
|
: base(OverlayColourScheme.Purple)
|
|
{
|
|
BreadcrumbControl.AddItem(front_page_string);
|
|
|
|
BreadcrumbControl.Current.ValueChanged += e =>
|
|
{
|
|
if (e.NewValue == front_page_string)
|
|
ShowFrontPage?.Invoke();
|
|
};
|
|
|
|
Current.ValueChanged += showPost;
|
|
}
|
|
|
|
private void showPost(ValueChangedEvent<string> e)
|
|
{
|
|
if (e.OldValue != null)
|
|
BreadcrumbControl.RemoveItem(e.OldValue);
|
|
|
|
if (e.NewValue != null)
|
|
{
|
|
BreadcrumbControl.AddItem(e.NewValue);
|
|
BreadcrumbControl.Current.Value = e.NewValue;
|
|
|
|
title.IsReadingPost = true;
|
|
}
|
|
else
|
|
{
|
|
BreadcrumbControl.Current.Value = front_page_string;
|
|
title.IsReadingPost = false;
|
|
}
|
|
}
|
|
|
|
protected override Drawable CreateBackground() => new NewsHeaderBackground();
|
|
|
|
protected override ScreenTitle CreateTitle() => title = new NewsHeaderTitle();
|
|
|
|
private class NewsHeaderBackground : Sprite
|
|
{
|
|
public NewsHeaderBackground()
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
FillMode = FillMode.Fill;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(TextureStore textures)
|
|
{
|
|
Texture = textures.Get(@"Headers/news");
|
|
}
|
|
}
|
|
|
|
private class NewsHeaderTitle : ScreenTitle
|
|
{
|
|
private const string post_string = "post";
|
|
|
|
public bool IsReadingPost
|
|
{
|
|
set => Section = value ? post_string : front_page_string;
|
|
}
|
|
|
|
public NewsHeaderTitle()
|
|
{
|
|
Title = "news";
|
|
IsReadingPost = false;
|
|
}
|
|
|
|
protected override Drawable CreateIcon() => new ScreenTitleTextureIcon(@"Icons/news");
|
|
}
|
|
}
|
|
}
|