2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2016-10-15 02:10:01 +08:00
|
|
|
|
using System.IO;
|
2017-08-04 14:37:31 +08:00
|
|
|
|
using System.Linq;
|
2017-09-18 21:32:49 +08:00
|
|
|
|
using osu.Framework;
|
|
|
|
|
using osu.Framework.Platform;
|
2016-10-21 17:25:22 +08:00
|
|
|
|
using osu.Game.IPC;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
2017-10-14 01:10:21 +08:00
|
|
|
|
namespace osu.Desktop
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
|
|
|
|
public static class Program
|
|
|
|
|
{
|
|
|
|
|
[STAThread]
|
2016-10-15 02:10:01 +08:00
|
|
|
|
public static int Main(string[] args)
|
2016-08-26 11:28:23 +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
|
|
|
|
|
2016-11-08 08:04:31 +08:00
|
|
|
|
using (DesktopGameHost host = Host.GetSuitableHost(@"osu", true))
|
2016-10-21 17:25:22 +08:00
|
|
|
|
{
|
2016-11-08 08:04:31 +08:00
|
|
|
|
if (!host.IsPrimaryInstance)
|
|
|
|
|
{
|
2017-03-04 17:51:16 +08:00
|
|
|
|
var importer = new BeatmapIPCChannel(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);
|
2016-11-08 08:04:31 +08:00
|
|
|
|
foreach (var file in args)
|
2017-01-18 06:05:06 +08:00
|
|
|
|
{
|
|
|
|
|
Console.WriteLine(@"Importing {0}", file);
|
2017-02-24 05:32:10 +08:00
|
|
|
|
if (!importer.ImportAsync(Path.GetFullPath(file)).Wait(3000))
|
2016-11-08 08:04:31 +08:00
|
|
|
|
throw new TimeoutException(@"IPC took too long to send");
|
2017-01-18 06:05:06 +08:00
|
|
|
|
}
|
2016-11-08 08:04:31 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-08-04 14:58:59 +08:00
|
|
|
|
switch (args.FirstOrDefault() ?? string.Empty)
|
2017-08-04 14:37:31 +08:00
|
|
|
|
{
|
|
|
|
|
case "--tests":
|
|
|
|
|
host.Run(new OsuTestBrowser());
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
host.Run(new OsuGameDesktop(args));
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-11-08 08:04:31 +08:00
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2016-08-26 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|