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