Add Beatmap fields to UserStatusSoloGame & UserStatusEditing so they can carry metadata about the played / edited beatmap

This commit is contained in:
Lucas A
2019-04-12 22:54:35 +02:00
parent 69dda0ffd4
commit da5d6cb1d4
4 changed files with 36 additions and 0 deletions

View File

@ -24,6 +24,7 @@ using osu.Game.Screens.Edit.Design;
using osuTK.Input;
using System.Collections.Generic;
using osu.Framework;
using osu.Game.Users;
namespace osu.Game.Screens.Edit
{
@ -47,6 +48,8 @@ namespace osu.Game.Screens.Edit
private DependencyContainer dependencies;
private GameHost host;
protected override UserStatus ScreenStatus => new UserStatusEditing(Beatmap.Value.BeatmapInfo);
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
=> dependencies = new DependencyContainer(base.CreateChildDependencies(parent));

View File

@ -26,6 +26,7 @@ using osu.Game.Scoring;
using osu.Game.Screens.Ranking;
using osu.Game.Skinning;
using osu.Game.Storyboards.Drawables;
using osu.Game.Users;
namespace osu.Game.Screens.Play
{
@ -33,6 +34,8 @@ namespace osu.Game.Screens.Play
{
protected override bool AllowBackButton => false; // handled by HoldForMenuButton
protected override UserStatus ScreenStatus => new UserStatusSoloGame(Beatmap.Value.BeatmapInfo);
public override float BackgroundParallaxAmount => 0.1f;
public override bool HideOverlaysOnEnter => true;

View File

@ -7,6 +7,7 @@ using osu.Framework.Graphics.Sprites;
using osu.Framework.Screens;
using osu.Game.Graphics;
using osu.Game.Screens.Play;
using osu.Game.Users;
using osuTK.Input;
namespace osu.Game.Screens.Select
@ -18,6 +19,8 @@ namespace osu.Game.Screens.Select
public override bool AllowExternalScreenChange => true;
protected override UserStatus ScreenStatus => new UserStatusChoosingBeatmap();
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{