1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 18:07:25 +08:00
osu-lazer/osu.Game.Tournament/TournamentGameBase.cs

315 lines
11 KiB
C#
Raw Normal View History

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
using System;
2018-11-06 17:32:59 +08:00
using System.IO;
2018-11-06 19:13:04 +08:00
using System.Linq;
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;
using osu.Framework.Platform;
2018-11-06 17:32:59 +08:00
using osu.Game.Beatmaps;
using osu.Game.Online.API.Requests;
using osu.Game.Tournament.IO;
using osu.Game.Tournament.IPC;
2019-06-18 13:51:48 +08:00
using osu.Game.Tournament.Models;
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
{
[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;
2021-02-12 21:38:55 +08:00
protected Task BracketLoadTask => taskCompletionSource.Task;
private readonly TaskCompletionSource<bool> taskCompletionSource = new TaskCompletionSource<bool>();
2018-11-06 17:32:59 +08:00
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
{
return dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
}
[BackgroundDependencyLoader]
private void load(Storage baseStorage)
2018-11-06 17:32:59 +08:00
{
Resources.AddStore(new DllResourceStore(typeof(TournamentGameBase).Assembly));
2018-11-06 23:27:12 +08:00
dependencies.CacheAs<Storage>(storage = new TournamentStorage(baseStorage));
dependencies.CacheAs(storage);
dependencies.Cache(new TournamentVideoResourceStore(storage));
2018-11-08 19:15:22 +08:00
Textures.AddStore(new TextureLoaderStore(new StorageBackedResourceStore(storage)));
2018-11-06 17:32:59 +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()
{
try
2019-03-04 12:13:31 +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());
}
ladder ??= new LadderInfo();
ladder.Ruleset.Value = RulesetStore.GetRuleset(ladder.Ruleset.Value?.ShortName)
?? RulesetStore.AvailableRulesets.First();
2018-11-06 17:32:59 +08:00
bool addedInfo = false;
2018-12-01 14:32:11 +08:00
// assign teams
foreach (var match in ladder.Matches)
2018-12-01 14:32:11 +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
// 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
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;
}
2018-11-06 19:18:11 +08:00
}
// link matches to rounds
foreach (var round in ladder.Rounds)
{
foreach (var id in round.Matches)
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;
}
2019-11-11 19:53:22 +08:00
}
}
2018-11-06 19:18:11 +08:00
addedInfo |= addPlayers();
addedInfo |= addBeatmaps();
2019-03-04 12:13:31 +08:00
if (addedInfo)
SaveChanges();
ladder.CurrentMatch.Value = ladder.Matches.FirstOrDefault(p => p.Current.Value);
}
catch (Exception e)
{
taskCompletionSource.SetException(e);
return;
}
Schedule(() =>
{
2021-02-12 21:38:55 +08:00
Ruleset.BindTo(ladder.Ruleset);
dependencies.Cache(ladder);
dependencies.CacheAs<MatchIPCInfo>(ipc = new FileBasedIPC());
Add(ipc);
2021-02-12 21:38:55 +08:00
taskCompletionSource.SetResult(true);
});
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)
{
if (string.IsNullOrEmpty(p.Username)
|| p.Statistics?.GlobalRank == null
|| p.Statistics?.CountryRank == null)
{
PopulateUser(p, immediate: true);
addedInfo = true;
}
}
2019-11-11 19:53:22 +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-06-18 13:44:15 +08:00
foreach (var r in ladder.Rounds)
2019-11-11 19:53:22 +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-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.Response?.ToBeatmapInfo(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.Response?.ToBeatmapInfo(RulesetStore);
2020-03-03 17:12:42 +08:00
addedInfo = true;
}
}
}
}
2019-03-04 12:13:31 +08:00
return addedInfo;
}
public void PopulateUser(User user, Action success = null, Action failure = null, bool immediate = false)
{
var req = new GetUserRequest(user.Id, Ruleset.Value);
req.Success += res =>
{
user.Id = res.Id;
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();
};
if (immediate)
API.Perform(req);
else
API.Queue(req);
}
2018-11-06 17:32:59 +08:00
protected override void LoadComplete()
{
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;
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-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)))
.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,
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
}
}