1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 07:17:27 +08:00
osu-lazer/osu.Desktop/Program.cs

67 lines
2.2 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +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
2016-08-26 11:28:23 +08:00
using System;
using System.IO;
using System.Linq;
2017-09-18 21:32:49 +08:00
using osu.Framework;
using osu.Framework.Platform;
using osu.Game.IPC;
2018-03-24 14:19:45 +08:00
#if NET_FRAMEWORK
using System.Runtime;
#endif
2016-08-26 11:28:23 +08:00
namespace osu.Desktop
2016-08-26 11:28:23 +08:00
{
public static class Program
{
[STAThread]
public static int Main(string[] args)
2016-08-26 11:28:23 +08:00
{
// required to initialise native SQLite libraries on some platforms.
2018-01-25 03:07:14 +08:00
if (!RuntimeInfo.IsMono)
useMulticoreJit();
2018-01-24 01:49:48 +08:00
2017-01-30 22:35:59 +08:00
// Back up the cwd before DesktopGameHost changes it
var cwd = Environment.CurrentDirectory;
2016-11-16 10:53:10 +08:00
using (DesktopGameHost host = Host.GetSuitableHost(@"osu", true))
{
if (!host.IsPrimaryInstance)
{
var importer = new ArchiveImportIPCChannel(host);
2017-01-30 22:35:59 +08:00
// Restore the cwd so relative paths given at the command line work correctly
2017-01-18 06:05:06 +08:00
Directory.SetCurrentDirectory(cwd);
foreach (var file in args)
2017-01-18 06:05:06 +08:00
{
Console.WriteLine(@"Importing {0}", file);
if (!importer.ImportAsync(Path.GetFullPath(file)).Wait(3000))
throw new TimeoutException(@"IPC took too long to send");
2017-01-18 06:05:06 +08:00
}
}
else
{
2017-08-04 14:58:59 +08:00
switch (args.FirstOrDefault() ?? string.Empty)
{
default:
host.Run(new OsuGameDesktop(args));
break;
}
}
2018-01-25 03:07:14 +08:00
return 0;
}
2016-08-26 11:28:23 +08:00
}
2018-01-24 01:49:48 +08:00
private static void useMulticoreJit()
{
2018-03-24 14:19:45 +08:00
#if NET_FRAMEWORK
2018-02-27 21:26:54 +08:00
var directory = Directory.CreateDirectory(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Profiles"));
ProfileOptimization.SetProfileRoot(directory.FullName);
2018-01-24 01:49:48 +08:00
ProfileOptimization.StartProfile("Startup.Profile");
2018-03-24 14:19:45 +08:00
#endif
2018-01-24 01:49:48 +08:00
}
2016-08-26 11:28:23 +08:00
}
}