2016-08-26 11:28:23 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
2016-08-26 16:27:49 +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;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
using osu.Framework.Desktop;
|
2016-10-07 11:49:53 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
using osu.Game;
|
|
|
|
|
|
|
|
|
|
namespace osu.Desktop
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
{
|
2016-10-08 22:26:35 +08:00
|
|
|
|
BasicGameHost host = Host.GetSuitableHost(@"osu");
|
2016-10-15 02:10:01 +08:00
|
|
|
|
BaseGame osuGame = new OsuGame();
|
|
|
|
|
if (args.Length != 0 && args.All(File.Exists))
|
|
|
|
|
{
|
|
|
|
|
host.Load(osuGame);
|
|
|
|
|
var beatmapIPC = new IpcChannel<OsuGame.ImportBeatmap>(host);
|
|
|
|
|
foreach (var file in args)
|
|
|
|
|
beatmapIPC.SendMessage(new OsuGame.ImportBeatmap { Path = file }).Wait();
|
|
|
|
|
Console.WriteLine(@"Sent file to running instance");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
host.Add(osuGame);
|
2016-08-26 11:28:23 +08:00
|
|
|
|
host.Run();
|
2016-10-15 02:10:01 +08:00
|
|
|
|
return 0;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|