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

202 lines
6.0 KiB
C#
Raw Normal View History

2016-09-29 11:13:58 +00:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Linq;
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.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics;
using osu.Framework.Input;
using osu.Framework.Platform;
2016-11-14 08:23:33 +00:00
using osu.Framework.Timing;
using osu.Game.Database;
2016-11-14 09:03:20 +00:00
using osu.Game.Modes;
using osu.Game.Modes.Objects;
2016-11-14 10:49:29 +00:00
using osu.Game.Modes.Objects.Drawables;
2016-11-14 08:23:33 +00:00
using osu.Game.Screens.Backgrounds;
using OpenTK.Input;
using MouseState = osu.Framework.Input.MouseState;
using OpenTK;
using osu.Framework.GameModes;
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;
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
{
public class Player : OsuGameMode
2016-09-29 11:13:58 +00:00
{
2016-11-14 17:41:42 +00:00
public bool Autoplay;
2016-11-02 05:07:20 +00:00
protected override BackgroundMode CreateBackground() => null;
2016-10-05 11:03:52 +00:00
internal override bool ShowOverlays => false;
2016-10-27 08:53:37 +00:00
public BeatmapInfo BeatmapInfo;
public PlayMode PreferredPlayMode;
private IAdjustableClock sourceClock;
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-17 19:59:41 +00:00
private Bindable<int> dimLevel = new Bindable<int>();
2016-11-29 11:30:16 +00:00
[BackgroundDependencyLoader]
private void load(AudioManager audio, BeatmapDatabase beatmaps, OsuGameBase game)
2016-10-05 11:49:31 +00:00
{
try
{
if (Beatmap == null)
2016-11-04 22:06:58 +00:00
Beatmap = beatmaps.GetWorkingBeatmap(BeatmapInfo);
}
catch
{
//couldn't load, hard abort!
Exit();
return;
}
2016-10-05 11:49:31 +00:00
AudioTrack 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();
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;
}
2016-10-28 10:55:48 +00:00
PlayMode usablePlayMode = beatmap.BeatmapInfo?.Mode > PlayMode.Osu ? beatmap.BeatmapInfo.Mode : PreferredPlayMode;
2016-11-16 06:48:35 +00:00
ruleset = Ruleset.GetRuleset(usablePlayMode);
2016-11-16 06:48:35 +00:00
var scoreOverlay = ruleset.CreateScoreOverlay();
2016-11-29 11:30:16 +00:00
scoreOverlay.BindProcessor(scoreProcessor = ruleset.CreateScoreProcessor());
2016-11-29 06:41:48 +00:00
2016-11-29 14:59:56 +00:00
hitRenderer = ruleset.CreateHitRendererWith(beatmap.HitObjects);
2016-10-06 14:33:09 +00:00
hitRenderer.OnJudgement += scoreProcessor.AddJudgement;
2016-11-29 14:59:56 +00:00
hitRenderer.OnAllJudged += hitRenderer_OnAllJudged;
2016-11-14 17:41:42 +00:00
if (Autoplay)
hitRenderer.Schedule(() => hitRenderer.DrawableObjects.ForEach(h => h.State = ArmedState.Hit));
Children = new Drawable[]
2016-10-06 14:33:09 +00:00
{
2016-11-16 06:48:35 +00:00
new PlayerInputManager(game.Host)
{
Clock = new InterpolatingFramedClock(sourceClock),
PassThrough = false,
Children = new Drawable[]
{
hitRenderer,
}
},
scoreOverlay,
};
2016-12-17 19:59:41 +00:00
dimLevel.Weld(game.Config.GetBindable<int>(OsuConfig.DimLevel));
dimLevel.ValueChanged += dimChanged;
2016-10-05 11:49:31 +00:00
}
protected override void LoadComplete()
{
base.LoadComplete();
Delay(250, true);
Content.FadeIn(250);
Delay(500, true);
Schedule(() =>
{
sourceClock.Start();
});
}
2016-11-29 14:59:56 +00:00
private void hitRenderer_OnAllJudged()
{
Delay(1000);
Schedule(delegate
{
ValidForResume = false;
2016-11-29 14:59:56 +00:00
Push(new Results
{
Score = scoreProcessor.GetScore()
});
});
}
protected override void OnEntering(GameMode last)
{
base.OnEntering(last);
(Background as BackgroundModeBeatmap)?.BlurTo(Vector2.Zero, 1000);
2016-12-17 19:29:20 +00:00
Background?.FadeTo((100f- dimLevel)/100, 1000);
Content.Alpha = 0;
}
2016-11-16 06:48:35 +00:00
2016-12-16 16:13:24 +00:00
protected override bool OnExiting(GameMode next)
{
2016-12-17 19:59:41 +00:00
dimLevel.ValueChanged -= dimChanged;
2016-12-17 19:29:20 +00:00
Background?.FadeTo(1f, 200);
2016-12-16 16:13:24 +00:00
return base.OnExiting(next);
}
2016-12-17 19:59:41 +00:00
private void dimChanged(object sender, EventArgs e)
{
Background?.FadeTo((100f - dimLevel) / 100, 800);
}
2016-11-16 06:48:35 +00:00
class PlayerInputManager : UserInputManager
{
public PlayerInputManager(BasicGameHost host)
: base(host)
{
}
bool leftViaKeyboard;
bool rightViaKeyboard;
protected override void TransformState(InputState state)
2016-11-16 06:48:35 +00:00
{
base.TransformState(state);
2016-11-16 06:48:35 +00:00
MouseState mouse = (MouseState)state.Mouse;
if (state.Keyboard != null)
2016-11-16 06:48:35 +00:00
{
leftViaKeyboard = state.Keyboard.Keys.Contains(Key.Z);
rightViaKeyboard = state.Keyboard.Keys.Contains(Key.X);
}
if (state.Mouse != null)
{
if (leftViaKeyboard) mouse.ButtonStates.Find(s => s.Button == MouseButton.Left).State = true;
if (rightViaKeyboard) mouse.ButtonStates.Find(s => s.Button == MouseButton.Right).State = true;
2016-11-16 06:48:35 +00:00
}
}
}
2016-09-29 11:13:58 +00:00
}
}