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-06 17:32:59 +08:00
|
|
|
|
2019-11-11 16:39:48 +08:00
|
|
|
using System;
|
2018-11-06 18:23:16 +08:00
|
|
|
using System.Drawing;
|
2018-11-06 17:32:59 +08:00
|
|
|
using System.IO;
|
2018-11-06 19:13:04 +08:00
|
|
|
using System.Linq;
|
2018-11-06 17:32:59 +08:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
using osu.Framework.Allocation;
|
2019-03-02 12:40:43 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-11-06 17:32:59 +08:00
|
|
|
using osu.Framework.Configuration;
|
|
|
|
using osu.Framework.Graphics;
|
2019-07-30 06:42:19 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2018-11-08 19:15:22 +08:00
|
|
|
using osu.Framework.Graphics.Textures;
|
2019-06-13 18:10:57 +08:00
|
|
|
using osu.Framework.Input;
|
2018-11-06 23:27:12 +08:00
|
|
|
using osu.Framework.IO.Stores;
|
2018-11-06 17:32:59 +08:00
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Game.Beatmaps;
|
2019-07-30 06:42:19 +08:00
|
|
|
using osu.Game.Graphics;
|
2018-11-06 17:32:59 +08:00
|
|
|
using osu.Game.Online.API.Requests;
|
2018-11-08 00:23:00 +08:00
|
|
|
using osu.Game.Tournament.IPC;
|
2019-06-18 13:51:48 +08:00
|
|
|
using osu.Game.Tournament.Models;
|
2019-11-11 16:39:48 +08:00
|
|
|
using osu.Game.Users;
|
2019-07-30 06:42:19 +08:00
|
|
|
using osuTK.Graphics;
|
2019-06-13 18:10:57 +08:00
|
|
|
using osuTK.Input;
|
2018-11-06 17:32:59 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tournament
|
|
|
|
{
|
2019-11-11 16:39:48 +08:00
|
|
|
[Cached(typeof(TournamentGameBase))]
|
2018-11-06 17:32:59 +08:00
|
|
|
public abstract class TournamentGameBase : OsuGameBase
|
|
|
|
{
|
|
|
|
private const string bracket_filename = "bracket.json";
|
|
|
|
|
2019-03-04 12:13:31 +08:00
|
|
|
private LadderInfo ladder;
|
|
|
|
|
2018-11-06 17:32:59 +08:00
|
|
|
private Storage storage;
|
|
|
|
|
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
2018-11-06 18:23:16 +08:00
|
|
|
private Bindable<Size> windowSize;
|
2018-11-08 00:23:00 +08:00
|
|
|
private FileBasedIPC ipc;
|
2018-11-06 18:23:16 +08:00
|
|
|
|
2019-07-30 06:42:19 +08:00
|
|
|
private Drawable heightWarning;
|
|
|
|
|
2018-11-06 17:32:59 +08:00
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
|
|
|
{
|
|
|
|
return dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2018-11-06 18:23:16 +08:00
|
|
|
private void load(Storage storage, FrameworkConfigManager frameworkConfig)
|
2018-11-06 17:32:59 +08:00
|
|
|
{
|
2019-12-28 21:13:18 +08:00
|
|
|
Resources.AddStore(new DllResourceStore(typeof(TournamentGameBase).Assembly));
|
2018-11-06 23:27:12 +08:00
|
|
|
|
2018-11-08 19:15:22 +08:00
|
|
|
Textures.AddStore(new TextureLoaderStore(new ResourceStore<byte[]>(new StorageBackedResourceStore(storage))));
|
|
|
|
|
2018-11-06 17:32:59 +08:00
|
|
|
this.storage = storage;
|
|
|
|
|
2018-11-06 18:23:16 +08:00
|
|
|
windowSize = frameworkConfig.GetBindable<Size>(FrameworkSetting.WindowedSize);
|
2019-07-30 06:42:19 +08:00
|
|
|
windowSize.BindValueChanged(size => ScheduleAfterChildren(() =>
|
|
|
|
{
|
|
|
|
var minWidth = (int)(size.NewValue.Height / 9f * 16 + 400);
|
|
|
|
|
|
|
|
heightWarning.Alpha = size.NewValue.Width < minWidth ? 1 : 0;
|
|
|
|
}), true);
|
2018-11-06 18:23:16 +08:00
|
|
|
|
2019-03-04 12:13:31 +08:00
|
|
|
readBracket();
|
2018-11-06 19:13:04 +08:00
|
|
|
|
2019-06-18 13:57:05 +08:00
|
|
|
ladder.CurrentMatch.Value = ladder.Matches.FirstOrDefault(p => p.Current.Value);
|
2018-11-06 17:32:59 +08:00
|
|
|
|
2018-11-15 20:28:42 +08:00
|
|
|
dependencies.CacheAs<MatchIPCInfo>(ipc = new FileBasedIPC());
|
2018-11-08 00:23:00 +08:00
|
|
|
Add(ipc);
|
|
|
|
|
2019-07-30 06:42:19 +08:00
|
|
|
AddRange(new[]
|
2019-03-04 12:13:31 +08:00
|
|
|
{
|
2019-11-08 16:00:47 +08:00
|
|
|
new TourneyButton
|
2019-07-30 06:42:19 +08:00
|
|
|
{
|
|
|
|
Text = "Save Changes",
|
|
|
|
Width = 140,
|
|
|
|
Height = 50,
|
|
|
|
Depth = float.MinValue,
|
|
|
|
Anchor = Anchor.BottomRight,
|
|
|
|
Origin = Anchor.BottomRight,
|
|
|
|
Padding = new MarginPadding(10),
|
|
|
|
Action = SaveChanges,
|
|
|
|
},
|
|
|
|
heightWarning = new Container
|
|
|
|
{
|
|
|
|
Masking = true,
|
|
|
|
CornerRadius = 5,
|
|
|
|
Depth = float.MinValue,
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
Colour = Color4.Red,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
2020-03-03 18:14:44 +08:00
|
|
|
new TournamentSpriteText
|
2019-07-30 06:42:19 +08:00
|
|
|
{
|
|
|
|
Text = "Please make the window wider",
|
2020-03-03 18:14:44 +08:00
|
|
|
Font = OsuFont.Torus.With(weight: FontWeight.Bold),
|
2019-07-30 06:42:19 +08:00
|
|
|
Colour = Color4.White,
|
|
|
|
Padding = new MarginPadding(20)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-03-04 12:13:31 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void readBracket()
|
|
|
|
{
|
|
|
|
if (storage.Exists(bracket_filename))
|
|
|
|
{
|
|
|
|
using (Stream stream = storage.GetStream(bracket_filename, FileAccess.Read, FileMode.Open))
|
|
|
|
using (var sr = new StreamReader(stream))
|
|
|
|
ladder = JsonConvert.DeserializeObject<LadderInfo>(sr.ReadToEnd());
|
|
|
|
}
|
2020-03-03 17:09:25 +08:00
|
|
|
|
|
|
|
if (ladder == null)
|
2019-03-04 12:13:31 +08:00
|
|
|
ladder = new LadderInfo();
|
|
|
|
|
2019-11-29 00:01:25 +08:00
|
|
|
if (ladder.Ruleset.Value == null)
|
|
|
|
ladder.Ruleset.Value = RulesetStore.AvailableRulesets.First();
|
|
|
|
|
2019-11-11 16:03:50 +08:00
|
|
|
Ruleset.BindTo(ladder.Ruleset);
|
|
|
|
|
2019-03-04 12:13:31 +08:00
|
|
|
dependencies.Cache(ladder);
|
|
|
|
|
2018-11-06 17:32:59 +08:00
|
|
|
bool addedInfo = false;
|
|
|
|
|
2018-11-06 19:18:11 +08:00
|
|
|
// assign teams
|
2019-06-18 13:57:05 +08:00
|
|
|
foreach (var match in ladder.Matches)
|
2018-11-06 19:18:11 +08:00
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
match.Team1.Value = ladder.Teams.FirstOrDefault(t => t.Acronym.Value == match.Team1Acronym);
|
|
|
|
match.Team2.Value = ladder.Teams.FirstOrDefault(t => t.Acronym.Value == match.Team2Acronym);
|
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-17 15:28:58 +08:00
|
|
|
conditional.Team1.Value = ladder.Teams.FirstOrDefault(t => t.Acronym.Value == conditional.Team1Acronym);
|
|
|
|
conditional.Team2.Value = ladder.Teams.FirstOrDefault(t => t.Acronym.Value == conditional.Team2Acronym);
|
2019-06-18 13:57:05 +08:00
|
|
|
conditional.Round.Value = match.Round.Value;
|
2018-12-01 14:32:11 +08:00
|
|
|
}
|
2018-11-06 19:18:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// assign progressions
|
2019-03-04 12:13:31 +08:00
|
|
|
foreach (var pair in ladder.Progressions)
|
2018-11-06 19:18:11 +08:00
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
var src = ladder.Matches.FirstOrDefault(p => p.ID == pair.SourceID);
|
|
|
|
var dest = ladder.Matches.FirstOrDefault(p => p.ID == pair.TargetID);
|
2018-11-06 19:18:11 +08:00
|
|
|
|
2019-06-18 14:18:06 +08:00
|
|
|
if (src == null)
|
|
|
|
continue;
|
2018-11-06 19:18:11 +08:00
|
|
|
|
|
|
|
if (dest != null)
|
|
|
|
{
|
|
|
|
if (pair.Losers)
|
|
|
|
src.LosersProgression.Value = dest;
|
|
|
|
else
|
|
|
|
src.Progression.Value = dest;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-18 13:57:05 +08:00
|
|
|
// link matches to rounds
|
2019-06-18 13:44:15 +08:00
|
|
|
foreach (var round in ladder.Rounds)
|
2018-11-15 13:12:51 +08:00
|
|
|
{
|
2019-11-11 19:53:22 +08:00
|
|
|
foreach (var id in round.Matches)
|
2018-12-14 17:11:04 +08:00
|
|
|
{
|
2019-11-11 19:53:22 +08:00
|
|
|
var found = ladder.Matches.FirstOrDefault(p => p.ID == id);
|
|
|
|
|
|
|
|
if (found != null)
|
|
|
|
{
|
|
|
|
found.Round.Value = round;
|
|
|
|
if (round.StartDate.Value > found.Date.Value)
|
|
|
|
found.Date.Value = round.StartDate.Value;
|
|
|
|
}
|
2018-12-14 17:11:04 +08:00
|
|
|
}
|
2018-11-15 13:12:51 +08:00
|
|
|
}
|
2018-11-06 19:18:11 +08:00
|
|
|
|
2019-03-04 12:13:31 +08:00
|
|
|
addedInfo |= addPlayers();
|
|
|
|
addedInfo |= addBeatmaps();
|
|
|
|
|
|
|
|
if (addedInfo)
|
|
|
|
SaveChanges();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Add missing player info based on user IDs.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
|
|
|
private bool addPlayers()
|
|
|
|
{
|
|
|
|
bool addedInfo = false;
|
2018-11-07 00:20:32 +08:00
|
|
|
|
2019-03-04 12:13:31 +08:00
|
|
|
foreach (var t in ladder.Teams)
|
2019-11-11 19:53:22 +08:00
|
|
|
{
|
|
|
|
foreach (var p in t.Players)
|
2018-11-07 01:50:44 +08:00
|
|
|
{
|
2020-03-03 17:11:21 +08:00
|
|
|
if (string.IsNullOrEmpty(p.Username) || p.Statistics == null)
|
|
|
|
{
|
2019-11-23 19:52:55 +08:00
|
|
|
PopulateUser(p);
|
2020-03-03 17:11:21 +08:00
|
|
|
addedInfo = true;
|
|
|
|
}
|
2018-11-07 01:50:44 +08:00
|
|
|
}
|
2019-11-11 19:53:22 +08:00
|
|
|
}
|
2018-11-07 01:50:44 +08:00
|
|
|
|
2019-03-04 12:13:31 +08:00
|
|
|
return addedInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Add missing beatmap info based on beatmap IDs
|
|
|
|
/// </summary>
|
|
|
|
private bool addBeatmaps()
|
|
|
|
{
|
|
|
|
bool addedInfo = false;
|
2019-05-15 11:08:23 +08:00
|
|
|
|
2019-06-18 13:44:15 +08:00
|
|
|
foreach (var r in ladder.Rounds)
|
2019-11-11 19:53:22 +08:00
|
|
|
{
|
2020-01-19 21:26:15 +08:00
|
|
|
foreach (var b in r.Beatmaps.ToList())
|
2018-11-06 17:32:59 +08:00
|
|
|
{
|
2020-01-20 10:48:56 +08:00
|
|
|
if (b.BeatmapInfo != null)
|
|
|
|
continue;
|
2020-01-19 21:26:15 +08:00
|
|
|
|
2020-01-20 10:48:56 +08:00
|
|
|
if (b.ID > 0)
|
|
|
|
{
|
|
|
|
var req = new GetBeatmapRequest(new BeatmapInfo { OnlineBeatmapID = b.ID });
|
|
|
|
API.Perform(req);
|
|
|
|
b.BeatmapInfo = req.Result?.ToBeatmap(RulesetStore);
|
2018-11-06 17:32:59 +08:00
|
|
|
|
2020-01-20 10:48:56 +08:00
|
|
|
addedInfo = true;
|
2019-11-11 19:53:22 +08:00
|
|
|
}
|
2020-01-20 10:48:56 +08:00
|
|
|
|
|
|
|
if (b.BeatmapInfo == null)
|
|
|
|
// if online population couldn't be performed, ensure we don't leave a null value behind
|
|
|
|
r.Beatmaps.Remove(b);
|
2018-11-06 17:32:59 +08:00
|
|
|
}
|
2019-11-11 19:53:22 +08:00
|
|
|
}
|
2018-11-06 17:32:59 +08:00
|
|
|
|
2020-03-03 17:12:42 +08:00
|
|
|
foreach (var t in ladder.Teams)
|
|
|
|
{
|
|
|
|
foreach (var s in t.SeedingResults)
|
|
|
|
{
|
|
|
|
foreach (var b in s.Beatmaps)
|
|
|
|
{
|
|
|
|
if (b.BeatmapInfo == null && b.ID > 0)
|
|
|
|
{
|
|
|
|
var req = new GetBeatmapRequest(new BeatmapInfo { OnlineBeatmapID = b.ID });
|
|
|
|
req.Perform(API);
|
|
|
|
b.BeatmapInfo = req.Result?.ToBeatmap(RulesetStore);
|
|
|
|
|
|
|
|
addedInfo = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-04 12:13:31 +08:00
|
|
|
return addedInfo;
|
|
|
|
}
|
|
|
|
|
2019-11-11 16:39:48 +08:00
|
|
|
public void PopulateUser(User user, Action success = null, Action failure = null)
|
|
|
|
{
|
|
|
|
var req = new GetUserRequest(user.Id, Ruleset.Value);
|
|
|
|
|
|
|
|
req.Success += res =>
|
|
|
|
{
|
|
|
|
user.Username = res.Username;
|
|
|
|
user.Statistics = res.Statistics;
|
|
|
|
user.Country = res.Country;
|
|
|
|
user.Cover = res.Cover;
|
|
|
|
|
|
|
|
success?.Invoke();
|
|
|
|
};
|
|
|
|
|
|
|
|
req.Failure += _ =>
|
|
|
|
{
|
|
|
|
user.Id = 1;
|
|
|
|
failure?.Invoke();
|
|
|
|
};
|
|
|
|
|
|
|
|
API.Queue(req);
|
|
|
|
}
|
|
|
|
|
2018-11-06 17:32:59 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
2019-06-14 15:28:59 +08:00
|
|
|
MenuCursorContainer.Cursor.AlwaysPresent = true; // required for tooltip display
|
2018-11-06 17:32:59 +08:00
|
|
|
MenuCursorContainer.Cursor.Alpha = 0;
|
2019-06-14 15:28:59 +08:00
|
|
|
|
2018-11-09 15:26:09 +08:00
|
|
|
base.LoadComplete();
|
2018-11-06 17:32:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void SaveChanges()
|
|
|
|
{
|
2019-06-18 13:44:15 +08:00
|
|
|
foreach (var r in ladder.Rounds)
|
2019-06-18 13:57:05 +08:00
|
|
|
r.Matches = ladder.Matches.Where(p => p.Round.Value == r).Select(p => p.ID).ToList();
|
2019-06-14 18:16:20 +08:00
|
|
|
|
2019-06-18 13:57:05 +08:00
|
|
|
ladder.Progressions = ladder.Matches.Where(p => p.Progression.Value != null).Select(p => new TournamentProgression(p.ID, p.Progression.Value.ID)).Concat(
|
|
|
|
ladder.Matches.Where(p => p.LosersProgression.Value != null).Select(p => new TournamentProgression(p.ID, p.LosersProgression.Value.ID, true)))
|
2019-06-14 18:16:20 +08:00
|
|
|
.ToList();
|
|
|
|
|
2018-11-06 17:32:59 +08:00
|
|
|
using (var stream = storage.GetStream(bracket_filename, FileAccess.Write, FileMode.Create))
|
|
|
|
using (var sw = new StreamWriter(stream))
|
|
|
|
{
|
2019-03-04 12:13:31 +08:00
|
|
|
sw.Write(JsonConvert.SerializeObject(ladder,
|
2018-11-06 17:32:59 +08:00
|
|
|
new JsonSerializerSettings
|
|
|
|
{
|
2019-06-22 21:42:11 +08:00
|
|
|
Formatting = Formatting.Indented,
|
2018-11-06 17:32:59 +08:00
|
|
|
NullValueHandling = NullValueHandling.Ignore,
|
2018-11-09 16:54:05 +08:00
|
|
|
DefaultValueHandling = DefaultValueHandling.Ignore,
|
2018-11-06 17:32:59 +08:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
2019-06-13 18:10:57 +08:00
|
|
|
|
|
|
|
protected override UserInputManager CreateUserInputManager() => new TournamentInputManager();
|
|
|
|
|
|
|
|
private class TournamentInputManager : UserInputManager
|
|
|
|
{
|
2020-01-22 22:13:21 +08:00
|
|
|
protected override MouseButtonEventManager CreateButtonEventManagerFor(MouseButton button)
|
2019-06-13 18:10:57 +08:00
|
|
|
{
|
|
|
|
switch (button)
|
|
|
|
{
|
|
|
|
case MouseButton.Right:
|
|
|
|
return new RightMouseManager(button);
|
|
|
|
}
|
|
|
|
|
2020-01-22 22:13:21 +08:00
|
|
|
return base.CreateButtonEventManagerFor(button);
|
2019-06-13 18:10:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private class RightMouseManager : MouseButtonEventManager
|
|
|
|
{
|
|
|
|
public RightMouseManager(MouseButton button)
|
|
|
|
: base(button)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool EnableDrag => true; // allow right-mouse dragging for absolute scroll in scroll containers.
|
|
|
|
public override bool EnableClick => true;
|
|
|
|
public override bool ChangeFocusOnClick => false;
|
|
|
|
}
|
|
|
|
}
|
2018-11-06 17:32:59 +08:00
|
|
|
}
|
|
|
|
}
|