2016-10-27 10:55:55 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2016-10-27 18:52:48 +08:00
|
|
|
|
using System;
|
2016-11-12 18:44:16 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Allocation;
|
2016-11-11 10:35:58 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Game.Configuration;
|
2016-11-21 03:34:16 +08:00
|
|
|
|
using osu.Framework.Graphics.Colour;
|
2016-11-22 18:48:03 +08:00
|
|
|
|
using osu.Framework;
|
2016-10-27 10:55:55 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps.Drawable
|
|
|
|
|
{
|
2016-10-27 18:52:48 +08:00
|
|
|
|
class BeatmapSetHeader : Panel
|
2016-10-27 10:55:55 +08:00
|
|
|
|
{
|
2016-11-11 10:35:58 +08:00
|
|
|
|
public Action<BeatmapSetHeader> GainedSelection;
|
|
|
|
|
private BeatmapSetInfo beatmapSet;
|
|
|
|
|
private SpriteText title, artist;
|
|
|
|
|
private OsuConfigManager config;
|
|
|
|
|
private Bindable<bool> preferUnicode;
|
2016-10-27 18:52:48 +08:00
|
|
|
|
|
2016-11-05 19:00:14 +08:00
|
|
|
|
public BeatmapSetHeader(BeatmapSetInfo beatmapSet, WorkingBeatmap working)
|
2016-10-27 10:55:55 +08:00
|
|
|
|
{
|
2016-11-11 10:35:58 +08:00
|
|
|
|
this.beatmapSet = beatmapSet;
|
2016-10-27 10:55:55 +08:00
|
|
|
|
Children = new Framework.Graphics.Drawable[]
|
|
|
|
|
{
|
2016-11-21 03:34:16 +08:00
|
|
|
|
new BufferedContainer
|
|
|
|
|
{
|
|
|
|
|
CacheDrawnFrameBuffer = true,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Children = new Framework.Graphics.Drawable[]
|
|
|
|
|
{
|
2016-11-22 18:48:03 +08:00
|
|
|
|
new PanelBackground(working)
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both
|
2016-11-21 03:34:16 +08:00
|
|
|
|
},
|
|
|
|
|
new FlowContainer
|
|
|
|
|
{
|
|
|
|
|
Direction = FlowDirection.HorizontalOnly,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
// This makes the gradient not be perfectly horizontal, but diagonal at a ~40<34> angle
|
|
|
|
|
Shear = new Vector2(0.8f, 0),
|
|
|
|
|
Alpha = 0.5f,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
// The left half with no gradient applied
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
Width = 0.4f,
|
|
|
|
|
},
|
|
|
|
|
// Piecewise-linear gradient with 3 segments to make it appear smoother
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ColourInfo = ColourInfo.GradientHorizontal(Color4.Black, new Color4(0f, 0f, 0f, 0.9f)),
|
|
|
|
|
Width = 0.05f,
|
|
|
|
|
},
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ColourInfo = ColourInfo.GradientHorizontal(new Color4(0f, 0f, 0f, 0.9f), new Color4(0f, 0f, 0f, 0.1f)),
|
|
|
|
|
Width = 0.2f,
|
|
|
|
|
},
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ColourInfo = ColourInfo.GradientHorizontal(new Color4(0f, 0f, 0f, 0.1f), new Color4(0, 0, 0, 0)),
|
|
|
|
|
Width = 0.05f,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
2016-11-05 19:00:14 +08:00
|
|
|
|
},
|
2016-10-27 10:55:55 +08:00
|
|
|
|
new FlowContainer
|
|
|
|
|
{
|
|
|
|
|
Direction = FlowDirection.VerticalOnly,
|
2016-11-21 03:34:16 +08:00
|
|
|
|
Padding = new MarginPadding { Top = 5, Left = 18, Right = 10, Bottom = 10 },
|
2016-10-27 10:55:55 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2016-11-11 10:35:58 +08:00
|
|
|
|
title = new SpriteText
|
2016-10-27 10:55:55 +08:00
|
|
|
|
{
|
2016-11-21 03:34:16 +08:00
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
2016-11-11 10:35:58 +08:00
|
|
|
|
Text = beatmapSet.Metadata.Title,
|
2016-11-21 03:34:16 +08:00
|
|
|
|
TextSize = 22,
|
|
|
|
|
Shadow = true,
|
2016-10-27 10:55:55 +08:00
|
|
|
|
},
|
2016-11-11 10:35:58 +08:00
|
|
|
|
artist = new SpriteText
|
2016-10-27 10:55:55 +08:00
|
|
|
|
{
|
2016-11-21 03:34:16 +08:00
|
|
|
|
Margin = new MarginPadding { Top = -1 },
|
|
|
|
|
Font = @"Exo2.0-SemiBoldItalic",
|
2016-11-11 10:35:58 +08:00
|
|
|
|
Text = beatmapSet.Metadata.Artist,
|
2016-11-21 03:34:16 +08:00
|
|
|
|
TextSize = 17,
|
|
|
|
|
Shadow = true,
|
2016-10-27 10:55:55 +08:00
|
|
|
|
},
|
|
|
|
|
new FlowContainer
|
|
|
|
|
{
|
2016-11-21 03:34:16 +08:00
|
|
|
|
Margin = new MarginPadding { Top = 5 },
|
2016-10-27 10:55:55 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2016-11-07 16:58:32 +08:00
|
|
|
|
new DifficultyIcon(FontAwesome.fa_dot_circle_o, new Color4(159, 198, 0, 255)),
|
|
|
|
|
new DifficultyIcon(FontAwesome.fa_dot_circle_o, new Color4(246, 101, 166, 255)),
|
2016-10-27 10:55:55 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2016-11-22 18:48:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Selected()
|
|
|
|
|
{
|
|
|
|
|
base.Selected();
|
|
|
|
|
GainedSelection?.Invoke(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
this.config = config;
|
|
|
|
|
|
|
|
|
|
preferUnicode = config.GetBindable<bool>(OsuConfig.ShowUnicode);
|
|
|
|
|
preferUnicode.ValueChanged += preferUnicode_changed;
|
|
|
|
|
preferUnicode_changed(preferUnicode, null);
|
|
|
|
|
}
|
|
|
|
|
private void preferUnicode_changed(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
title.Text = config.GetUnicodeString(beatmapSet.Metadata.Title, beatmapSet.Metadata.TitleUnicode);
|
|
|
|
|
artist.Text = config.GetUnicodeString(beatmapSet.Metadata.Artist, beatmapSet.Metadata.ArtistUnicode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
if (preferUnicode != null)
|
|
|
|
|
preferUnicode.ValueChanged -= preferUnicode_changed;
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PanelBackground : Container
|
|
|
|
|
{
|
|
|
|
|
private readonly WorkingBeatmap working;
|
|
|
|
|
|
|
|
|
|
private AsyncBackground backgroundSprite;
|
|
|
|
|
|
|
|
|
|
public PanelBackground(WorkingBeatmap working)
|
|
|
|
|
{
|
|
|
|
|
this.working = working;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuGameBase game)
|
|
|
|
|
{
|
|
|
|
|
OnUpdate += () =>
|
|
|
|
|
{
|
|
|
|
|
//todo: masking check
|
|
|
|
|
if (backgroundSprite == null)
|
|
|
|
|
{
|
|
|
|
|
//moving this to ctor fixes the issue.
|
|
|
|
|
(backgroundSprite = new AsyncBackground(working)
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
}).Preload(game, Add);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class AsyncBackground : Sprite
|
|
|
|
|
{
|
|
|
|
|
private readonly WorkingBeatmap working;
|
|
|
|
|
|
|
|
|
|
public AsyncBackground(WorkingBeatmap working)
|
|
|
|
|
{
|
|
|
|
|
this.working = working;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuGameBase game)
|
|
|
|
|
{
|
|
|
|
|
Texture = working.Background;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
Scale = new Vector2(1366 / (Texture?.Width ?? 1) * 0.6f);
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-27 10:55:55 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|