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-16 19:14:34 +08:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
using osu.Framework.Input.States;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2019-06-18 13:51:48 +08:00
|
|
|
using osu.Game.Tournament.Models;
|
|
|
|
using osu.Game.Tournament.Screens.Ladder;
|
2018-11-16 19:14:34 +08:00
|
|
|
using osu.Game.Tournament.Screens.Ladder.Components;
|
2018-11-22 09:25:30 +08:00
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
2018-11-16 19:14:34 +08:00
|
|
|
using SixLabors.Primitives;
|
|
|
|
|
2019-06-18 13:51:48 +08:00
|
|
|
namespace osu.Game.Tournament.Screens.Editors
|
2018-11-16 19:14:34 +08:00
|
|
|
{
|
|
|
|
[Cached]
|
|
|
|
public class LadderEditorScreen : LadderScreen, IHasContextMenu
|
|
|
|
{
|
|
|
|
[Cached]
|
|
|
|
private LadderEditorInfo editorInfo = new LadderEditorInfo();
|
|
|
|
|
2019-06-14 18:16:20 +08:00
|
|
|
protected override bool DrawLoserPaths => true;
|
|
|
|
|
2018-11-16 19:14:34 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2019-06-13 16:04:57 +08:00
|
|
|
Content.Add(new LadderEditorSettings
|
2018-11-16 19:14:34 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
Margin = new MarginPadding(5)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-06-18 13:57:05 +08:00
|
|
|
public void BeginJoin(TournamentMatch match, bool losers)
|
2018-11-16 19:14:34 +08:00
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
ScrollContent.Add(new JoinVisualiser(MatchesContainer, match, losers, UpdateLayout));
|
2018-11-16 19:14:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public MenuItem[] ContextMenuItems
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (editorInfo == null)
|
|
|
|
return new MenuItem[0];
|
|
|
|
|
|
|
|
return new MenuItem[]
|
|
|
|
{
|
|
|
|
new OsuMenuItem("Create new match", MenuItemType.Highlighted, () =>
|
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
var pos = MatchesContainer.ToLocalSpace(GetContainingInputManager().CurrentState.Mouse.Position);
|
|
|
|
LadderInfo.Matches.Add(new TournamentMatch { Position = { Value = new Point((int)pos.X, (int)pos.Y) } });
|
2018-11-16 19:14:34 +08:00
|
|
|
}),
|
2019-02-06 17:36:15 +08:00
|
|
|
new OsuMenuItem("Reset teams", MenuItemType.Destructive, () =>
|
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
foreach (var p in MatchesContainer)
|
|
|
|
p.Match.Reset();
|
2019-02-06 17:36:15 +08:00
|
|
|
})
|
2018-11-16 19:14:34 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-18 13:57:05 +08:00
|
|
|
public void Remove(TournamentMatch match)
|
2018-11-16 19:14:34 +08:00
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
MatchesContainer.FirstOrDefault(p => p.Match == match)?.Remove();
|
2018-11-16 19:14:34 +08:00
|
|
|
}
|
|
|
|
|
2019-06-13 16:04:57 +08:00
|
|
|
private class JoinVisualiser : CompositeDrawable
|
2018-11-16 19:14:34 +08:00
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
private readonly Container<DrawableTournamentMatch> matchesContainer;
|
|
|
|
public readonly TournamentMatch Source;
|
2018-11-16 19:14:34 +08:00
|
|
|
private readonly bool losers;
|
|
|
|
private readonly Action complete;
|
|
|
|
|
|
|
|
private ProgressionPath path;
|
|
|
|
|
2019-06-18 13:57:05 +08:00
|
|
|
public JoinVisualiser(Container<DrawableTournamentMatch> matchesContainer, TournamentMatch source, bool losers, Action complete)
|
2018-11-16 19:14:34 +08:00
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
this.matchesContainer = matchesContainer;
|
2018-11-16 19:14:34 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
Source = source;
|
|
|
|
this.losers = losers;
|
|
|
|
this.complete = complete;
|
|
|
|
if (losers)
|
|
|
|
Source.LosersProgression.Value = null;
|
|
|
|
else
|
|
|
|
Source.Progression.Value = null;
|
|
|
|
}
|
|
|
|
|
2019-06-18 13:57:05 +08:00
|
|
|
private DrawableTournamentMatch findTarget(InputState state)
|
2018-11-16 19:14:34 +08:00
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
return matchesContainer.FirstOrDefault(d => d.ReceivePositionalInputAt(state.Mouse.Position));
|
2018-11-16 19:14:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool OnMouseMove(MouseMoveEvent e)
|
|
|
|
{
|
|
|
|
var found = findTarget(e.CurrentState);
|
|
|
|
|
|
|
|
if (found == path?.Destination)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
path?.Expire();
|
|
|
|
path = null;
|
|
|
|
|
|
|
|
if (found == null)
|
|
|
|
return false;
|
|
|
|
|
2019-06-18 13:57:05 +08:00
|
|
|
AddInternal(path = new ProgressionPath(matchesContainer.First(c => c.Match == Source), found)
|
2018-11-16 19:14:34 +08:00
|
|
|
{
|
|
|
|
Colour = Color4.Yellow,
|
|
|
|
});
|
|
|
|
|
|
|
|
return base.OnMouseMove(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
|
|
{
|
|
|
|
var found = findTarget(e.CurrentState);
|
|
|
|
|
|
|
|
if (found != null)
|
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
if (found.Match != Source)
|
2018-11-16 19:14:34 +08:00
|
|
|
{
|
|
|
|
if (losers)
|
2019-06-18 13:57:05 +08:00
|
|
|
Source.LosersProgression.Value = found.Match;
|
2018-11-16 19:14:34 +08:00
|
|
|
else
|
2019-06-18 13:57:05 +08:00
|
|
|
Source.Progression.Value = found.Match;
|
2018-11-16 19:14:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
complete?.Invoke();
|
|
|
|
Expire();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|