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;
|
2018-11-17 14:18:22 +08:00
|
|
|
using System.Linq;
|
2020-05-16 08:59:48 +08:00
|
|
|
using System.Collections.Generic;
|
2020-06-13 21:27:46 +08:00
|
|
|
using JetBrains.Annotations;
|
2019-06-21 14:07:04 +08:00
|
|
|
using Microsoft.Win32;
|
2018-11-08 00:23:00 +08:00
|
|
|
using osu.Framework.Allocation;
|
2018-11-10 23:45:48 +08:00
|
|
|
using osu.Framework.Logging;
|
2019-05-26 09:25:17 +08:00
|
|
|
using osu.Framework.Platform;
|
2019-09-22 03:15:02 +08:00
|
|
|
using osu.Framework.Threading;
|
2018-11-08 00:23:00 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Beatmaps.Legacy;
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
using osu.Game.Rulesets;
|
2019-06-18 13:51:48 +08:00
|
|
|
using osu.Game.Tournament.Models;
|
2018-11-08 00:23:00 +08:00
|
|
|
|
|
|
|
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
|
|
|
{
|
2020-06-13 21:27:46 +08:00
|
|
|
public Storage IPCStorage { get; private set; }
|
|
|
|
|
2018-11-08 00:23:00 +08:00
|
|
|
[Resolved]
|
2019-04-03 15:22:41 +08:00
|
|
|
protected IAPIProvider API { get; private set; }
|
2018-11-08 00:23:00 +08:00
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
protected RulesetStore Rulesets { get; private set; }
|
|
|
|
|
2019-09-22 03:15:02 +08:00
|
|
|
[Resolved]
|
|
|
|
private GameHost host { get; set; }
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private LadderInfo ladder { get; set; }
|
|
|
|
|
2020-06-13 21:05:52 +08:00
|
|
|
[Resolved]
|
|
|
|
private StableInfo stableInfo { get; set; }
|
|
|
|
|
2020-06-13 21:27:46 +08:00
|
|
|
[Resolved]
|
|
|
|
private Storage tournamentStorage { get; set; }
|
|
|
|
|
2018-11-10 07:37:21 +08:00
|
|
|
private int lastBeatmapId;
|
2019-09-22 03:15:02 +08:00
|
|
|
private ScheduledDelegate scheduled;
|
2020-06-04 16:20:08 +08:00
|
|
|
private GetBeatmapRequest beatmapLookupRequest;
|
2019-09-22 03:15:02 +08:00
|
|
|
|
2018-11-08 00:23:00 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2019-09-22 03:15:02 +08:00
|
|
|
private void load()
|
|
|
|
{
|
2020-06-13 21:27:46 +08:00
|
|
|
var stablePath = stableInfo.StablePath ?? findStablePath();
|
|
|
|
initialiseIPCStorage(stablePath);
|
2019-09-22 03:15:02 +08:00
|
|
|
}
|
|
|
|
|
2020-06-13 21:27:46 +08:00
|
|
|
[CanBeNull]
|
|
|
|
private Storage initialiseIPCStorage(string path)
|
2018-11-08 00:23:00 +08:00
|
|
|
{
|
2019-09-22 03:15:02 +08:00
|
|
|
scheduled?.Cancel();
|
|
|
|
|
2020-05-16 08:59:48 +08:00
|
|
|
IPCStorage = null;
|
2018-11-17 12:36:36 +08:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2020-05-08 09:38:31 +08:00
|
|
|
if (string.IsNullOrEmpty(path))
|
|
|
|
return null;
|
|
|
|
|
2020-05-16 08:59:48 +08:00
|
|
|
IPCStorage = new DesktopStorage(path, host as DesktopGameHost);
|
2018-11-08 00:23:00 +08:00
|
|
|
|
2019-09-22 03:15:02 +08:00
|
|
|
const string file_ipc_filename = "ipc.txt";
|
|
|
|
const string file_ipc_state_filename = "ipc-state.txt";
|
|
|
|
const string file_ipc_scores_filename = "ipc-scores.txt";
|
|
|
|
const string file_ipc_channel_filename = "ipc-channel.txt";
|
2018-11-08 00:23:00 +08:00
|
|
|
|
2020-05-16 08:59:48 +08:00
|
|
|
if (IPCStorage.Exists(file_ipc_filename))
|
2019-11-11 19:53:22 +08:00
|
|
|
{
|
2019-09-22 03:15:02 +08:00
|
|
|
scheduled = Scheduler.AddDelayed(delegate
|
2018-11-08 00:23:00 +08:00
|
|
|
{
|
2019-09-22 03:15:02 +08:00
|
|
|
try
|
2018-11-08 00:23:00 +08:00
|
|
|
{
|
2020-05-16 08:59:48 +08:00
|
|
|
using (var stream = IPCStorage.GetStream(file_ipc_filename))
|
2019-09-22 03:15:02 +08:00
|
|
|
using (var sr = new StreamReader(stream))
|
2018-11-08 00:23:00 +08:00
|
|
|
{
|
2019-09-22 03:15:02 +08:00
|
|
|
var beatmapId = int.Parse(sr.ReadLine());
|
|
|
|
var mods = int.Parse(sr.ReadLine());
|
2018-11-17 14:18:22 +08:00
|
|
|
|
2019-09-22 03:15:02 +08:00
|
|
|
if (lastBeatmapId != beatmapId)
|
2018-11-17 14:18:22 +08:00
|
|
|
{
|
2020-06-04 16:20:08 +08:00
|
|
|
beatmapLookupRequest?.Cancel();
|
|
|
|
|
2019-09-22 03:15:02 +08:00
|
|
|
lastBeatmapId = beatmapId;
|
|
|
|
|
|
|
|
var existing = ladder.CurrentMatch.Value?.Round.Value?.Beatmaps.FirstOrDefault(b => b.ID == beatmapId && b.BeatmapInfo != null);
|
|
|
|
|
|
|
|
if (existing != null)
|
|
|
|
Beatmap.Value = existing.BeatmapInfo;
|
|
|
|
else
|
|
|
|
{
|
2020-06-04 16:20:08 +08:00
|
|
|
beatmapLookupRequest = new GetBeatmapRequest(new BeatmapInfo { OnlineBeatmapID = beatmapId });
|
|
|
|
beatmapLookupRequest.Success += b => Beatmap.Value = b.ToBeatmap(Rulesets);
|
|
|
|
API.Queue(beatmapLookupRequest);
|
2019-09-22 03:15:02 +08:00
|
|
|
}
|
2018-11-17 14:18:22 +08:00
|
|
|
}
|
2018-11-08 00:23:00 +08:00
|
|
|
|
2019-09-22 03:15:02 +08:00
|
|
|
Mods.Value = (LegacyMods)mods;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
// file might be in use.
|
2018-11-08 00:23:00 +08:00
|
|
|
}
|
2018-11-10 23:45:48 +08:00
|
|
|
|
2019-09-22 03:15:02 +08:00
|
|
|
try
|
2018-11-17 20:26:56 +08:00
|
|
|
{
|
2020-05-16 08:59:48 +08:00
|
|
|
using (var stream = IPCStorage.GetStream(file_ipc_channel_filename))
|
2019-09-22 03:15:02 +08:00
|
|
|
using (var sr = new StreamReader(stream))
|
|
|
|
{
|
|
|
|
ChatChannel.Value = sr.ReadLine();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception)
|
|
|
|
{
|
|
|
|
// file might be in use.
|
2018-11-17 20:26:56 +08:00
|
|
|
}
|
|
|
|
|
2019-09-22 03:15:02 +08:00
|
|
|
try
|
2018-11-10 23:45:48 +08:00
|
|
|
{
|
2020-05-16 08:59:48 +08:00
|
|
|
using (var stream = IPCStorage.GetStream(file_ipc_state_filename))
|
2019-09-22 03:15:02 +08:00
|
|
|
using (var sr = new StreamReader(stream))
|
|
|
|
{
|
|
|
|
State.Value = (TourneyState)Enum.Parse(typeof(TourneyState), sr.ReadLine());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception)
|
|
|
|
{
|
|
|
|
// file might be in use.
|
2018-11-10 23:45:48 +08:00
|
|
|
}
|
|
|
|
|
2019-09-22 03:15:02 +08:00
|
|
|
try
|
2018-11-10 23:45:48 +08:00
|
|
|
{
|
2020-05-16 08:59:48 +08:00
|
|
|
using (var stream = IPCStorage.GetStream(file_ipc_scores_filename))
|
2019-09-22 03:15:02 +08:00
|
|
|
using (var sr = new StreamReader(stream))
|
|
|
|
{
|
|
|
|
Score1.Value = int.Parse(sr.ReadLine());
|
|
|
|
Score2.Value = int.Parse(sr.ReadLine());
|
|
|
|
}
|
2018-11-10 23:45:48 +08:00
|
|
|
}
|
2019-09-22 03:15:02 +08:00
|
|
|
catch (Exception)
|
|
|
|
{
|
|
|
|
// file might be in use.
|
|
|
|
}
|
|
|
|
}, 250, true);
|
2019-11-11 19:53:22 +08:00
|
|
|
}
|
2019-09-22 03:15:02 +08:00
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
Logger.Error(e, "Stable installation could not be found; disabling file based IPC");
|
|
|
|
}
|
|
|
|
|
2020-05-16 08:59:48 +08:00
|
|
|
return IPCStorage;
|
2018-11-08 00:23:00 +08:00
|
|
|
}
|
|
|
|
|
2020-06-13 21:27:46 +08:00
|
|
|
public bool SetIPCLocation(string path)
|
|
|
|
{
|
|
|
|
if (!ipcFileExistsInDirectory(path))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
var newStorage = initialiseIPCStorage(stableInfo.StablePath = path);
|
|
|
|
if (newStorage == null)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
stableInfo.SaveChanges();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool AutoDetectIPCLocation()
|
|
|
|
{
|
|
|
|
var autoDetectedPath = findStablePath();
|
|
|
|
if (string.IsNullOrEmpty(autoDetectedPath))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
var newStorage = initialiseIPCStorage(stableInfo.StablePath = autoDetectedPath);
|
|
|
|
if (newStorage == null)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
stableInfo.SaveChanges();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-06-04 05:49:06 +08:00
|
|
|
private static bool ipcFileExistsInDirectory(string p) => File.Exists(Path.Combine(p, "ipc.txt"));
|
2020-05-16 08:59:48 +08:00
|
|
|
|
2020-05-08 09:38:31 +08:00
|
|
|
private string findStablePath()
|
2018-11-08 00:23:00 +08:00
|
|
|
{
|
2020-05-28 21:03:49 +08:00
|
|
|
string stableInstallPath = string.Empty;
|
2020-05-28 21:28:27 +08:00
|
|
|
|
2020-05-08 09:38:31 +08:00
|
|
|
try
|
|
|
|
{
|
2020-05-16 08:59:48 +08:00
|
|
|
List<Func<string>> stableFindMethods = new List<Func<string>>
|
2018-11-08 00:23:00 +08:00
|
|
|
{
|
2020-05-16 08:59:48 +08:00
|
|
|
findFromEnvVar,
|
|
|
|
findFromRegistry,
|
|
|
|
findFromLocalAppData,
|
|
|
|
findFromDotFolder
|
|
|
|
};
|
|
|
|
|
|
|
|
foreach (var r in stableFindMethods)
|
|
|
|
{
|
|
|
|
stableInstallPath = r.Invoke();
|
2019-06-21 14:07:04 +08:00
|
|
|
|
2020-05-16 08:59:48 +08:00
|
|
|
if (stableInstallPath != null)
|
2020-06-04 05:49:06 +08:00
|
|
|
return stableInstallPath;
|
2020-05-08 09:38:31 +08:00
|
|
|
}
|
|
|
|
|
2020-05-20 23:13:35 +08:00
|
|
|
return null;
|
2020-05-16 08:59:48 +08:00
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
Logger.Log($"Stable path for tourney usage: {stableInstallPath}");
|
|
|
|
}
|
|
|
|
}
|
2018-11-08 00:23:00 +08:00
|
|
|
|
2020-05-16 08:59:48 +08:00
|
|
|
private string findFromEnvVar()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Logger.Log("Trying to find stable with environment variables");
|
|
|
|
string stableInstallPath = Environment.GetEnvironmentVariable("OSU_STABLE_PATH");
|
2020-05-08 09:38:31 +08:00
|
|
|
|
2020-06-04 05:49:06 +08:00
|
|
|
if (ipcFileExistsInDirectory(stableInstallPath))
|
2020-05-08 09:38:31 +08:00
|
|
|
return stableInstallPath;
|
2020-05-16 08:59:48 +08:00
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2020-05-08 09:38:31 +08:00
|
|
|
|
2020-05-16 08:59:48 +08:00
|
|
|
private string findFromLocalAppData()
|
|
|
|
{
|
|
|
|
Logger.Log("Trying to find stable in %LOCALAPPDATA%");
|
|
|
|
string stableInstallPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), @"osu!");
|
|
|
|
|
2020-06-04 05:49:06 +08:00
|
|
|
if (ipcFileExistsInDirectory(stableInstallPath))
|
2020-05-16 08:59:48 +08:00
|
|
|
return stableInstallPath;
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private string findFromDotFolder()
|
|
|
|
{
|
|
|
|
Logger.Log("Trying to find stable in dotfolders");
|
|
|
|
string stableInstallPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".osu");
|
|
|
|
|
2020-06-04 05:49:06 +08:00
|
|
|
if (ipcFileExistsInDirectory(stableInstallPath))
|
2020-05-16 08:59:48 +08:00
|
|
|
return stableInstallPath;
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private string findFromRegistry()
|
|
|
|
{
|
|
|
|
Logger.Log("Trying to find stable in registry");
|
|
|
|
|
|
|
|
string stableInstallPath;
|
|
|
|
|
|
|
|
using (RegistryKey key = Registry.ClassesRoot.OpenSubKey("osu"))
|
|
|
|
stableInstallPath = key?.OpenSubKey(@"shell\open\command")?.GetValue(string.Empty).ToString().Split('"')[1].Replace("osu!.exe", "");
|
|
|
|
|
2020-06-04 05:49:06 +08:00
|
|
|
if (ipcFileExistsInDirectory(stableInstallPath))
|
2020-05-16 08:59:48 +08:00
|
|
|
return stableInstallPath;
|
|
|
|
|
|
|
|
return null;
|
2018-11-08 00:23:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|