2017-02-07 12:59:30 +08:00
|
|
|
|
// 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-02 18:25:13 +08:00
|
|
|
|
|
2017-04-10 18:22:02 +08:00
|
|
|
|
using OpenTK;
|
2017-03-10 14:08:53 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2017-03-14 15:00:35 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2016-09-02 18:25:13 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
2016-09-02 18:25:13 +08:00
|
|
|
|
{
|
2017-03-23 18:00:18 +08:00
|
|
|
|
public class OsuHitRenderer : HitRenderer<OsuHitObject, OsuJudgement>
|
2016-09-02 18:25:13 +08:00
|
|
|
|
{
|
2017-05-19 14:57:32 +08:00
|
|
|
|
public OsuHitRenderer(WorkingBeatmap beatmap, bool isForCurrentRuleset)
|
|
|
|
|
: base(beatmap, isForCurrentRuleset)
|
2017-03-10 14:08:53 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-16 11:40:35 +08:00
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new OsuScoreProcessor(this);
|
|
|
|
|
|
2017-04-18 08:38:52 +08:00
|
|
|
|
protected override BeatmapConverter<OsuHitObject> CreateBeatmapConverter() => new OsuBeatmapConverter();
|
2017-03-12 01:26:10 +08:00
|
|
|
|
|
2017-04-18 08:43:43 +08:00
|
|
|
|
protected override BeatmapProcessor<OsuHitObject> CreateBeatmapProcessor() => new OsuBeatmapProcessor();
|
2016-10-10 16:17:26 +08:00
|
|
|
|
|
2017-03-23 18:00:18 +08:00
|
|
|
|
protected override Playfield<OsuHitObject, OsuJudgement> CreatePlayfield() => new OsuPlayfield();
|
2016-10-10 16:17:26 +08:00
|
|
|
|
|
2017-03-14 15:00:35 +08:00
|
|
|
|
protected override KeyConversionInputManager CreateKeyConversionInputManager() => new OsuKeyConversionInputManager();
|
|
|
|
|
|
2017-03-23 18:00:18 +08:00
|
|
|
|
protected override DrawableHitObject<OsuHitObject, OsuJudgement> GetVisualRepresentation(OsuHitObject h)
|
2016-11-17 20:29:35 +08:00
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
var circle = h as HitCircle;
|
|
|
|
|
if (circle != null)
|
|
|
|
|
return new DrawableHitCircle(circle);
|
|
|
|
|
|
|
|
|
|
var slider = h as Slider;
|
|
|
|
|
if (slider != null)
|
|
|
|
|
return new DrawableSlider(slider);
|
|
|
|
|
|
|
|
|
|
var spinner = h as Spinner;
|
|
|
|
|
if (spinner != null)
|
|
|
|
|
return new DrawableSpinner(spinner);
|
2016-11-17 20:29:35 +08:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-04-10 18:22:02 +08:00
|
|
|
|
|
|
|
|
|
protected override Vector2 GetPlayfieldAspectAdjust() => new Vector2(0.75f);
|
2016-09-02 18:25:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|