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 17:32:59 +08:00
|
|
|
using System.IO;
|
2018-11-06 19:13:04 +08:00
|
|
|
using System.Linq;
|
2021-02-12 15:55:34 +08:00
|
|
|
using System.Threading.Tasks;
|
2018-11-06 17:32:59 +08:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
using osu.Framework.Allocation;
|
2021-10-27 17:20:10 +08:00
|
|
|
using osu.Framework.Graphics;
|
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;
|
2021-01-08 16:08:01 +08:00
|
|
|
using osu.Framework.Platform;
|
2021-10-27 17:20:10 +08:00
|
|
|
using osu.Game.Graphics;
|
2018-11-06 17:32:59 +08:00
|
|
|
using osu.Game.Online.API.Requests;
|
2021-10-27 17:20:10 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-06-09 23:28:42 +08:00
|
|
|
using osu.Game.Tournament.IO;
|
2021-01-08 16:08:01 +08:00
|
|
|
using osu.Game.Tournament.IPC;
|
2019-06-18 13:51:48 +08:00
|
|
|
using osu.Game.Tournament.Models;
|
2019-06-13 18:10:57 +08:00
|
|
|
using osuTK.Input;
|
2021-11-04 17:02:44 +08:00
|
|
|
using APIUser = osu.Game.Online.API.Requests.Responses.APIUser;
|
2018-11-06 17:32:59 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tournament
|
|
|
|
{
|
2019-11-11 16:39:48 +08:00
|
|
|
[Cached(typeof(TournamentGameBase))]
|
2020-06-10 03:14:05 +08:00
|
|
|
public class TournamentGameBase : OsuGameBase
|
2018-11-06 17:32:59 +08:00
|
|
|
{
|
|
|
|
private const string bracket_filename = "bracket.json";
|
2019-03-04 12:13:31 +08:00
|
|
|
private LadderInfo ladder;
|
2020-06-11 19:55:29 +08:00
|
|
|
private TournamentStorage storage;
|
2018-11-06 17:32:59 +08:00
|
|
|
private DependencyContainer dependencies;
|
2018-11-08 00:23:00 +08:00
|
|
|
private FileBasedIPC ipc;
|
2018-11-06 18:23:16 +08:00
|
|
|
|
2021-02-12 21:38:55 +08:00
|
|
|
protected Task BracketLoadTask => taskCompletionSource.Task;
|
|
|
|
|
|
|
|
private readonly TaskCompletionSource<bool> taskCompletionSource = new TaskCompletionSource<bool>();
|
2021-02-12 15:55:34 +08:00
|
|
|
|
2018-11-06 17:32:59 +08:00
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
|
|
|
{
|
|
|
|
return dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
|
|
|
}
|
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
private TournamentSpriteText initialisationText;
|
|
|
|
|
2018-11-06 17:32:59 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2020-06-16 23:00:20 +08:00
|
|
|
private void load(Storage baseStorage)
|
2018-11-06 17:32:59 +08:00
|
|
|
{
|
2021-10-27 17:20:10 +08:00
|
|
|
AddInternal(initialisationText = new TournamentSpriteText
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Font = OsuFont.Torus.With(size: 32),
|
|
|
|
});
|
|
|
|
|
2019-12-28 21:13:18 +08:00
|
|
|
Resources.AddStore(new DllResourceStore(typeof(TournamentGameBase).Assembly));
|
2018-11-06 23:27:12 +08:00
|
|
|
|
2020-06-24 06:14:44 +08:00
|
|
|
dependencies.CacheAs<Storage>(storage = new TournamentStorage(baseStorage));
|
2021-01-11 13:35:42 +08:00
|
|
|
dependencies.CacheAs(storage);
|
|
|
|
|
2020-10-19 14:48:33 +08:00
|
|
|
dependencies.Cache(new TournamentVideoResourceStore(storage));
|
2018-11-08 19:15:22 +08:00
|
|
|
|
2020-10-19 14:48:33 +08:00
|
|
|
Textures.AddStore(new TextureLoaderStore(new StorageBackedResourceStore(storage)));
|
2018-11-06 17:32:59 +08:00
|
|
|
|
2020-06-13 21:05:52 +08:00
|
|
|
dependencies.CacheAs(new StableInfo(storage));
|
2021-02-12 21:38:55 +08:00
|
|
|
|
|
|
|
Task.Run(readBracket);
|
2019-03-04 12:13:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void readBracket()
|
|
|
|
{
|
2021-10-25 15:46:07 +08:00
|
|
|
try
|
2019-03-04 12:13:31 +08:00
|
|
|
{
|
2021-10-25 15:46:07 +08:00
|
|
|
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(), new JsonPointConverter());
|
|
|
|
}
|
2021-07-30 01:12:03 +08:00
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
ladder ??= new LadderInfo();
|
2019-11-29 00:01:25 +08:00
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
ladder.Ruleset.Value = RulesetStore.GetRuleset(ladder.Ruleset.Value?.ShortName)
|
|
|
|
?? RulesetStore.AvailableRulesets.First();
|
2018-11-06 17:32:59 +08:00
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
bool addedInfo = false;
|
2018-12-01 14:32:11 +08:00
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
// assign teams
|
|
|
|
foreach (var match in ladder.Matches)
|
2018-12-01 14:32:11 +08:00
|
|
|
{
|
2021-10-25 15:46:07 +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);
|
|
|
|
|
|
|
|
foreach (var conditional in match.ConditionalMatches)
|
|
|
|
{
|
|
|
|
conditional.Team1.Value = ladder.Teams.FirstOrDefault(t => t.Acronym.Value == conditional.Team1Acronym);
|
|
|
|
conditional.Team2.Value = ladder.Teams.FirstOrDefault(t => t.Acronym.Value == conditional.Team2Acronym);
|
|
|
|
conditional.Round.Value = match.Round.Value;
|
|
|
|
}
|
2018-12-01 14:32:11 +08:00
|
|
|
}
|
2018-11-06 19:18:11 +08:00
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
// assign progressions
|
|
|
|
foreach (var pair in ladder.Progressions)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
if (src == null)
|
|
|
|
continue;
|
2018-11-06 19:18:11 +08:00
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
if (dest != null)
|
|
|
|
{
|
|
|
|
if (pair.Losers)
|
|
|
|
src.LosersProgression.Value = dest;
|
|
|
|
else
|
|
|
|
src.Progression.Value = dest;
|
|
|
|
}
|
2018-11-06 19:18:11 +08:00
|
|
|
}
|
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
// link matches to rounds
|
|
|
|
foreach (var round in ladder.Rounds)
|
2018-12-14 17:11:04 +08:00
|
|
|
{
|
2021-10-27 12:04:41 +08:00
|
|
|
foreach (int id in round.Matches)
|
2019-11-11 19:53:22 +08:00
|
|
|
{
|
2021-10-25 15:46:07 +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;
|
|
|
|
}
|
2019-11-11 19:53:22 +08:00
|
|
|
}
|
2018-12-14 17:11:04 +08:00
|
|
|
}
|
2018-11-06 19:18:11 +08:00
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
addedInfo |= addPlayers();
|
2021-10-27 17:20:10 +08:00
|
|
|
addedInfo |= addRoundBeatmaps();
|
|
|
|
addedInfo |= addSeedingBeatmaps();
|
2019-03-04 12:13:31 +08:00
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
if (addedInfo)
|
|
|
|
SaveChanges();
|
2021-02-12 15:55:34 +08:00
|
|
|
|
2021-10-25 15:46:07 +08:00
|
|
|
ladder.CurrentMatch.Value = ladder.Matches.FirstOrDefault(p => p.Current.Value);
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
taskCompletionSource.SetException(e);
|
|
|
|
return;
|
|
|
|
}
|
2021-02-12 15:55:34 +08:00
|
|
|
|
|
|
|
Schedule(() =>
|
|
|
|
{
|
2021-02-12 21:38:55 +08:00
|
|
|
Ruleset.BindTo(ladder.Ruleset);
|
|
|
|
|
2021-02-12 15:55:34 +08:00
|
|
|
dependencies.Cache(ladder);
|
|
|
|
dependencies.CacheAs<MatchIPCInfo>(ipc = new FileBasedIPC());
|
|
|
|
Add(ipc);
|
2021-02-12 21:38:55 +08:00
|
|
|
|
|
|
|
taskCompletionSource.SetResult(true);
|
2021-10-27 17:20:10 +08:00
|
|
|
|
|
|
|
initialisationText.Expire();
|
2021-02-12 15:55:34 +08:00
|
|
|
});
|
2019-03-04 12:13:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Add missing player info based on user IDs.
|
|
|
|
/// </summary>
|
|
|
|
private bool addPlayers()
|
|
|
|
{
|
2021-10-27 17:20:10 +08:00
|
|
|
var playersRequiringPopulation = ladder.Teams
|
|
|
|
.SelectMany(t => t.Players)
|
|
|
|
.Where(p => string.IsNullOrEmpty(p.Username)
|
|
|
|
|| p.Statistics?.GlobalRank == null
|
|
|
|
|| p.Statistics?.CountryRank == null).ToList();
|
2018-11-07 00:20:32 +08:00
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
if (playersRequiringPopulation.Count == 0)
|
|
|
|
return false;
|
2018-11-07 00:20:32 +08:00
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
for (int i = 0; i < playersRequiringPopulation.Count; i++)
|
2019-11-11 19:53:22 +08:00
|
|
|
{
|
2021-10-27 17:20:10 +08:00
|
|
|
var p = playersRequiringPopulation[i];
|
|
|
|
PopulateUser(p, immediate: true);
|
|
|
|
updateLoadProgressMessage($"Populating user stats ({i} / {playersRequiringPopulation.Count})");
|
2019-11-11 19:53:22 +08:00
|
|
|
}
|
2018-11-07 01:50:44 +08:00
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
return true;
|
2019-03-04 12:13:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Add missing beatmap info based on beatmap IDs
|
|
|
|
/// </summary>
|
2021-10-27 17:20:10 +08:00
|
|
|
private bool addRoundBeatmaps()
|
2019-03-04 12:13:31 +08:00
|
|
|
{
|
2021-10-27 17:20:10 +08:00
|
|
|
var beatmapsRequiringPopulation = ladder.Rounds
|
|
|
|
.SelectMany(r => r.Beatmaps)
|
2021-10-27 17:25:23 +08:00
|
|
|
.Where(b => string.IsNullOrEmpty(b.Beatmap?.BeatmapSet?.Title) && b.ID > 0).ToList();
|
2019-05-15 11:08:23 +08:00
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
if (beatmapsRequiringPopulation.Count == 0)
|
|
|
|
return false;
|
2020-01-19 21:26:15 +08:00
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
for (int i = 0; i < beatmapsRequiringPopulation.Count; i++)
|
|
|
|
{
|
|
|
|
var b = beatmapsRequiringPopulation[i];
|
2018-11-06 17:32:59 +08:00
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
var req = new GetBeatmapRequest(new APIBeatmap { OnlineID = b.ID });
|
|
|
|
API.Perform(req);
|
2021-10-27 17:25:23 +08:00
|
|
|
b.Beatmap = req.Response ?? new APIBeatmap();
|
2020-01-20 10:48:56 +08:00
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
updateLoadProgressMessage($"Populating round beatmaps ({i} / {beatmapsRequiringPopulation.Count})");
|
2019-11-11 19:53:22 +08:00
|
|
|
}
|
2018-11-06 17:32:59 +08:00
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Add missing beatmap info based on beatmap IDs
|
|
|
|
/// </summary>
|
|
|
|
private bool addSeedingBeatmaps()
|
|
|
|
{
|
|
|
|
var beatmapsRequiringPopulation = ladder.Teams
|
|
|
|
.SelectMany(r => r.SeedingResults)
|
|
|
|
.SelectMany(r => r.Beatmaps)
|
2021-10-27 17:25:23 +08:00
|
|
|
.Where(b => string.IsNullOrEmpty(b.Beatmap?.BeatmapSet?.Title) && b.ID > 0).ToList();
|
2021-10-27 17:20:10 +08:00
|
|
|
|
|
|
|
if (beatmapsRequiringPopulation.Count == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (int i = 0; i < beatmapsRequiringPopulation.Count; i++)
|
2020-03-03 17:12:42 +08:00
|
|
|
{
|
2021-10-27 17:20:10 +08:00
|
|
|
var b = beatmapsRequiringPopulation[i];
|
2020-03-03 17:12:42 +08:00
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
var req = new GetBeatmapRequest(new APIBeatmap { OnlineID = b.ID });
|
|
|
|
API.Perform(req);
|
2021-10-27 17:25:23 +08:00
|
|
|
b.Beatmap = req.Response ?? new APIBeatmap();
|
2021-10-27 17:20:10 +08:00
|
|
|
|
|
|
|
updateLoadProgressMessage($"Populating seeding beatmaps ({i} / {beatmapsRequiringPopulation.Count})");
|
2020-03-03 17:12:42 +08:00
|
|
|
}
|
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
return true;
|
2019-03-04 12:13:31 +08:00
|
|
|
}
|
|
|
|
|
2021-10-27 17:20:10 +08:00
|
|
|
private void updateLoadProgressMessage(string s) => Schedule(() => initialisationText.Text = s);
|
|
|
|
|
2021-11-04 17:02:44 +08:00
|
|
|
public void PopulateUser(APIUser user, Action success = null, Action failure = null, bool immediate = false)
|
2019-11-11 16:39:48 +08:00
|
|
|
{
|
|
|
|
var req = new GetUserRequest(user.Id, Ruleset.Value);
|
|
|
|
|
2021-10-27 16:45:46 +08:00
|
|
|
if (immediate)
|
|
|
|
{
|
|
|
|
API.Perform(req);
|
|
|
|
populate();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
req.Success += res => { populate(); };
|
|
|
|
req.Failure += _ =>
|
|
|
|
{
|
|
|
|
user.Id = 1;
|
|
|
|
failure?.Invoke();
|
|
|
|
};
|
|
|
|
|
|
|
|
API.Queue(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
void populate()
|
2019-11-11 16:39:48 +08:00
|
|
|
{
|
2021-10-27 16:45:46 +08:00
|
|
|
var res = req.Response;
|
|
|
|
|
|
|
|
if (res == null)
|
|
|
|
return;
|
|
|
|
|
2021-02-17 16:21:33 +08:00
|
|
|
user.Id = res.Id;
|
|
|
|
|
2019-11-11 16:39:48 +08:00
|
|
|
user.Username = res.Username;
|
|
|
|
user.Statistics = res.Statistics;
|
|
|
|
user.Country = res.Country;
|
|
|
|
user.Cover = res.Cover;
|
|
|
|
|
|
|
|
success?.Invoke();
|
2021-10-27 16:45:46 +08:00
|
|
|
}
|
2019-11-11 16:39:48 +08:00
|
|
|
}
|
|
|
|
|
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
|
2020-06-10 14:04:34 +08:00
|
|
|
|
|
|
|
// we don't want to show the menu cursor as it would appear on stream output.
|
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();
|
|
|
|
|
2021-10-28 14:04:09 +08:00
|
|
|
// Serialise before opening stream for writing, so if there's a failure it will leave the file in the previous state.
|
2021-10-28 14:00:30 +08:00
|
|
|
string serialisedLadder = JsonConvert.SerializeObject(ladder,
|
|
|
|
new JsonSerializerSettings
|
|
|
|
{
|
|
|
|
Formatting = Formatting.Indented,
|
|
|
|
NullValueHandling = NullValueHandling.Ignore,
|
|
|
|
DefaultValueHandling = DefaultValueHandling.Ignore,
|
|
|
|
Converters = new JsonConverter[] { new JsonPointConverter() }
|
|
|
|
});
|
|
|
|
|
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))
|
2021-10-28 14:00:30 +08:00
|
|
|
sw.Write(serialisedLadder);
|
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
|
|
|
}
|
|
|
|
}
|