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

195 lines
6.9 KiB
C#
Raw Normal View History

2018-11-06 17:32:59 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-11-06 19:18:11 +08:00
using System;
using System.Collections.Generic;
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;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
2018-11-08 19:15:22 +08:00
using osu.Framework.Graphics.Textures;
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;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API.Requests;
using osu.Game.Rulesets;
using osu.Game.Tournament.Components;
2018-11-08 00:23:00 +08:00
using osu.Game.Tournament.IPC;
2018-11-06 17:32:59 +08:00
namespace osu.Game.Tournament
{
public abstract class TournamentGameBase : OsuGameBase
{
private const string bracket_filename = "bracket.json";
protected LadderInfo Ladder;
private Storage storage;
private DependencyContainer dependencies;
[Cached]
private readonly Bindable<RulesetInfo> ruleset = new Bindable<RulesetInfo>();
private Bindable<Size> windowSize;
2018-11-08 00:23:00 +08:00
private FileBasedIPC ipc;
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 storage, FrameworkConfigManager frameworkConfig)
2018-11-06 17:32:59 +08:00
{
2018-11-06 23:27:12 +08: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 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;
windowSize = frameworkConfig.GetBindable<Size>(FrameworkSetting.WindowedSize);
2018-11-06 17:32:59 +08:00
string content = null;
if (storage.Exists(bracket_filename))
using (Stream stream = storage.GetStream(bracket_filename, FileAccess.Read, FileMode.Open))
using (var sr = new StreamReader(stream))
{
content = sr.ReadToEnd();
}
Ladder = content != null ? JsonConvert.DeserializeObject<LadderInfo>(content) : new LadderInfo();
2018-11-06 19:13:04 +08:00
2018-11-06 17:32:59 +08:00
dependencies.Cache(Ladder);
2018-11-08 00:23:00 +08:00
dependencies.Cache(ipc = new FileBasedIPC());
Add(ipc);
2018-11-06 17:32:59 +08:00
bool addedInfo = false;
2018-11-06 19:18:11 +08:00
// assign teams
foreach (var pairing in Ladder.Pairings)
{
pairing.Team1.Value = Ladder.Teams.FirstOrDefault(t => t.Acronym == pairing.Team1Acronym);
pairing.Team2.Value = Ladder.Teams.FirstOrDefault(t => t.Acronym == pairing.Team2Acronym);
}
// assign progressions
foreach (var pair in Ladder.Progressions)
{
var src = Ladder.Pairings.FirstOrDefault(p => p.ID == pair.Item1);
var dest = Ladder.Pairings.FirstOrDefault(p => p.ID == pair.Item2);
if (src == null) throw new InvalidOperationException();
if (dest != null)
{
if (pair.Losers)
src.LosersProgression.Value = dest;
else
src.Progression.Value = dest;
}
}
// link pairings to groupings
2018-11-06 19:18:11 +08:00
foreach (var group in Ladder.Groupings)
foreach (var id in group.Pairings)
Ladder.Pairings.Single(p => p.ID == id).Grouping.Value = group;
2018-11-07 00:20:32 +08:00
Ladder.CurrentMatch.Value = Ladder.Pairings.FirstOrDefault(p => p.Current.Value);
// add full player info based on user IDs
foreach (var t in Ladder.Teams)
foreach (var p in t.Players)
if (string.IsNullOrEmpty(p.Username))
{
var req = new GetUserRequest(p.Id);
req.Success += i => p.Username = i.Username;
req.Perform(API);
addedInfo = true;
}
// add full beatmap info based on beatmap IDs
2018-11-06 17:32:59 +08:00
foreach (var g in Ladder.Groupings)
foreach (var b in g.Beatmaps)
if (b.BeatmapInfo == null)
{
var req = new GetBeatmapRequest(new BeatmapInfo { OnlineBeatmapID = b.ID });
req.Success += i => b.BeatmapInfo = i.ToBeatmap(RulesetStore);
req.Perform(API);
addedInfo = true;
}
List<TournamentTeam> countries;
using (Stream stream = Resources.GetStream("Resources/countries.json"))
using (var sr = new StreamReader(stream))
countries = JsonConvert.DeserializeObject<List<TournamentTeam>>(sr.ReadToEnd());
foreach (var t in Ladder.Teams)
if (string.IsNullOrEmpty(t.FullName))
{
var result = countries.FirstOrDefault(c => c.Acronym == t.Acronym);
if (result != null)
{
t.Acronym = result.Acronym;
t.FlagName = result.FlagName;
t.FullName = result.FullName;
}
}
2018-11-06 17:32:59 +08:00
if (addedInfo)
SaveChanges();
Add(new OsuButton
{
Text = "Save Changes",
Width = 140,
Height = 50,
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
Padding = new MarginPadding(10),
Action = SaveChanges,
});
}
protected override void LoadComplete()
{
MenuCursorContainer.Cursor.Alpha = 0;
2018-11-09 15:26:09 +08:00
base.LoadComplete();
2018-11-06 17:32:59 +08: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 17:32:59 +08:00
protected virtual void SaveChanges()
{
using (var stream = storage.GetStream(bracket_filename, FileAccess.Write, FileMode.Create))
using (var sw = new StreamWriter(stream))
{
sw.Write(JsonConvert.SerializeObject(Ladder,
new JsonSerializerSettings
{
NullValueHandling = NullValueHandling.Ignore,
2018-11-09 16:54:05 +08:00
DefaultValueHandling = DefaultValueHandling.Ignore,
2018-11-06 17:32:59 +08:00
}));
}
}
}
}