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;
|
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;
|
2018-11-06 17:32:59 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Online.API.Requests;
|
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-11-11 16:39:48 +08:00
|
|
|
using osu.Game.Users;
|
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))]
|
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));
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-06-16 23:00:20 +08:00
|
|
|
private void load(Storage baseStorage)
|
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
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
if (storage.Exists(bracket_filename))
|
|
|
|
{
|
|
|
|
using (Stream stream = storage.GetStream(bracket_filename, FileAccess.Read, FileMode.Open))
|
|
|
|
using (var sr = new StreamReader(stream))
|
2021-01-08 16:08:01 +08:00
|
|
|
ladder = JsonConvert.DeserializeObject<LadderInfo>(sr.ReadToEnd(), new JsonPointConverter());
|
2019-03-04 12:13:31 +08:00
|
|
|
}
|
2020-03-03 17:09:25 +08:00
|
|
|
|
2020-06-03 15:48:44 +08:00
|
|
|
ladder ??= new LadderInfo();
|
|
|
|
ladder.Ruleset.Value ??= RulesetStore.AvailableRulesets.First();
|
2019-11-29 00:01:25 +08:00
|
|
|
|
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();
|
2021-02-12 15:55:34 +08:00
|
|
|
|
|
|
|
ladder.CurrentMatch.Value = ladder.Matches.FirstOrDefault(p => p.Current.Value);
|
|
|
|
|
|
|
|
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-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()
|
|
|
|
{
|
|
|
|
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
|
|
|
{
|
2021-03-02 03:42:53 +08:00
|
|
|
if (string.IsNullOrEmpty(p.Username)
|
|
|
|
|| p.Statistics?.GlobalRank == null
|
|
|
|
|| p.Statistics?.CountryRank == null)
|
2020-03-03 17:11:21 +08:00
|
|
|
{
|
2021-02-17 12:29:45 +08:00
|
|
|
PopulateUser(p, immediate: true);
|
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;
|
|
|
|
}
|
|
|
|
|
2021-02-17 12:29:45 +08:00
|
|
|
public void PopulateUser(User 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);
|
|
|
|
|
|
|
|
req.Success += res =>
|
|
|
|
{
|
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-02-17 16:21:33 +08:00
|
|
|
req.Failure += _ =>
|
|
|
|
{
|
|
|
|
user.Id = 1;
|
|
|
|
failure?.Invoke();
|
|
|
|
};
|
2019-11-11 16:39:48 +08:00
|
|
|
|
2021-02-17 12:29:45 +08:00
|
|
|
if (immediate)
|
|
|
|
API.Perform(req);
|
|
|
|
else
|
|
|
|
API.Queue(req);
|
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();
|
|
|
|
|
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,
|
2021-01-08 16:08:01 +08:00
|
|
|
Converters = new JsonConverter[] { new JsonPointConverter() }
|
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
|
|
|
}
|
|
|
|
}
|