1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00
osu-lazer/osu.Desktop/Program.cs

161 lines
5.7 KiB
C#
Raw Normal View History

// 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-04-13 17:19:50 +08:00
using System;
using System.IO;
2021-11-28 13:03:21 +08:00
using System.Linq;
2018-08-03 18:25:55 +08:00
using System.Threading;
using System.Threading.Tasks;
2021-11-28 17:00:06 +08:00
using osu.Desktop.LegacyIpc;
2018-04-13 17:19:50 +08:00
using osu.Framework;
using osu.Framework.Development;
2018-08-03 18:25:55 +08:00
using osu.Framework.Logging;
2018-04-13 17:19:50 +08:00
using osu.Framework.Platform;
2021-11-28 13:03:21 +08:00
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.Legacy;
2018-04-13 17:19:50 +08:00
using osu.Game.IPC;
2021-11-28 13:03:21 +08:00
using osu.Game.Rulesets;
using osu.Game.Rulesets.Catch;
using osu.Game.Rulesets.Mania;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Osu;
using osu.Game.Rulesets.Taiko;
using osu.Game.Tournament;
2018-07-10 19:30:08 +08:00
2018-04-13 17:19:50 +08:00
namespace osu.Desktop
{
public static class Program
{
private const string base_game_name = @"osu";
2018-04-13 17:19:50 +08:00
[STAThread]
2021-11-28 13:03:21 +08:00
public static void Main(string[] args)
2018-04-13 17:19:50 +08:00
{
// Back up the cwd before DesktopGameHost changes it
string cwd = Environment.CurrentDirectory;
2018-04-13 17:19:50 +08:00
string gameName = base_game_name;
2021-07-21 12:53:24 +08:00
bool tournamentClient = false;
foreach (string arg in args)
{
string[] split = arg.Split('=');
string key = split[0];
string val = split.Length > 1 ? split[1] : string.Empty;
switch (key)
2021-07-21 12:53:24 +08:00
{
case "--tournament":
tournamentClient = true;
break;
case "--debug-client-id":
if (!DebugUtils.IsDebugBuild)
throw new InvalidOperationException("Cannot use this argument in a non-debug build.");
if (!int.TryParse(val, out int clientID))
throw new ArgumentException("Provided client ID must be an integer.");
2021-07-21 12:53:24 +08:00
gameName = $"{base_game_name}-{clientID}";
2021-07-21 12:53:24 +08:00
break;
}
}
using (DesktopGameHost host = Host.GetSuitableHost(gameName, true))
2018-04-13 17:19:50 +08:00
{
2018-08-03 18:25:55 +08:00
host.ExceptionThrown += handleException;
2018-04-13 17:19:50 +08:00
if (!host.IsPrimaryInstance)
{
if (args.Length > 0 && args[0].Contains('.')) // easy way to check for a file import in args
2018-04-13 17:19:50 +08:00
{
var importer = new ArchiveImportIPCChannel(host);
foreach (string file in args)
{
Console.WriteLine(@"Importing {0}", file);
if (!importer.ImportAsync(Path.GetFullPath(file, cwd)).Wait(3000))
throw new TimeoutException(@"IPC took too long to send");
}
2021-11-28 13:03:21 +08:00
return;
2018-04-13 17:19:50 +08:00
}
// we want to allow multiple instances to be started when in debug.
if (!DebugUtils.IsDebugBuild)
{
Logger.Log(@"osu! does not support multiple running instances.", LoggingTarget.Runtime, LogLevel.Error);
2021-11-28 13:03:21 +08:00
return;
}
2018-04-13 17:19:50 +08:00
}
2021-11-28 20:15:29 +08:00
if (host.IsPrimaryInstance)
{
var legacyIpc = new LegacyTcpIpcProvider();
legacyIpc.MessageReceived += onLegacyIpcMessageReceived;
legacyIpc.Bind();
legacyIpc.StartAsync();
}
2021-07-21 12:53:24 +08:00
if (tournamentClient)
host.Run(new TournamentGame());
else
host.Run(new OsuGameDesktop(args));
2018-04-13 17:19:50 +08:00
}
}
2018-08-03 18:25:55 +08:00
private static int allowableExceptions = DebugUtils.IsDebugBuild ? 0 : 1;
2018-08-03 18:25:55 +08:00
/// <summary>
/// Allow a maximum of one unhandled exception, per second of execution.
/// </summary>
/// <param name="arg"></param>
private static bool handleException(Exception arg)
{
bool continueExecution = Interlocked.Decrement(ref allowableExceptions) >= 0;
2018-08-21 08:17:44 +08:00
Logger.Log($"Unhandled exception has been {(continueExecution ? $"allowed with {allowableExceptions} more allowable exceptions" : "denied")} .");
2018-08-03 18:25:55 +08:00
// restore the stock of allowable exceptions after a short delay.
2018-08-03 18:25:55 +08:00
Task.Delay(1000).ContinueWith(_ => Interlocked.Increment(ref allowableExceptions));
2018-08-16 15:44:04 +08:00
return continueExecution;
2018-08-03 18:25:55 +08:00
}
2021-11-28 13:03:21 +08:00
2021-11-28 17:00:06 +08:00
private static object onLegacyIpcMessageReceived(object message)
{
switch (message)
{
case LegacyIpcDifficultyCalculationRequest req:
try
{
Ruleset ruleset = req.RulesetId switch
{
0 => new OsuRuleset(),
1 => new TaikoRuleset(),
2 => new CatchRuleset(),
3 => new ManiaRuleset(),
_ => throw new ArgumentException("Invalid ruleset id")
};
Mod[] mods = ruleset.ConvertFromLegacyMods((LegacyMods)req.Mods).ToArray();
WorkingBeatmap beatmap = new FlatFileWorkingBeatmap(req.BeatmapFile, _ => ruleset);
return new LegacyIpcDifficultyCalculationResponse
{
StarRating = ruleset.CreateDifficultyCalculator(beatmap).Calculate(mods).StarRating
};
}
catch
{
return new LegacyIpcDifficultyCalculationResponse();
}
}
Console.WriteLine("Type not matched.");
return null;
}
2021-11-28 13:03:21 +08:00
}
2018-04-13 17:19:50 +08:00
}