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-09-29 19:13:58 +08:00
|
|
|
|
|
2017-03-10 10:59:08 +08:00
|
|
|
|
using OpenTK;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Framework.Audio.Track;
|
2017-03-10 10:59:08 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-03-10 10:59:08 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Framework.Logging;
|
|
|
|
|
using osu.Framework.Screens;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Framework.Timing;
|
2017-03-10 10:59:08 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Database;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes;
|
2016-11-29 22:59:56 +08:00
|
|
|
|
using osu.Game.Modes.UI;
|
2017-03-10 10:59:08 +08:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
2016-11-29 14:41:48 +08:00
|
|
|
|
using osu.Game.Screens.Ranking;
|
2016-12-18 03:59:41 +08:00
|
|
|
|
using System;
|
2017-01-27 20:57:22 +08:00
|
|
|
|
using System.Linq;
|
2017-04-07 15:55:41 +08:00
|
|
|
|
using osu.Framework.Threading;
|
2017-03-24 08:51:52 +08:00
|
|
|
|
using osu.Game.Modes.Scoring;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
namespace osu.Game.Screens.Play
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2017-02-17 17:59:30 +08:00
|
|
|
|
public class Player : OsuScreen
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2017-02-17 17:59:30 +08:00
|
|
|
|
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBeatmap(Beatmap);
|
2016-10-05 19:03:52 +08:00
|
|
|
|
|
2016-11-15 19:43:43 +08:00
|
|
|
|
internal override bool ShowOverlays => false;
|
2016-11-09 14:22:54 +08:00
|
|
|
|
|
2017-04-06 14:00:48 +08:00
|
|
|
|
internal override bool HasLocalCursorDisplayed => !IsPaused && !HasFailed && HitRenderer.ProvidingUserCursor;
|
2017-03-16 22:58:36 +08:00
|
|
|
|
|
2016-10-27 16:53:37 +08:00
|
|
|
|
public BeatmapInfo BeatmapInfo;
|
2016-10-19 17:00:35 +08:00
|
|
|
|
|
2017-04-13 17:31:23 +08:00
|
|
|
|
public bool IsPaused => !interpolatedSourceClock.IsRunning;
|
2017-01-30 16:08:14 +08:00
|
|
|
|
|
2017-04-02 02:17:24 +08:00
|
|
|
|
public bool HasFailed { get; private set; }
|
2017-03-28 09:53:57 +08:00
|
|
|
|
|
2017-01-30 16:08:14 +08:00
|
|
|
|
public int RestartCount;
|
2017-01-28 03:28:39 +08:00
|
|
|
|
|
2017-03-23 12:52:38 +08:00
|
|
|
|
private const double pause_cooldown = 1000;
|
2017-03-07 09:59:19 +08:00
|
|
|
|
private double lastPauseActionTime;
|
2017-01-28 03:28:39 +08:00
|
|
|
|
|
2017-04-13 10:41:08 +08:00
|
|
|
|
private bool canPause => ValidForResume && !HasFailed && Time.Current >= lastPauseActionTime + pause_cooldown;
|
2017-02-01 08:44:59 +08:00
|
|
|
|
|
2016-10-28 13:14:45 +08:00
|
|
|
|
private IAdjustableClock sourceClock;
|
2017-02-28 19:14:48 +08:00
|
|
|
|
private IFrameBasedClock interpolatedSourceClock;
|
2016-11-16 14:48:35 +08:00
|
|
|
|
|
|
|
|
|
private Ruleset ruleset;
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2016-11-29 19:30:16 +08:00
|
|
|
|
private ScoreProcessor scoreProcessor;
|
2017-03-31 14:59:53 +08:00
|
|
|
|
protected HitRenderer HitRenderer;
|
2016-12-18 17:48:59 +08:00
|
|
|
|
private Bindable<int> dimLevel;
|
2017-01-27 20:57:22 +08:00
|
|
|
|
private SkipButton skipButton;
|
2016-11-29 19:30:16 +08:00
|
|
|
|
|
2017-03-10 12:02:50 +08:00
|
|
|
|
private HudOverlay hudOverlay;
|
2017-01-28 03:28:39 +08:00
|
|
|
|
private PauseOverlay pauseOverlay;
|
2017-03-28 15:49:58 +08:00
|
|
|
|
private FailOverlay failOverlay;
|
2017-01-28 03:28:39 +08:00
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-03-09 13:24:16 +08:00
|
|
|
|
private void load(AudioManager audio, BeatmapDatabase beatmaps, OsuConfigManager config)
|
2016-10-05 19:49:31 +08:00
|
|
|
|
{
|
2017-04-14 16:58:30 +08:00
|
|
|
|
if (Beatmap.Beatmap.BeatmapInfo?.Mode > PlayMode.Taiko)
|
2017-03-06 13:52:37 +08:00
|
|
|
|
{
|
|
|
|
|
//we only support osu! mode for now because the hitobject parsing is crappy and needs a refactor.
|
|
|
|
|
Exit();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-25 17:39:41 +08:00
|
|
|
|
dimLevel = config.GetBindable<int>(OsuConfig.DimLevel);
|
2017-02-28 18:44:12 +08:00
|
|
|
|
mouseWheelDisabled = config.GetBindable<bool>(OsuConfig.MouseDisableWheel);
|
|
|
|
|
|
2016-10-27 19:37:01 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (Beatmap == null)
|
2017-02-09 22:09:48 +08:00
|
|
|
|
Beatmap = beatmaps.GetWorkingBeatmap(BeatmapInfo, withStoryboard: true);
|
2017-02-15 11:38:10 +08:00
|
|
|
|
|
|
|
|
|
if ((Beatmap?.Beatmap?.HitObjects.Count ?? 0) == 0)
|
|
|
|
|
throw new Exception("No valid objects were found!");
|
2017-03-09 14:52:40 +08:00
|
|
|
|
|
|
|
|
|
if (Beatmap == null)
|
|
|
|
|
throw new Exception("Beatmap was not loaded");
|
2016-10-27 19:37:01 +08:00
|
|
|
|
}
|
2017-02-15 11:38:10 +08:00
|
|
|
|
catch (Exception e)
|
2016-10-27 19:37:01 +08:00
|
|
|
|
{
|
2017-02-15 11:38:10 +08:00
|
|
|
|
Logger.Log($"Could not load this beatmap sucessfully ({e})!", LoggingTarget.Runtime, LogLevel.Error);
|
|
|
|
|
|
2016-10-27 19:37:01 +08:00
|
|
|
|
//couldn't load, hard abort!
|
|
|
|
|
Exit();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-10-05 19:49:31 +08:00
|
|
|
|
|
2017-02-18 16:35:04 +08:00
|
|
|
|
Track track = Beatmap.Track;
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
|
|
|
|
if (track != null)
|
|
|
|
|
{
|
2016-11-09 07:13:20 +08:00
|
|
|
|
audio.Track.SetExclusive(track);
|
2016-10-28 13:14:45 +08:00
|
|
|
|
sourceClock = track;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-28 18:55:48 +08:00
|
|
|
|
sourceClock = (IAdjustableClock)track ?? new StopwatchClock();
|
2017-02-28 19:14:48 +08:00
|
|
|
|
interpolatedSourceClock = new InterpolatingFramedClock(sourceClock);
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
|
|
|
|
Schedule(() =>
|
|
|
|
|
{
|
2016-10-28 18:55:48 +08:00
|
|
|
|
sourceClock.Reset();
|
2016-10-28 13:14:45 +08:00
|
|
|
|
});
|
|
|
|
|
|
2017-03-05 16:45:40 +08:00
|
|
|
|
ruleset = Ruleset.GetRuleset(Beatmap.PlayMode);
|
2017-03-31 14:59:53 +08:00
|
|
|
|
HitRenderer = ruleset.CreateHitRendererWith(Beatmap);
|
2017-03-16 11:40:35 +08:00
|
|
|
|
|
2017-03-31 14:59:53 +08:00
|
|
|
|
scoreProcessor = HitRenderer.CreateScoreProcessor();
|
2016-11-09 18:49:05 +08:00
|
|
|
|
|
2017-04-11 18:58:57 +08:00
|
|
|
|
hudOverlay = new StandardHudOverlay()
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre
|
|
|
|
|
};
|
|
|
|
|
|
2017-03-10 15:16:07 +08:00
|
|
|
|
hudOverlay.KeyCounter.Add(ruleset.CreateGameplayKeys());
|
2017-03-16 11:40:35 +08:00
|
|
|
|
hudOverlay.BindProcessor(scoreProcessor);
|
2017-03-31 14:59:53 +08:00
|
|
|
|
hudOverlay.BindHitRenderer(HitRenderer);
|
2017-04-14 16:58:30 +08:00
|
|
|
|
|
|
|
|
|
hudOverlay.Progress.Objects = HitRenderer.Objects;
|
2017-04-14 17:23:34 +08:00
|
|
|
|
hudOverlay.Progress.AudioClock = interpolatedSourceClock;
|
2017-03-23 18:15:53 +08:00
|
|
|
|
|
2017-01-20 15:51:43 +08:00
|
|
|
|
//bind HitRenderer to ScoreProcessor and ourselves (for a pass situation)
|
2017-03-31 14:59:53 +08:00
|
|
|
|
HitRenderer.OnAllJudged += onCompletion;
|
2017-01-20 15:51:43 +08:00
|
|
|
|
|
|
|
|
|
//bind ScoreProcessor to ourselves (for a fail situation)
|
|
|
|
|
scoreProcessor.Failed += onFail;
|
2016-10-19 18:44:03 +08:00
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
2016-10-06 22:33:09 +08:00
|
|
|
|
{
|
2017-02-28 19:14:48 +08:00
|
|
|
|
new Container
|
2016-11-09 17:50:30 +08:00
|
|
|
|
{
|
2017-02-28 19:14:48 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Clock = interpolatedSourceClock,
|
2016-11-09 17:50:30 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-03-31 14:59:53 +08:00
|
|
|
|
HitRenderer,
|
2017-02-28 19:14:48 +08:00
|
|
|
|
skipButton = new SkipButton
|
|
|
|
|
{
|
|
|
|
|
Alpha = 0
|
|
|
|
|
},
|
2016-11-09 17:50:30 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2017-03-10 10:59:08 +08:00
|
|
|
|
hudOverlay,
|
2017-04-06 14:34:52 +08:00
|
|
|
|
pauseOverlay = new PauseOverlay
|
|
|
|
|
{
|
|
|
|
|
OnResume = delegate
|
|
|
|
|
{
|
|
|
|
|
Delay(400);
|
|
|
|
|
Schedule(Resume);
|
|
|
|
|
},
|
|
|
|
|
OnRetry = Restart,
|
|
|
|
|
OnQuit = Exit,
|
|
|
|
|
},
|
|
|
|
|
failOverlay = new FailOverlay
|
|
|
|
|
{
|
|
|
|
|
OnRetry = Restart,
|
|
|
|
|
OnQuit = Exit,
|
2017-04-09 21:26:31 +08:00
|
|
|
|
},
|
2017-04-10 11:06:10 +08:00
|
|
|
|
new HotkeyRetryOverlay
|
2017-04-09 21:26:31 +08:00
|
|
|
|
{
|
2017-04-11 18:58:57 +08:00
|
|
|
|
Action = () => {
|
|
|
|
|
//we want to hide the hitrenderer immediately (looks better).
|
|
|
|
|
//we may be able to remove this once the mouse cursor trail is improved.
|
2017-04-11 23:09:45 +08:00
|
|
|
|
HitRenderer?.Hide();
|
2017-04-11 18:58:57 +08:00
|
|
|
|
Restart();
|
|
|
|
|
},
|
2017-04-06 14:34:52 +08:00
|
|
|
|
}
|
2016-10-19 18:44:03 +08:00
|
|
|
|
};
|
2016-10-05 19:49:31 +08:00
|
|
|
|
}
|
2016-10-28 13:14:45 +08:00
|
|
|
|
|
2017-01-27 20:57:22 +08:00
|
|
|
|
private void initializeSkipButton()
|
|
|
|
|
{
|
|
|
|
|
const double skip_required_cutoff = 3000;
|
|
|
|
|
const double fade_time = 300;
|
|
|
|
|
|
|
|
|
|
double firstHitObject = Beatmap.Beatmap.HitObjects.First().StartTime;
|
|
|
|
|
|
|
|
|
|
if (firstHitObject < skip_required_cutoff)
|
|
|
|
|
{
|
|
|
|
|
skipButton.Alpha = 0;
|
|
|
|
|
skipButton.Expire();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
skipButton.FadeInFromZero(fade_time);
|
|
|
|
|
|
|
|
|
|
skipButton.Action = () =>
|
|
|
|
|
{
|
|
|
|
|
sourceClock.Seek(firstHitObject - skip_required_cutoff - fade_time);
|
|
|
|
|
skipButton.Action = null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
skipButton.Delay(firstHitObject - skip_required_cutoff - fade_time);
|
|
|
|
|
skipButton.FadeOut(fade_time);
|
|
|
|
|
skipButton.Expire();
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-29 04:55:42 +08:00
|
|
|
|
public void Pause(bool force = false)
|
2017-01-28 03:28:39 +08:00
|
|
|
|
{
|
2017-04-12 19:01:52 +08:00
|
|
|
|
if (!canPause && !force) return;
|
|
|
|
|
|
2017-04-13 10:41:08 +08:00
|
|
|
|
// the actual pausing is potentially happening on a different thread.
|
|
|
|
|
// we want to wait for the source clock to stop so we can be sure all components are in a stable state.
|
|
|
|
|
if (!IsPaused)
|
2017-01-28 03:28:39 +08:00
|
|
|
|
{
|
2017-04-13 17:31:23 +08:00
|
|
|
|
sourceClock.Stop();
|
|
|
|
|
|
2017-04-13 10:41:08 +08:00
|
|
|
|
Schedule(() => Pause(force));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// we need to do a final check after all of our children have processed up to the paused clock time.
|
|
|
|
|
// this is to cover cases where, for instance, the player fails in the last processed frame (which would change canPause).
|
|
|
|
|
// as the scheduler runs before children updates, let's schedule for the next frame.
|
|
|
|
|
Schedule(() =>
|
|
|
|
|
{
|
|
|
|
|
if (!canPause) return;
|
|
|
|
|
|
2017-01-30 16:08:14 +08:00
|
|
|
|
lastPauseActionTime = Time.Current;
|
2017-03-10 10:59:08 +08:00
|
|
|
|
hudOverlay.KeyCounter.IsCounting = false;
|
2017-03-23 18:15:53 +08:00
|
|
|
|
hudOverlay.Progress.Show();
|
2017-01-31 21:17:47 +08:00
|
|
|
|
pauseOverlay.Retries = RestartCount;
|
2017-01-28 03:28:39 +08:00
|
|
|
|
pauseOverlay.Show();
|
2017-04-13 10:41:08 +08:00
|
|
|
|
});
|
2017-01-28 03:28:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Resume()
|
|
|
|
|
{
|
2017-01-30 16:08:14 +08:00
|
|
|
|
lastPauseActionTime = Time.Current;
|
2017-03-10 10:59:08 +08:00
|
|
|
|
hudOverlay.KeyCounter.IsCounting = true;
|
2017-03-23 18:15:53 +08:00
|
|
|
|
hudOverlay.Progress.Hide();
|
2017-01-28 03:28:39 +08:00
|
|
|
|
pauseOverlay.Hide();
|
|
|
|
|
sourceClock.Start();
|
2017-01-29 04:55:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Restart()
|
|
|
|
|
{
|
2017-01-30 18:14:28 +08:00
|
|
|
|
sourceClock.Stop(); // If the clock is running and Restart is called the game will lag until relaunch
|
2017-01-30 16:08:14 +08:00
|
|
|
|
|
|
|
|
|
var newPlayer = new Player();
|
|
|
|
|
|
2017-04-13 10:41:08 +08:00
|
|
|
|
ValidForResume = false;
|
|
|
|
|
|
2017-04-02 14:56:12 +08:00
|
|
|
|
LoadComponentAsync(newPlayer, delegate
|
2017-01-30 16:08:14 +08:00
|
|
|
|
{
|
2017-01-30 18:14:28 +08:00
|
|
|
|
newPlayer.RestartCount = RestartCount + 1;
|
2017-02-01 08:28:50 +08:00
|
|
|
|
if (!Push(newPlayer))
|
2017-01-30 16:08:14 +08:00
|
|
|
|
{
|
2017-03-07 18:30:39 +08:00
|
|
|
|
// Error(?)
|
|
|
|
|
}
|
2017-01-30 16:08:14 +08:00
|
|
|
|
});
|
2017-01-28 03:28:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-07 15:55:41 +08:00
|
|
|
|
private ScheduledDelegate onCompletionEvent;
|
|
|
|
|
|
2017-03-16 12:39:57 +08:00
|
|
|
|
private void onCompletion()
|
2016-11-29 22:59:56 +08:00
|
|
|
|
{
|
2017-03-17 00:36:30 +08:00
|
|
|
|
// Only show the completion screen if the player hasn't failed
|
2017-04-07 15:55:41 +08:00
|
|
|
|
if (scoreProcessor.HasFailed || onCompletionEvent != null)
|
2017-03-16 23:30:23 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2017-04-13 10:41:08 +08:00
|
|
|
|
ValidForResume = false;
|
|
|
|
|
|
2016-11-29 22:59:56 +08:00
|
|
|
|
Delay(1000);
|
2017-04-07 15:55:41 +08:00
|
|
|
|
onCompletionEvent = Schedule(delegate
|
2016-11-29 22:59:56 +08:00
|
|
|
|
{
|
|
|
|
|
Push(new Results
|
|
|
|
|
{
|
2017-03-17 01:03:12 +08:00
|
|
|
|
Score = scoreProcessor.CreateScore()
|
2016-11-29 22:59:56 +08:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-20 15:51:43 +08:00
|
|
|
|
private void onFail()
|
|
|
|
|
{
|
|
|
|
|
sourceClock.Stop();
|
|
|
|
|
|
2017-04-02 02:17:24 +08:00
|
|
|
|
HasFailed = true;
|
2017-03-28 09:53:57 +08:00
|
|
|
|
failOverlay.Retries = RestartCount;
|
|
|
|
|
failOverlay.Show();
|
2017-01-20 15:51:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
protected override void OnEntering(Screen last)
|
2016-11-20 00:39:43 +08:00
|
|
|
|
{
|
|
|
|
|
base.OnEntering(last);
|
2017-02-15 11:38:10 +08:00
|
|
|
|
|
2017-02-22 20:43:29 +08:00
|
|
|
|
(Background as BackgroundScreenBeatmap)?.BlurTo(Vector2.Zero, 1500, EasingTypes.OutQuint);
|
|
|
|
|
Background?.FadeTo((100f - dimLevel) / 100, 1500, EasingTypes.OutQuint);
|
2016-11-20 00:39:43 +08:00
|
|
|
|
|
2016-12-07 19:47:28 +08:00
|
|
|
|
Content.Alpha = 0;
|
2017-04-03 18:34:00 +08:00
|
|
|
|
|
|
|
|
|
dimLevel.ValueChanged += newDim => Background?.FadeTo((100f - newDim) / 100, 800);
|
2017-02-22 13:14:37 +08:00
|
|
|
|
|
2017-02-22 20:43:29 +08:00
|
|
|
|
Content.ScaleTo(0.7f);
|
|
|
|
|
|
2017-02-22 13:14:37 +08:00
|
|
|
|
Content.Delay(250);
|
|
|
|
|
Content.FadeIn(250);
|
|
|
|
|
|
2017-02-22 20:43:29 +08:00
|
|
|
|
Content.ScaleTo(1, 750, EasingTypes.OutQuint);
|
|
|
|
|
|
2017-02-22 13:14:37 +08:00
|
|
|
|
Delay(750);
|
|
|
|
|
Schedule(() =>
|
|
|
|
|
{
|
|
|
|
|
sourceClock.Start();
|
|
|
|
|
initializeSkipButton();
|
|
|
|
|
});
|
2017-04-07 19:38:57 +08:00
|
|
|
|
|
|
|
|
|
//keep in mind this is using the interpolatedSourceClock so won't be run as early as we may expect.
|
|
|
|
|
HitRenderer.Alpha = 0;
|
|
|
|
|
HitRenderer.FadeIn(750, EasingTypes.OutQuint);
|
2017-02-22 13:14:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnSuspending(Screen next)
|
|
|
|
|
{
|
2017-04-11 18:58:57 +08:00
|
|
|
|
fadeOut();
|
2017-02-22 20:43:29 +08:00
|
|
|
|
|
2017-02-22 13:14:37 +08:00
|
|
|
|
base.OnSuspending(next);
|
2016-10-28 13:14:45 +08:00
|
|
|
|
}
|
2016-11-16 14:48:35 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
protected override bool OnExiting(Screen next)
|
2016-12-17 00:13:24 +08:00
|
|
|
|
{
|
2017-04-13 18:01:15 +08:00
|
|
|
|
if (HasFailed || !ValidForResume)
|
|
|
|
|
return false;
|
|
|
|
|
|
2017-04-07 19:46:35 +08:00
|
|
|
|
if (pauseOverlay != null && !HitRenderer.HasReplayLoaded)
|
|
|
|
|
{
|
|
|
|
|
//pause screen override logic.
|
|
|
|
|
if (pauseOverlay?.State == Visibility.Hidden && !canPause) return true;
|
2017-02-15 11:38:10 +08:00
|
|
|
|
|
2017-04-12 19:01:52 +08:00
|
|
|
|
if (!IsPaused) // For if the user presses escape quickly when entering the map
|
2017-04-07 19:46:35 +08:00
|
|
|
|
{
|
|
|
|
|
Pause();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-04 20:35:26 +08:00
|
|
|
|
|
2017-04-11 18:58:57 +08:00
|
|
|
|
fadeOut();
|
2017-04-07 19:46:35 +08:00
|
|
|
|
return base.OnExiting(next);
|
2016-12-17 00:13:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-11 18:58:57 +08:00
|
|
|
|
private void fadeOut()
|
|
|
|
|
{
|
|
|
|
|
const float fade_out_duration = 250;
|
2017-02-15 11:38:10 +08:00
|
|
|
|
|
2017-04-11 18:58:57 +08:00
|
|
|
|
HitRenderer?.FadeOut(fade_out_duration);
|
|
|
|
|
Content.FadeOut(fade_out_duration);
|
2017-03-04 20:35:26 +08:00
|
|
|
|
|
2017-04-11 18:58:57 +08:00
|
|
|
|
hudOverlay.ScaleTo(0.7f, fade_out_duration * 3, EasingTypes.In);
|
2017-02-01 08:44:59 +08:00
|
|
|
|
|
2017-04-11 18:58:57 +08:00
|
|
|
|
Background?.FadeTo(1f, fade_out_duration);
|
2016-12-17 00:13:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 07:08:34 +08:00
|
|
|
|
private Bindable<bool> mouseWheelDisabled;
|
|
|
|
|
|
2017-03-07 09:59:19 +08:00
|
|
|
|
protected override bool OnWheel(InputState state) => mouseWheelDisabled.Value && !IsPaused;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
2017-04-11 23:09:45 +08:00
|
|
|
|
}
|