1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 20:47:24 +08:00
osu-lazer/osu.Game.Tournament/Screens/Ladder/Components/DrawableTournamentMatch.cs

311 lines
10 KiB
C#
Raw Normal View History

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.
using System;
using System.Collections.Generic;
using osu.Framework.Allocation;
2019-03-02 12:40:43 +08:00
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-09-22 04:52:25 +08:00
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input.Events;
2019-06-18 13:51:48 +08:00
using osu.Game.Tournament.Models;
using osuTK;
using osuTK.Graphics;
using osuTK.Input;
using SixLabors.Primitives;
namespace osu.Game.Tournament.Screens.Ladder.Components
{
2019-06-18 13:57:05 +08:00
public class DrawableTournamentMatch : CompositeDrawable
{
2019-06-18 13:57:05 +08:00
public readonly TournamentMatch Match;
private readonly bool editor;
2018-11-11 09:13:17 +08:00
protected readonly FillFlowContainer<DrawableMatchTeam> Flow;
2018-09-22 04:52:25 +08:00
private readonly Drawable selectionBox;
2020-03-07 12:26:54 +08:00
protected readonly Drawable CurrentMatchSelectionBox;
2019-06-18 13:57:05 +08:00
private Bindable<TournamentMatch> globalSelection;
2018-09-22 04:52:25 +08:00
[Resolved(CanBeNull = true)]
2018-11-06 13:49:20 +08:00
private LadderEditorInfo editorInfo { get; set; }
[Resolved(CanBeNull = true)]
private LadderInfo ladderInfo { get; set; }
2019-06-18 13:57:05 +08:00
public DrawableTournamentMatch(TournamentMatch match, bool editor = false)
{
2019-06-18 13:57:05 +08:00
Match = match;
this.editor = editor;
AutoSizeAxes = Axes.Both;
Margin = new MarginPadding(5);
2018-09-22 04:52:25 +08:00
InternalChildren = new[]
{
2018-09-22 04:52:25 +08:00
selectionBox = new Container
{
CornerRadius = 5,
Masking = true,
Scale = new Vector2(1.05f),
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Alpha = 0,
Colour = Color4.YellowGreen,
Child = new Box { RelativeSizeAxes = Axes.Both }
},
2020-03-07 12:26:54 +08:00
CurrentMatchSelectionBox = new Container
2018-11-07 00:20:32 +08:00
{
2020-03-07 12:26:54 +08:00
Scale = new Vector2(1.05f, 1.1f),
2018-11-07 00:20:32 +08:00
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Alpha = 0,
2020-03-07 15:38:50 +08:00
Colour = Color4.White,
2018-11-07 00:20:32 +08:00
Child = new Box { RelativeSizeAxes = Axes.Both }
},
2018-11-11 09:13:17 +08:00
Flow = new FillFlowContainer<DrawableMatchTeam>
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Spacing = new Vector2(2)
2018-09-16 04:35:51 +08:00
}
};
2019-06-18 13:57:05 +08:00
boundReference(match.Team1).BindValueChanged(_ => updateTeams());
boundReference(match.Team2).BindValueChanged(_ => updateTeams());
boundReference(match.Team1Score).BindValueChanged(_ => updateWinConditions());
boundReference(match.Team2Score).BindValueChanged(_ => updateWinConditions());
boundReference(match.Round).BindValueChanged(_ =>
{
updateWinConditions();
Changed?.Invoke();
});
2019-06-18 13:57:05 +08:00
boundReference(match.Completed).BindValueChanged(_ => updateProgression());
boundReference(match.Progression).BindValueChanged(_ => updateProgression());
boundReference(match.LosersProgression).BindValueChanged(_ => updateProgression());
boundReference(match.Losers).BindValueChanged(_ =>
{
updateTeams();
Changed?.Invoke();
});
2019-06-18 13:57:05 +08:00
boundReference(match.Current).BindValueChanged(_ => updateCurrentMatch(), true);
boundReference(match.Position).BindValueChanged(pos =>
{
if (!IsDragged)
Position = new Vector2(pos.NewValue.X, pos.NewValue.Y);
Changed?.Invoke();
}, true);
updateTeams();
}
/// <summary>
/// Fired when somethign changed that requires a ladder redraw.
/// </summary>
public Action Changed;
private readonly List<IUnbindable> refBindables = new List<IUnbindable>();
private T boundReference<T>(T obj)
where T : IBindable
{
obj = (T)obj.GetBoundCopy();
refBindables.Add(obj);
return obj;
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
foreach (var b in refBindables)
b.UnbindAll();
}
2018-11-07 00:20:32 +08:00
private void updateCurrentMatch()
{
2019-06-18 13:57:05 +08:00
if (Match.Current.Value)
2020-03-07 12:26:54 +08:00
CurrentMatchSelectionBox.Show();
2018-11-07 00:20:32 +08:00
else
2020-03-07 12:26:54 +08:00
CurrentMatchSelectionBox.Hide();
2018-11-07 00:20:32 +08:00
}
2018-09-22 04:52:25 +08:00
private bool selected;
public bool Selected
{
get => selected;
set
{
if (value == selected) return;
2019-03-02 12:52:56 +08:00
2018-09-22 04:52:25 +08:00
selected = value;
if (selected)
{
selectionBox.Show();
if (editor)
2019-06-18 13:57:05 +08:00
editorInfo.Selected.Value = Match;
else
2019-06-18 13:57:05 +08:00
ladderInfo.CurrentMatch.Value = Match;
2018-09-22 04:52:25 +08:00
}
else
selectionBox.Hide();
}
}
2018-08-26 17:37:46 +08:00
private void updateProgression()
{
2019-06-18 13:57:05 +08:00
if (!Match.Completed.Value)
2018-09-25 01:31:48 +08:00
{
// ensure we clear any of our teams from our progression.
// this is not pretty logic but should suffice for now.
2019-06-18 13:57:05 +08:00
if (Match.Progression.Value != null && Match.Progression.Value.Team1.Value == Match.Team1.Value)
Match.Progression.Value.Team1.Value = null;
2018-08-26 17:37:46 +08:00
2019-06-18 13:57:05 +08:00
if (Match.Progression.Value != null && Match.Progression.Value.Team2.Value == Match.Team2.Value)
Match.Progression.Value.Team2.Value = null;
2019-06-18 13:57:05 +08:00
if (Match.LosersProgression.Value != null && Match.LosersProgression.Value.Team1.Value == Match.Team1.Value)
Match.LosersProgression.Value.Team1.Value = null;
2018-08-26 17:37:46 +08:00
2019-06-18 13:57:05 +08:00
if (Match.LosersProgression.Value != null && Match.LosersProgression.Value.Team2.Value == Match.Team2.Value)
Match.LosersProgression.Value.Team2.Value = null;
}
else
2018-09-25 01:31:48 +08:00
{
2019-06-18 13:57:05 +08:00
transferProgression(Match.Progression?.Value, Match.Winner);
transferProgression(Match.LosersProgression?.Value, Match.Loser);
}
Changed?.Invoke();
}
2018-09-25 01:31:48 +08:00
2019-06-18 13:57:05 +08:00
private void transferProgression(TournamentMatch destination, TournamentTeam team)
{
if (destination == null) return;
2019-06-18 13:57:05 +08:00
bool progressionAbove = destination.ID < Match.ID;
Bindable<TournamentTeam> destinationTeam;
// check for the case where we have already transferred out value
if (destination.Team1.Value == team)
destinationTeam = destination.Team1;
else if (destination.Team2.Value == team)
destinationTeam = destination.Team2;
else
{
destinationTeam = progressionAbove ? destination.Team2 : destination.Team1;
if (destinationTeam.Value != null)
destinationTeam = progressionAbove ? destination.Team1 : destination.Team2;
2018-09-25 01:31:48 +08:00
}
destinationTeam.Value = team;
2018-08-26 17:37:46 +08:00
}
private void updateWinConditions()
{
2019-06-18 13:57:05 +08:00
if (Match.Round.Value == null) return;
2019-06-18 13:57:05 +08:00
var instaWinAmount = Match.Round.Value.BestOf.Value / 2;
2018-09-24 01:16:59 +08:00
2019-06-18 13:57:05 +08:00
Match.Completed.Value = Match.Round.Value.BestOf.Value > 0
&& (Match.Team1Score.Value + Match.Team2Score.Value >= Match.Round.Value.BestOf.Value || Match.Team1Score.Value > instaWinAmount || Match.Team2Score.Value > instaWinAmount);
}
2018-08-26 17:37:46 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
updateTeams();
2018-09-22 04:52:25 +08:00
if (editorInfo != null)
{
globalSelection = editorInfo.Selected.GetBoundCopy();
globalSelection.BindValueChanged(s =>
{
2019-06-18 13:57:05 +08:00
if (s.NewValue != Match) Selected = false;
2018-09-22 04:52:25 +08:00
});
}
2018-08-26 17:37:46 +08:00
}
private void updateTeams()
{
2018-08-26 17:37:46 +08:00
if (LoadState != LoadState.Loaded)
return;
// todo: teams may need to be bindable for transitions at a later point.
2019-06-18 13:57:05 +08:00
if (Match.Team1.Value == null || Match.Team2.Value == null)
Match.CancelMatchStart();
2019-06-18 13:57:05 +08:00
if (Match.ConditionalMatches.Count > 0)
2018-12-01 14:32:11 +08:00
{
2019-06-18 13:57:05 +08:00
foreach (var conditional in Match.ConditionalMatches)
2018-12-01 14:32:11 +08:00
{
2019-06-18 13:57:05 +08:00
var team1Match = conditional.Acronyms.Contains(Match.Team1Acronym);
var team2Match = conditional.Acronyms.Contains(Match.Team2Acronym);
2018-12-01 14:32:11 +08:00
if (team1Match && team2Match)
2019-06-18 13:57:05 +08:00
Match.Date.Value = conditional.Date.Value;
2018-12-01 14:32:11 +08:00
}
}
2018-11-11 09:13:17 +08:00
Flow.Children = new[]
{
2019-06-18 13:57:05 +08:00
new DrawableMatchTeam(Match.Team1.Value, Match, Match.Losers.Value),
new DrawableMatchTeam(Match.Team2.Value, Match, Match.Losers.Value)
};
2018-08-26 17:37:46 +08:00
2018-08-27 16:08:00 +08:00
SchedulerAfterChildren.Add(() => Scheduler.Add(updateProgression));
updateWinConditions();
}
protected override bool OnMouseDown(MouseDownEvent e) => e.Button == MouseButton.Left && editorInfo != null;
protected override bool OnDragStart(DragStartEvent e) => editorInfo != null;
protected override bool OnKeyDown(KeyDownEvent e)
2018-09-22 04:52:25 +08:00
{
if (Selected && editorInfo != null && e.Key == Key.Delete)
2018-09-22 04:52:25 +08:00
{
Remove();
return true;
}
return base.OnKeyDown(e);
2018-09-22 04:52:25 +08:00
}
protected override bool OnClick(ClickEvent e)
2018-09-22 04:52:25 +08:00
{
2019-06-18 13:57:05 +08:00
if (editorInfo == null || Match is ConditionalTournamentMatch)
2018-09-22 04:52:25 +08:00
return false;
Selected = true;
return true;
}
protected override void OnDrag(DragEvent e)
{
base.OnDrag(e);
2018-09-22 04:52:25 +08:00
Selected = true;
this.MoveToOffset(e.Delta);
var pos = Position;
2019-06-18 13:57:05 +08:00
Match.Position.Value = new Point((int)pos.X, (int)pos.Y);
}
2018-09-21 18:58:47 +08:00
public void Remove()
{
2018-09-22 04:52:25 +08:00
Selected = false;
2019-06-18 13:57:05 +08:00
Match.Progression.Value = null;
Match.LosersProgression.Value = null;
2018-09-22 04:52:25 +08:00
2019-06-18 13:57:05 +08:00
ladderInfo.Matches.Remove(Match);
2018-09-21 18:58:47 +08:00
}
}
}