2017-02-07 13:59:30 +09:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-08-26 12:28:23 +09:00
|
|
|
|
|
2016-10-06 21:10:01 +09:00
|
|
|
|
using System;
|
2016-10-04 17:15:03 +09:00
|
|
|
|
using osu.Framework.Configuration;
|
2017-02-17 18:59:30 +09:00
|
|
|
|
using osu.Framework.Screens;
|
2016-08-26 12:28:23 +09:00
|
|
|
|
using osu.Game.Configuration;
|
2016-09-01 19:06:09 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-10-08 00:43:06 +09:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-10-01 18:01:52 +09:00
|
|
|
|
using osu.Game.Overlays;
|
2016-10-08 00:43:06 +09:00
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using OpenTK.Input;
|
2016-10-14 14:09:35 +03:00
|
|
|
|
using osu.Framework.Logging;
|
2016-10-26 18:45:48 +09:00
|
|
|
|
using osu.Game.Graphics.UserInterface.Volume;
|
2016-11-08 18:13:20 -05:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-12-05 19:33:38 +09:00
|
|
|
|
using osu.Framework.Timing;
|
2016-12-01 14:22:29 +09:00
|
|
|
|
using osu.Game.Overlays.Toolbar;
|
2016-11-14 17:23:33 +09:00
|
|
|
|
using osu.Game.Screens;
|
|
|
|
|
using osu.Game.Screens.Menu;
|
2017-01-30 22:00:23 +09:00
|
|
|
|
using OpenTK;
|
2017-02-04 22:03:39 +01:00
|
|
|
|
using System.Linq;
|
2017-02-24 18:10:37 +09:00
|
|
|
|
using System.Threading.Tasks;
|
2017-08-01 15:12:12 +09:00
|
|
|
|
using osu.Framework.Platform;
|
2017-03-04 21:35:12 +09:00
|
|
|
|
using osu.Framework.Threading;
|
2017-03-04 19:02:36 +09:00
|
|
|
|
using osu.Game.Graphics;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-02-15 12:37:57 +09:00
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2017-07-26 13:22:46 +09:00
|
|
|
|
using osu.Game.Rulesets;
|
2017-03-04 19:02:36 +09:00
|
|
|
|
using osu.Game.Screens.Play;
|
2016-08-26 12:28:23 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
|
{
|
2016-09-24 00:39:20 +09:00
|
|
|
|
public class OsuGame : OsuGameBase
|
2016-08-26 12:28:23 +09:00
|
|
|
|
{
|
2016-10-01 18:01:52 +09:00
|
|
|
|
public Toolbar Toolbar;
|
2016-11-09 15:23:10 +09:00
|
|
|
|
|
2016-11-30 15:15:43 +09:00
|
|
|
|
private ChatOverlay chat;
|
2016-11-09 15:23:10 +09:00
|
|
|
|
|
2016-11-11 13:30:57 +09:00
|
|
|
|
private MusicController musicController;
|
|
|
|
|
|
2017-07-28 14:51:49 +09:00
|
|
|
|
private NotificationOverlay notificationOverlay;
|
2017-02-10 16:26:43 +09:00
|
|
|
|
|
2017-02-28 02:09:36 -04:00
|
|
|
|
private DialogOverlay dialogOverlay;
|
|
|
|
|
|
2017-05-17 05:58:34 -03:00
|
|
|
|
private DirectOverlay direct;
|
|
|
|
|
|
2017-05-26 00:58:18 -03:00
|
|
|
|
private SocialOverlay social;
|
|
|
|
|
|
2017-06-15 17:03:33 +08:00
|
|
|
|
private UserProfileOverlay userProfile;
|
|
|
|
|
|
2017-08-01 15:12:12 +09:00
|
|
|
|
public virtual Storage GetStorageForStableInstall() => null;
|
|
|
|
|
|
2017-02-17 20:07:11 +09:00
|
|
|
|
private Intro intro
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
Screen s = screenStack;
|
|
|
|
|
while (s != null && !(s is Intro))
|
|
|
|
|
s = s.ChildScreen;
|
|
|
|
|
return s as Intro;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-09 15:23:10 +09:00
|
|
|
|
|
2017-07-13 16:39:27 +09:00
|
|
|
|
public float ToolbarOffset => Toolbar.Position.Y + Toolbar.DrawHeight;
|
|
|
|
|
|
2017-02-17 18:59:30 +09:00
|
|
|
|
private OsuScreen screenStack;
|
2016-10-04 17:15:03 +09:00
|
|
|
|
|
2016-10-26 18:45:48 +09:00
|
|
|
|
private VolumeControl volume;
|
|
|
|
|
|
2017-04-15 05:52:46 +09:00
|
|
|
|
private Bindable<int> configRuleset;
|
2017-04-17 17:43:48 +09:00
|
|
|
|
public Bindable<RulesetInfo> Ruleset = new Bindable<RulesetInfo>();
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2017-03-23 13:41:50 +09:00
|
|
|
|
private readonly string[] args;
|
2016-10-21 18:25:22 +09:00
|
|
|
|
|
2017-05-15 10:55:29 +09:00
|
|
|
|
private SettingsOverlay settings;
|
2016-11-08 19:26:12 +09:00
|
|
|
|
|
2016-10-21 18:25:22 +09:00
|
|
|
|
public OsuGame(string[] args = null)
|
2016-10-10 16:56:01 -04:00
|
|
|
|
{
|
|
|
|
|
this.args = args;
|
|
|
|
|
}
|
2016-10-01 18:01:52 +09:00
|
|
|
|
|
2017-05-15 10:55:29 +09:00
|
|
|
|
public void ToggleSettings() => settings.ToggleVisibility();
|
2016-11-12 19:44:16 +09:00
|
|
|
|
|
2017-05-17 05:58:34 -03:00
|
|
|
|
public void ToggleDirect() => direct.ToggleVisibility();
|
|
|
|
|
|
2017-07-21 19:03:43 +02:00
|
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
|
|
|
|
|
protected override IReadOnlyDependencyContainer CreateLocalDependencies(IReadOnlyDependencyContainer parent) =>
|
|
|
|
|
dependencies = new DependencyContainer(base.CreateLocalDependencies(parent));
|
|
|
|
|
|
2016-11-12 19:44:16 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-06-08 17:58:28 +09:00
|
|
|
|
private void load(FrameworkConfigManager frameworkConfig)
|
2016-08-26 12:28:23 +09:00
|
|
|
|
{
|
2017-06-08 17:58:28 +09:00
|
|
|
|
this.frameworkConfig = frameworkConfig;
|
|
|
|
|
|
2016-10-10 16:56:01 -04:00
|
|
|
|
if (!Host.IsPrimaryInstance)
|
|
|
|
|
{
|
2016-10-14 14:10:01 -04:00
|
|
|
|
Logger.Log(@"osu! does not support multiple running instances.", LoggingTarget.Runtime, LogLevel.Error);
|
2016-10-10 16:56:01 -04:00
|
|
|
|
Environment.Exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-21 18:25:22 +09:00
|
|
|
|
if (args?.Length > 0)
|
2017-02-12 14:53:33 +09:00
|
|
|
|
{
|
|
|
|
|
var paths = args.Where(a => !a.StartsWith(@"-"));
|
2017-07-27 16:56:41 +09:00
|
|
|
|
Task.Run(() => BeatmapManager.Import(paths.ToArray()));
|
2017-02-12 14:53:33 +09:00
|
|
|
|
}
|
2016-10-21 18:25:22 +09:00
|
|
|
|
|
2017-07-21 19:03:43 +02:00
|
|
|
|
dependencies.Cache(this);
|
2016-11-10 17:40:42 -05:00
|
|
|
|
|
2017-05-15 10:56:27 +09:00
|
|
|
|
configRuleset = LocalConfig.GetBindable<int>(OsuSetting.Ruleset);
|
2017-07-27 16:56:41 +09:00
|
|
|
|
Ruleset.Value = RulesetStore.GetRuleset(configRuleset.Value);
|
2017-04-17 19:44:03 +09:00
|
|
|
|
Ruleset.ValueChanged += r => configRuleset.Value = r.ID ?? 0;
|
2016-11-12 18:34:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-04 21:35:12 +09:00
|
|
|
|
private ScheduledDelegate scoreLoad;
|
|
|
|
|
|
2017-03-04 19:02:36 +09:00
|
|
|
|
protected void LoadScore(Score s)
|
|
|
|
|
{
|
2017-03-04 21:35:12 +09:00
|
|
|
|
scoreLoad?.Cancel();
|
|
|
|
|
|
2017-03-04 19:02:36 +09:00
|
|
|
|
var menu = intro.ChildScreen;
|
|
|
|
|
|
|
|
|
|
if (menu == null)
|
|
|
|
|
{
|
2017-03-04 21:35:12 +09:00
|
|
|
|
scoreLoad = Schedule(() => LoadScore(s));
|
2017-03-04 19:02:36 +09:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!menu.IsCurrentScreen)
|
|
|
|
|
{
|
|
|
|
|
menu.MakeCurrent();
|
2017-07-17 16:51:21 +03:00
|
|
|
|
this.Delay(500).Schedule(() => LoadScore(s), out scoreLoad);
|
2017-03-04 19:02:36 +09:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (s.Beatmap == null)
|
|
|
|
|
{
|
2017-07-28 14:51:49 +09:00
|
|
|
|
notificationOverlay.Post(new SimpleNotification
|
2017-03-04 19:02:36 +09:00
|
|
|
|
{
|
|
|
|
|
Text = @"Tried to load a score for a beatmap we don't have!",
|
|
|
|
|
Icon = FontAwesome.fa_life_saver,
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-27 16:56:41 +09:00
|
|
|
|
Beatmap.Value = BeatmapManager.GetWorkingBeatmap(s.Beatmap);
|
2017-03-04 19:02:36 +09:00
|
|
|
|
|
2017-03-31 15:59:53 +09:00
|
|
|
|
menu.Push(new PlayerLoader(new ReplayPlayer(s.Replay)));
|
2017-03-04 19:02:36 +09:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 18:34:36 +01:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2016-11-01 23:24:14 +09:00
|
|
|
|
|
2017-07-31 18:03:55 +09:00
|
|
|
|
// hook up notifications to components.
|
|
|
|
|
BeatmapManager.PostNotification = n => notificationOverlay?.Post(n);
|
2017-08-01 15:12:12 +09:00
|
|
|
|
BeatmapManager.GetStableStorage = GetStorageForStableInstall;
|
2017-07-31 18:03:55 +09:00
|
|
|
|
|
2017-07-11 16:58:06 +03:00
|
|
|
|
AddRange(new Drawable[] {
|
2016-10-26 18:45:48 +09:00
|
|
|
|
new VolumeControlReceptor
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2016-11-15 15:22:14 +09:00
|
|
|
|
ActionRequested = delegate(InputState state) { volume.Adjust(state); }
|
2016-10-26 18:45:48 +09:00
|
|
|
|
},
|
2016-11-01 23:24:14 +09:00
|
|
|
|
mainContent = new Container
|
2016-10-04 17:15:03 +09:00
|
|
|
|
{
|
2016-11-01 23:24:14 +09:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2016-10-04 17:15:03 +09:00
|
|
|
|
},
|
2016-11-23 06:26:46 -05:00
|
|
|
|
volume = new VolumeControl(),
|
2017-06-07 19:53:37 +08:00
|
|
|
|
overlayContent = new Container { RelativeSizeAxes = Axes.Both },
|
2017-05-16 12:53:50 +09:00
|
|
|
|
new OnScreenDisplay(),
|
2016-10-08 00:43:06 +09:00
|
|
|
|
new GlobalHotkeys //exists because UserInputManager is at a level below us.
|
|
|
|
|
{
|
|
|
|
|
Handler = globalHotkeyPressed
|
2016-10-07 03:05:26 +09:00
|
|
|
|
}
|
2016-09-30 18:45:55 +09:00
|
|
|
|
});
|
2016-10-04 17:15:03 +09:00
|
|
|
|
|
2017-04-02 15:56:12 +09:00
|
|
|
|
LoadComponentAsync(screenStack = new Loader(), d =>
|
2016-11-01 23:24:14 +09:00
|
|
|
|
{
|
2017-02-17 18:59:30 +09:00
|
|
|
|
screenStack.ModePushed += screenAdded;
|
|
|
|
|
screenStack.Exited += screenRemoved;
|
|
|
|
|
mainContent.Add(screenStack);
|
2016-11-01 23:24:14 +09:00
|
|
|
|
});
|
|
|
|
|
|
2016-11-09 15:23:10 +09:00
|
|
|
|
//overlay elements
|
2017-05-21 18:52:30 -03:00
|
|
|
|
LoadComponentAsync(direct = new DirectOverlay { Depth = -1 }, mainContent.Add);
|
2017-05-26 00:58:18 -03:00
|
|
|
|
LoadComponentAsync(social = new SocialOverlay { Depth = -1 }, mainContent.Add);
|
2017-05-12 19:03:21 +09:00
|
|
|
|
LoadComponentAsync(chat = new ChatOverlay { Depth = -1 }, mainContent.Add);
|
2017-05-15 10:55:29 +09:00
|
|
|
|
LoadComponentAsync(settings = new SettingsOverlay { Depth = -1 }, overlayContent.Add);
|
2017-07-18 10:41:52 +09:00
|
|
|
|
LoadComponentAsync(userProfile = new UserProfileOverlay { Depth = -2 }, mainContent.Add);
|
2017-04-02 15:56:12 +09:00
|
|
|
|
LoadComponentAsync(musicController = new MusicController
|
2017-01-30 22:00:23 +09:00
|
|
|
|
{
|
2017-07-18 10:41:52 +09:00
|
|
|
|
Depth = -3,
|
2017-01-30 22:00:23 +09:00
|
|
|
|
Position = new Vector2(0, Toolbar.HEIGHT),
|
2017-01-30 22:53:50 +09:00
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
2017-04-02 15:56:12 +09:00
|
|
|
|
}, overlayContent.Add);
|
2016-12-02 18:43:01 +09:00
|
|
|
|
|
2017-07-28 14:51:49 +09:00
|
|
|
|
LoadComponentAsync(notificationOverlay = new NotificationOverlay
|
2017-02-10 16:26:43 +09:00
|
|
|
|
{
|
2017-07-18 10:41:52 +09:00
|
|
|
|
Depth = -3,
|
2017-02-10 16:26:43 +09:00
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
2017-04-02 15:56:12 +09:00
|
|
|
|
}, overlayContent.Add);
|
2017-02-10 16:26:43 +09:00
|
|
|
|
|
2017-04-02 15:56:12 +09:00
|
|
|
|
LoadComponentAsync(dialogOverlay = new DialogOverlay
|
2017-02-28 02:09:36 -04:00
|
|
|
|
{
|
2017-07-18 10:41:52 +09:00
|
|
|
|
Depth = -5,
|
2017-04-02 15:56:12 +09:00
|
|
|
|
}, overlayContent.Add);
|
2017-02-28 02:09:36 -04:00
|
|
|
|
|
2017-02-15 12:37:57 +09:00
|
|
|
|
Logger.NewEntry += entry =>
|
|
|
|
|
{
|
|
|
|
|
if (entry.Level < LogLevel.Important) return;
|
|
|
|
|
|
2017-07-28 14:51:49 +09:00
|
|
|
|
notificationOverlay.Post(new SimpleNotification
|
2017-02-15 12:37:57 +09:00
|
|
|
|
{
|
|
|
|
|
Text = $@"{entry.Level}: {entry.Message}"
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2017-07-21 19:03:43 +02:00
|
|
|
|
dependencies.Cache(settings);
|
|
|
|
|
dependencies.Cache(social);
|
|
|
|
|
dependencies.Cache(chat);
|
|
|
|
|
dependencies.Cache(userProfile);
|
|
|
|
|
dependencies.Cache(musicController);
|
2017-07-28 14:51:49 +09:00
|
|
|
|
dependencies.Cache(notificationOverlay);
|
2017-07-21 19:03:43 +02:00
|
|
|
|
dependencies.Cache(dialogOverlay);
|
2016-12-02 18:43:01 +09:00
|
|
|
|
|
2017-06-07 20:15:58 +09:00
|
|
|
|
// ensure both overlays aren't presented at the same time
|
|
|
|
|
chat.StateChanged += (container, state) => social.State = state == Visibility.Visible ? Visibility.Hidden : social.State;
|
|
|
|
|
social.StateChanged += (container, state) => chat.State = state == Visibility.Visible ? Visibility.Hidden : chat.State;
|
|
|
|
|
|
2017-04-02 15:56:12 +09:00
|
|
|
|
LoadComponentAsync(Toolbar = new Toolbar
|
2016-11-01 23:24:14 +09:00
|
|
|
|
{
|
2017-07-18 10:41:52 +09:00
|
|
|
|
Depth = -4,
|
2017-02-17 20:07:11 +09:00
|
|
|
|
OnHome = delegate { intro?.ChildScreen?.MakeCurrent(); },
|
2017-04-21 16:03:59 +09:00
|
|
|
|
}, overlayContent.Add);
|
2016-10-06 21:10:01 +09:00
|
|
|
|
|
2017-05-15 10:55:29 +09:00
|
|
|
|
settings.StateChanged += delegate
|
2016-11-30 18:28:08 +09:00
|
|
|
|
{
|
2017-05-15 10:55:29 +09:00
|
|
|
|
switch (settings.State)
|
2016-11-30 18:28:08 +09:00
|
|
|
|
{
|
|
|
|
|
case Visibility.Hidden:
|
2017-07-22 20:50:25 +02:00
|
|
|
|
intro.MoveToX(0, SettingsOverlay.TRANSITION_LENGTH, Easing.OutQuint);
|
2016-11-30 18:28:08 +09:00
|
|
|
|
break;
|
|
|
|
|
case Visibility.Visible:
|
2017-07-22 20:50:25 +02:00
|
|
|
|
intro.MoveToX(SettingsOverlay.SIDEBAR_WIDTH / 2, SettingsOverlay.TRANSITION_LENGTH, Easing.OutQuint);
|
2016-11-30 18:28:08 +09:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2017-03-16 23:58:36 +09:00
|
|
|
|
Cursor.State = Visibility.Hidden;
|
2016-10-06 21:10:01 +09:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-08 00:43:06 +09:00
|
|
|
|
private bool globalHotkeyPressed(InputState state, KeyDownEventArgs args)
|
|
|
|
|
{
|
2017-03-06 17:18:31 +09:00
|
|
|
|
if (args.Repeat || intro == null) return false;
|
2016-12-05 19:33:38 +09:00
|
|
|
|
|
2016-10-08 00:43:06 +09:00
|
|
|
|
switch (args.Key)
|
|
|
|
|
{
|
|
|
|
|
case Key.F8:
|
2016-11-09 15:23:10 +09:00
|
|
|
|
chat.ToggleVisibility();
|
2016-10-08 00:43:06 +09:00
|
|
|
|
return true;
|
2017-05-26 00:58:18 -03:00
|
|
|
|
case Key.F9:
|
|
|
|
|
social.ToggleVisibility();
|
|
|
|
|
return true;
|
2016-12-05 19:33:38 +09:00
|
|
|
|
case Key.PageUp:
|
|
|
|
|
case Key.PageDown:
|
2017-03-07 10:59:19 +09:00
|
|
|
|
var swClock = (Clock as ThrottledFrameClock)?.Source as StopwatchClock;
|
|
|
|
|
if (swClock == null) return false;
|
|
|
|
|
|
|
|
|
|
swClock.Rate *= args.Key == Key.PageUp ? 1.1f : 0.9f;
|
|
|
|
|
Logger.Log($@"Adjusting game clock to {swClock.Rate}", LoggingTarget.Debug);
|
2016-12-05 19:33:38 +09:00
|
|
|
|
return true;
|
2016-10-08 00:43:06 +09:00
|
|
|
|
}
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-11-08 19:27:37 +09:00
|
|
|
|
if (state.Keyboard.ControlPressed)
|
|
|
|
|
{
|
|
|
|
|
switch (args.Key)
|
|
|
|
|
{
|
2017-06-08 17:58:28 +09:00
|
|
|
|
case Key.R:
|
|
|
|
|
if (state.Keyboard.AltPressed)
|
|
|
|
|
{
|
2017-06-08 20:57:21 +09:00
|
|
|
|
var sensitivity = frameworkConfig.GetBindable<double>(FrameworkSetting.CursorSensitivity);
|
|
|
|
|
|
|
|
|
|
sensitivity.Disabled = false;
|
|
|
|
|
sensitivity.Value = 1;
|
|
|
|
|
sensitivity.Disabled = true;
|
|
|
|
|
|
2017-06-08 17:58:28 +09:00
|
|
|
|
frameworkConfig.Set(FrameworkSetting.ActiveInputHandlers, string.Empty);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2017-02-08 19:28:18 +09:00
|
|
|
|
case Key.T:
|
|
|
|
|
Toolbar.ToggleVisibility();
|
|
|
|
|
return true;
|
2016-11-08 19:27:37 +09:00
|
|
|
|
case Key.O:
|
2017-05-15 10:55:29 +09:00
|
|
|
|
settings.ToggleVisibility();
|
2016-11-08 19:27:37 +09:00
|
|
|
|
return true;
|
2017-05-17 05:58:34 -03:00
|
|
|
|
case Key.D:
|
2017-05-27 20:22:19 +09:00
|
|
|
|
if (state.Keyboard.ShiftPressed || state.Keyboard.AltPressed)
|
|
|
|
|
return false;
|
|
|
|
|
|
2017-05-17 05:58:34 -03:00
|
|
|
|
direct.ToggleVisibility();
|
|
|
|
|
return true;
|
2016-11-08 19:27:37 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-27 18:18:12 +03:00
|
|
|
|
return false;
|
2016-10-08 00:43:06 +09:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-14 07:22:46 +08:00
|
|
|
|
public event Action<Screen> ScreenChanged;
|
2016-10-06 21:10:01 +09:00
|
|
|
|
|
2016-11-01 23:24:14 +09:00
|
|
|
|
private Container mainContent;
|
|
|
|
|
|
2016-11-09 15:23:10 +09:00
|
|
|
|
private Container overlayContent;
|
|
|
|
|
|
2017-03-16 23:58:36 +09:00
|
|
|
|
private OsuScreen currentScreen;
|
2017-06-08 17:58:28 +09:00
|
|
|
|
private FrameworkConfigManager frameworkConfig;
|
2017-03-16 23:58:36 +09:00
|
|
|
|
|
2017-03-14 07:22:46 +08:00
|
|
|
|
private void screenChanged(Screen newScreen)
|
2016-10-06 21:10:01 +09:00
|
|
|
|
{
|
2017-03-16 23:58:36 +09:00
|
|
|
|
currentScreen = newScreen as OsuScreen;
|
|
|
|
|
|
|
|
|
|
if (currentScreen == null)
|
|
|
|
|
{
|
|
|
|
|
Exit();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
//central game screen change logic.
|
2017-03-18 02:03:44 +09:00
|
|
|
|
if (!currentScreen.ShowOverlays)
|
2016-10-06 23:32:56 +09:00
|
|
|
|
{
|
2017-05-15 10:55:29 +09:00
|
|
|
|
settings.State = Visibility.Hidden;
|
2016-10-13 22:21:15 +08:00
|
|
|
|
Toolbar.State = Visibility.Hidden;
|
2016-11-15 20:43:43 +09:00
|
|
|
|
musicController.State = Visibility.Hidden;
|
2016-11-09 15:22:54 +09:00
|
|
|
|
chat.State = Visibility.Hidden;
|
2017-05-24 13:41:07 +09:00
|
|
|
|
direct.State = Visibility.Hidden;
|
2017-05-26 02:32:01 -03:00
|
|
|
|
social.State = Visibility.Hidden;
|
2017-06-22 21:43:58 +08:00
|
|
|
|
userProfile.State = Visibility.Hidden;
|
2017-08-01 11:31:11 +09:00
|
|
|
|
notificationOverlay.State = Visibility.Hidden;
|
2016-10-06 23:32:56 +09:00
|
|
|
|
}
|
2016-10-06 21:10:01 +09:00
|
|
|
|
else
|
2016-10-06 23:32:56 +09:00
|
|
|
|
{
|
2016-10-13 22:21:15 +08:00
|
|
|
|
Toolbar.State = Visibility.Visible;
|
2016-10-06 23:32:56 +09:00
|
|
|
|
}
|
2016-10-06 21:10:01 +09:00
|
|
|
|
|
2017-03-14 07:22:46 +08:00
|
|
|
|
ScreenChanged?.Invoke(newScreen);
|
2016-10-06 21:10:01 +09:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 19:12:36 +09:00
|
|
|
|
protected override bool OnExiting()
|
|
|
|
|
{
|
2017-02-18 14:16:46 +09:00
|
|
|
|
if (screenStack.ChildScreen == null) return false;
|
|
|
|
|
|
|
|
|
|
if (intro == null) return true;
|
|
|
|
|
|
2017-02-17 18:59:30 +09:00
|
|
|
|
if (!intro.DidLoadMenu || intro.ChildScreen != null)
|
2016-10-07 19:12:36 +09:00
|
|
|
|
{
|
2017-02-17 15:33:08 +09:00
|
|
|
|
Scheduler.Add(intro.MakeCurrent);
|
2016-10-07 19:12:36 +09:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-10-07 19:12:36 +09:00
|
|
|
|
return base.OnExiting();
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 18:40:39 +09:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Use to programatically exit the game as if the user was triggering via alt-f4.
|
|
|
|
|
/// Will keep persisting until an exit occurs (exit may be blocked multiple times).
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void GracefullyExit()
|
|
|
|
|
{
|
|
|
|
|
if (!OnExiting())
|
|
|
|
|
Exit();
|
|
|
|
|
else
|
|
|
|
|
Scheduler.AddDelayed(GracefullyExit, 2000);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-08 19:32:55 +09:00
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildren();
|
|
|
|
|
|
2017-07-13 16:39:27 +09:00
|
|
|
|
mainContent.Padding = new MarginPadding { Top = ToolbarOffset };
|
2017-03-16 23:58:36 +09:00
|
|
|
|
|
2017-04-05 17:38:13 +09:00
|
|
|
|
Cursor.State = currentScreen?.HasLocalCursorDisplayed == false ? Visibility.Visible : Visibility.Hidden;
|
2017-02-08 19:32:55 +09:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 18:59:30 +09:00
|
|
|
|
private void screenAdded(Screen newScreen)
|
2016-10-06 21:10:01 +09:00
|
|
|
|
{
|
2017-02-17 18:59:30 +09:00
|
|
|
|
newScreen.ModePushed += screenAdded;
|
|
|
|
|
newScreen.Exited += screenRemoved;
|
2016-10-06 21:10:01 +09:00
|
|
|
|
|
2017-03-14 07:22:46 +08:00
|
|
|
|
screenChanged(newScreen);
|
2016-10-06 21:10:01 +09:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 18:59:30 +09:00
|
|
|
|
private void screenRemoved(Screen newScreen)
|
2016-10-06 21:10:01 +09:00
|
|
|
|
{
|
2017-03-14 07:22:46 +08:00
|
|
|
|
screenChanged(newScreen);
|
2016-08-26 12:28:23 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|