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;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2017-03-10 10:59:08 +08:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
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-04-21 16:33:20 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-04-11 13:01:13 +08:00
|
|
|
|
using osu.Game.Screens.Ranking;
|
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-05-17 20:57:01 +08:00
|
|
|
|
internal override bool HasLocalCursorDisplayed => !pauseContainer.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-18 15:56:01 +08:00
|
|
|
|
public Action RestartRequested;
|
2017-04-18 12:30:51 +08:00
|
|
|
|
|
2017-04-21 15:03:59 +08:00
|
|
|
|
internal override bool AllowRulesetChange => false;
|
|
|
|
|
|
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-04-26 17:16:55 +08:00
|
|
|
|
private IAdjustableClock adjustableSourceClock;
|
|
|
|
|
private FramedOffsetClock offsetClock;
|
|
|
|
|
private DecoupleableInterpolatingFramedClock decoupledClock;
|
2016-11-16 14:48:35 +08:00
|
|
|
|
|
2017-05-17 20:57:01 +08:00
|
|
|
|
private PauseContainer pauseContainer;
|
|
|
|
|
|
2017-04-20 10:16:08 +08:00
|
|
|
|
private RulesetInfo 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;
|
2017-04-21 15:19:40 +08:00
|
|
|
|
|
|
|
|
|
#region User Settings
|
|
|
|
|
|
2017-04-20 20:43:30 +08:00
|
|
|
|
private Bindable<double> dimLevel;
|
2017-04-21 15:19:40 +08:00
|
|
|
|
private Bindable<bool> mouseWheelDisabled;
|
|
|
|
|
private Bindable<double> userAudioOffset;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2017-05-05 12:00:05 +08:00
|
|
|
|
private HUDOverlay hudOverlay;
|
2017-03-28 15:49:58 +08:00
|
|
|
|
private FailOverlay failOverlay;
|
2017-01-28 03:28:39 +08:00
|
|
|
|
|
2017-04-17 14:44:46 +08:00
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
|
|
|
|
private void load(AudioManager audio, BeatmapDatabase beatmaps, OsuConfigManager config, OsuGame osu)
|
2016-10-05 19:49:31 +08:00
|
|
|
|
{
|
2017-05-15 09:56:27 +08:00
|
|
|
|
dimLevel = config.GetBindable<double>(OsuSetting.DimLevel);
|
|
|
|
|
mouseWheelDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableWheel);
|
2017-02-28 18:44:12 +08:00
|
|
|
|
|
2017-04-20 10:16:08 +08:00
|
|
|
|
Ruleset rulesetInstance;
|
|
|
|
|
|
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
|
|
|
|
|
2017-04-26 17:32:40 +08:00
|
|
|
|
if (Beatmap?.Beatmap == null)
|
2017-05-07 00:38:17 +08:00
|
|
|
|
throw new InvalidOperationException("Beatmap was not loaded");
|
2017-04-17 14:44:46 +08:00
|
|
|
|
|
2017-04-20 10:36:50 +08:00
|
|
|
|
ruleset = osu?.Ruleset.Value ?? Beatmap.BeatmapInfo.Ruleset;
|
|
|
|
|
rulesetInstance = ruleset.CreateInstance();
|
|
|
|
|
|
2017-04-17 14:44:46 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
2017-05-19 15:31:05 +08:00
|
|
|
|
HitRenderer = rulesetInstance.CreateHitRendererWith(Beatmap, ruleset.ID == Beatmap.BeatmapInfo.Ruleset.ID);
|
2017-04-17 14:44:46 +08:00
|
|
|
|
}
|
2017-04-20 11:11:03 +08:00
|
|
|
|
catch (BeatmapInvalidForRulesetException)
|
2017-04-17 14:44:46 +08:00
|
|
|
|
{
|
2017-04-20 10:36:50 +08:00
|
|
|
|
// we may fail to create a HitRenderer if the beatmap cannot be loaded with the user's preferred ruleset
|
|
|
|
|
// let's try again forcing the beatmap's ruleset.
|
2017-04-20 10:16:08 +08:00
|
|
|
|
ruleset = Beatmap.BeatmapInfo.Ruleset;
|
2017-04-20 10:36:50 +08:00
|
|
|
|
rulesetInstance = ruleset.CreateInstance();
|
2017-05-19 14:57:32 +08:00
|
|
|
|
HitRenderer = rulesetInstance.CreateHitRendererWith(Beatmap, true);
|
2017-04-17 14:44:46 +08:00
|
|
|
|
}
|
2017-04-26 19:22:03 +08:00
|
|
|
|
|
|
|
|
|
if (!HitRenderer.Objects.Any())
|
2017-05-07 00:38:17 +08:00
|
|
|
|
throw new InvalidOperationException("Beatmap contains no hit objects!");
|
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);
|
2017-04-26 17:16:55 +08:00
|
|
|
|
adjustableSourceClock = track;
|
2016-10-28 13:14:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-26 17:16:55 +08:00
|
|
|
|
adjustableSourceClock = (IAdjustableClock)track ?? new StopwatchClock();
|
|
|
|
|
|
2017-04-26 17:32:47 +08:00
|
|
|
|
decoupledClock = new DecoupleableInterpolatingFramedClock { IsCoupled = false };
|
2017-04-26 17:16:55 +08:00
|
|
|
|
|
2017-04-26 17:07:22 +08:00
|
|
|
|
var firstObjectTime = HitRenderer.Objects.First().StartTime;
|
2017-05-23 12:55:18 +08:00
|
|
|
|
decoupledClock.Seek(Math.Min(0, firstObjectTime - Math.Max(Beatmap.Beatmap.ControlPointInfo.TimingPointAt(firstObjectTime).BeatLength * 4, Beatmap.BeatmapInfo.AudioLeadIn)));
|
2017-04-26 17:07:22 +08:00
|
|
|
|
decoupledClock.ProcessFrame();
|
|
|
|
|
|
2017-04-26 17:16:55 +08:00
|
|
|
|
offsetClock = new FramedOffsetClock(decoupledClock);
|
2017-04-21 15:19:40 +08:00
|
|
|
|
|
2017-05-15 09:56:27 +08:00
|
|
|
|
userAudioOffset = config.GetBindable<double>(OsuSetting.AudioOffset);
|
2017-04-21 15:19:40 +08:00
|
|
|
|
userAudioOffset.ValueChanged += v => offsetClock.Offset = v;
|
|
|
|
|
userAudioOffset.TriggerChange();
|
|
|
|
|
|
2016-10-28 13:14:45 +08:00
|
|
|
|
Schedule(() =>
|
|
|
|
|
{
|
2017-04-26 17:16:55 +08:00
|
|
|
|
adjustableSourceClock.Reset();
|
|
|
|
|
|
2017-04-21 16:33:20 +08:00
|
|
|
|
foreach (var mod in Beatmap.Mods.Value.OfType<IApplicableToClock>())
|
2017-04-26 17:16:55 +08:00
|
|
|
|
mod.ApplyToClock(adjustableSourceClock);
|
2017-04-26 17:07:22 +08:00
|
|
|
|
|
|
|
|
|
decoupledClock.ChangeSource(adjustableSourceClock);
|
2016-10-28 13:14:45 +08:00
|
|
|
|
});
|
|
|
|
|
|
2016-10-19 18:44:03 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-10-06 22:33:09 +08:00
|
|
|
|
{
|
2017-05-17 20:57:01 +08:00
|
|
|
|
pauseContainer = new PauseContainer
|
2016-11-09 17:50:30 +08:00
|
|
|
|
{
|
2017-05-17 20:57:01 +08:00
|
|
|
|
AudioClock = decoupledClock,
|
|
|
|
|
FramedClock = offsetClock,
|
|
|
|
|
OnRetry = Restart,
|
|
|
|
|
OnQuit = Exit,
|
2017-05-21 00:56:50 +08:00
|
|
|
|
CheckCanPause = () => ValidForResume && !HasFailed && !HitRenderer.HasReplayLoaded,
|
2017-05-17 20:57:01 +08:00
|
|
|
|
Retries = RestartCount,
|
|
|
|
|
OnPause = () => {
|
|
|
|
|
hudOverlay.KeyCounter.IsCounting = pauseContainer.IsPaused;
|
|
|
|
|
},
|
|
|
|
|
OnResume = () => {
|
|
|
|
|
hudOverlay.KeyCounter.IsCounting = true;
|
|
|
|
|
},
|
2016-11-09 17:50:30 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-05-19 21:12:09 +08:00
|
|
|
|
new SkipButton(firstObjectTime) { AudioClock = decoupledClock },
|
2017-04-26 17:07:22 +08:00
|
|
|
|
new Container
|
2017-02-28 19:14:48 +08:00
|
|
|
|
{
|
2017-04-26 17:07:22 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Clock = offsetClock,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
HitRenderer,
|
|
|
|
|
}
|
2017-02-28 19:14:48 +08:00
|
|
|
|
},
|
2017-05-17 20:57:01 +08:00
|
|
|
|
hudOverlay = new StandardHUDOverlay
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre
|
|
|
|
|
},
|
2016-11-09 17:50:30 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2017-04-06 14:34:52 +08:00
|
|
|
|
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-28 13:14:45 +08:00
|
|
|
|
|
2017-05-17 20:57:01 +08:00
|
|
|
|
scoreProcessor = HitRenderer.CreateScoreProcessor();
|
|
|
|
|
|
|
|
|
|
hudOverlay.KeyCounter.Add(rulesetInstance.CreateGameplayKeys());
|
|
|
|
|
hudOverlay.BindProcessor(scoreProcessor);
|
|
|
|
|
hudOverlay.BindHitRenderer(HitRenderer);
|
2017-05-16 16:55:35 +08:00
|
|
|
|
|
2017-05-17 20:57:01 +08:00
|
|
|
|
hudOverlay.Progress.Objects = HitRenderer.Objects;
|
|
|
|
|
hudOverlay.Progress.AudioClock = decoupledClock;
|
|
|
|
|
hudOverlay.Progress.AllowSeeking = HitRenderer.HasReplayLoaded;
|
|
|
|
|
hudOverlay.Progress.OnSeek = pos => decoupledClock.Seek(pos);
|
|
|
|
|
|
|
|
|
|
hudOverlay.ModDisplay.Current.BindTo(Beatmap.Mods);
|
|
|
|
|
|
|
|
|
|
//bind HitRenderer to ScoreProcessor and ourselves (for a pass situation)
|
|
|
|
|
HitRenderer.OnAllJudged += onCompletion;
|
|
|
|
|
|
|
|
|
|
//bind ScoreProcessor to ourselves (for a fail situation)
|
|
|
|
|
scoreProcessor.Failed += onFail;
|
2017-05-16 16:55:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-29 04:55:42 +08:00
|
|
|
|
public void Restart()
|
|
|
|
|
{
|
2017-04-18 14:52:38 +08:00
|
|
|
|
ValidForResume = false;
|
2017-04-18 15:56:01 +08:00
|
|
|
|
RestartRequested?.Invoke();
|
2017-04-18 12:30:51 +08:00
|
|
|
|
Exit();
|
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;
|
|
|
|
|
|
2017-05-19 12:53:09 +08:00
|
|
|
|
using (BeginDelayedSequence(1000))
|
2016-11-29 22:59:56 +08:00
|
|
|
|
{
|
2017-05-19 12:53:09 +08:00
|
|
|
|
onCompletionEvent = Schedule(delegate
|
2017-04-20 10:16:08 +08:00
|
|
|
|
{
|
2017-05-19 12:53:09 +08:00
|
|
|
|
var score = new Score
|
|
|
|
|
{
|
|
|
|
|
Beatmap = Beatmap.BeatmapInfo,
|
|
|
|
|
Ruleset = ruleset
|
|
|
|
|
};
|
|
|
|
|
scoreProcessor.PopulateScore(score);
|
|
|
|
|
score.User = HitRenderer.Replay?.User ?? (Game as OsuGame)?.API?.LocalUser?.Value;
|
|
|
|
|
Push(new Results(score));
|
|
|
|
|
});
|
|
|
|
|
}
|
2016-11-29 22:59:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-20 15:51:43 +08:00
|
|
|
|
private void onFail()
|
|
|
|
|
{
|
2017-04-26 17:16:55 +08:00
|
|
|
|
decoupledClock.Stop();
|
2017-01-20 15:51:43 +08:00
|
|
|
|
|
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);
|
2017-04-20 20:43:30 +08:00
|
|
|
|
Background?.FadeTo(1 - (float)dimLevel, 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
|
|
|
|
|
2017-04-20 20:43:30 +08:00
|
|
|
|
dimLevel.ValueChanged += newDim => Background?.FadeTo(1 - (float)newDim, 800);
|
2017-02-22 13:14:37 +08:00
|
|
|
|
|
2017-02-22 20:43:29 +08:00
|
|
|
|
Content.ScaleTo(0.7f);
|
|
|
|
|
|
2017-05-19 12:53:09 +08:00
|
|
|
|
using (Content.BeginDelayedSequence(250))
|
|
|
|
|
Content.FadeIn(250);
|
2017-02-22 13:14:37 +08:00
|
|
|
|
|
2017-02-22 20:43:29 +08:00
|
|
|
|
Content.ScaleTo(1, 750, EasingTypes.OutQuint);
|
|
|
|
|
|
2017-05-19 12:53:09 +08:00
|
|
|
|
using (BeginDelayedSequence(750))
|
|
|
|
|
Schedule(() =>
|
|
|
|
|
{
|
|
|
|
|
if (!pauseContainer.IsPaused)
|
|
|
|
|
decoupledClock.Start();
|
|
|
|
|
|
|
|
|
|
});
|
2017-04-07 19:38:57 +08:00
|
|
|
|
|
2017-05-17 20:57:01 +08:00
|
|
|
|
pauseContainer.Alpha = 0;
|
|
|
|
|
pauseContainer.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 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-05-26 16:33:50 +08:00
|
|
|
|
if (HasFailed || !ValidForResume || pauseContainer?.AllowExit != false || HitRenderer?.HasReplayLoaded != false)
|
2017-04-07 19:46:35 +08:00
|
|
|
|
{
|
2017-05-17 20:57:01 +08:00
|
|
|
|
fadeOut();
|
|
|
|
|
return base.OnExiting(next);
|
2017-04-07 19:46:35 +08:00
|
|
|
|
}
|
2017-03-04 20:35:26 +08:00
|
|
|
|
|
2017-05-17 20:57:01 +08:00
|
|
|
|
pauseContainer.Pause();
|
|
|
|
|
return true;
|
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-05-26 16:33:50 +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-05-17 20:57:01 +08:00
|
|
|
|
protected override bool OnWheel(InputState state) => mouseWheelDisabled.Value && !pauseContainer.IsPaused;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
2017-04-11 23:09:45 +08:00
|
|
|
|
}
|