osu/osu.Game/Screens/Play/Player.cs

344 lines
11 KiB
C#
Raw Normal View History

// 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 11:13:58 +00:00
using OpenTK;
2016-11-08 23:13:20 +00:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
2016-11-14 08:23:33 +00:00
using osu.Framework.Audio.Track;
using osu.Framework.Configuration;
2016-11-14 08:23:33 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input;
using osu.Framework.Logging;
using osu.Framework.Screens;
2016-11-14 08:23:33 +00:00
using osu.Framework.Timing;
using osu.Game.Configuration;
2016-11-14 08:23:33 +00:00
using osu.Game.Database;
2016-11-14 09:03:20 +00:00
using osu.Game.Modes;
2016-11-29 14:59:56 +00:00
using osu.Game.Modes.UI;
using osu.Game.Screens.Backgrounds;
2016-11-29 06:41:48 +00:00
using osu.Game.Screens.Ranking;
2016-12-17 19:59:41 +00:00
using System;
2017-01-27 12:57:22 +00:00
using System.Linq;
using osu.Framework.Threading;
using osu.Game.Modes.Scoring;
2016-09-29 11:13:58 +00:00
2016-11-14 08:23:33 +00:00
namespace osu.Game.Screens.Play
2016-09-29 11:13:58 +00:00
{
2017-02-17 09:59:30 +00:00
public class Player : OsuScreen
2016-09-29 11:13:58 +00:00
{
2017-02-17 09:59:30 +00:00
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBeatmap(Beatmap);
2016-10-05 11:03:52 +00:00
internal override bool ShowOverlays => false;
internal override bool HasLocalCursorDisplayed => !IsPaused && !HasFailed && HitRenderer.ProvidingUserCursor;
2017-03-16 14:58:36 +00:00
2016-10-27 08:53:37 +00:00
public BeatmapInfo BeatmapInfo;
2017-04-12 11:01:52 +00:00
public bool IsPaused => !sourceClock.IsRunning;
2017-04-01 18:17:24 +00:00
public bool HasFailed { get; private set; }
public int RestartCount;
2017-03-23 04:52:38 +00:00
private const double pause_cooldown = 1000;
2017-03-07 01:59:19 +00:00
private double lastPauseActionTime;
2017-03-23 04:52:38 +00:00
private bool canPause => Time.Current >= lastPauseActionTime + pause_cooldown;
private IAdjustableClock sourceClock;
2017-02-28 11:14:48 +00:00
private IFrameBasedClock interpolatedSourceClock;
2016-11-16 06:48:35 +00:00
private Ruleset ruleset;
2016-11-29 11:30:16 +00:00
private ScoreProcessor scoreProcessor;
protected HitRenderer HitRenderer;
2016-12-18 09:48:59 +00:00
private Bindable<int> dimLevel;
2017-01-27 12:57:22 +00:00
private SkipButton skipButton;
2016-11-29 11:30:16 +00:00
2017-03-10 04:02:50 +00:00
private HudOverlay hudOverlay;
2017-03-28 07:49:58 +00:00
private PauseOverlay pauseOverlay;
private FailOverlay failOverlay;
[BackgroundDependencyLoader]
2017-03-28 08:41:08 +00:00
private void load(AudioManager audio, BeatmapDatabase beatmaps, OsuConfigManager config)
2016-10-05 11:49:31 +00:00
{
var beatmap = Beatmap.Beatmap;
if (beatmap.BeatmapInfo?.Mode > PlayMode.Taiko)
{
//we only support osu! mode for now because the hitobject parsing is crappy and needs a refactor.
Exit();
return;
}
dimLevel = config.GetBindable<int>(OsuConfig.DimLevel);
2017-02-28 10:44:12 +00:00
mouseWheelDisabled = config.GetBindable<bool>(OsuConfig.MouseDisableWheel);
try
{
if (Beatmap == null)
Beatmap = beatmaps.GetWorkingBeatmap(BeatmapInfo, withStoryboard: true);
if ((Beatmap?.Beatmap?.HitObjects.Count ?? 0) == 0)
throw new Exception("No valid objects were found!");
if (Beatmap == null)
throw new Exception("Beatmap was not loaded");
}
catch (Exception e)
{
Logger.Log($"Could not load this beatmap sucessfully ({e})!", LoggingTarget.Runtime, LogLevel.Error);
//couldn't load, hard abort!
Exit();
return;
}
2016-10-05 11:49:31 +00:00
Track track = Beatmap.Track;
if (track != null)
{
2016-11-08 23:13:20 +00:00
audio.Track.SetExclusive(track);
sourceClock = track;
}
2016-10-28 10:55:48 +00:00
sourceClock = (IAdjustableClock)track ?? new StopwatchClock();
2017-02-28 11:14:48 +00:00
interpolatedSourceClock = new InterpolatingFramedClock(sourceClock);
Schedule(() =>
{
2016-10-28 10:55:48 +00:00
sourceClock.Reset();
});
ruleset = Ruleset.GetRuleset(Beatmap.PlayMode);
HitRenderer = ruleset.CreateHitRendererWith(Beatmap);
scoreProcessor = HitRenderer.CreateScoreProcessor();
hudOverlay = new StandardHudOverlay()
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre
};
hudOverlay.KeyCounter.Add(ruleset.CreateGameplayKeys());
hudOverlay.BindProcessor(scoreProcessor);
hudOverlay.BindHitRenderer(HitRenderer);
2016-10-06 14:33:09 +00:00
2017-01-20 07:51:43 +00:00
//bind HitRenderer to ScoreProcessor and ourselves (for a pass situation)
HitRenderer.OnAllJudged += onCompletion;
2017-01-20 07:51:43 +00:00
//bind ScoreProcessor to ourselves (for a fail situation)
scoreProcessor.Failed += onFail;
Children = new Drawable[]
2016-10-06 14:33:09 +00:00
{
2017-02-28 11:14:48 +00:00
new Container
{
2017-02-28 11:14:48 +00:00
RelativeSizeAxes = Axes.Both,
Clock = interpolatedSourceClock,
Children = new Drawable[]
{
HitRenderer,
2017-02-28 11:14:48 +00:00
skipButton = new SkipButton
{
Alpha = 0
},
}
},
hudOverlay,
2017-04-06 06:34:52 +00:00
pauseOverlay = new PauseOverlay
{
OnResume = delegate
{
Delay(400);
Schedule(Resume);
},
OnRetry = Restart,
OnQuit = Exit,
},
failOverlay = new FailOverlay
{
OnRetry = Restart,
OnQuit = Exit,
2017-04-09 13:26:31 +00:00
},
2017-04-10 03:06:10 +00:00
new HotkeyRetryOverlay
2017-04-09 13:26:31 +00: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 15:09:45 +00:00
HitRenderer?.Hide();
Restart();
},
2017-04-06 06:34:52 +00:00
}
};
2016-10-05 11:49:31 +00:00
}
2017-01-27 12:57:22 +00: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();
}
public void Pause(bool force = false)
{
2017-04-12 11:01:52 +00:00
if (!canPause && !force) return;
lastPauseActionTime = Time.Current;
hudOverlay.KeyCounter.IsCounting = false;
pauseOverlay.Retries = RestartCount;
pauseOverlay.Show();
sourceClock.Stop();
}
public void Resume()
{
lastPauseActionTime = Time.Current;
hudOverlay.KeyCounter.IsCounting = true;
pauseOverlay.Hide();
sourceClock.Start();
}
public void Restart()
{
sourceClock.Stop(); // If the clock is running and Restart is called the game will lag until relaunch
var newPlayer = new Player();
2017-04-02 06:56:12 +00:00
LoadComponentAsync(newPlayer, delegate
{
newPlayer.RestartCount = RestartCount + 1;
ValidForResume = false;
if (!Push(newPlayer))
{
// Error(?)
}
});
}
private ScheduledDelegate onCompletionEvent;
private void onCompletion()
2016-11-29 14:59:56 +00:00
{
// Only show the completion screen if the player hasn't failed
if (scoreProcessor.HasFailed || onCompletionEvent != null)
return;
2016-11-29 14:59:56 +00:00
Delay(1000);
onCompletionEvent = Schedule(delegate
2016-11-29 14:59:56 +00:00
{
ValidForResume = false;
2016-11-29 14:59:56 +00:00
Push(new Results
{
2017-03-16 17:03:12 +00:00
Score = scoreProcessor.CreateScore()
2016-11-29 14:59:56 +00:00
});
});
}
2017-01-20 07:51:43 +00:00
private void onFail()
{
sourceClock.Stop();
Delay(500);
2017-04-01 18:17:24 +00:00
HasFailed = true;
failOverlay.Retries = RestartCount;
failOverlay.Show();
2017-01-20 07:51:43 +00:00
}
2017-02-17 09:59:30 +00:00
protected override void OnEntering(Screen last)
{
base.OnEntering(last);
2017-02-22 12:43:29 +00:00
(Background as BackgroundScreenBeatmap)?.BlurTo(Vector2.Zero, 1500, EasingTypes.OutQuint);
Background?.FadeTo((100f - dimLevel) / 100, 1500, EasingTypes.OutQuint);
Content.Alpha = 0;
dimLevel.ValueChanged += newDim => Background?.FadeTo((100f - newDim) / 100, 800);
2017-02-22 12:43:29 +00:00
Content.ScaleTo(0.7f);
Content.Delay(250);
Content.FadeIn(250);
2017-02-22 12:43:29 +00:00
Content.ScaleTo(1, 750, EasingTypes.OutQuint);
Delay(750);
Schedule(() =>
{
sourceClock.Start();
initializeSkipButton();
});
//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);
}
protected override void OnSuspending(Screen next)
{
fadeOut();
2017-02-22 12:43:29 +00:00
base.OnSuspending(next);
}
2016-11-16 06:48:35 +00:00
2017-02-17 09:59:30 +00:00
protected override bool OnExiting(Screen next)
2016-12-16 16:13:24 +00:00
{
if (pauseOverlay != null && !HitRenderer.HasReplayLoaded)
{
//pause screen override logic.
if (pauseOverlay?.State == Visibility.Hidden && !canPause) return true;
2017-04-12 11:01:52 +00:00
if (!IsPaused) // For if the user presses escape quickly when entering the map
{
Pause();
return true;
}
}
fadeOut();
return base.OnExiting(next);
2016-12-16 16:13:24 +00:00
}
private void fadeOut()
{
const float fade_out_duration = 250;
HitRenderer?.FadeOut(fade_out_duration);
Content.FadeOut(fade_out_duration);
hudOverlay.ScaleTo(0.7f, fade_out_duration * 3, EasingTypes.In);
Background?.FadeTo(1f, fade_out_duration);
}
2017-02-27 23:08:34 +00:00
private Bindable<bool> mouseWheelDisabled;
2017-03-07 01:59:19 +00:00
protected override bool OnWheel(InputState state) => mouseWheelDisabled.Value && !IsPaused;
2016-09-29 11:13:58 +00:00
}
2017-04-11 15:09:45 +00:00
}