osu/osu.Desktop/Program.cs

43 lines
1.2 KiB
C#
Raw Normal View History

2016-08-26 03:28:23 +00:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
2016-08-26 08:27:49 +00:00
//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;
using System.Linq;
using osu.Framework;
2016-08-26 03:28:23 +00:00
using osu.Framework.Desktop;
using osu.Framework.Desktop.Platform;
2016-10-07 03:49:53 +00:00
using osu.Framework.Platform;
2016-08-26 03:28:23 +00:00
using osu.Game;
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
{
DesktopGameHost host = Host.GetSuitableHost(@"osu", true);
if (!host.IsPrimaryInstance)
{
var importer = new BeatmapImporter(host);
foreach (var file in args)
if (importer.Import(file).Wait(1000))
throw new TimeoutException(@"IPC took too long to send");
Console.WriteLine(@"Sent import requests to running instance");
}
else
{
BaseGame osu = new OsuGame(args);
host.Add(osu);
host.Run();
}
return 0;
2016-08-26 03:28:23 +00:00
}
}
}