2017-02-07 12:59:30 +08: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 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;
|
2017-02-17 17:59:30 +08:00
|
|
|
|
using osu.Framework.Screens;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2016-09-01 18:06:09 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-10-07 23:43:06 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-10-01 17:01:52 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2016-10-14 19:09:35 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2016-10-26 17:45:48 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface.Volume;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-12-01 13:22:29 +08:00
|
|
|
|
using osu.Game.Overlays.Toolbar;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Screens;
|
|
|
|
|
using osu.Game.Screens.Menu;
|
2017-01-30 21:00:23 +08:00
|
|
|
|
using OpenTK;
|
2017-02-05 05:03:39 +08:00
|
|
|
|
using System.Linq;
|
2017-12-25 17:22:58 +08:00
|
|
|
|
using System.Threading;
|
2017-02-24 17:10:37 +08:00
|
|
|
|
using System.Threading.Tasks;
|
2017-08-11 15:11:46 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2017-08-01 14:12:12 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2017-03-04 20:35:12 +08:00
|
|
|
|
using osu.Framework.Threading;
|
2017-03-04 18:02:36 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-02-15 11:37:57 +08:00
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2017-07-26 12:22:46 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2017-03-04 18:02:36 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2017-08-11 15:11:46 +08:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
|
{
|
2017-08-12 18:54:07 +08:00
|
|
|
|
public class OsuGame : OsuGameBase, IKeyBindingHandler<GlobalAction>
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2016-10-01 17:01:52 +08:00
|
|
|
|
public Toolbar Toolbar;
|
2016-11-09 14:23:10 +08:00
|
|
|
|
|
2016-11-30 14:15:43 +08:00
|
|
|
|
private ChatOverlay chat;
|
2016-11-09 14:23:10 +08:00
|
|
|
|
|
2016-11-11 12:30:57 +08:00
|
|
|
|
private MusicController musicController;
|
|
|
|
|
|
2017-12-24 17:28:37 +08:00
|
|
|
|
private NotificationOverlay notifications;
|
2017-02-10 15:26:43 +08:00
|
|
|
|
|
2017-02-28 14:09:36 +08:00
|
|
|
|
private DialogOverlay dialogOverlay;
|
|
|
|
|
|
2017-05-17 16:58:34 +08:00
|
|
|
|
private DirectOverlay direct;
|
|
|
|
|
|
2017-05-26 11:58:18 +08:00
|
|
|
|
private SocialOverlay social;
|
|
|
|
|
|
2017-06-15 17:03:33 +08:00
|
|
|
|
private UserProfileOverlay userProfile;
|
|
|
|
|
|
2017-09-25 17:58:03 +08:00
|
|
|
|
private BeatmapSetOverlay beatmapSetOverlay;
|
|
|
|
|
|
2017-08-01 14:12:12 +08:00
|
|
|
|
public virtual Storage GetStorageForStableInstall() => null;
|
|
|
|
|
|
2017-02-17 19:07:11 +08:00
|
|
|
|
private Intro intro
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
Screen s = screenStack;
|
|
|
|
|
while (s != null && !(s is Intro))
|
|
|
|
|
s = s.ChildScreen;
|
|
|
|
|
return s as Intro;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-09 14:23:10 +08:00
|
|
|
|
|
2017-07-13 15:39:27 +08:00
|
|
|
|
public float ToolbarOffset => Toolbar.Position.Y + Toolbar.DrawHeight;
|
|
|
|
|
|
2017-12-25 17:52:09 +08:00
|
|
|
|
public readonly BindableBool ShowOverlays = new BindableBool();
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
private OsuScreen screenStack;
|
2016-10-04 16:15:03 +08:00
|
|
|
|
|
2016-10-26 17:45:48 +08:00
|
|
|
|
private VolumeControl volume;
|
|
|
|
|
|
2017-04-15 04:52:46 +08:00
|
|
|
|
private Bindable<int> configRuleset;
|
2017-04-17 16:43:48 +08:00
|
|
|
|
public Bindable<RulesetInfo> Ruleset = new Bindable<RulesetInfo>();
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly string[] args;
|
2016-10-21 17:25:22 +08:00
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
private SettingsOverlay settings;
|
2016-11-08 18:26:12 +08:00
|
|
|
|
|
2016-10-21 17:25:22 +08:00
|
|
|
|
public OsuGame(string[] args = null)
|
2016-10-11 04:56:01 +08:00
|
|
|
|
{
|
|
|
|
|
this.args = args;
|
|
|
|
|
}
|
2016-10-01 17:01:52 +08:00
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public void ToggleSettings() => settings.ToggleVisibility();
|
2016-11-12 18:44:16 +08:00
|
|
|
|
|
2017-05-17 16:58:34 +08:00
|
|
|
|
public void ToggleDirect() => direct.ToggleVisibility();
|
|
|
|
|
|
2017-07-22 01:03:43 +08:00
|
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
|
|
|
|
|
protected override IReadOnlyDependencyContainer CreateLocalDependencies(IReadOnlyDependencyContainer parent) =>
|
|
|
|
|
dependencies = new DependencyContainer(base.CreateLocalDependencies(parent));
|
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-06-08 16:58:28 +08:00
|
|
|
|
private void load(FrameworkConfigManager frameworkConfig)
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2017-06-08 16:58:28 +08:00
|
|
|
|
this.frameworkConfig = frameworkConfig;
|
|
|
|
|
|
2016-10-11 04:56:01 +08:00
|
|
|
|
if (!Host.IsPrimaryInstance)
|
|
|
|
|
{
|
2016-10-15 02:10:01 +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-21 17:25:22 +08:00
|
|
|
|
if (args?.Length > 0)
|
2017-02-12 13:53:33 +08:00
|
|
|
|
{
|
|
|
|
|
var paths = args.Where(a => !a.StartsWith(@"-"));
|
2017-07-27 15:56:41 +08:00
|
|
|
|
Task.Run(() => BeatmapManager.Import(paths.ToArray()));
|
2017-02-12 13:53:33 +08:00
|
|
|
|
}
|
2016-10-21 17:25:22 +08:00
|
|
|
|
|
2017-07-22 01:03:43 +08:00
|
|
|
|
dependencies.Cache(this);
|
2016-11-11 06:40:42 +08:00
|
|
|
|
|
2017-05-15 09:56:27 +08:00
|
|
|
|
configRuleset = LocalConfig.GetBindable<int>(OsuSetting.Ruleset);
|
2017-11-21 22:13:00 +08:00
|
|
|
|
Ruleset.Value = RulesetStore.GetRuleset(configRuleset.Value) ?? RulesetStore.AvailableRulesets.First();
|
2017-04-17 18:44:03 +08:00
|
|
|
|
Ruleset.ValueChanged += r => configRuleset.Value = r.ID ?? 0;
|
2016-11-13 01:34:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-04 20:35:12 +08:00
|
|
|
|
private ScheduledDelegate scoreLoad;
|
|
|
|
|
|
2017-03-04 18:02:36 +08:00
|
|
|
|
protected void LoadScore(Score s)
|
|
|
|
|
{
|
2017-03-04 20:35:12 +08:00
|
|
|
|
scoreLoad?.Cancel();
|
|
|
|
|
|
2017-03-04 18:02:36 +08:00
|
|
|
|
var menu = intro.ChildScreen;
|
|
|
|
|
|
|
|
|
|
if (menu == null)
|
|
|
|
|
{
|
2017-03-04 20:35:12 +08:00
|
|
|
|
scoreLoad = Schedule(() => LoadScore(s));
|
2017-03-04 18:02:36 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!menu.IsCurrentScreen)
|
|
|
|
|
{
|
|
|
|
|
menu.MakeCurrent();
|
2017-07-17 21:51:21 +08:00
|
|
|
|
this.Delay(500).Schedule(() => LoadScore(s), out scoreLoad);
|
2017-03-04 18:02:36 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (s.Beatmap == null)
|
|
|
|
|
{
|
2017-12-24 17:28:37 +08:00
|
|
|
|
notifications.Post(new SimpleNotification
|
2017-03-04 18:02:36 +08:00
|
|
|
|
{
|
|
|
|
|
Text = @"Tried to load a score for a beatmap we don't have!",
|
|
|
|
|
Icon = FontAwesome.fa_life_saver,
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-27 15:56:41 +08:00
|
|
|
|
Beatmap.Value = BeatmapManager.GetWorkingBeatmap(s.Beatmap);
|
2017-03-04 18:02:36 +08:00
|
|
|
|
|
2017-03-31 14:59:53 +08:00
|
|
|
|
menu.Push(new PlayerLoader(new ReplayPlayer(s.Replay)));
|
2017-03-04 18:02:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2016-11-01 22:24:14 +08:00
|
|
|
|
|
2017-07-31 17:03:55 +08:00
|
|
|
|
// hook up notifications to components.
|
2017-12-24 17:28:37 +08:00
|
|
|
|
BeatmapManager.PostNotification = n => notifications?.Post(n);
|
2017-08-01 14:12:12 +08:00
|
|
|
|
BeatmapManager.GetStableStorage = GetStorageForStableInstall;
|
2017-07-31 17:03:55 +08:00
|
|
|
|
|
2017-10-23 12:08:58 +08:00
|
|
|
|
AddRange(new Drawable[]
|
|
|
|
|
{
|
2016-10-26 17:45:48 +08:00
|
|
|
|
new VolumeControlReceptor
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-08-22 13:44:13 +08:00
|
|
|
|
ActionRequested = action => volume.Adjust(action)
|
2016-10-26 17:45:48 +08:00
|
|
|
|
},
|
2017-10-23 12:08:58 +08:00
|
|
|
|
mainContent = new Container { RelativeSizeAxes = Axes.Both },
|
|
|
|
|
overlayContent = new Container { RelativeSizeAxes = Axes.Both, Depth = float.MinValue },
|
2016-09-30 17:45:55 +08:00
|
|
|
|
});
|
2016-10-04 16:15:03 +08:00
|
|
|
|
|
2017-10-23 00:20:12 +08:00
|
|
|
|
loadComponentSingleFile(screenStack = new Loader(), d =>
|
2016-11-01 22:24:14 +08:00
|
|
|
|
{
|
2017-02-17 17:59:30 +08:00
|
|
|
|
screenStack.ModePushed += screenAdded;
|
|
|
|
|
screenStack.Exited += screenRemoved;
|
|
|
|
|
mainContent.Add(screenStack);
|
2016-11-01 22:24:14 +08:00
|
|
|
|
});
|
|
|
|
|
|
2017-10-23 00:20:12 +08:00
|
|
|
|
loadComponentSingleFile(Toolbar = new Toolbar
|
|
|
|
|
{
|
|
|
|
|
Depth = -5,
|
|
|
|
|
OnHome = delegate
|
|
|
|
|
{
|
|
|
|
|
hideAllOverlays();
|
|
|
|
|
intro?.ChildScreen?.MakeCurrent();
|
|
|
|
|
},
|
|
|
|
|
}, overlayContent.Add);
|
|
|
|
|
|
2017-10-24 12:10:17 +08:00
|
|
|
|
loadComponentSingleFile(volume = new VolumeControl(), Add);
|
|
|
|
|
loadComponentSingleFile(new OnScreenDisplay(), Add);
|
2017-10-23 12:08:58 +08:00
|
|
|
|
|
2016-11-09 14:23:10 +08:00
|
|
|
|
//overlay elements
|
2017-10-23 00:20:12 +08:00
|
|
|
|
loadComponentSingleFile(direct = new DirectOverlay { Depth = -1 }, mainContent.Add);
|
|
|
|
|
loadComponentSingleFile(social = new SocialOverlay { Depth = -1 }, mainContent.Add);
|
|
|
|
|
loadComponentSingleFile(chat = new ChatOverlay { Depth = -1 }, mainContent.Add);
|
|
|
|
|
loadComponentSingleFile(settings = new MainSettings
|
2017-08-17 16:31:14 +08:00
|
|
|
|
{
|
|
|
|
|
GetToolbarHeight = () => ToolbarOffset,
|
|
|
|
|
Depth = -1
|
|
|
|
|
}, overlayContent.Add);
|
2017-10-23 00:20:12 +08:00
|
|
|
|
loadComponentSingleFile(userProfile = new UserProfileOverlay { Depth = -2 }, mainContent.Add);
|
|
|
|
|
loadComponentSingleFile(beatmapSetOverlay = new BeatmapSetOverlay { Depth = -3 }, mainContent.Add);
|
|
|
|
|
loadComponentSingleFile(musicController = new MusicController
|
2017-01-30 21:00:23 +08:00
|
|
|
|
{
|
2017-09-30 10:41:32 +08:00
|
|
|
|
Depth = -4,
|
2017-01-30 21:00:23 +08:00
|
|
|
|
Position = new Vector2(0, Toolbar.HEIGHT),
|
2017-01-30 21:53:50 +08:00
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
2017-04-02 14:56:12 +08:00
|
|
|
|
}, overlayContent.Add);
|
2016-12-02 17:43:01 +08:00
|
|
|
|
|
2017-12-24 17:28:37 +08:00
|
|
|
|
loadComponentSingleFile(notifications = new NotificationOverlay
|
2017-02-10 15:26:43 +08:00
|
|
|
|
{
|
2017-12-23 21:33:43 +08:00
|
|
|
|
GetToolbarHeight = () => ToolbarOffset,
|
2017-09-30 10:41:32 +08:00
|
|
|
|
Depth = -4,
|
2017-02-10 15:26:43 +08:00
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
2017-04-02 14:56:12 +08:00
|
|
|
|
}, overlayContent.Add);
|
2017-02-10 15:26:43 +08:00
|
|
|
|
|
2017-10-23 00:20:12 +08:00
|
|
|
|
loadComponentSingleFile(dialogOverlay = new DialogOverlay
|
2017-02-28 14:09:36 +08:00
|
|
|
|
{
|
2017-10-23 00:20:12 +08:00
|
|
|
|
Depth = -6,
|
2017-04-02 14:56:12 +08:00
|
|
|
|
}, overlayContent.Add);
|
2017-02-28 14:09:36 +08:00
|
|
|
|
|
2017-12-25 16:12:21 +08:00
|
|
|
|
forwardLoggedErrorsToNotifications();
|
2017-02-15 11:37:57 +08:00
|
|
|
|
|
2017-07-22 01:03:43 +08:00
|
|
|
|
dependencies.Cache(settings);
|
|
|
|
|
dependencies.Cache(social);
|
2017-08-24 19:18:47 +08:00
|
|
|
|
dependencies.Cache(direct);
|
2017-07-22 01:03:43 +08:00
|
|
|
|
dependencies.Cache(chat);
|
|
|
|
|
dependencies.Cache(userProfile);
|
|
|
|
|
dependencies.Cache(musicController);
|
2017-09-25 17:58:03 +08:00
|
|
|
|
dependencies.Cache(beatmapSetOverlay);
|
2017-12-24 17:28:37 +08:00
|
|
|
|
dependencies.Cache(notifications);
|
2017-07-22 01:03:43 +08:00
|
|
|
|
dependencies.Cache(dialogOverlay);
|
2016-12-02 17:43:01 +08:00
|
|
|
|
|
2017-08-25 09:51:28 +08:00
|
|
|
|
// ensure only one of these overlays are open at once.
|
|
|
|
|
var singleDisplayOverlays = new OverlayContainer[] { chat, social, direct };
|
|
|
|
|
foreach (var overlay in singleDisplayOverlays)
|
|
|
|
|
{
|
2017-09-04 08:10:04 +08:00
|
|
|
|
overlay.StateChanged += state =>
|
2017-08-25 09:51:28 +08:00
|
|
|
|
{
|
|
|
|
|
if (state == Visibility.Hidden) return;
|
|
|
|
|
|
|
|
|
|
foreach (var c in singleDisplayOverlays)
|
|
|
|
|
{
|
2017-09-04 08:10:04 +08:00
|
|
|
|
if (c == overlay) continue;
|
2017-08-25 09:51:28 +08:00
|
|
|
|
c.State = Visibility.Hidden;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-15 17:48:37 +08:00
|
|
|
|
// eventually informational overlays should be displayed in a stack, but for now let's only allow one to stay open at a time.
|
|
|
|
|
var informationalOverlays = new OverlayContainer[] { beatmapSetOverlay, userProfile };
|
|
|
|
|
foreach (var overlay in informationalOverlays)
|
|
|
|
|
{
|
|
|
|
|
overlay.StateChanged += state =>
|
|
|
|
|
{
|
|
|
|
|
if (state == Visibility.Hidden) return;
|
|
|
|
|
|
|
|
|
|
foreach (var c in informationalOverlays)
|
|
|
|
|
{
|
|
|
|
|
if (c == overlay) continue;
|
|
|
|
|
c.State = Visibility.Hidden;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-25 10:24:13 +08:00
|
|
|
|
void updateScreenOffset()
|
2016-11-30 17:28:08 +08:00
|
|
|
|
{
|
2017-12-24 21:32:56 +08:00
|
|
|
|
float offset = 0;
|
2017-12-23 21:56:23 +08:00
|
|
|
|
|
2017-12-24 21:32:56 +08:00
|
|
|
|
if (settings.State == Visibility.Visible)
|
2017-12-24 17:28:37 +08:00
|
|
|
|
offset += ToolbarButton.WIDTH / 2;
|
2017-12-24 21:32:56 +08:00
|
|
|
|
if (notifications.State == Visibility.Visible)
|
|
|
|
|
offset -= ToolbarButton.WIDTH / 2;
|
2017-12-24 17:28:37 +08:00
|
|
|
|
|
2017-12-25 10:24:13 +08:00
|
|
|
|
screenStack.MoveToX(offset, SettingsOverlay.TRANSITION_LENGTH, Easing.OutQuint);
|
|
|
|
|
}
|
2016-11-30 17:28:08 +08:00
|
|
|
|
|
2017-12-25 10:24:13 +08:00
|
|
|
|
settings.StateChanged += _ => updateScreenOffset();
|
|
|
|
|
notifications.StateChanged += _ => updateScreenOffset();
|
2017-12-24 17:28:37 +08:00
|
|
|
|
|
2017-12-25 17:52:09 +08:00
|
|
|
|
notifications.Enabled.BindTo(ShowOverlays);
|
|
|
|
|
|
|
|
|
|
ShowOverlays.ValueChanged += visible =>
|
|
|
|
|
{
|
|
|
|
|
//central game screen change logic.
|
|
|
|
|
if (!visible)
|
|
|
|
|
{
|
|
|
|
|
hideAllOverlays();
|
|
|
|
|
musicController.State = Visibility.Hidden;
|
|
|
|
|
Toolbar.State = Visibility.Hidden;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
Toolbar.State = Visibility.Visible;
|
|
|
|
|
};
|
|
|
|
|
|
2017-03-16 22:58:36 +08:00
|
|
|
|
Cursor.State = Visibility.Hidden;
|
2016-10-06 20:10:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-25 16:12:21 +08:00
|
|
|
|
private void forwardLoggedErrorsToNotifications()
|
|
|
|
|
{
|
|
|
|
|
int recentErrorCount = 0;
|
|
|
|
|
|
|
|
|
|
const double debounce = 5000;
|
|
|
|
|
|
|
|
|
|
Logger.NewEntry += entry =>
|
|
|
|
|
{
|
|
|
|
|
if (entry.Level < LogLevel.Error || entry.Target == null) return;
|
|
|
|
|
|
|
|
|
|
if (recentErrorCount < 2)
|
|
|
|
|
{
|
|
|
|
|
notifications.Post(new SimpleNotification
|
|
|
|
|
{
|
|
|
|
|
Icon = FontAwesome.fa_bomb,
|
|
|
|
|
Text = (recentErrorCount == 0 ? entry.Message : "Subsequent errors occurred and have been logged.") + "\nClick to view log files.",
|
|
|
|
|
Activated = () =>
|
|
|
|
|
{
|
|
|
|
|
Host.Storage.GetStorageForDirectory("logs").OpenInNativeExplorer();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-25 17:22:58 +08:00
|
|
|
|
Interlocked.Increment(ref recentErrorCount);
|
2017-12-25 16:12:21 +08:00
|
|
|
|
|
2017-12-25 17:22:58 +08:00
|
|
|
|
Scheduler.AddDelayed(() => Interlocked.Decrement(ref recentErrorCount), debounce);
|
2017-12-25 16:12:21 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-23 00:20:12 +08:00
|
|
|
|
private Task asyncLoadStream;
|
|
|
|
|
|
|
|
|
|
private void loadComponentSingleFile<T>(T d, Action<T> add)
|
|
|
|
|
where T : Drawable
|
|
|
|
|
{
|
2017-10-24 10:50:18 +08:00
|
|
|
|
// schedule is here to ensure that all component loads are done after LoadComplete is run (and thus all dependencies are cached).
|
|
|
|
|
// with some better organisation of LoadComplete to do construction and dependency caching in one step, followed by calls to loadComponentSingleFile,
|
|
|
|
|
// we could avoid the need for scheduling altogether.
|
2017-10-24 10:40:38 +08:00
|
|
|
|
Schedule(() => { asyncLoadStream = asyncLoadStream?.ContinueWith(t => LoadComponentAsync(d, add).Wait()) ?? LoadComponentAsync(d, add); });
|
2017-10-23 00:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-10 18:52:45 +08:00
|
|
|
|
public bool OnPressed(GlobalAction action)
|
2016-10-07 23:43:06 +08:00
|
|
|
|
{
|
2017-08-10 18:28:24 +08:00
|
|
|
|
if (intro == null) return false;
|
2016-12-05 18:33:38 +08:00
|
|
|
|
|
2017-08-10 18:28:24 +08:00
|
|
|
|
switch (action)
|
2016-10-07 23:43:06 +08:00
|
|
|
|
{
|
2017-08-10 18:28:24 +08:00
|
|
|
|
case GlobalAction.ToggleChat:
|
|
|
|
|
chat.ToggleVisibility();
|
|
|
|
|
return true;
|
|
|
|
|
case GlobalAction.ToggleSocial:
|
|
|
|
|
social.ToggleVisibility();
|
|
|
|
|
return true;
|
|
|
|
|
case GlobalAction.ResetInputSettings:
|
|
|
|
|
var sensitivity = frameworkConfig.GetBindable<double>(FrameworkSetting.CursorSensitivity);
|
|
|
|
|
|
|
|
|
|
sensitivity.Disabled = false;
|
|
|
|
|
sensitivity.Value = 1;
|
|
|
|
|
sensitivity.Disabled = true;
|
|
|
|
|
|
|
|
|
|
frameworkConfig.Set(FrameworkSetting.ActiveInputHandlers, string.Empty);
|
|
|
|
|
return true;
|
|
|
|
|
case GlobalAction.ToggleToolbar:
|
|
|
|
|
Toolbar.ToggleVisibility();
|
|
|
|
|
return true;
|
|
|
|
|
case GlobalAction.ToggleSettings:
|
|
|
|
|
settings.ToggleVisibility();
|
|
|
|
|
return true;
|
|
|
|
|
case GlobalAction.ToggleDirect:
|
|
|
|
|
direct.ToggleVisibility();
|
|
|
|
|
return true;
|
2016-11-08 18:27:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-27 23:18:12 +08:00
|
|
|
|
return false;
|
2016-10-07 23:43:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-10 18:52:45 +08:00
|
|
|
|
public bool OnReleased(GlobalAction action) => false;
|
|
|
|
|
|
2016-11-01 22:24:14 +08:00
|
|
|
|
private Container mainContent;
|
|
|
|
|
|
2016-11-09 14:23:10 +08:00
|
|
|
|
private Container overlayContent;
|
|
|
|
|
|
2017-03-16 22:58:36 +08:00
|
|
|
|
private OsuScreen currentScreen;
|
2017-06-08 16:58:28 +08:00
|
|
|
|
private FrameworkConfigManager frameworkConfig;
|
2017-03-16 22:58:36 +08:00
|
|
|
|
|
2017-09-08 15:15:41 +08:00
|
|
|
|
private void hideAllOverlays()
|
|
|
|
|
{
|
|
|
|
|
settings.State = Visibility.Hidden;
|
|
|
|
|
chat.State = Visibility.Hidden;
|
|
|
|
|
direct.State = Visibility.Hidden;
|
|
|
|
|
social.State = Visibility.Hidden;
|
|
|
|
|
userProfile.State = Visibility.Hidden;
|
2017-12-24 17:28:37 +08:00
|
|
|
|
notifications.State = Visibility.Hidden;
|
2017-09-08 15:15:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 18:12:36 +08:00
|
|
|
|
protected override bool OnExiting()
|
|
|
|
|
{
|
2017-02-18 13:16:46 +08:00
|
|
|
|
if (screenStack.ChildScreen == null) return false;
|
|
|
|
|
|
|
|
|
|
if (intro == null) return true;
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
if (!intro.DidLoadMenu || intro.ChildScreen != null)
|
2016-10-07 18:12:36 +08:00
|
|
|
|
{
|
2017-02-17 14:33:08 +08:00
|
|
|
|
Scheduler.Add(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();
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 17:40:39 +08: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 18:32:55 +08:00
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildren();
|
|
|
|
|
|
2017-08-22 14:58:47 +08:00
|
|
|
|
// we only want to apply these restrictions when we are inside a screen stack.
|
|
|
|
|
// the use case for not applying is in visual/unit tests.
|
2017-08-22 16:21:19 +08:00
|
|
|
|
bool applyRestrictions = !currentScreen?.AllowBeatmapRulesetChange ?? false;
|
2017-08-22 14:58:47 +08:00
|
|
|
|
|
|
|
|
|
Ruleset.Disabled = applyRestrictions;
|
|
|
|
|
Beatmap.Disabled = applyRestrictions;
|
|
|
|
|
|
2017-07-13 15:39:27 +08:00
|
|
|
|
mainContent.Padding = new MarginPadding { Top = ToolbarOffset };
|
2017-03-16 22:58:36 +08:00
|
|
|
|
|
2017-04-05 16:38:13 +08:00
|
|
|
|
Cursor.State = currentScreen?.HasLocalCursorDisplayed == false ? Visibility.Visible : Visibility.Hidden;
|
2017-02-08 18:32:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
private void screenAdded(Screen newScreen)
|
2016-10-06 20:10:01 +08:00
|
|
|
|
{
|
2017-12-27 23:38:50 +08:00
|
|
|
|
currentScreen = (OsuScreen)newScreen;
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
newScreen.ModePushed += screenAdded;
|
|
|
|
|
newScreen.Exited += screenRemoved;
|
2016-10-06 20:10:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
private void screenRemoved(Screen newScreen)
|
2016-10-06 20:10:01 +08:00
|
|
|
|
{
|
2017-12-27 23:38:50 +08:00
|
|
|
|
currentScreen = (OsuScreen)newScreen;
|
|
|
|
|
|
2017-12-26 15:09:40 +08:00
|
|
|
|
if (newScreen == null)
|
|
|
|
|
Exit();
|
2016-08-26 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|