osu/osu.Game/OsuGame.cs

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