osu/osu.Game.Rulesets.Osu/UI/DrawableOsuRuleset.cs

75 lines
2.5 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 09:19:50 +00:00
using System;
2019-04-08 09:32:05 +00:00
using System.Collections.Generic;
using System.Linq;
2018-04-13 09:19:50 +00:00
using osu.Framework.Input;
using osu.Game.Beatmaps;
using osu.Game.Input.Handlers;
2018-11-28 08:20:37 +00:00
using osu.Game.Replays;
2019-04-08 09:32:05 +00:00
using osu.Game.Rulesets.Mods;
2018-04-13 09:19:50 +00:00
using osu.Game.Rulesets.Objects.Drawables;
2019-01-23 10:46:53 +00:00
using osu.Game.Rulesets.Osu.Configuration;
2018-04-13 09:19:50 +00:00
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Rulesets.Osu.Replays;
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play;
using osuTK;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Osu.UI
{
2019-03-20 02:29:16 +00:00
public class DrawableOsuRuleset : DrawableRuleset<OsuHitObject>
2018-04-13 09:19:50 +00:00
{
protected new OsuRulesetConfigManager Config => (OsuRulesetConfigManager)base.Config;
2019-01-23 10:46:53 +00:00
public DrawableOsuRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod> mods = null)
2019-04-08 09:32:05 +00:00
: base(ruleset, beatmap, mods)
2018-04-13 09:19:50 +00:00
{
}
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true; // always show the gameplay cursor
2018-04-13 09:19:50 +00:00
protected override Playfield CreatePlayfield() => new OsuPlayfield();
protected override PassThroughInputManager CreateInputManager() => new OsuInputManager(Ruleset.RulesetInfo);
2018-04-13 09:19:50 +00:00
public override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new OsuPlayfieldAdjustmentContainer { AlignWithStoryboard = true };
protected override ResumeOverlay CreateResumeOverlay() => new OsuResumeOverlay();
public override DrawableHitObject<OsuHitObject> CreateDrawableRepresentation(OsuHitObject h)
2018-04-13 09:19:50 +00:00
{
switch (h)
{
case HitCircle circle:
return new DrawableHitCircle(circle);
2019-04-01 03:44:46 +00:00
case Slider slider:
return new DrawableSlider(slider);
2019-04-01 03:44:46 +00:00
case Spinner spinner:
return new DrawableSpinner(spinner);
}
2018-04-13 09:19:50 +00:00
return null;
}
2019-02-20 12:08:52 +00:00
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new OsuFramedReplayInputHandler(replay);
2018-04-13 09:19:50 +00:00
protected override ReplayRecorder CreateReplayRecorder(Replay replay) => new OsuReplayRecorder(replay);
public override double GameplayStartTime
{
get
{
2019-05-14 20:18:46 +00:00
if (Objects.FirstOrDefault() is OsuHitObject first)
2019-05-14 03:29:24 +00:00
return first.StartTime - Math.Max(2000, first.TimePreempt);
2019-05-15 01:55:02 +00:00
return 0;
}
}
2018-04-13 09:19:50 +00:00
}
}