1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 22:07:29 +08:00
osu-lazer/osu.Game.Tournament/Screens/MapPool/MapPoolScreen.cs

205 lines
7.4 KiB
C#
Raw Normal View History

2018-11-06 15:15:03 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-11-08 05:29:04 +08:00
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-11-08 05:29:04 +08:00
using osu.Framework.Input.Events;
2018-11-08 05:36:36 +08:00
using osu.Game.Beatmaps;
2018-11-08 05:29:04 +08:00
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Tournament.Components;
2018-11-08 05:36:36 +08:00
using osu.Game.Tournament.IPC;
2018-11-10 16:26:21 +08:00
using osu.Game.Tournament.Screens.Gameplay;
using osu.Game.Tournament.Screens.Ladder.Components;
using OpenTK;
2018-11-08 05:47:42 +08:00
using OpenTK.Graphics;
2018-11-08 05:29:04 +08:00
using OpenTK.Input;
namespace osu.Game.Tournament.Screens.MapPool
{
public class MapPoolScreen : TournamentScreen
{
2018-11-08 05:29:04 +08:00
private readonly FillFlowContainer<TournamentBeatmapPanel> maps;
private readonly Bindable<MatchPairing> currentMatch = new Bindable<MatchPairing>();
2018-11-08 05:36:36 +08:00
private TeamColour pickColour;
private ChoiceType pickType;
private readonly TriangleButton buttonRedBan;
private readonly TriangleButton buttonBlueBan;
private readonly TriangleButton buttonRedPick;
private readonly TriangleButton buttonBluePick;
2018-11-08 05:29:04 +08:00
public MapPoolScreen()
{
InternalChildren = new Drawable[]
{
2018-11-10 16:26:21 +08:00
new MatchHeader(),
2018-11-08 05:29:04 +08:00
maps = new FillFlowContainer<TournamentBeatmapPanel>
{
2018-11-10 16:26:21 +08:00
Y = 100,
Spacing = new Vector2(10),
Padding = new MarginPadding(50),
Direction = FillDirection.Full,
RelativeSizeAxes = Axes.Both,
2018-11-08 05:29:04 +08:00
},
new ControlPanel
{
Children = new Drawable[]
{
new OsuSpriteText
{
Text = "Current Mode"
},
buttonRedBan = new TriangleButton
{
RelativeSizeAxes = Axes.X,
Text = "Red Ban",
Action = () => setMode(TeamColour.Red, ChoiceType.Ban)
},
buttonBlueBan = new TriangleButton
{
RelativeSizeAxes = Axes.X,
Text = "Blue Ban",
Action = () => setMode(TeamColour.Blue, ChoiceType.Ban)
},
buttonRedPick = new TriangleButton
{
RelativeSizeAxes = Axes.X,
Text = "Red Pick",
Action = () => setMode(TeamColour.Red, ChoiceType.Pick)
},
buttonBluePick = new TriangleButton
{
RelativeSizeAxes = Axes.X,
Text = "Blue Pick",
Action = () => setMode(TeamColour.Blue, ChoiceType.Pick)
2018-11-08 05:47:42 +08:00
},
new ControlPanel.Spacer(),
new TriangleButton
{
RelativeSizeAxes = Axes.X,
Text = "Reset",
Action = reset
},
2018-11-08 05:29:04 +08:00
}
}
};
2018-11-08 05:29:04 +08:00
}
2018-11-08 05:36:36 +08:00
[BackgroundDependencyLoader]
private void load(LadderInfo ladder, FileBasedIPC ipc)
{
currentMatch.BindValueChanged(matchChanged);
currentMatch.BindTo(ladder.CurrentMatch);
2018-11-08 05:29:04 +08:00
2018-11-08 05:36:36 +08:00
ipc.Beatmap.BindValueChanged(beatmapChanged);
}
private void beatmapChanged(BeatmapInfo beatmap)
{
2018-11-10 23:48:22 +08:00
if (currentMatch.Value.PicksBans.Count(p => p.Type == ChoiceType.Ban) < 2)
return;
2018-11-08 05:36:36 +08:00
if (beatmap.OnlineBeatmapID != null)
addForBeatmap(beatmap.OnlineBeatmapID.Value);
}
2018-11-08 05:29:04 +08:00
private void setMode(TeamColour colour, ChoiceType choiceType)
{
pickColour = colour;
pickType = choiceType;
2018-11-08 05:47:42 +08:00
Color4 setColour(bool active) => active ? Color4.White : Color4.Gray;
2018-11-08 05:29:04 +08:00
2018-11-08 05:47:42 +08:00
buttonRedBan.Colour = setColour(pickColour == TeamColour.Red && pickType == ChoiceType.Ban);
buttonBlueBan.Colour = setColour(pickColour == TeamColour.Blue && pickType == ChoiceType.Ban);
buttonRedPick.Colour = setColour(pickColour == TeamColour.Red && pickType == ChoiceType.Pick);
buttonBluePick.Colour = setColour(pickColour == TeamColour.Blue && pickType == ChoiceType.Pick);
2018-11-08 05:29:04 +08:00
}
private void setNextMode()
{
const TeamColour roll_winner = TeamColour.Red; //todo: draw from match
var nextColour = (currentMatch.Value.PicksBans.LastOrDefault()?.Team ?? roll_winner) == TeamColour.Red ? TeamColour.Blue : TeamColour.Red;
2018-11-10 23:48:22 +08:00
if (pickType == ChoiceType.Ban && currentMatch.Value.PicksBans.Count(p => p.Type == ChoiceType.Ban) >= 2)
setMode(pickColour, ChoiceType.Pick);
else
setMode(nextColour, currentMatch.Value.PicksBans.Count(p => p.Type == ChoiceType.Ban) >= 2 ? ChoiceType.Pick : ChoiceType.Ban);
2018-11-08 05:29:04 +08:00
}
protected override bool OnMouseDown(MouseDownEvent e)
{
var map = maps.FirstOrDefault(m => m.ReceivePositionalInputAt(e.ScreenSpaceMousePosition));
if (map != null)
{
2018-11-08 05:36:36 +08:00
if (e.Button == MouseButton.Left && map.Beatmap.OnlineBeatmapID != null)
addForBeatmap(map.Beatmap.OnlineBeatmapID.Value);
2018-11-08 05:29:04 +08:00
else
{
var existing = currentMatch.Value.PicksBans.FirstOrDefault(p => p.BeatmapID == map.Beatmap.OnlineBeatmapID);
if (existing != null)
{
currentMatch.Value.PicksBans.Remove(existing);
setNextMode();
}
}
return true;
}
return base.OnMouseDown(e);
}
2018-11-08 05:47:42 +08:00
private void reset()
{
currentMatch.Value.PicksBans.Clear();
setNextMode();
}
2018-11-08 05:36:36 +08:00
private void addForBeatmap(int beatmapId)
2018-11-08 05:29:04 +08:00
{
2018-11-08 12:08:59 +08:00
if (currentMatch.Value == null)
return;
2018-11-08 05:36:36 +08:00
if (currentMatch.Value.Grouping.Value.Beatmaps.All(b => b.BeatmapInfo.OnlineBeatmapID != beatmapId))
// don't attempt to add if the beatmap isn't in our pool
return;
if (currentMatch.Value.PicksBans.Any(p => p.BeatmapID == beatmapId))
// don't attempt to add if already exists.
return;
currentMatch.Value.PicksBans.Add(new BeatmapChoice
{
Team = pickColour,
Type = pickType,
BeatmapID = beatmapId
});
setNextMode();
2018-11-08 05:29:04 +08:00
}
private void matchChanged(MatchPairing match)
{
maps.Clear();
if (match.Grouping.Value != null)
{
foreach (var b in match.Grouping.Value.Beatmaps)
maps.Add(new TournamentBeatmapPanel(b.BeatmapInfo)
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
});
}
}
}
}