mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 20:22:55 +08:00
move creation of PlaybackSettings
to ReplayPlayer
This commit is contained in:
parent
484e9e8ee6
commit
c404628113
@ -12,17 +12,19 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
{
|
{
|
||||||
private const int fade_duration = 200;
|
private const int fade_duration = 200;
|
||||||
|
|
||||||
public readonly PlaybackSettings PlaybackSettings;
|
|
||||||
|
|
||||||
public readonly VisualSettings VisualSettings;
|
public readonly VisualSettings VisualSettings;
|
||||||
|
|
||||||
|
protected override Container<Drawable> Content => content;
|
||||||
|
|
||||||
|
private readonly FillFlowContainer content;
|
||||||
|
|
||||||
public PlayerSettingsOverlay()
|
public PlayerSettingsOverlay()
|
||||||
{
|
{
|
||||||
Anchor = Anchor.TopRight;
|
Anchor = Anchor.TopRight;
|
||||||
Origin = Anchor.TopRight;
|
Origin = Anchor.TopRight;
|
||||||
AutoSizeAxes = Axes.Both;
|
AutoSizeAxes = Axes.Both;
|
||||||
|
|
||||||
Child = new FillFlowContainer<PlayerSettingsGroup>
|
InternalChild = content = new FillFlowContainer
|
||||||
{
|
{
|
||||||
Anchor = Anchor.TopRight,
|
Anchor = Anchor.TopRight,
|
||||||
Origin = Anchor.TopRight,
|
Origin = Anchor.TopRight,
|
||||||
@ -31,7 +33,6 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
Spacing = new Vector2(0, 20),
|
Spacing = new Vector2(0, 20),
|
||||||
Children = new PlayerSettingsGroup[]
|
Children = new PlayerSettingsGroup[]
|
||||||
{
|
{
|
||||||
PlaybackSettings = new PlaybackSettings { Expanded = { Value = false } },
|
|
||||||
VisualSettings = new VisualSettings { Expanded = { Value = false } },
|
VisualSettings = new VisualSettings { Expanded = { Value = false } },
|
||||||
new AudioSettings { Expanded = { Value = false } }
|
new AudioSettings { Expanded = { Value = false } }
|
||||||
}
|
}
|
||||||
|
@ -476,9 +476,6 @@ namespace osu.Game.Screens.Play
|
|||||||
skipOutroOverlay.Expire();
|
skipOutroOverlay.Expire();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (GameplayClockContainer is MasterGameplayClockContainer master)
|
|
||||||
HUDOverlay.PlayerSettingsOverlay.PlaybackSettings.UserPlaybackRate.BindTarget = master.UserPlaybackRate;
|
|
||||||
|
|
||||||
return container;
|
return container;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,6 @@ namespace osu.Game.Screens.Play.PlayerSettings
|
|||||||
Precision = 0.1,
|
Precision = 0.1,
|
||||||
};
|
};
|
||||||
|
|
||||||
public readonly Bindable<bool> AllowControls = new BindableBool(true);
|
|
||||||
|
|
||||||
private readonly PlayerSliderBar<double> rateSlider;
|
private readonly PlayerSliderBar<double> rateSlider;
|
||||||
|
|
||||||
@ -73,7 +72,6 @@ namespace osu.Game.Screens.Play.PlayerSettings
|
|||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Icon = FontAwesome.Solid.FastBackward,
|
Icon = FontAwesome.Solid.FastBackward,
|
||||||
Action = () => seek(-1, seek_fast_amount),
|
Action = () => seek(-1, seek_fast_amount),
|
||||||
Enabled = { BindTarget = AllowControls },
|
|
||||||
},
|
},
|
||||||
new SeekButton
|
new SeekButton
|
||||||
{
|
{
|
||||||
@ -81,7 +79,6 @@ namespace osu.Game.Screens.Play.PlayerSettings
|
|||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Icon = FontAwesome.Solid.Backward,
|
Icon = FontAwesome.Solid.Backward,
|
||||||
Action = () => seek(-1, seek_amount),
|
Action = () => seek(-1, seek_amount),
|
||||||
Enabled = { BindTarget = AllowControls },
|
|
||||||
},
|
},
|
||||||
play = new IconButton
|
play = new IconButton
|
||||||
{
|
{
|
||||||
@ -100,7 +97,6 @@ namespace osu.Game.Screens.Play.PlayerSettings
|
|||||||
gameplayClock.Start();
|
gameplayClock.Start();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Enabled = { BindTarget = AllowControls },
|
|
||||||
},
|
},
|
||||||
new SeekButton
|
new SeekButton
|
||||||
{
|
{
|
||||||
@ -108,7 +104,6 @@ namespace osu.Game.Screens.Play.PlayerSettings
|
|||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Icon = FontAwesome.Solid.Forward,
|
Icon = FontAwesome.Solid.Forward,
|
||||||
Action = () => seek(1, seek_amount),
|
Action = () => seek(1, seek_amount),
|
||||||
Enabled = { BindTarget = AllowControls },
|
|
||||||
},
|
},
|
||||||
new SeekButton
|
new SeekButton
|
||||||
{
|
{
|
||||||
@ -116,7 +111,6 @@ namespace osu.Game.Screens.Play.PlayerSettings
|
|||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Icon = FontAwesome.Solid.FastForward,
|
Icon = FontAwesome.Solid.FastForward,
|
||||||
Action = () => seek(1, seek_fast_amount),
|
Action = () => seek(1, seek_fast_amount),
|
||||||
Enabled = { BindTarget = AllowControls },
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -15,6 +15,7 @@ using osu.Game.Input.Bindings;
|
|||||||
using osu.Game.Rulesets.Mods;
|
using osu.Game.Rulesets.Mods;
|
||||||
using osu.Game.Scoring;
|
using osu.Game.Scoring;
|
||||||
using osu.Game.Screens.Play.HUD;
|
using osu.Game.Screens.Play.HUD;
|
||||||
|
using osu.Game.Screens.Play.PlayerSettings;
|
||||||
using osu.Game.Screens.Ranking;
|
using osu.Game.Screens.Ranking;
|
||||||
using osu.Game.Users;
|
using osu.Game.Users;
|
||||||
|
|
||||||
@ -49,6 +50,17 @@ namespace osu.Game.Screens.Play
|
|||||||
this.createScore = createScore;
|
this.createScore = createScore;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void LoadComplete()
|
||||||
|
{
|
||||||
|
base.LoadComplete();
|
||||||
|
|
||||||
|
var playerSettingsOverlay = new PlaybackSettings { Expanded = { Value = false } };
|
||||||
|
HUDOverlay.PlayerSettingsOverlay.Add(playerSettingsOverlay);
|
||||||
|
|
||||||
|
if (GameplayClockContainer is MasterGameplayClockContainer master)
|
||||||
|
playerSettingsOverlay.UserPlaybackRate.BindTarget = master.UserPlaybackRate;
|
||||||
|
}
|
||||||
|
|
||||||
protected override void PrepareReplay()
|
protected override void PrepareReplay()
|
||||||
{
|
{
|
||||||
DrawableRuleset?.SetReplayScore(Score);
|
DrawableRuleset?.SetReplayScore(Score);
|
||||||
|
@ -68,8 +68,6 @@ namespace osu.Game.Screens.Play
|
|||||||
master.UserPlaybackRate.Value = 1;
|
master.UserPlaybackRate.Value = 1;
|
||||||
}
|
}
|
||||||
}, true);
|
}, true);
|
||||||
|
|
||||||
HUDOverlay.PlayerSettingsOverlay.PlaybackSettings.AllowControls.Value = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user