osu/osu.Game.Tournament/TournamentGameBase.cs

295 lines
10 KiB
C#
Raw Normal View History

2019-03-04 04:24:19 +00: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 09:32:59 +00:00
2018-11-06 11:18:11 +00:00
using System;
using System.Collections.Generic;
using System.Drawing;
2018-11-06 09:32:59 +00:00
using System.IO;
2018-11-06 11:13:04 +00:00
using System.Linq;
2018-11-06 09:32:59 +00:00
using Newtonsoft.Json;
using osu.Framework.Allocation;
2019-03-02 04:40:43 +00:00
using osu.Framework.Bindables;
2018-11-06 09:32:59 +00:00
using osu.Framework.Configuration;
using osu.Framework.Graphics;
2018-11-08 11:15:22 +00:00
using osu.Framework.Graphics.Textures;
2019-06-13 10:10:57 +00:00
using osu.Framework.Input;
2018-11-06 15:27:12 +00:00
using osu.Framework.IO.Stores;
2018-11-06 09:32:59 +00:00
using osu.Framework.Platform;
using osu.Game.Beatmaps;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API.Requests;
using osu.Game.Rulesets;
2018-11-07 16:23:00 +00:00
using osu.Game.Tournament.IPC;
2019-06-18 05:51:48 +00:00
using osu.Game.Tournament.Models;
2019-06-13 10:10:57 +00:00
using osuTK.Input;
2018-11-06 09:32:59 +00:00
namespace osu.Game.Tournament
{
public abstract class TournamentGameBase : OsuGameBase
{
private const string bracket_filename = "bracket.json";
2019-03-04 04:13:31 +00:00
private LadderInfo ladder;
2018-11-06 09:32:59 +00:00
private Storage storage;
private DependencyContainer dependencies;
private readonly Bindable<RulesetInfo> ruleset = new Bindable<RulesetInfo>();
private Bindable<Size> windowSize;
2018-11-07 16:23:00 +00:00
private FileBasedIPC ipc;
2018-11-06 09:32:59 +00:00
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
{
return dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
}
[BackgroundDependencyLoader]
private void load(Storage storage, FrameworkConfigManager frameworkConfig)
2018-11-06 09:32:59 +00:00
{
2018-11-06 15:27:12 +00:00
Resources.AddStore(new DllResourceStore(@"osu.Game.Tournament.dll"));
Fonts.AddStore(new GlyphStore(Resources, @"Resources/Fonts/Aquatico-Regular"));
Fonts.AddStore(new GlyphStore(Resources, @"Resources/Fonts/Aquatico-Light"));
2018-11-08 11:15:22 +00:00
Textures.AddStore(new TextureLoaderStore(new ResourceStore<byte[]>(new StorageBackedResourceStore(storage))));
2018-11-06 09:32:59 +00:00
this.storage = storage;
windowSize = frameworkConfig.GetBindable<Size>(FrameworkSetting.WindowedSize);
2019-03-04 04:13:31 +00:00
readBracket();
2018-11-06 11:13:04 +00:00
2019-03-04 04:13:31 +00:00
ladder.CurrentMatch.Value = ladder.Pairings.FirstOrDefault(p => p.Current.Value);
2018-11-06 09:32:59 +00:00
2018-11-15 12:28:42 +00:00
dependencies.CacheAs<MatchIPCInfo>(ipc = new FileBasedIPC());
2018-11-07 16:23:00 +00:00
Add(ipc);
2019-03-04 04:13:31 +00:00
Add(new OsuButton
{
Text = "Save Changes",
Width = 140,
Height = 50,
2019-06-14 08:08:26 +00:00
Depth = float.MinValue,
2019-03-04 04:13:31 +00:00
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
Padding = new MarginPadding(10),
Action = SaveChanges,
});
}
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());
}
else
{
ladder = new LadderInfo();
}
dependencies.Cache(ladder);
2018-11-06 09:32:59 +00:00
bool addedInfo = false;
2018-11-06 11:18:11 +00:00
// assign teams
2019-03-04 04:13:31 +00:00
foreach (var pairing in ladder.Pairings)
2018-11-06 11:18:11 +00:00
{
pairing.Team1.Value = ladder.Teams.FirstOrDefault(t => t.Acronym.Value == pairing.Team1Acronym);
pairing.Team2.Value = ladder.Teams.FirstOrDefault(t => t.Acronym.Value == pairing.Team2Acronym);
2018-12-01 06:32:11 +00:00
foreach (var conditional in pairing.ConditionalPairings)
{
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 05:44:15 +00:00
conditional.Round.Value = pairing.Round.Value;
2018-12-01 06:32:11 +00:00
}
2018-11-06 11:18:11 +00:00
}
// assign progressions
2019-03-04 04:13:31 +00:00
foreach (var pair in ladder.Progressions)
2018-11-06 11:18:11 +00:00
{
2019-06-13 08:04:57 +00:00
var src = ladder.Pairings.FirstOrDefault(p => p.ID == pair.SourceID);
var dest = ladder.Pairings.FirstOrDefault(p => p.ID == pair.TargetID);
2018-11-06 11:18:11 +00:00
if (src == null) throw new InvalidOperationException();
if (dest != null)
{
if (pair.Losers)
src.LosersProgression.Value = dest;
else
src.Progression.Value = dest;
}
}
2019-06-18 05:44:15 +00:00
// link pairings to rounds
foreach (var round in ladder.Rounds)
foreach (var id in round.Pairings)
{
2019-03-04 04:13:31 +00:00
var found = ladder.Pairings.FirstOrDefault(p => p.ID == id);
if (found != null)
{
2019-06-18 05:44:15 +00:00
found.Round.Value = round;
if (round.StartDate.Value > found.Date.Value)
found.Date.Value = round.StartDate.Value;
}
}
2018-11-06 11:18:11 +00:00
2019-03-04 04:13:31 +00:00
addedInfo |= addPlayers();
addedInfo |= addBeatmaps();
addedInfo |= addCountries();
if (addedInfo)
SaveChanges();
}
/// <summary>
/// Add missing player info based on user IDs.
/// </summary>
/// <returns></returns>
private bool addPlayers()
{
bool addedInfo = false;
2018-11-06 16:20:32 +00:00
2019-03-04 04:13:31 +00:00
foreach (var t in ladder.Teams)
foreach (var p in t.Players)
if (string.IsNullOrEmpty(p.Username))
{
var req = new GetUserRequest(p.Id);
req.Perform(API);
2018-12-01 00:50:11 +00:00
p.Username = req.Result.Username;
addedInfo = true;
}
2019-03-04 04:13:31 +00:00
return addedInfo;
}
/// <summary>
/// Add missing beatmap info based on beatmap IDs
/// </summary>
private bool addBeatmaps()
{
bool addedInfo = false;
2019-06-18 05:44:15 +00:00
foreach (var r in ladder.Rounds)
foreach (var b in r.Beatmaps)
2018-11-06 09:32:59 +00:00
if (b.BeatmapInfo == null)
{
var req = new GetBeatmapRequest(new BeatmapInfo { OnlineBeatmapID = b.ID });
req.Perform(API);
2018-12-01 00:50:11 +00:00
b.BeatmapInfo = req.Result?.ToBeatmap(RulesetStore);
2018-11-06 09:32:59 +00:00
addedInfo = true;
}
2019-03-04 04:13:31 +00:00
return addedInfo;
}
/// <summary>
/// Add missing country info based on acronyms.
/// </summary>
private bool addCountries()
{
bool addedInfo = false;
List<TournamentTeam> countries;
using (Stream stream = Resources.GetStream("Resources/countries.json"))
using (var sr = new StreamReader(stream))
countries = JsonConvert.DeserializeObject<List<TournamentTeam>>(sr.ReadToEnd());
2019-03-04 04:13:31 +00:00
foreach (var t in ladder.Teams)
{
if (!string.IsNullOrEmpty(t.FullName.Value))
2019-03-04 04:13:31 +00:00
continue;
2019-03-04 04:13:31 +00:00
var result = countries.FirstOrDefault(c => c.Acronym == t.Acronym);
2018-11-06 09:32:59 +00:00
2019-03-04 04:13:31 +00:00
if (result == null) continue;
t.Acronym = result.Acronym;
t.FlagName = result.FlagName;
t.FullName = result.FullName;
addedInfo = true;
}
return addedInfo;
2018-11-06 09:32:59 +00:00
}
protected override void LoadComplete()
{
MenuCursorContainer.Cursor.AlwaysPresent = true; // required for tooltip display
2018-11-06 09:32:59 +00:00
MenuCursorContainer.Cursor.Alpha = 0;
2018-11-09 07:26:09 +00:00
base.LoadComplete();
2018-11-06 09:32:59 +00:00
}
protected override void Update()
{
base.Update();
var minWidth = (int)(windowSize.Value.Height / 9f * 16 + 400);
if (windowSize.Value.Width < minWidth)
{
// todo: can be removed after ppy/osu-framework#1975
windowSize.Value = Host.Window.ClientSize = new Size(minWidth, windowSize.Value.Height);
}
}
2018-11-06 09:32:59 +00:00
protected virtual void SaveChanges()
{
2019-06-18 05:44:15 +00:00
foreach (var r in ladder.Rounds)
r.Pairings = ladder.Pairings.Where(p => p.Round.Value == r).Select(p => p.ID).ToList();
ladder.Progressions = ladder.Pairings.Where(p => p.Progression.Value != null).Select(p => new TournamentProgression(p.ID, p.Progression.Value.ID)).Concat(
ladder.Pairings.Where(p => p.LosersProgression.Value != null).Select(p => new TournamentProgression(p.ID, p.LosersProgression.Value.ID, true)))
.ToList();
2018-11-06 09:32:59 +00:00
using (var stream = storage.GetStream(bracket_filename, FileAccess.Write, FileMode.Create))
using (var sw = new StreamWriter(stream))
{
2019-03-04 04:13:31 +00:00
sw.Write(JsonConvert.SerializeObject(ladder,
2018-11-06 09:32:59 +00:00
new JsonSerializerSettings
{
NullValueHandling = NullValueHandling.Ignore,
2018-11-09 08:54:05 +00:00
DefaultValueHandling = DefaultValueHandling.Ignore,
2018-11-06 09:32:59 +00:00
}));
}
}
2019-06-13 10:10:57 +00:00
protected override UserInputManager CreateUserInputManager() => new TournamentInputManager();
private class TournamentInputManager : UserInputManager
{
protected override MouseButtonEventManager CreateButtonManagerFor(MouseButton button)
{
switch (button)
{
case MouseButton.Right:
return new RightMouseManager(button);
}
return base.CreateButtonManagerFor(button);
}
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 09:32:59 +00:00
}
}