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

768 lines
28 KiB
C#
Raw Normal View History

2018-04-13 17:19:50 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using osu.Framework.Configuration;
using osu.Framework.Screens;
using osu.Game.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Overlays;
using osu.Framework.Logging;
using osu.Framework.Allocation;
using osu.Game.Overlays.Toolbar;
using osu.Game.Screens;
using osu.Game.Screens.Menu;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using osu.Framework.Audio;
using osu.Framework.Extensions.IEnumerableExtensions;
2018-04-13 17:19:50 +08:00
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
using osu.Framework.Platform;
using osu.Framework.Threading;
using osu.Game.Beatmaps;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics;
2019-01-04 12:29:37 +08:00
using osu.Game.Graphics.Containers;
using osu.Game.Input;
2018-04-13 17:19:50 +08:00
using osu.Game.Overlays.Notifications;
using osu.Game.Rulesets;
using osu.Game.Screens.Play;
using osu.Game.Input.Bindings;
using osu.Game.Online.Chat;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Mods;
using osu.Game.Skinning;
2018-11-20 15:51:59 +08:00
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Game.Overlays.Volume;
2018-11-28 15:12:57 +08:00
using osu.Game.Scoring;
using osu.Game.Screens.Select;
2018-08-03 18:25:55 +08:00
using osu.Game.Utils;
using LogLevel = osu.Framework.Logging.LogLevel;
2018-04-13 17:19:50 +08:00
namespace osu.Game
{
/// <summary>
/// The full osu! experience. Builds on top of <see cref="OsuGameBase"/> to add menus and binding logic
/// for initial components that are generally retrieved via DI.
/// </summary>
public class OsuGame : OsuGameBase, IKeyBindingHandler<GlobalAction>
{
public Toolbar Toolbar;
private ChatOverlay chatOverlay;
private ChannelManager channelManager;
2018-04-13 17:19:50 +08:00
private MusicController musicController;
private NotificationOverlay notifications;
private DialogOverlay dialogOverlay;
private AccountCreationOverlay accountCreation;
2018-04-13 17:19:50 +08:00
private DirectOverlay direct;
private SocialOverlay social;
private UserProfileOverlay userProfile;
private BeatmapSetOverlay beatmapSetOverlay;
2018-10-02 09:12:07 +08:00
[Cached]
private readonly ScreenshotManager screenshotManager = new ScreenshotManager();
2018-08-03 18:25:55 +08:00
protected RavenLogger RavenLogger;
2018-04-13 17:19:50 +08:00
public virtual Storage GetStorageForStableInstall() => null;
public float ToolbarOffset => Toolbar.Position.Y + Toolbar.DrawHeight;
private IdleTracker idleTracker;
2018-06-06 14:49:27 +08:00
public readonly Bindable<OverlayActivation> OverlayActivationMode = new Bindable<OverlayActivation>();
2018-04-13 17:19:50 +08:00
private BackgroundScreenStack backgroundStack;
2019-01-23 19:52:00 +08:00
private ScreenStack screenStack;
2018-04-13 17:19:50 +08:00
private VolumeOverlay volume;
private OnScreenDisplay onscreenDisplay;
2019-01-23 19:52:00 +08:00
private OsuLogo osuLogo;
private MainMenu menuScreen;
private Intro introScreen;
2018-04-13 17:19:50 +08:00
private Bindable<int> configRuleset;
private readonly Bindable<RulesetInfo> ruleset = new Bindable<RulesetInfo>();
2018-04-13 17:19:50 +08:00
private Bindable<int> configSkin;
private readonly string[] args;
private SettingsOverlay settings;
2018-06-06 15:17:51 +08:00
private readonly List<OverlayContainer> overlays = new List<OverlayContainer>();
2018-04-13 17:19:50 +08:00
// todo: move this to SongSelect once Screen has the ability to unsuspend.
2018-08-08 11:26:57 +08:00
[Cached]
[Cached(Type = typeof(IBindable<IEnumerable<Mod>>))]
private readonly Bindable<IEnumerable<Mod>> selectedMods = new Bindable<IEnumerable<Mod>>(new Mod[] { });
2018-04-13 17:19:50 +08:00
public OsuGame(string[] args = null)
{
this.args = args;
forwardLoggedErrorsToNotifications();
2018-08-03 18:25:55 +08:00
2018-09-13 01:34:52 +08:00
RavenLogger = new RavenLogger(this);
2018-04-13 17:19:50 +08:00
}
public void ToggleSettings() => settings.ToggleVisibility();
public void ToggleDirect() => direct.ToggleVisibility();
2018-06-06 15:17:51 +08:00
/// <summary>
/// Close all game-wide overlays.
/// </summary>
/// <param name="toolbar">Whether the toolbar should also be hidden.</param>
public void CloseAllOverlays(bool toolbar = true)
{
foreach (var overlay in overlays)
overlay.State = Visibility.Hidden;
2018-06-06 15:17:51 +08:00
if (toolbar) Toolbar.State = Visibility.Hidden;
}
2018-04-13 17:19:50 +08:00
private DependencyContainer dependencies;
2018-07-11 16:07:14 +08:00
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent) =>
dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(FrameworkConfigManager frameworkConfig)
{
this.frameworkConfig = frameworkConfig;
2018-11-29 17:07:51 +08:00
ScoreManager.ItemAdded += (score, _, silent) => Schedule(() => LoadScore(score, silent));
2018-04-13 17:19:50 +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)
{
var paths = args.Where(a => !a.StartsWith(@"-")).ToArray();
if (paths.Length > 0)
Task.Run(() => Import(paths));
2018-04-13 17:19:50 +08:00
}
dependencies.CacheAs(this);
2018-08-03 18:25:55 +08:00
dependencies.Cache(RavenLogger);
dependencies.CacheAs(ruleset);
2018-06-29 18:25:28 +08:00
dependencies.CacheAs<IBindable<RulesetInfo>>(ruleset);
2018-04-13 17:19:50 +08:00
2019-01-23 19:52:00 +08:00
dependencies.Cache(osuLogo = new OsuLogo());
2018-04-13 17:19:50 +08:00
// bind config int to database RulesetInfo
configRuleset = LocalConfig.GetBindable<int>(OsuSetting.Ruleset);
ruleset.Value = RulesetStore.GetRuleset(configRuleset.Value) ?? RulesetStore.AvailableRulesets.First();
ruleset.ValueChanged += r => configRuleset.Value = r.ID ?? 0;
2018-04-13 17:19:50 +08:00
// bind config int to database SkinInfo
configSkin = LocalConfig.GetBindable<int>(OsuSetting.Skin);
SkinManager.CurrentSkinInfo.ValueChanged += s => configSkin.Value = s.ID;
configSkin.ValueChanged += id => SkinManager.CurrentSkinInfo.Value = SkinManager.Query(s => s.ID == id) ?? SkinInfo.Default;
configSkin.TriggerChange();
LocalConfig.BindWith(OsuSetting.VolumeInactive, inactiveVolumeAdjust);
}
2018-11-02 04:52:07 +08:00
private ExternalLinkOpener externalLinkOpener;
2019-01-04 12:29:37 +08:00
2018-12-06 11:17:08 +08:00
public void OpenUrlExternally(string url)
{
if (url.StartsWith("/"))
url = $"{API.Endpoint}{url}";
externalLinkOpener.OpenUrlExternally(url);
}
2018-11-02 04:52:07 +08:00
2018-04-13 17:19:50 +08:00
private ScheduledDelegate scoreLoad;
/// <summary>
/// Show a beatmap set as an overlay.
/// </summary>
/// <param name="setId">The set to display.</param>
public void ShowBeatmapSet(int setId) => beatmapSetOverlay.FetchAndShowBeatmapSet(setId);
2018-04-13 17:19:50 +08:00
/// <summary>
/// Present a beatmap at song select.
/// </summary>
/// <param name="beatmap">The beatmap to select.</param>
public void PresentBeatmap(BeatmapSetInfo beatmap)
{
2019-01-23 19:52:00 +08:00
if (menuScreen == null)
{
Schedule(() => PresentBeatmap(beatmap));
return;
}
2018-07-13 20:00:52 +08:00
CloseAllOverlays(false);
2018-07-13 20:08:41 +08:00
void setBeatmap()
{
if (Beatmap.Disabled)
{
Schedule(setBeatmap);
return;
}
var databasedSet = beatmap.OnlineBeatmapSetID != null ?
BeatmapManager.QueryBeatmapSet(s => s.OnlineBeatmapSetID == beatmap.OnlineBeatmapSetID) :
2019-01-22 15:10:04 +08:00
BeatmapManager.QueryBeatmapSet(s => s.Hash == beatmap.Hash);
if (databasedSet != null)
{
// Use first beatmap available for current ruleset, else switch ruleset.
var first = databasedSet.Beatmaps.Find(b => b.Ruleset == ruleset.Value) ?? databasedSet.Beatmaps.First();
ruleset.Value = first.Ruleset;
Beatmap.Value = BeatmapManager.GetWorkingBeatmap(first);
}
2018-07-13 20:27:09 +08:00
}
2019-01-23 19:52:00 +08:00
switch (screenStack.CurrentScreen)
{
case SongSelect _:
break;
default:
// navigate to song select if we are not already there.
2019-01-23 19:52:00 +08:00
menuScreen.MakeCurrent();
menuScreen.LoadToSolo();
break;
}
2018-07-13 20:08:41 +08:00
setBeatmap();
}
2018-04-13 17:19:50 +08:00
/// <summary>
/// Show a user's profile as an overlay.
/// </summary>
/// <param name="userId">The user to display.</param>
public void ShowUser(long userId) => userProfile.ShowUser(userId);
/// <summary>
/// Show a beatmap's set as an overlay, displaying the given beatmap.
/// </summary>
/// <param name="beatmapId">The beatmap to show.</param>
public void ShowBeatmap(int beatmapId) => beatmapSetOverlay.FetchAndShowBeatmap(beatmapId);
2018-11-29 17:07:51 +08:00
protected void LoadScore(ScoreInfo score, bool silent)
2018-04-13 17:19:50 +08:00
{
2018-11-29 17:07:51 +08:00
if (silent)
return;
2018-04-13 17:19:50 +08:00
scoreLoad?.Cancel();
2019-01-23 19:52:00 +08:00
if (menuScreen == null)
2018-04-13 17:19:50 +08:00
{
2018-11-29 17:07:51 +08:00
scoreLoad = Schedule(() => LoadScore(score, false));
2018-04-13 17:19:50 +08:00
return;
}
2018-11-30 17:31:54 +08:00
var databasedScore = ScoreManager.GetScore(score);
var databasedScoreInfo = databasedScore.ScoreInfo;
if (databasedScore.Replay == null)
{
Logger.Log("The loaded score has no replay data.", LoggingTarget.Information);
return;
}
2018-11-30 17:31:54 +08:00
var databasedBeatmap = BeatmapManager.QueryBeatmap(b => b.ID == databasedScoreInfo.Beatmap.ID);
if (databasedBeatmap == null)
{
Logger.Log("Tried to load a score for a beatmap we don't have!", LoggingTarget.Information);
return;
}
2019-01-23 19:52:00 +08:00
if ((screenStack.CurrentScreen as IOsuScreen)?.AllowExternalScreenChange != true)
2018-04-13 17:19:50 +08:00
{
notifications.Post(new SimpleNotification
{
2018-11-30 17:31:54 +08:00
Text = $"Click here to watch {databasedScoreInfo.User.Username} on {databasedScoreInfo.Beatmap}",
Activated = () =>
{
loadScore();
return true;
}
});
2018-04-13 17:19:50 +08:00
return;
}
loadScore();
void loadScore()
{
2019-01-23 19:52:00 +08:00
if (!menuScreen.IsCurrentScreen())
{
2019-01-23 19:52:00 +08:00
menuScreen.MakeCurrent();
this.Delay(500).Schedule(loadScore, out scoreLoad);
return;
}
2018-11-30 17:31:54 +08:00
ruleset.Value = databasedScoreInfo.Ruleset;
2018-04-13 17:19:50 +08:00
Beatmap.Value = BeatmapManager.GetWorkingBeatmap(databasedBeatmap);
2018-11-30 17:31:54 +08:00
Beatmap.Value.Mods.Value = databasedScoreInfo.Mods;
2019-01-23 19:52:00 +08:00
menuScreen.Push(new PlayerLoader(() => new ReplayPlayer(databasedScore)));
}
2018-04-13 17:19:50 +08:00
}
2018-08-03 18:25:55 +08:00
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
RavenLogger.Dispose();
}
2018-04-13 17:19:50 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
// todo: all archive managers should be able to be looped here.
2018-04-13 17:19:50 +08:00
SkinManager.PostNotification = n => notifications?.Post(n);
SkinManager.GetStableStorage = GetStorageForStableInstall;
2018-04-13 17:19:50 +08:00
BeatmapManager.PostNotification = n => notifications?.Post(n);
2018-04-13 17:19:50 +08:00
BeatmapManager.GetStableStorage = GetStorageForStableInstall;
BeatmapManager.PresentBeatmap = PresentBeatmap;
2018-04-13 17:19:50 +08:00
2019-01-23 19:52:00 +08:00
Container logoContainer;
2018-04-13 17:19:50 +08:00
AddRange(new Drawable[]
{
new VolumeControlReceptor
{
RelativeSizeAxes = Axes.Both,
ActionRequested = action => volume.Adjust(action),
2018-07-05 15:50:04 +08:00
ScrollActionRequested = (action, amount, isPrecise) => volume.Adjust(action, amount, isPrecise),
2018-04-13 17:19:50 +08:00
},
backgroundStack = new BackgroundScreenStack { RelativeSizeAxes = Axes.Both },
2019-01-04 12:29:37 +08:00
screenContainer = new ScalingContainer(ScalingMode.ExcludeOverlays)
{
RelativeSizeAxes = Axes.Both,
2019-01-23 19:52:00 +08:00
Child = screenStack = new ScreenStack { RelativeSizeAxes = Axes.Both }
2019-01-04 12:29:37 +08:00
},
2019-01-23 19:52:00 +08:00
logoContainer = new Container { RelativeSizeAxes = Axes.Both },
overlayContent = new Container
{
RelativeSizeAxes = Axes.Both,
},
floatingOverlayContent = new Container { RelativeSizeAxes = Axes.Both, Depth = float.MinValue },
idleTracker = new IdleTracker(6000)
2018-04-13 17:19:50 +08:00
});
dependencies.Cache(backgroundStack);
2019-01-23 19:52:00 +08:00
screenStack.ScreenPushed += screenPushed;
screenStack.ScreenExited += screenExited;
loadComponentSingleFile(osuLogo, logoContainer.Add);
loadComponentSingleFile(new Loader
2018-04-13 17:19:50 +08:00
{
2019-01-23 19:52:00 +08:00
RelativeSizeAxes = Axes.Both
}, screenStack.Push);
2018-04-13 17:19:50 +08:00
loadComponentSingleFile(Toolbar = new Toolbar
{
Depth = -5,
OnHome = delegate
{
2018-06-06 15:17:51 +08:00
CloseAllOverlays(false);
2019-01-23 19:52:00 +08:00
menuScreen?.MakeCurrent();
2018-04-13 17:19:50 +08:00
},
}, floatingOverlayContent.Add);
2018-04-13 17:19:50 +08:00
loadComponentSingleFile(volume = new VolumeOverlay(), floatingOverlayContent.Add);
2018-04-13 17:19:50 +08:00
loadComponentSingleFile(onscreenDisplay = new OnScreenDisplay(), Add);
loadComponentSingleFile(screenshotManager, Add);
2018-04-13 17:19:50 +08:00
//overlay elements
loadComponentSingleFile(direct = new DirectOverlay { Depth = -1 }, overlayContent.Add);
loadComponentSingleFile(social = new SocialOverlay { Depth = -1 }, overlayContent.Add);
loadComponentSingleFile(channelManager = new ChannelManager(), AddInternal);
loadComponentSingleFile(chatOverlay = new ChatOverlay { Depth = -1 }, overlayContent.Add);
2018-04-13 17:19:50 +08:00
loadComponentSingleFile(settings = new MainSettings
{
GetToolbarHeight = () => ToolbarOffset,
Depth = -1
}, floatingOverlayContent.Add);
loadComponentSingleFile(userProfile = new UserProfileOverlay { Depth = -2 }, overlayContent.Add);
loadComponentSingleFile(beatmapSetOverlay = new BeatmapSetOverlay { Depth = -3 }, overlayContent.Add);
2018-04-13 17:19:50 +08:00
loadComponentSingleFile(musicController = new MusicController
{
Depth = -5,
2018-04-13 17:19:50 +08:00
Position = new Vector2(0, Toolbar.HEIGHT),
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
}, floatingOverlayContent.Add);
2018-04-13 17:19:50 +08:00
loadComponentSingleFile(notifications = new NotificationOverlay
{
GetToolbarHeight = () => ToolbarOffset,
Depth = -4,
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
}, floatingOverlayContent.Add);
2018-04-13 17:19:50 +08:00
loadComponentSingleFile(accountCreation = new AccountCreationOverlay
2018-04-13 17:19:50 +08:00
{
Depth = -6,
}, floatingOverlayContent.Add);
2018-04-13 17:19:50 +08:00
loadComponentSingleFile(dialogOverlay = new DialogOverlay
{
Depth = -7,
}, floatingOverlayContent.Add);
loadComponentSingleFile(externalLinkOpener = new ExternalLinkOpener
{
Depth = -8,
}, floatingOverlayContent.Add);
dependencies.Cache(idleTracker);
2018-04-13 17:19:50 +08:00
dependencies.Cache(settings);
dependencies.Cache(onscreenDisplay);
dependencies.Cache(social);
dependencies.Cache(direct);
dependencies.Cache(chatOverlay);
dependencies.Cache(channelManager);
2018-04-13 17:19:50 +08:00
dependencies.Cache(userProfile);
dependencies.Cache(musicController);
dependencies.Cache(beatmapSetOverlay);
dependencies.Cache(notifications);
dependencies.Cache(dialogOverlay);
dependencies.Cache(accountCreation);
2018-04-13 17:19:50 +08:00
2018-12-10 20:08:14 +08:00
chatOverlay.StateChanged += state => channelManager.HighPollRate.Value = state == Visibility.Visible;
Add(externalLinkOpener = new ExternalLinkOpener());
var singleDisplaySideOverlays = new OverlayContainer[] { settings, notifications };
overlays.AddRange(singleDisplaySideOverlays);
2018-06-06 15:17:51 +08:00
foreach (var overlay in singleDisplaySideOverlays)
2018-04-13 17:19:50 +08:00
{
overlay.StateChanged += state =>
{
if (state == Visibility.Hidden) return;
singleDisplaySideOverlays.Where(o => o != overlay).ForEach(o => o.Hide());
2018-04-13 17:19:50 +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 };
overlays.AddRange(informationalOverlays);
2018-06-06 15:17:51 +08:00
foreach (var overlay in informationalOverlays)
2018-04-13 17:19:50 +08:00
{
overlay.StateChanged += state =>
{
if (state == Visibility.Hidden) return;
informationalOverlays.Where(o => o != overlay).ForEach(o => o.Hide());
2018-04-13 17:19:50 +08:00
};
}
// ensure only one of these overlays are open at once.
var singleDisplayOverlays = new OverlayContainer[] { chatOverlay, social, direct };
overlays.AddRange(singleDisplayOverlays);
2018-06-06 15:17:51 +08:00
foreach (var overlay in singleDisplayOverlays)
2018-04-13 17:19:50 +08:00
{
overlay.StateChanged += state =>
{
// informational overlays should be dismissed on a show or hide of a full overlay.
informationalOverlays.ForEach(o => o.Hide());
2018-04-13 17:19:50 +08:00
if (state == Visibility.Hidden) return;
singleDisplayOverlays.Where(o => o != overlay).ForEach(o => o.Hide());
2018-04-13 17:19:50 +08:00
};
}
2018-06-06 15:17:51 +08:00
OverlayActivationMode.ValueChanged += v =>
{
if (v != OverlayActivation.All) CloseAllOverlays();
};
2018-04-13 17:19:50 +08:00
void updateScreenOffset()
{
float offset = 0;
if (settings.State == Visibility.Visible)
offset += ToolbarButton.WIDTH / 2;
if (notifications.State == Visibility.Visible)
offset -= ToolbarButton.WIDTH / 2;
2019-01-04 12:29:37 +08:00
screenContainer.MoveToX(offset, SettingsOverlay.TRANSITION_LENGTH, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
}
settings.StateChanged += _ => updateScreenOffset();
notifications.StateChanged += _ => updateScreenOffset();
}
2018-04-13 17:19:50 +08:00
private void forwardLoggedErrorsToNotifications()
{
int recentLogCount = 0;
2018-04-13 17:19:50 +08:00
const double debounce = 5000;
Logger.NewEntry += entry =>
{
if (entry.Level < LogLevel.Important || entry.Target == null) return;
2018-04-13 17:19:50 +08:00
const int short_term_display_limit = 3;
if (recentLogCount < short_term_display_limit)
{
Schedule(() => notifications.Post(new SimpleNotification
2018-04-13 17:19:50 +08:00
{
Icon = entry.Level == LogLevel.Important ? FontAwesome.fa_exclamation_circle : FontAwesome.fa_bomb,
Text = entry.Message + (entry.Exception != null && IsDeployedBuild ? "\n\nThis error has been automatically reported to the devs." : string.Empty),
}));
}
else if (recentLogCount == short_term_display_limit)
{
Schedule(() => notifications.Post(new SimpleNotification
{
Icon = FontAwesome.fa_ellipsis_h,
Text = "Subsequent messages have been logged. Click to view log files.",
2018-04-13 17:19:50 +08:00
Activated = () =>
{
Host.Storage.GetStorageForDirectory("logs").OpenInNativeExplorer();
return true;
}
}));
2018-04-13 17:19:50 +08:00
}
Interlocked.Increment(ref recentLogCount);
Scheduler.AddDelayed(() => Interlocked.Decrement(ref recentLogCount), debounce);
2018-04-13 17:19:50 +08:00
};
}
private Task asyncLoadStream;
private int visibleOverlayCount;
private void loadComponentSingleFile<T>(T d, Action<T> add)
where T : Drawable
{
var focused = d as FocusedOverlayContainer;
if (focused != null)
{
focused.StateChanged += s =>
{
visibleOverlayCount += s == Visibility.Visible ? 1 : -1;
2019-01-04 12:29:37 +08:00
screenContainer.FadeColour(visibleOverlayCount > 0 ? OsuColour.Gray(0.5f) : Color4.White, 500, Easing.OutQuint);
2018-04-13 17:19:50 +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.
2018-08-20 15:06:12 +08:00
Schedule(() =>
{
var previousLoadStream = asyncLoadStream;
//chain with existing load stream
asyncLoadStream = Task.Run(async () =>
{
if (previousLoadStream != null)
await previousLoadStream;
try
2018-08-20 15:06:12 +08:00
{
Logger.Log($"Loading {d}...", level: LogLevel.Debug);
await LoadComponentAsync(d, add);
Logger.Log($"Loaded {d}!", level: LogLevel.Debug);
}
catch (OperationCanceledException)
{
}
});
2018-08-20 15:06:12 +08:00
});
2018-04-13 17:19:50 +08:00
}
public bool OnPressed(GlobalAction action)
{
2019-01-23 19:52:00 +08:00
if (introScreen == null) return false;
2018-04-13 17:19:50 +08:00
switch (action)
{
case GlobalAction.ToggleChat:
chatOverlay.ToggleVisibility();
2018-04-13 17:19:50 +08:00
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;
2018-04-13 20:46:17 +08:00
frameworkConfig.Set(FrameworkSetting.IgnoredInputHandlers, string.Empty);
2018-04-13 17:19:50 +08:00
frameworkConfig.GetBindable<ConfineMouseMode>(FrameworkSetting.ConfineMouseMode).SetDefault();
return true;
case GlobalAction.ToggleToolbar:
Toolbar.ToggleVisibility();
return true;
case GlobalAction.ToggleSettings:
settings.ToggleVisibility();
return true;
case GlobalAction.ToggleDirect:
direct.ToggleVisibility();
return true;
2018-05-02 18:42:03 +08:00
case GlobalAction.ToggleGameplayMouseButtons:
2018-05-02 18:37:47 +08:00
LocalConfig.Set(OsuSetting.MouseDisableButtons, !LocalConfig.Get<bool>(OsuSetting.MouseDisableButtons));
return true;
2018-04-13 17:19:50 +08:00
}
return false;
}
private readonly BindableDouble inactiveVolumeAdjust = new BindableDouble();
protected override void OnDeactivated()
{
base.OnDeactivated();
Audio.AddAdjustment(AdjustableProperty.Volume, inactiveVolumeAdjust);
}
protected override void OnActivated()
{
base.OnActivated();
Audio.RemoveAdjustment(AdjustableProperty.Volume, inactiveVolumeAdjust);
}
public bool OnReleased(GlobalAction action) => false;
private Container overlayContent;
private Container floatingOverlayContent;
2018-04-13 17:19:50 +08:00
private FrameworkConfigManager frameworkConfig;
2019-01-04 12:29:37 +08:00
private ScalingContainer screenContainer;
2018-04-13 17:19:50 +08:00
protected override bool OnExiting()
{
if (screenStack.CurrentScreen is Loader)
return false;
if (introScreen == null)
return true;
if (!introScreen.DidLoadMenu || !(screenStack.CurrentScreen is Intro))
{
Scheduler.Add(introScreen.MakeCurrent);
return true;
}
return base.OnExiting();
}
2018-04-13 17:19:50 +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);
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
// 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.
2019-01-23 19:52:00 +08:00
bool applyBeatmapRulesetRestrictions = !(screenStack.CurrentScreen as IOsuScreen)?.AllowBeatmapRulesetChange ?? false;
2018-04-13 17:19:50 +08:00
2018-07-05 02:51:05 +08:00
ruleset.Disabled = applyBeatmapRulesetRestrictions;
Beatmap.Disabled = applyBeatmapRulesetRestrictions;
2018-04-13 17:19:50 +08:00
2019-01-08 11:57:31 +08:00
screenContainer.Padding = new MarginPadding { Top = ToolbarOffset };
overlayContent.Padding = new MarginPadding { Top = ToolbarOffset };
2018-04-13 17:19:50 +08:00
2019-01-23 19:52:00 +08:00
MenuCursorContainer.CanShowCursor = (screenStack.CurrentScreen as IOsuScreen)?.CursorVisible ?? false;
2018-04-13 17:19:50 +08:00
}
/// <summary>
/// Sets <see cref="Beatmap"/> while ignoring any beatmap.
/// </summary>
/// <param name="beatmap">The beatmap to set.</param>
public void ForcefullySetBeatmap(WorkingBeatmap beatmap)
{
var beatmapDisabled = Beatmap.Disabled;
Beatmap.Disabled = false;
Beatmap.Value = beatmap;
Beatmap.Disabled = beatmapDisabled;
}
/// <summary>
/// Sets <see cref="Ruleset"/> while ignoring any ruleset restrictions.
/// </summary>
/// <param name="beatmap">The beatmap to set.</param>
public void ForcefullySetRuleset(RulesetInfo ruleset)
{
var rulesetDisabled = this.ruleset.Disabled;
this.ruleset.Disabled = false;
this.ruleset.Value = ruleset;
this.ruleset.Disabled = rulesetDisabled;
}
2019-01-23 19:52:00 +08:00
protected virtual void ScreenChanged(IScreen lastScreen, IScreen newScreen)
2018-04-13 17:19:50 +08:00
{
2019-01-23 19:52:00 +08:00
switch (newScreen)
{
case Intro intro:
introScreen = intro;
break;
case MainMenu menu:
menuScreen = menu;
break;
}
}
2019-01-23 19:52:00 +08:00
private void screenPushed(IScreen lastScreen, IScreen newScreen)
{
2019-01-23 19:52:00 +08:00
ScreenChanged(lastScreen, newScreen);
Logger.Log($"Screen changed → {newScreen}");
2018-04-13 17:19:50 +08:00
}
2019-01-23 19:52:00 +08:00
private void screenExited(IScreen lastScreen, IScreen newScreen)
2018-04-13 17:19:50 +08:00
{
2019-01-23 19:52:00 +08:00
ScreenChanged(lastScreen, newScreen);
Logger.Log($"Screen changed ← {newScreen}");
2018-04-13 17:19:50 +08:00
if (newScreen == null)
Exit();
}
}
}