2019-01-24 16:43:03 +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-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2018-08-03 18:25:55 +08:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework;
|
2018-08-17 12:28:35 +08:00
|
|
|
|
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;
|
|
|
|
|
using osu.Game.IPC;
|
2018-11-06 13:49:09 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
2021-07-21 14:02:15 +08:00
|
|
|
|
private const string base_game_name = @"osu";
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[STAThread]
|
|
|
|
|
public static int Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
// Back up the cwd before DesktopGameHost changes it
|
2021-10-27 12:04:41 +08:00
|
|
|
|
string cwd = Environment.CurrentDirectory;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-07-21 14:02:15 +08:00
|
|
|
|
string gameName = base_game_name;
|
2021-07-21 12:53:24 +08:00
|
|
|
|
bool tournamentClient = false;
|
2021-07-21 08:12:44 +08:00
|
|
|
|
|
2021-10-27 12:04:41 +08:00
|
|
|
|
foreach (string arg in args)
|
2021-07-21 08:12:44 +08:00
|
|
|
|
{
|
2021-10-27 12:04:41 +08:00
|
|
|
|
string[] split = arg.Split('=');
|
2021-07-21 14:02:15 +08:00
|
|
|
|
|
2021-10-27 12:04:41 +08:00
|
|
|
|
string key = split[0];
|
|
|
|
|
string val = split.Length > 1 ? split[1] : string.Empty;
|
2021-07-21 14:02:15 +08:00
|
|
|
|
|
|
|
|
|
switch (key)
|
2021-07-21 12:53:24 +08:00
|
|
|
|
{
|
|
|
|
|
case "--tournament":
|
|
|
|
|
tournamentClient = true;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case "--debug-client-id":
|
|
|
|
|
if (!DebugUtils.IsDebugBuild)
|
2021-07-21 14:02:15 +08:00
|
|
|
|
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
|
|
|
|
|
2021-07-21 14:02:15 +08:00
|
|
|
|
gameName = $"{base_game_name}-{clientID}";
|
2021-07-21 12:53:24 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2021-07-21 08:12:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
2019-07-23 12:38:05 +08:00
|
|
|
|
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
|
|
|
|
{
|
2019-07-23 12:38:05 +08:00
|
|
|
|
var importer = new ArchiveImportIPCChannel(host);
|
|
|
|
|
|
2021-10-27 12:04:41 +08:00
|
|
|
|
foreach (string file in args)
|
2019-07-23 12:38:05 +08:00
|
|
|
|
{
|
|
|
|
|
Console.WriteLine(@"Importing {0}", file);
|
2020-05-31 07:18:07 +08:00
|
|
|
|
if (!importer.ImportAsync(Path.GetFullPath(file, cwd)).Wait(3000))
|
2019-07-23 12:38:05 +08:00
|
|
|
|
throw new TimeoutException(@"IPC took too long to send");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-07-23 12:38:05 +08:00
|
|
|
|
|
|
|
|
|
// we want to allow multiple instances to be started when in debug.
|
|
|
|
|
if (!DebugUtils.IsDebugBuild)
|
2021-09-21 17:00:54 +08:00
|
|
|
|
{
|
|
|
|
|
Logger.Log(@"osu! does not support multiple running instances.", LoggingTarget.Runtime, LogLevel.Error);
|
2021-09-21 17:03:43 +08:00
|
|
|
|
return 0;
|
2021-09-21 17:00:54 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-07-23 12:38:05 +08:00
|
|
|
|
|
2021-07-21 12:53:24 +08:00
|
|
|
|
if (tournamentClient)
|
2021-07-21 08:12:44 +08:00
|
|
|
|
host.Run(new TournamentGame());
|
|
|
|
|
else
|
|
|
|
|
host.Run(new OsuGameDesktop(args));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-03 18:25:55 +08:00
|
|
|
|
|
2018-08-17 12:28:35 +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
|
|
|
|
|
2018-08-17 11:03:31 +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-17 11:03:31 +08:00
|
|
|
|
|
2018-08-16 15:44:04 +08:00
|
|
|
|
return continueExecution;
|
2018-08-03 18:25:55 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|