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

334 lines
10 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
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.Graphics;
using osu.Framework.Timing;
using osu.Game.Database;
2016-11-14 09:03:20 +00:00
using osu.Game.Modes;
2016-11-14 08:23:33 +00:00
using osu.Game.Screens.Backgrounds;
using OpenTK;
2017-02-17 09:59:30 +00:00
using osu.Framework.Screens;
2016-11-29 14:59:56 +00:00
using osu.Game.Modes.UI;
2016-11-29 06:41:48 +00:00
using osu.Game.Screens.Ranking;
2016-12-16 16:13:24 +00:00
using osu.Game.Configuration;
using osu.Framework.Configuration;
2016-12-17 19:59:41 +00:00
using System;
2017-01-27 12:57:22 +00:00
using System.Linq;
2017-01-20 07:51:43 +00:00
using OpenTK.Graphics;
2017-02-01 02:33:28 +00:00
using osu.Framework.Graphics.Containers;
2017-02-25 12:12:39 +00:00
using osu.Framework.Graphics.Transforms;
2017-02-28 11:14:48 +00:00
using osu.Framework.Input;
using osu.Framework.Logging;
2017-02-28 11:14:48 +00:00
using osu.Game.Input.Handlers;
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;
2016-10-27 08:53:37 +00:00
public BeatmapInfo BeatmapInfo;
private bool isPaused;
public bool IsPaused
{
get
{
return isPaused;
}
}
public int RestartCount;
private double pauseCooldown = 1000;
private double lastPauseActionTime = 0;
2017-02-01 01:02:58 +00:00
private bool canPause => Time.Current >= (lastPauseActionTime + pauseCooldown);
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;
2016-11-29 14:59:56 +00:00
private 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
private ScoreOverlay scoreOverlay;
private PauseOverlay pauseOverlay;
[BackgroundDependencyLoader]
private void load(AudioManager audio, BeatmapDatabase beatmaps, OsuGameBase game, OsuConfigManager config)
2016-10-05 11:49:31 +00:00
{
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!");
}
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();
});
2016-10-28 10:55:48 +00:00
var beatmap = Beatmap.Beatmap;
if (beatmap.BeatmapInfo?.Mode > PlayMode.Osu)
{
//we only support osu! mode for now because the hitobject parsing is crappy and needs a refactor.
Exit();
return;
}
ruleset = Ruleset.GetRuleset(Beatmap.PlayMode);
scoreOverlay = ruleset.CreateScoreOverlay();
scoreOverlay.BindProcessor(scoreProcessor = ruleset.CreateScoreProcessor(beatmap.HitObjects.Count));
2016-11-29 06:41:48 +00:00
pauseOverlay = new PauseOverlay
2017-01-30 13:06:26 +00:00
{
Depth = -1,
OnResume = delegate
{
Delay(400);
Schedule(Resume);
},
OnRetry = Restart,
OnQuit = Exit
2017-01-30 13:06:26 +00:00
};
2017-02-28 11:14:48 +00:00
hitRenderer = ruleset.CreateHitRendererWith(beatmap, new PlayerInputManager
{
2017-03-01 13:56:20 +00:00
ReplayInputHandler = ReplayInputHandler
2017-02-28 11:14:48 +00:00
});
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.OnJudgement += scoreProcessor.AddJudgement;
2017-01-20 07:51:43 +00:00
hitRenderer.OnAllJudged += onPass;
//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
},
}
},
scoreOverlay,
pauseOverlay
};
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)
{
if (canPause || force)
{
lastPauseActionTime = Time.Current;
scoreOverlay.KeyCounter.IsCounting = false;
2017-01-31 13:17:47 +00:00
pauseOverlay.Retries = RestartCount;
pauseOverlay.Show();
sourceClock.Stop();
isPaused = true;
}
else
{
isPaused = false;
}
}
public void Resume()
{
lastPauseActionTime = Time.Current;
scoreOverlay.KeyCounter.IsCounting = true;
pauseOverlay.Hide();
sourceClock.Start();
isPaused = false;
}
public void TogglePaused()
{
isPaused = !IsPaused;
if (IsPaused) Pause(); else Resume();
}
public void Restart()
{
sourceClock.Stop(); // If the clock is running and Restart is called the game will lag until relaunch
var newPlayer = new Player();
newPlayer.LoadAsync(Game, delegate
{
newPlayer.RestartCount = RestartCount + 1;
ValidForResume = false;
if (!Push(newPlayer))
{
2017-02-28 11:14:48 +00:00
// Error(?)
}
});
}
2017-01-20 07:51:43 +00:00
private void onPass()
2016-11-29 14:59:56 +00:00
{
Delay(1000);
Schedule(delegate
{
ValidForResume = false;
2016-11-29 14:59:56 +00:00
Push(new Results
{
Score = scoreProcessor.GetScore()
});
});
}
2017-01-20 07:51:43 +00:00
private void onFail()
{
Content.FadeColour(Color4.Red, 500);
sourceClock.Stop();
Delay(500);
Schedule(delegate
{
ValidForResume = false;
Push(new FailDialog());
});
}
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;
2016-12-18 09:48:59 +00:00
dimLevel.ValueChanged += dimChanged;
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();
});
}
protected override void OnSuspending(Screen next)
{
Content.FadeOut(350);
2017-02-22 12:43:29 +00:00
Content.ScaleTo(0.7f, 750, EasingTypes.InQuint);
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) return false;
if (ReplayInputHandler != null) return false;
2017-02-01 02:33:28 +00:00
if (pauseOverlay.State != Visibility.Visible && !canPause) return true;
if (!IsPaused && sourceClock.IsRunning) // For if the user presses escape quickly when entering the map
{
Pause();
return true;
}
else
{
FadeOut(250);
Content.ScaleTo(0.7f, 750, EasingTypes.InQuint);
dimLevel.ValueChanged -= dimChanged;
Background?.FadeTo(1f, 200);
return base.OnExiting(next);
}
2016-12-16 16:13:24 +00:00
}
2016-12-17 19:59:41 +00:00
private void dimChanged(object sender, EventArgs e)
{
Background?.FadeTo((100f - dimLevel) / 100, 800);
}
2017-02-27 23:08:34 +00:00
private Bindable<bool> mouseWheelDisabled;
public ReplayInputHandler ReplayInputHandler;
2017-03-01 13:56:20 +00:00
2017-02-27 23:08:34 +00:00
protected override bool OnWheel(InputState state) => mouseWheelDisabled.Value && !isPaused;
2016-09-29 11:13:58 +00:00
}
}