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
|
|
|
|
|
2016-10-06 20:10:01 +08:00
|
|
|
|
using System;
|
2016-10-04 16:15:03 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2016-10-06 20:10:01 +08:00
|
|
|
|
using osu.Framework.GameModes;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.GameModes.Menu;
|
2016-09-01 18:06:09 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using osu.Framework.Graphics;
|
2016-10-07 23:43:06 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-09-30 17:45:55 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2016-10-07 11:49:53 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2016-10-06 22:32:56 +08:00
|
|
|
|
using osu.Game.GameModes;
|
2016-09-30 17:45:55 +08:00
|
|
|
|
using osu.Game.Graphics.Background;
|
2016-09-02 17:06:36 +08:00
|
|
|
|
using osu.Game.GameModes.Play;
|
2016-09-30 17:45:55 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2016-10-01 17:01:52 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2016-10-10 16:17:26 +08:00
|
|
|
|
using osu.Framework;
|
2016-10-07 23:43:06 +08:00
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Game.Input;
|
|
|
|
|
using OpenTK.Input;
|
2016-10-11 04:56:01 +08:00
|
|
|
|
using System.IO;
|
2016-10-11 22:53:16 +08:00
|
|
|
|
using osu.Game.Beatmaps.IO;
|
2016-10-14 19:09:35 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
|
{
|
2016-09-23 23:39:20 +08:00
|
|
|
|
public class OsuGame : OsuGameBase
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2016-10-11 21:47:50 +08:00
|
|
|
|
private class ImportBeatmap
|
2016-10-11 04:56:01 +08:00
|
|
|
|
{
|
|
|
|
|
public string Path;
|
|
|
|
|
}
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-10-01 17:01:52 +08:00
|
|
|
|
public Toolbar Toolbar;
|
2016-10-07 23:43:06 +08:00
|
|
|
|
public ChatConsole Chat;
|
2016-10-06 20:10:01 +08:00
|
|
|
|
public MainMenu MainMenu => intro?.ChildGameMode as MainMenu;
|
|
|
|
|
private Intro intro;
|
2016-10-11 04:56:01 +08:00
|
|
|
|
private string[] args;
|
2016-10-12 23:31:44 +08:00
|
|
|
|
private IpcChannel<ImportBeatmap> BeatmapIPC;
|
2016-10-04 16:15:03 +08:00
|
|
|
|
|
|
|
|
|
public Bindable<PlayMode> PlayMode;
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-10-11 04:56:01 +08:00
|
|
|
|
public OsuGame(string[] args)
|
|
|
|
|
{
|
|
|
|
|
this.args = args;
|
|
|
|
|
}
|
2016-10-01 17:01:52 +08:00
|
|
|
|
|
2016-09-20 15:26:07 +08:00
|
|
|
|
public override void SetHost(BasicGameHost host)
|
|
|
|
|
{
|
|
|
|
|
base.SetHost(host);
|
|
|
|
|
|
|
|
|
|
host.Size = new Vector2(Config.Get<int>(OsuConfig.Width), Config.Get<int>(OsuConfig.Height));
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-10 16:17:26 +08:00
|
|
|
|
public override void Load(BaseGame game)
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2016-10-12 23:31:44 +08:00
|
|
|
|
BeatmapIPC = new IpcChannel<ImportBeatmap>(Host);
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-10-11 04:56:01 +08:00
|
|
|
|
if (!Host.IsPrimaryInstance)
|
|
|
|
|
{
|
|
|
|
|
if (args.Length == 1 && File.Exists(args[0]))
|
|
|
|
|
{
|
2016-10-11 21:47:50 +08:00
|
|
|
|
BeatmapIPC.SendMessage(new ImportBeatmap { Path = args[0] }).Wait();
|
2016-10-14 19:09:35 +08:00
|
|
|
|
Logger.Log(@"Sent file to running instance");
|
2016-10-11 04:56:01 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
2016-10-14 19:09:35 +08:00
|
|
|
|
Logger.Log(@"osu! does not support multiple running instances.", LoggingTarget.Runtime, LogLevel.Error);
|
2016-10-11 04:56:01 +08:00
|
|
|
|
Environment.Exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-11 22:53:16 +08:00
|
|
|
|
BeatmapIPC.MessageReceived += message =>
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-10-19 03:42:07 +08:00
|
|
|
|
Beatmaps.ImportBeatmap(message.Path);
|
2016-10-11 22:53:16 +08:00
|
|
|
|
// TODO: Switch to beatmap list and select the new song
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
// TODO: Show the user some info?
|
2016-10-14 19:09:35 +08:00
|
|
|
|
Logger.Log($@"Failed to import beatmap: {ex}", LoggingTarget.Runtime, LogLevel.Error);
|
2016-10-11 22:53:16 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-10-11 21:47:50 +08:00
|
|
|
|
base.Load(game);
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
2016-10-08 18:18:50 +08:00
|
|
|
|
//attach our bindables to the audio subsystem.
|
2016-10-07 02:05:26 +08:00
|
|
|
|
Audio.Volume.Weld(Config.GetBindable<double>(OsuConfig.VolumeGlobal));
|
|
|
|
|
Audio.VolumeSample.Weld(Config.GetBindable<double>(OsuConfig.VolumeEffect));
|
|
|
|
|
Audio.VolumeTrack.Weld(Config.GetBindable<double>(OsuConfig.VolumeMusic));
|
|
|
|
|
|
2016-09-30 17:45:55 +08:00
|
|
|
|
Add(new Drawable[] {
|
2016-10-06 20:10:01 +08:00
|
|
|
|
intro = new Intro(),
|
2016-10-04 16:15:03 +08:00
|
|
|
|
Toolbar = new Toolbar
|
|
|
|
|
{
|
2016-10-06 20:10:01 +08:00
|
|
|
|
OnHome = delegate { MainMenu?.MakeCurrent(); },
|
2016-10-14 05:02:13 +08:00
|
|
|
|
OnSettings = Options.ToggleVisibility,
|
2016-10-04 16:15:03 +08:00
|
|
|
|
OnPlayModeChange = delegate (PlayMode m) { PlayMode.Value = m; },
|
|
|
|
|
},
|
2016-10-12 14:22:57 +08:00
|
|
|
|
Chat = new ChatConsole(API),
|
2016-10-07 02:05:26 +08:00
|
|
|
|
new VolumeControl
|
|
|
|
|
{
|
|
|
|
|
VolumeGlobal = Audio.Volume,
|
|
|
|
|
VolumeSample = Audio.VolumeSample,
|
|
|
|
|
VolumeTrack = Audio.VolumeTrack
|
2016-10-07 23:43:06 +08:00
|
|
|
|
},
|
|
|
|
|
new GlobalHotkeys //exists because UserInputManager is at a level below us.
|
|
|
|
|
{
|
|
|
|
|
Handler = globalHotkeyPressed
|
2016-10-07 02:05:26 +08:00
|
|
|
|
}
|
2016-09-30 17:45:55 +08:00
|
|
|
|
});
|
2016-10-04 16:15:03 +08:00
|
|
|
|
|
2016-10-06 20:10:01 +08:00
|
|
|
|
intro.ModePushed += modeAdded;
|
2016-10-07 17:46:05 +08:00
|
|
|
|
intro.Exited += modeRemoved;
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
2016-10-04 16:15:03 +08:00
|
|
|
|
PlayMode = Config.GetBindable<PlayMode>(OsuConfig.PlayMode);
|
|
|
|
|
PlayMode.ValueChanged += delegate { Toolbar.SetGameMode(PlayMode.Value); };
|
|
|
|
|
PlayMode.TriggerChange();
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
|
|
|
|
Cursor.Alpha = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 23:43:06 +08:00
|
|
|
|
private bool globalHotkeyPressed(InputState state, KeyDownEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
switch (args.Key)
|
|
|
|
|
{
|
|
|
|
|
case Key.F8:
|
2016-10-14 05:02:13 +08:00
|
|
|
|
Chat.ToggleVisibility();
|
2016-10-07 23:43:06 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-10-07 23:43:06 +08:00
|
|
|
|
return base.OnKeyDown(state, args);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-06 20:10:01 +08:00
|
|
|
|
public Action<GameMode> ModeChanged;
|
|
|
|
|
|
|
|
|
|
private void modeChanged(GameMode newMode)
|
|
|
|
|
{
|
2016-10-06 22:32:56 +08:00
|
|
|
|
// - Ability to change window size
|
|
|
|
|
// - Ability to adjust music playback
|
|
|
|
|
// - Frame limiter changes
|
|
|
|
|
|
2016-10-06 20:10:01 +08:00
|
|
|
|
//central game mode change logic.
|
2016-10-07 19:38:52 +08:00
|
|
|
|
if (newMode is Player || newMode is Intro)
|
2016-10-06 22:32:56 +08:00
|
|
|
|
{
|
2016-10-13 22:21:15 +08:00
|
|
|
|
Toolbar.State = Visibility.Hidden;
|
|
|
|
|
Chat.State = Visibility.Hidden;
|
2016-10-06 22:32:56 +08:00
|
|
|
|
}
|
2016-10-06 20:10:01 +08:00
|
|
|
|
else
|
2016-10-06 22:32:56 +08:00
|
|
|
|
{
|
2016-10-13 22:21:15 +08:00
|
|
|
|
Toolbar.State = Visibility.Visible;
|
2016-10-06 22:32:56 +08:00
|
|
|
|
}
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
|
|
|
|
Cursor.FadeIn(100);
|
|
|
|
|
|
|
|
|
|
ModeChanged?.Invoke(newMode);
|
2016-10-07 17:46:05 +08:00
|
|
|
|
|
|
|
|
|
if (newMode == null)
|
|
|
|
|
Host.Exit();
|
2016-10-06 20:10:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 18:12:36 +08:00
|
|
|
|
protected override bool OnExiting()
|
|
|
|
|
{
|
|
|
|
|
if (!intro.DidLoadMenu || intro.ChildGameMode != null)
|
|
|
|
|
{
|
2016-10-07 23:43:06 +08:00
|
|
|
|
Scheduler.Add(delegate
|
|
|
|
|
{
|
|
|
|
|
intro.MakeCurrent();
|
|
|
|
|
});
|
2016-10-07 18:12:36 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-10-07 18:12:36 +08:00
|
|
|
|
return base.OnExiting();
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-06 20:10:01 +08:00
|
|
|
|
private void modeAdded(GameMode newMode)
|
|
|
|
|
{
|
|
|
|
|
newMode.ModePushed += modeAdded;
|
|
|
|
|
newMode.Exited += modeRemoved;
|
|
|
|
|
|
|
|
|
|
modeChanged(newMode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void modeRemoved(GameMode newMode)
|
|
|
|
|
{
|
|
|
|
|
modeChanged(newMode);
|
2016-08-26 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-11 01:23:26 +08:00
|
|
|
|
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2016-09-11 01:23:26 +08:00
|
|
|
|
if (!base.Invalidate(invalidation, source, shallPropagate)) return false;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
2016-09-01 18:06:09 +08:00
|
|
|
|
if (Parent != null)
|
|
|
|
|
{
|
2016-10-23 00:35:11 +08:00
|
|
|
|
Config.Set(OsuConfig.Width, DrawSize.X);
|
|
|
|
|
Config.Set(OsuConfig.Height, DrawSize.Y);
|
2016-09-01 18:06:09 +08:00
|
|
|
|
}
|
|
|
|
|
return true;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|