1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:47:24 +08:00
osu-lazer/osu.Game.Tournament/IPC/FileBasedIPC.cs

180 lines
6.2 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-08 00:23:00 +08:00
using System;
using System.IO;
using System.Linq;
2018-11-08 00:23:00 +08:00
using osu.Framework.Allocation;
2018-11-10 23:45:48 +08:00
using osu.Framework.Logging;
2018-11-08 00:23:00 +08:00
using osu.Framework.Platform.Windows;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.Legacy;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Rulesets;
namespace osu.Game.Tournament.IPC
{
2018-11-15 20:28:42 +08:00
public class FileBasedIPC : MatchIPCInfo
2018-11-08 00:23:00 +08:00
{
[Resolved]
protected APIAccess API { get; private set; }
[Resolved]
protected RulesetStore Rulesets { get; private set; }
private int lastBeatmapId;
2018-11-08 00:23:00 +08:00
[BackgroundDependencyLoader]
private void load(LadderInfo ladder)
2018-11-08 00:23:00 +08:00
{
StableStorage stable;
try
{
stable = new StableStorage();
}
catch
{
Logger.Log("Stable installation could not be found; disabling file based IPC");
return;
}
2018-11-08 00:23:00 +08:00
const string file_ipc_filename = "ipc.txt";
2018-11-10 23:45:48 +08:00
const string file_ipc_state_filename = "ipc-state.txt";
const string file_ipc_scores_filename = "ipc-scores.txt";
2018-11-17 20:26:56 +08:00
const string file_ipc_channel_filename = "ipc-channel.txt";
2018-11-08 00:23:00 +08:00
if (stable.Exists(file_ipc_filename))
Scheduler.AddDelayed(delegate
{
try
{
using (var stream = stable.GetStream(file_ipc_filename))
using (var sr = new StreamReader(stream))
{
var beatmapId = int.Parse(sr.ReadLine());
var mods = int.Parse(sr.ReadLine());
if (lastBeatmapId != beatmapId)
2018-11-08 00:23:00 +08:00
{
lastBeatmapId = beatmapId;
var existing = ladder.CurrentMatch.Value?.Grouping.Value?.Beatmaps.FirstOrDefault(b => b.ID == beatmapId && b.BeatmapInfo != null);
if (existing != null)
Beatmap.Value = existing.BeatmapInfo;
else
{
var req = new GetBeatmapRequest(new BeatmapInfo { OnlineBeatmapID = beatmapId });
req.Success += b => Beatmap.Value = b.ToBeatmap(Rulesets);
API.Queue(req);
}
2018-11-08 00:23:00 +08:00
}
Mods.Value = (LegacyMods)mods;
}
}
catch
{
// file might be in use.
}
2018-11-10 23:45:48 +08:00
2018-11-17 20:26:56 +08:00
try
{
using (var stream = stable.GetStream(file_ipc_channel_filename))
using (var sr = new StreamReader(stream))
{
ChatChannel.Value = sr.ReadLine();
}
}
catch (Exception)
{
// file might be in use.
}
2018-11-10 23:45:48 +08:00
try
{
using (var stream = stable.GetStream(file_ipc_state_filename))
using (var sr = new StreamReader(stream))
{
State.Value = (TourneyState)Enum.Parse(typeof(TourneyState), sr.ReadLine());
}
}
2018-11-11 00:29:42 +08:00
catch (Exception)
2018-11-10 23:45:48 +08:00
{
// file might be in use.
}
try
{
using (var stream = stable.GetStream(file_ipc_scores_filename))
using (var sr = new StreamReader(stream))
{
2018-11-15 20:28:42 +08:00
Score1.Value = int.Parse(sr.ReadLine());
Score2.Value = int.Parse(sr.ReadLine());
2018-11-10 23:45:48 +08:00
}
}
2018-11-11 00:29:42 +08:00
catch (Exception)
2018-11-10 23:45:48 +08:00
{
// file might be in use.
}
2018-11-08 00:23:00 +08:00
}, 250, true);
}
/// <summary>
/// A method of accessing an osu-stable install in a controlled fashion.
/// </summary>
private class StableStorage : WindowsStorage
{
protected override string LocateBasePath()
{
bool checkExists(string p)
{
2018-11-10 23:45:48 +08:00
return File.Exists(Path.Combine(p, "ipc.txt"));
2018-11-08 00:23:00 +08:00
}
2018-11-10 23:45:48 +08:00
string stableInstallPath = string.Empty;
2018-11-08 00:23:00 +08:00
try
{
2018-11-10 23:45:48 +08:00
try
{
2019-02-08 14:20:22 +08:00
stableInstallPath = "G:\\My Drive\\Main\\osu!tourney";
2018-11-10 23:45:48 +08:00
if (checkExists(stableInstallPath))
return stableInstallPath;
2019-02-08 14:20:22 +08:00
stableInstallPath = "G:\\My Drive\\Main\\osu!mappool";
2018-11-10 23:45:48 +08:00
if (checkExists(stableInstallPath))
return stableInstallPath;
}
catch
{
}
stableInstallPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), @"osu!");
if (checkExists(stableInstallPath))
return stableInstallPath;
2018-11-08 00:23:00 +08:00
2018-11-10 23:45:48 +08:00
stableInstallPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".osu");
2018-11-08 00:23:00 +08:00
if (checkExists(stableInstallPath))
return stableInstallPath;
2018-11-10 23:45:48 +08:00
return null;
2018-11-08 00:23:00 +08:00
}
2018-11-10 23:45:48 +08:00
finally
2018-11-08 00:23:00 +08:00
{
2018-11-10 23:45:48 +08:00
Logger.Log($"Stable path for tourney usage: {stableInstallPath}");
2018-11-08 00:23:00 +08:00
}
}
public StableStorage()
: base(string.Empty, null)
{
}
}
}
}