1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 15:27:20 +08:00

328 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 20:13:58 +09:00
using OpenTK;
2016-11-08 18:13:20 -05:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Configuration;
2016-11-14 17:23:33 +09: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 17:23:33 +09:00
using osu.Framework.Timing;
using osu.Game.Configuration;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets;
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Backgrounds;
2016-12-17 20:59:41 +01:00
using System;
2017-01-27 21:57:22 +09:00
using System.Linq;
using osu.Framework.Threading;
using osu.Game.Rulesets.Mods;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Screens.Ranking;
using osu.Framework.Audio.Sample;
using osu.Game.Beatmaps;
using osu.Game.Online.API;
2016-09-29 20:13:58 +09:00
2016-11-14 17:23:33 +09:00
namespace osu.Game.Screens.Play
2016-09-29 20:13:58 +09:00
{
2017-02-17 18:59:30 +09:00
public class Player : OsuScreen
2016-09-29 20:13:58 +09:00
{
2017-02-17 18:59:30 +09:00
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBeatmap(Beatmap);
2016-10-05 20:03:52 +09:00
internal override bool ShowOverlays => false;
2017-08-09 13:28:29 +09:00
internal override bool HasLocalCursorDisplayed => !pauseContainer.IsPaused && !HasFailed && RulesetContainer.ProvidingUserCursor;
2017-03-16 23:58:36 +09:00
public Action RestartRequested;
internal override bool AllowBeatmapRulesetChange => false;
2017-04-01 21:17:24 +03:00
public bool HasFailed { get; private set; }
public int RestartCount;
private IAdjustableClock adjustableSourceClock;
private FramedOffsetClock offsetClock;
private DecoupleableInterpolatingFramedClock decoupledClock;
2016-11-16 15:48:35 +09:00
private PauseContainer pauseContainer;
private RulesetInfo ruleset;
private APIAccess api;
2016-11-29 20:30:16 +09:00
private ScoreProcessor scoreProcessor;
2017-08-09 13:28:29 +09:00
protected RulesetContainer RulesetContainer;
#region User Settings
private Bindable<double> dimLevel;
private Bindable<bool> mouseWheelDisabled;
private Bindable<double> userAudioOffset;
private SampleChannel sampleRestart;
#endregion
private HUDOverlay hudOverlay;
2017-03-28 10:49:58 +03:00
private FailOverlay failOverlay;
2017-08-09 13:28:29 +09:00
private bool loadedSuccessfully => RulesetContainer?.Objects.Any() == true;
2017-07-19 19:10:04 +09:00
2017-08-22 18:02:38 +09:00
[BackgroundDependencyLoader]
private void load(AudioManager audio, OsuConfigManager config, APIAccess api)
2016-10-05 20:49:31 +09:00
{
this.api = api;
2017-05-15 10:56:27 +09:00
dimLevel = config.GetBindable<double>(OsuSetting.DimLevel);
2017-05-15 10:56:27 +09:00
mouseWheelDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableWheel);
2017-02-28 11:44:12 +01:00
sampleRestart = audio.Sample.Get(@"Gameplay/restart");
WorkingBeatmap working = Beatmap.Value;
Beatmap beatmap;
try
{
beatmap = working.Beatmap;
if (beatmap == null)
2017-05-07 00:38:17 +08:00
throw new InvalidOperationException("Beatmap was not loaded");
2017-04-17 15:44:46 +09:00
2017-08-22 18:02:38 +09:00
ruleset = Ruleset.Value ?? beatmap.BeatmapInfo.Ruleset;
var rulesetInstance = ruleset.CreateInstance();
2017-04-20 11:36:50 +09:00
2017-04-17 15:44:46 +09:00
try
{
2017-08-09 13:28:29 +09:00
RulesetContainer = rulesetInstance.CreateRulesetContainerWith(working, ruleset.ID == beatmap.BeatmapInfo.Ruleset.ID);
2017-04-17 15:44:46 +09:00
}
2017-04-20 12:11:03 +09:00
catch (BeatmapInvalidForRulesetException)
2017-04-17 15:44:46 +09:00
{
2017-08-09 13:28:29 +09:00
// we may fail to create a RulesetContainer if the beatmap cannot be loaded with the user's preferred ruleset
2017-04-20 11:36:50 +09:00
// let's try again forcing the beatmap's ruleset.
ruleset = beatmap.BeatmapInfo.Ruleset;
2017-04-20 11:36:50 +09:00
rulesetInstance = ruleset.CreateInstance();
2017-08-09 13:28:29 +09:00
RulesetContainer = rulesetInstance.CreateRulesetContainerWith(Beatmap, true);
2017-04-17 15:44:46 +09:00
}
2017-04-26 20:22:03 +09:00
2017-08-09 13:28:29 +09:00
if (!RulesetContainer.Objects.Any())
2017-05-07 00:38:17 +08:00
throw new InvalidOperationException("Beatmap contains no hit objects!");
}
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 20:49:31 +09:00
adjustableSourceClock = (IAdjustableClock)working.Track ?? new StopwatchClock();
2017-04-26 18:32:47 +09:00
decoupledClock = new DecoupleableInterpolatingFramedClock { IsCoupled = false };
2017-08-09 13:28:29 +09:00
var firstObjectTime = RulesetContainer.Objects.First().StartTime;
decoupledClock.Seek(Math.Min(0, firstObjectTime - Math.Max(beatmap.ControlPointInfo.TimingPointAt(firstObjectTime).BeatLength * 4, beatmap.BeatmapInfo.AudioLeadIn)));
2017-04-26 18:07:22 +09:00
decoupledClock.ProcessFrame();
offsetClock = new FramedOffsetClock(decoupledClock);
2017-05-15 10:56:27 +09:00
userAudioOffset = config.GetBindable<double>(OsuSetting.AudioOffset);
userAudioOffset.ValueChanged += v => offsetClock.Offset = v;
userAudioOffset.TriggerChange();
Schedule(() =>
{
adjustableSourceClock.Reset();
foreach (var mod in working.Mods.Value.OfType<IApplicableToClock>())
mod.ApplyToClock(adjustableSourceClock);
2017-04-26 18:07:22 +09:00
decoupledClock.ChangeSource(adjustableSourceClock);
});
Children = new Drawable[]
2016-10-06 23:33:09 +09:00
{
pauseContainer = new PauseContainer
{
AudioClock = decoupledClock,
FramedClock = offsetClock,
OnRetry = Restart,
OnQuit = Exit,
2017-08-09 13:28:29 +09:00
CheckCanPause = () => ValidForResume && !HasFailed && !RulesetContainer.HasReplayLoaded,
Retries = RestartCount,
OnPause = () => {
hudOverlay.KeyCounter.IsCounting = pauseContainer.IsPaused;
},
OnResume = () => {
hudOverlay.KeyCounter.IsCounting = true;
},
Children = new Drawable[]
{
2017-05-19 22:12:09 +09:00
new SkipButton(firstObjectTime) { AudioClock = decoupledClock },
2017-04-26 18:07:22 +09:00
new Container
2017-02-28 20:14:48 +09:00
{
2017-04-26 18:07:22 +09:00
RelativeSizeAxes = Axes.Both,
Clock = offsetClock,
Children = new Drawable[]
{
2017-08-09 13:28:29 +09:00
RulesetContainer,
2017-04-26 18:07:22 +09:00
}
2017-02-28 20:14:48 +09:00
},
hudOverlay = new HUDOverlay
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre
},
}
},
2017-04-06 15:34:52 +09:00
failOverlay = new FailOverlay
{
OnRetry = Restart,
OnQuit = Exit,
2017-04-09 16:26:31 +03:00
},
2017-04-10 06:06:10 +03:00
new HotkeyRetryOverlay
2017-04-09 16:26:31 +03: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-08-09 13:28:29 +09:00
RulesetContainer?.Hide();
Restart();
},
2017-04-06 15:34:52 +09:00
}
};
2017-08-09 13:28:29 +09:00
scoreProcessor = RulesetContainer.CreateScoreProcessor();
hudOverlay.BindProcessor(scoreProcessor);
2017-08-09 13:28:29 +09:00
hudOverlay.BindRulesetContainer(RulesetContainer);
2017-08-09 13:28:29 +09:00
hudOverlay.Progress.Objects = RulesetContainer.Objects;
hudOverlay.Progress.AudioClock = decoupledClock;
2017-08-09 13:28:29 +09:00
hudOverlay.Progress.AllowSeeking = RulesetContainer.HasReplayLoaded;
hudOverlay.Progress.OnSeek = pos => decoupledClock.Seek(pos);
hudOverlay.ModDisplay.Current.BindTo(working.Mods);
// Bind ScoreProcessor to ourselves
scoreProcessor.AllJudged += onCompletion;
scoreProcessor.Failed += onFail;
}
public void Restart()
{
sampleRestart?.Play();
2017-04-17 23:52:38 -07:00
ValidForResume = false;
RestartRequested?.Invoke();
Exit();
}
private ScheduledDelegate onCompletionEvent;
private void onCompletion()
2016-11-29 23:59:56 +09:00
{
// Only show the completion screen if the player hasn't failed
if (scoreProcessor.HasFailed || onCompletionEvent != null)
return;
ValidForResume = false;
using (BeginDelayedSequence(1000))
2016-11-29 23:59:56 +09:00
{
onCompletionEvent = Schedule(delegate
{
var score = new Score
{
2017-07-19 13:32:16 +09:00
Beatmap = Beatmap.Value.BeatmapInfo,
Ruleset = ruleset
};
scoreProcessor.PopulateScore(score);
score.User = RulesetContainer.Replay?.User ?? api.LocalUser.Value;
Push(new Results(score));
});
}
2016-11-29 23:59:56 +09:00
}
2017-08-05 11:59:58 +09:00
private bool onFail()
2017-01-20 15:51:43 +08:00
{
2017-08-05 11:59:58 +09:00
if (Beatmap.Value.Mods.Value.Any(m => !m.AllowFail))
return false;
decoupledClock.Stop();
2017-01-20 15:51:43 +08:00
2017-04-01 21:17:24 +03:00
HasFailed = true;
failOverlay.Retries = RestartCount;
failOverlay.Show();
2017-08-05 11:59:58 +09:00
return true;
2017-01-20 15:51:43 +08:00
}
2017-02-17 18:59:30 +09:00
protected override void OnEntering(Screen last)
{
base.OnEntering(last);
2017-07-19 19:10:04 +09:00
if (!loadedSuccessfully)
return;
2017-07-22 20:50:25 +02:00
(Background as BackgroundScreenBeatmap)?.BlurTo(Vector2.Zero, 1500, Easing.OutQuint);
Background?.FadeTo(1 - (float)dimLevel, 1500, Easing.OutQuint);
Content.Alpha = 0;
dimLevel.ValueChanged += newDim => Background?.FadeTo(1 - (float)newDim, 800);
2017-07-16 18:28:20 +03:00
Content
.ScaleTo(0.7f)
2017-07-22 20:50:25 +02:00
.ScaleTo(1, 750, Easing.OutQuint)
2017-07-16 18:28:20 +03:00
.Delay(250)
.FadeIn(250);
this.Delay(750).Schedule(() =>
{
if (!pauseContainer.IsPaused)
decoupledClock.Start();
});
pauseContainer.Alpha = 0;
2017-07-22 20:50:25 +02:00
pauseContainer.FadeIn(750, Easing.OutQuint);
}
protected override void OnSuspending(Screen next)
{
fadeOut();
base.OnSuspending(next);
}
2016-11-16 15:48:35 +09:00
2017-02-17 18:59:30 +09:00
protected override bool OnExiting(Screen next)
2016-12-16 17:13:24 +01:00
{
2017-08-09 13:28:29 +09:00
if (HasFailed || !ValidForResume || pauseContainer?.AllowExit != false || RulesetContainer?.HasReplayLoaded != false)
{
fadeOut();
return base.OnExiting(next);
}
2017-07-19 19:10:04 +09:00
if (loadedSuccessfully)
{
pauseContainer.Pause();
}
return true;
2016-12-16 17:13:24 +01:00
}
private void fadeOut()
{
const float fade_out_duration = 250;
2017-08-09 13:28:29 +09:00
RulesetContainer?.FadeOut(fade_out_duration);
Content.FadeOut(fade_out_duration);
2017-07-22 20:50:25 +02:00
hudOverlay?.ScaleTo(0.7f, fade_out_duration * 3, Easing.In);
Background?.FadeTo(1f, fade_out_duration);
2016-12-16 17:13:24 +01:00
}
protected override bool OnWheel(InputState state) => mouseWheelDisabled.Value && !pauseContainer.IsPaused;
2016-09-29 20:13:58 +09:00
}
2017-04-12 00:09:45 +09:00
}