1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 23:27:25 +08:00
osu-lazer/osu.Game/OsuGame.cs

237 lines
7.3 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;
2016-11-01 22:24:14 +08:00
using System.Threading;
using osu.Framework.Configuration;
using osu.Framework.GameModes;
2016-08-26 11:28:23 +08:00
using osu.Game.Configuration;
2016-09-01 18:06:09 +08:00
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2016-10-07 11:49:53 +08:00
using osu.Framework.Platform;
2016-10-01 17:01:52 +08:00
using osu.Game.Overlays;
2016-10-10 16:17:26 +08:00
using osu.Framework;
using osu.Framework.Input;
using osu.Game.Input;
using OpenTK.Input;
using osu.Framework.Logging;
using osu.Game.Graphics.UserInterface.Volume;
2016-11-05 06:06:58 +08:00
using osu.Game.Database;
2016-11-09 07:13:20 +08:00
using osu.Framework.Allocation;
2016-11-14 17:03:20 +08:00
using osu.Game.Modes;
2016-11-14 16:23:33 +08:00
using osu.Game.Screens;
using osu.Game.Screens.Menu;
using osu.Game.Screens.Play;
2016-08-26 11:28:23 +08:00
namespace osu.Game
{
public class OsuGame : OsuGameBase
2016-08-26 11:28:23 +08:00
{
2016-10-01 17:01:52 +08:00
public Toolbar Toolbar;
private ChatConsole chat;
private MusicController musicController;
private MainMenu mainMenu => modeStack?.ChildGameMode as MainMenu;
private Intro intro => modeStack as Intro;
private OsuGameMode modeStack;
private VolumeControl volume;
public Bindable<PlayMode> PlayMode;
2016-10-13 22:21:15 +08:00
string[] args;
2016-11-08 18:26:12 +08:00
public OptionsOverlay Options;
public OsuGame(string[] args = null)
{
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));
}
public void ToggleOptions() => Options.ToggleVisibility();
[BackgroundDependencyLoader]
private void load()
2016-08-26 11:28:23 +08:00
{
if (!Host.IsPrimaryInstance)
{
Logger.Log(@"osu! does not support multiple running instances.", LoggingTarget.Runtime, LogLevel.Error);
Environment.Exit(0);
}
if (args?.Length > 0)
2016-11-05 06:06:58 +08:00
Schedule(delegate { Dependencies.Get<BeatmapDatabase>().Import(args); });
2016-11-11 06:40:42 +08:00
Dependencies.Cache(this);
2016-10-08 18:18:50 +08:00
//attach our bindables to the audio subsystem.
2016-11-03 07:37:52 +08:00
Audio.Volume.Weld(Config.GetBindable<double>(OsuConfig.VolumeUniversal));
Audio.VolumeSample.Weld(Config.GetBindable<double>(OsuConfig.VolumeEffect));
Audio.VolumeTrack.Weld(Config.GetBindable<double>(OsuConfig.VolumeMusic));
2016-11-01 22:24:14 +08:00
PlayMode = Config.GetBindable<PlayMode>(OsuConfig.PlayMode);
}
protected override void LoadComplete()
{
base.LoadComplete();
2016-11-01 22:24:14 +08:00
2016-09-30 17:45:55 +08:00
Add(new Drawable[] {
new VolumeControlReceptor
{
RelativeSizeAxes = Axes.Both,
ActionRequested = delegate(InputState state) { volume.Adjust(state); }
},
2016-11-01 22:24:14 +08:00
mainContent = new Container
{
2016-11-01 22:24:14 +08:00
RelativeSizeAxes = Axes.Both,
},
volume = new VolumeControl
{
VolumeGlobal = Audio.Volume,
VolumeSample = Audio.VolumeSample,
VolumeTrack = Audio.VolumeTrack
},
overlayContent = new Container{ RelativeSizeAxes = Axes.Both },
new GlobalHotkeys //exists because UserInputManager is at a level below us.
{
Handler = globalHotkeyPressed
}
2016-09-30 17:45:55 +08:00
});
(modeStack = new Intro()).Preload(this, d =>
2016-11-01 22:24:14 +08:00
{
mainContent.Add(d);
modeStack.ModePushed += modeAdded;
modeStack.Exited += modeRemoved;
modeStack.DisplayAsRoot();
2016-11-01 22:24:14 +08:00
});
//overlay elements
(chat = new ChatConsole(API) { Depth = 0 }).Preload(this, overlayContent.Add);
(Options = new OptionsOverlay { Depth = 1 }).Preload(this, overlayContent.Add);
2016-11-15 19:43:22 +08:00
(musicController = new MusicController() { Depth = 3 }).Preload(this, overlayContent.Add);
2016-11-01 22:24:14 +08:00
(Toolbar = new Toolbar
{
Depth = 2,
OnHome = delegate { mainMenu?.MakeCurrent(); },
2016-11-01 22:24:14 +08:00
OnSettings = Options.ToggleVisibility,
OnPlayModeChange = delegate (PlayMode m) { PlayMode.Value = m; },
OnMusicController = musicController.ToggleVisibility
2016-11-09 07:13:20 +08:00
}).Preload(this, t =>
2016-11-01 22:24:14 +08:00
{
PlayMode.ValueChanged += delegate { Toolbar.SetGameMode(PlayMode.Value); };
PlayMode.TriggerChange();
overlayContent.Add(Toolbar);
2016-11-01 22:24:14 +08:00
});
Cursor.Alpha = 0;
}
private bool globalHotkeyPressed(InputState state, KeyDownEventArgs args)
{
switch (args.Key)
{
case Key.F8:
chat.ToggleVisibility();
return true;
}
2016-10-13 22:21:15 +08:00
2016-11-08 18:27:37 +08:00
if (state.Keyboard.ControlPressed)
{
switch (args.Key)
{
case Key.O:
Options.ToggleVisibility();
return true;
}
}
return base.OnKeyDown(state, args);
}
public Action<GameMode> ModeChanged;
2016-11-01 22:24:14 +08:00
private Container mainContent;
private Container overlayContent;
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
//central game mode change logic.
if ((newMode as OsuGameMode)?.ShowOverlays != true)
2016-10-06 22:32:56 +08:00
{
2016-10-13 22:21:15 +08:00
Toolbar.State = Visibility.Hidden;
musicController.State = Visibility.Hidden;
chat.State = Visibility.Hidden;
2016-10-06 22:32:56 +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
}
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 22:21:15 +08: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 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-01 18:06:09 +08:00
if (Parent != null)
{
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
}
}
}