2019-03-04 12:24:19 +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.
|
2018-11-11 09:39:04 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2018-11-11 09:39:04 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-03-02 12:40:43 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-11-11 09:39:04 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Tournament.Components;
|
2019-06-18 13:51:48 +08:00
|
|
|
using osu.Game.Tournament.Models;
|
2018-11-22 09:25:30 +08:00
|
|
|
using osuTK;
|
2018-11-11 09:39:04 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Screens.TeamWin
|
|
|
|
{
|
2022-07-11 19:42:04 +08:00
|
|
|
public partial class TeamWinScreen : TournamentMatchScreen
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
|
|
|
private Container mainContainer;
|
|
|
|
|
|
|
|
private readonly Bindable<bool> currentCompleted = new Bindable<bool>();
|
|
|
|
|
2019-06-17 20:07:30 +08:00
|
|
|
private TourneyVideo blueWinVideo;
|
|
|
|
private TourneyVideo redWinVideo;
|
2018-11-11 09:39:04 +08:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 08:06:39 +08:00
|
|
|
private void load()
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
2020-03-06 17:38:29 +08:00
|
|
|
blueWinVideo = new TourneyVideo("teamwin-blue")
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
|
|
|
Alpha = 1,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Loop = true,
|
|
|
|
},
|
2020-03-06 17:38:29 +08:00
|
|
|
redWinVideo = new TourneyVideo("teamwin-red")
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
|
|
|
Alpha = 0,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Loop = true,
|
|
|
|
},
|
|
|
|
mainContainer = new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
currentCompleted.BindValueChanged(_ => update());
|
|
|
|
}
|
|
|
|
|
2021-07-16 23:14:48 +08:00
|
|
|
protected override void CurrentMatchChanged(ValueChangedEvent<TournamentMatch> match)
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
2021-07-16 23:14:48 +08:00
|
|
|
base.CurrentMatchChanged(match);
|
|
|
|
|
2018-11-11 09:39:04 +08:00
|
|
|
currentCompleted.UnbindBindings();
|
|
|
|
|
2021-07-16 23:14:48 +08:00
|
|
|
if (match.NewValue == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
currentCompleted.BindTo(match.NewValue.Completed);
|
2018-11-11 09:39:04 +08:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2020-03-08 13:23:13 +08:00
|
|
|
private bool firstDisplay = true;
|
|
|
|
|
2022-07-13 16:57:45 +08:00
|
|
|
private void update() => Scheduler.AddOnce(() =>
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
2021-07-16 23:14:48 +08:00
|
|
|
var match = CurrentMatch.Value;
|
2018-11-11 09:39:04 +08:00
|
|
|
|
2019-06-18 13:57:05 +08:00
|
|
|
if (match.Winner == null)
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
|
|
|
mainContainer.Clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-06 15:08:05 +08:00
|
|
|
redWinVideo.Alpha = match.WinnerColour == TeamColour.Red ? 1 : 0;
|
|
|
|
blueWinVideo.Alpha = match.WinnerColour == TeamColour.Blue ? 1 : 0;
|
2018-11-11 09:39:04 +08:00
|
|
|
|
2020-03-08 13:23:13 +08:00
|
|
|
if (firstDisplay)
|
|
|
|
{
|
|
|
|
if (match.WinnerColour == TeamColour.Red)
|
|
|
|
redWinVideo.Reset();
|
|
|
|
else
|
|
|
|
blueWinVideo.Reset();
|
|
|
|
firstDisplay = false;
|
|
|
|
}
|
|
|
|
|
2018-11-11 09:39:04 +08:00
|
|
|
mainContainer.Children = new Drawable[]
|
|
|
|
{
|
2020-03-06 15:08:05 +08:00
|
|
|
new DrawableTeamFlag(match.Winner)
|
2020-03-03 18:14:44 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
2020-03-06 15:08:05 +08:00
|
|
|
Position = new Vector2(-300, 10),
|
2020-10-23 20:11:29 +08:00
|
|
|
Scale = new Vector2(2f)
|
2020-03-03 18:14:44 +08:00
|
|
|
},
|
2020-03-06 15:08:05 +08:00
|
|
|
new FillFlowContainer
|
2020-03-03 18:14:44 +08:00
|
|
|
{
|
2020-03-06 15:08:05 +08:00
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Direction = FillDirection.Vertical,
|
2020-03-03 18:14:44 +08:00
|
|
|
Anchor = Anchor.Centre,
|
2020-03-06 15:08:05 +08:00
|
|
|
Origin = Anchor.Centre,
|
|
|
|
X = 260,
|
|
|
|
Children = new Drawable[]
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
2020-03-06 15:08:05 +08:00
|
|
|
new RoundDisplay(match)
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
2020-03-06 15:08:05 +08:00
|
|
|
Margin = new MarginPadding { Bottom = 30 },
|
|
|
|
},
|
|
|
|
new TournamentSpriteText
|
2020-03-03 18:14:44 +08:00
|
|
|
{
|
2020-03-06 15:08:05 +08:00
|
|
|
Text = "WINNER",
|
|
|
|
Font = OsuFont.Torus.With(size: 100, weight: FontWeight.Bold),
|
|
|
|
Margin = new MarginPadding { Bottom = 50 },
|
|
|
|
},
|
|
|
|
new DrawableTeamWithPlayers(match.Winner, match.WinnerColour)
|
2020-03-03 18:14:44 +08:00
|
|
|
}
|
2020-03-06 15:08:05 +08:00
|
|
|
},
|
|
|
|
};
|
2020-03-08 13:23:13 +08:00
|
|
|
mainContainer.FadeOut();
|
|
|
|
mainContainer.Delay(2000).FadeIn(1600, Easing.OutQuint);
|
|
|
|
});
|
2018-11-11 09:39:04 +08:00
|
|
|
}
|
|
|
|
}
|