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

62 lines
1.9 KiB
C#
Raw Normal View History

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;
using System.IO;
using System.Linq;
2017-01-18 06:05:06 +08:00
using System.Threading;
2016-11-15 02:08:02 +08:00
using osu.Desktop.Beatmaps.IO;
using osu.Framework;
2016-08-26 11:28:23 +08:00
using osu.Framework.Desktop;
using osu.Framework.Desktop.Platform;
2016-10-07 11:49:53 +08:00
using osu.Framework.Platform;
2016-08-26 11:28:23 +08:00
using osu.Game;
using osu.Game.IPC;
using osu.Game.Modes;
using osu.Game.Modes.Catch;
using osu.Game.Modes.Mania;
using osu.Game.Modes.Osu;
using osu.Game.Modes.Taiko;
2016-08-26 11:28:23 +08:00
namespace osu.Desktop
{
public static class Program
{
[STAThread]
public static int Main(string[] args)
2016-08-26 11:28:23 +08:00
{
2016-11-15 02:08:02 +08:00
LegacyFilesystemReader.Register();
2017-01-18 06:05:06 +08:00
var cwd = Directory.GetCurrentDirectory();
2016-11-16 10:53:10 +08:00
using (DesktopGameHost host = Host.GetSuitableHost(@"osu", true))
{
if (!host.IsPrimaryInstance)
{
var importer = new BeatmapImporter(host);
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.Import(Path.GetFullPath(file)).Wait(3000))
throw new TimeoutException(@"IPC took too long to send");
2017-01-18 06:05:06 +08:00
Thread.Sleep(500);
}
}
else
{
Ruleset.Register(new OsuRuleset());
Ruleset.Register(new TaikoRuleset());
Ruleset.Register(new ManiaRuleset());
Ruleset.Register(new CatchRuleset());
BaseGame osu = new OsuGame(args);
host.Add(osu);
host.Run();
}
return 0;
}
2016-08-26 11:28:23 +08:00
}
}
}