osu/osu.Game.Tournament/Components/TournamentBeatmapPanel.cs

206 lines
7.5 KiB
C#
Raw Normal View History

2019-03-04 04:24:19 +00: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.
2018-10-13 15:40:33 +00:00
2018-12-01 00:50:11 +00:00
using System;
2018-11-07 21:29:04 +00:00
using System.Collections.Specialized;
using System.Linq;
2018-10-13 15:40:33 +00:00
using osu.Framework.Allocation;
2019-03-02 04:40:43 +00:00
using osu.Framework.Bindables;
2018-10-13 15:40:33 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2018-11-17 07:00:12 +00:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
2018-10-13 15:40:33 +00:00
using osu.Framework.Localisation;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.Drawables;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
2019-06-18 05:51:48 +00:00
using osu.Game.Tournament.Models;
using osuTK;
using osuTK.Graphics;
2018-10-13 15:40:33 +00:00
namespace osu.Game.Tournament.Components
{
public class TournamentBeatmapPanel : CompositeDrawable
{
2018-11-07 21:29:04 +00:00
public readonly BeatmapInfo Beatmap;
2018-11-17 07:00:12 +00:00
private readonly string mods;
2018-11-07 21:29:04 +00:00
2018-10-13 15:40:33 +00:00
private const float horizontal_padding = 10;
private const float vertical_padding = 5;
2018-11-03 22:12:07 +00:00
public const float HEIGHT = 50;
2019-06-18 05:57:05 +00:00
private readonly Bindable<TournamentMatch> currentMatch = new Bindable<TournamentMatch>();
2018-11-11 01:48:57 +00:00
private Box flash;
2018-11-07 21:29:04 +00:00
2018-11-17 07:00:12 +00:00
public TournamentBeatmapPanel(BeatmapInfo beatmap, string mods = null)
2018-10-13 15:40:33 +00:00
{
2018-12-01 00:50:11 +00:00
if (beatmap == null) throw new ArgumentNullException(nameof(beatmap));
2018-11-07 21:29:04 +00:00
Beatmap = beatmap;
2018-11-17 07:00:12 +00:00
this.mods = mods;
2018-10-13 15:40:33 +00:00
Width = 400;
2018-11-03 22:12:07 +00:00
Height = HEIGHT;
2018-10-13 15:40:33 +00:00
}
[BackgroundDependencyLoader]
2019-06-13 08:04:57 +00:00
private void load(LadderInfo ladder, TextureStore textures)
2018-10-13 15:40:33 +00:00
{
2018-11-07 21:29:04 +00:00
currentMatch.BindValueChanged(matchChanged);
currentMatch.BindTo(ladder.CurrentMatch);
2018-11-16 09:14:42 +00:00
CornerRadius = HEIGHT / 2;
2018-10-13 15:40:33 +00:00
Masking = true;
AddRangeInternal(new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
},
new UpdateableBeatmapSetCover
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(0.5f),
2018-11-07 21:29:04 +00:00
BeatmapSet = Beatmap.BeatmapSet,
2018-10-13 15:40:33 +00:00
},
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Padding = new MarginPadding(vertical_padding),
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = new LocalisedString((
$"{Beatmap.Metadata.ArtistUnicode ?? Beatmap.Metadata.Artist} - {Beatmap.Metadata.TitleUnicode ?? Beatmap.Metadata.Title}",
2018-11-07 21:29:04 +00:00
$"{Beatmap.Metadata.Artist} - {Beatmap.Metadata.Title}")),
2019-05-15 04:10:58 +00:00
Font = OsuFont.GetFont(weight: FontWeight.Bold, italics: true),
2018-10-13 15:40:33 +00:00
},
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Padding = new MarginPadding(vertical_padding),
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
new OsuSpriteText
{
Text = "mapper",
Padding = new MarginPadding { Right = 5 },
2019-03-04 03:06:41 +00:00
Font = OsuFont.GetFont(italics: true, weight: FontWeight.Regular, size: 14)
2018-10-13 15:40:33 +00:00
},
new OsuSpriteText
{
2018-11-07 21:29:04 +00:00
Text = Beatmap.Metadata.AuthorString,
2018-10-13 15:40:33 +00:00
Padding = new MarginPadding { Right = 20 },
2019-03-04 03:06:41 +00:00
Font = OsuFont.GetFont(italics: true, weight: FontWeight.Bold, size: 14)
2018-10-13 15:40:33 +00:00
},
new OsuSpriteText
{
Text = "difficulty",
Padding = new MarginPadding { Right = 5 },
2019-03-04 03:06:41 +00:00
Font = OsuFont.GetFont(italics: true, weight: FontWeight.Regular, size: 14)
2018-10-13 15:40:33 +00:00
},
new OsuSpriteText
{
2018-11-07 21:29:04 +00:00
Text = Beatmap.Version,
2019-03-04 03:06:41 +00:00
Font = OsuFont.GetFont(italics: true, weight: FontWeight.Bold, size: 14)
2018-10-13 15:40:33 +00:00
},
}
}
},
},
2018-11-11 01:48:57 +00:00
flash = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Gray,
2019-08-21 04:29:50 +00:00
Blending = BlendingParameters.Additive,
2018-11-11 01:48:57 +00:00
Alpha = 0,
},
2018-10-13 15:40:33 +00:00
});
2018-11-17 07:00:12 +00:00
if (!string.IsNullOrEmpty(mods))
2019-11-11 11:53:22 +00:00
{
2018-11-17 07:00:12 +00:00
AddInternal(new Sprite
{
2019-06-13 08:04:57 +00:00
Texture = textures.Get($"mods/{mods}"),
2018-11-17 07:00:12 +00:00
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Margin = new MarginPadding(20),
Scale = new Vector2(0.5f)
});
2019-11-11 11:53:22 +00:00
}
2018-10-13 15:40:33 +00:00
}
2018-11-07 21:29:04 +00:00
2019-06-18 05:57:05 +00:00
private void matchChanged(ValueChangedEvent<TournamentMatch> match)
2018-11-07 21:29:04 +00:00
{
2019-06-18 05:57:05 +00:00
if (match.OldValue != null)
match.OldValue.PicksBans.CollectionChanged -= picksBansOnCollectionChanged;
match.NewValue.PicksBans.CollectionChanged += picksBansOnCollectionChanged;
2018-11-07 21:29:04 +00:00
updateState();
}
2019-05-20 05:47:46 +00:00
private void picksBansOnCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
=> updateState();
2018-11-11 01:48:57 +00:00
private BeatmapChoice choice;
2018-11-07 21:29:04 +00:00
private void updateState()
{
var found = currentMatch.Value.PicksBans.FirstOrDefault(p => p.BeatmapID == Beatmap.OnlineBeatmapID);
2018-11-11 01:48:57 +00:00
bool doFlash = found != choice;
choice = found;
2018-11-07 21:29:04 +00:00
if (found != null)
{
2018-11-11 01:48:57 +00:00
if (doFlash)
flash?.FadeOutFromOne(500).Loop(0, 10);
2018-11-11 01:48:57 +00:00
2018-11-07 21:47:42 +00:00
BorderThickness = 6;
2018-11-07 21:29:04 +00:00
switch (found.Team)
{
case TeamColour.Red:
2018-11-07 21:47:42 +00:00
BorderColour = Color4.Red;
2018-11-07 21:29:04 +00:00
break;
2018-11-07 21:29:04 +00:00
case TeamColour.Blue:
2018-11-07 21:47:42 +00:00
BorderColour = Color4.Blue;
break;
}
switch (found.Type)
{
case ChoiceType.Pick:
Colour = Color4.White;
Alpha = 1;
break;
2018-11-07 21:47:42 +00:00
case ChoiceType.Ban:
Colour = Color4.Gray;
Alpha = 0.5f;
2018-11-07 21:29:04 +00:00
break;
}
}
else
{
Colour = Color4.White;
2018-11-07 21:47:42 +00:00
BorderThickness = 0;
Alpha = 1;
2018-11-07 21:29:04 +00:00
}
}
2018-10-13 15:40:33 +00:00
}
}