mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 22:07:25 +08:00
Minor variable name changes
This commit is contained in:
parent
5cbd887ee8
commit
dda078277a
@ -255,7 +255,7 @@ namespace osu.Game.Screens.Play
|
|||||||
private void performImmediateExit()
|
private void performImmediateExit()
|
||||||
{
|
{
|
||||||
// if a restart has been requested, cancel any pending completion (user has shown intent to restart).
|
// if a restart has been requested, cancel any pending completion (user has shown intent to restart).
|
||||||
pushResults?.Cancel();
|
completionProgressDelegate?.Cancel();
|
||||||
|
|
||||||
ValidForResume = false;
|
ValidForResume = false;
|
||||||
|
|
||||||
@ -279,12 +279,12 @@ namespace osu.Game.Screens.Play
|
|||||||
performImmediateExit();
|
performImmediateExit();
|
||||||
}
|
}
|
||||||
|
|
||||||
private ScheduledDelegate pushResults;
|
private ScheduledDelegate completionProgressDelegate;
|
||||||
|
|
||||||
private void onCompletion()
|
private void onCompletion()
|
||||||
{
|
{
|
||||||
// Only show the completion screen if the player hasn't failed
|
// Only show the completion screen if the player hasn't failed
|
||||||
if (ScoreProcessor.HasFailed || pushResults != null)
|
if (ScoreProcessor.HasFailed || completionProgressDelegate != null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ValidForResume = false;
|
ValidForResume = false;
|
||||||
@ -293,7 +293,7 @@ namespace osu.Game.Screens.Play
|
|||||||
|
|
||||||
using (BeginDelayedSequence(1000))
|
using (BeginDelayedSequence(1000))
|
||||||
{
|
{
|
||||||
pushResults = Schedule(delegate
|
completionProgressDelegate = Schedule(delegate
|
||||||
{
|
{
|
||||||
if (!this.IsCurrentScreen()) return;
|
if (!this.IsCurrentScreen()) return;
|
||||||
|
|
||||||
@ -465,10 +465,10 @@ namespace osu.Game.Screens.Play
|
|||||||
|
|
||||||
public override bool OnExiting(IScreen next)
|
public override bool OnExiting(IScreen next)
|
||||||
{
|
{
|
||||||
if (pushResults != null && !pushResults.Cancelled && !pushResults.Completed)
|
if (completionProgressDelegate != null && !completionProgressDelegate.Cancelled && !completionProgressDelegate.Completed)
|
||||||
// proceed to result screen if beatmap already finished playing
|
|
||||||
{
|
{
|
||||||
pushResults.RunTask();
|
// proceed to result screen if beatmap already finished playing
|
||||||
|
completionProgressDelegate.RunTask();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user