osu/osu.Desktop/Program.cs

46 lines
1.5 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-08-26 03:28:23 +00:00
using System;
using System.IO;
2016-11-14 18:08:02 +00:00
using osu.Desktop.Beatmaps.IO;
2016-08-26 03:28:23 +00:00
using osu.Framework.Desktop;
using osu.Framework.Desktop.Platform;
using osu.Game.IPC;
2016-08-26 03:28:23 +00:00
namespace osu.Desktop
{
public static class Program
{
[STAThread]
public static int Main(string[] args)
2016-08-26 03:28:23 +00:00
{
2016-11-14 18:08:02 +00:00
LegacyFilesystemReader.Register();
2017-01-30 14:35:59 +00:00
// Back up the cwd before DesktopGameHost changes it
var cwd = Environment.CurrentDirectory;
2016-11-16 02:53:10 +00:00
using (DesktopGameHost host = Host.GetSuitableHost(@"osu", true))
{
if (!host.IsPrimaryInstance)
{
2017-03-04 09:51:16 +00:00
var importer = new BeatmapIPCChannel(host);
2017-01-30 14:35:59 +00:00
// Restore the cwd so relative paths given at the command line work correctly
2017-01-17 22:05:06 +00:00
Directory.SetCurrentDirectory(cwd);
foreach (var file in args)
2017-01-17 22:05:06 +00: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-17 22:05:06 +00:00
}
}
else
{
host.Run(new OsuGameDesktop(args));
}
return 0;
}
2016-08-26 03:28:23 +00:00
}
}
}