2017-02-07 04:59:30 +00: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 10:25:13 +00:00
|
|
|
|
|
2017-08-09 02:50:34 +00:00
|
|
|
|
using osu.Framework.Input;
|
2017-04-10 10:22:02 +00:00
|
|
|
|
using OpenTK;
|
2017-03-10 06:08:53 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
2017-08-24 06:36:42 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.Replays;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2017-08-24 06:36:42 +00:00
|
|
|
|
using osu.Game.Rulesets.Replays;
|
2016-09-02 10:25:13 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
2016-09-02 10:25:13 +00:00
|
|
|
|
{
|
2017-09-06 09:05:51 +00:00
|
|
|
|
public class OsuRulesetContainer : RulesetContainer<OsuHitObject>
|
2016-09-02 10:25:13 +00:00
|
|
|
|
{
|
2017-08-09 04:28:29 +00:00
|
|
|
|
public OsuRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap, bool isForCurrentRuleset)
|
2017-08-09 04:04:11 +00:00
|
|
|
|
: base(ruleset, beatmap, isForCurrentRuleset)
|
2017-03-10 06:08:53 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-16 03:40:35 +00:00
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new OsuScoreProcessor(this);
|
|
|
|
|
|
2017-04-18 00:38:52 +00:00
|
|
|
|
protected override BeatmapConverter<OsuHitObject> CreateBeatmapConverter() => new OsuBeatmapConverter();
|
2017-03-11 17:26:10 +00:00
|
|
|
|
|
2017-04-18 00:43:43 +00:00
|
|
|
|
protected override BeatmapProcessor<OsuHitObject> CreateBeatmapProcessor() => new OsuBeatmapProcessor();
|
2016-10-10 08:17:26 +00:00
|
|
|
|
|
2017-09-12 09:19:28 +00:00
|
|
|
|
protected override Playfield CreatePlayfield() => new OsuPlayfield();
|
2016-10-10 08:17:26 +00:00
|
|
|
|
|
2017-08-21 03:31:21 +00:00
|
|
|
|
public override PassThroughInputManager CreateInputManager() => new OsuInputManager(Ruleset.RulesetInfo);
|
2017-03-14 07:00:35 +00:00
|
|
|
|
|
2017-09-06 09:05:51 +00:00
|
|
|
|
protected override DrawableHitObject<OsuHitObject> GetVisualRepresentation(OsuHitObject h)
|
2016-11-17 12:29:35 +00:00
|
|
|
|
{
|
2017-03-07 01:59:19 +00: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 12:29:35 +00:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-04-10 10:22:02 +00:00
|
|
|
|
|
2017-08-24 06:36:42 +00:00
|
|
|
|
protected override FramedReplayInputHandler CreateReplayInputHandler(Replay replay) => new OsuReplayInputHandler(replay);
|
|
|
|
|
|
2017-04-10 10:22:02 +00:00
|
|
|
|
protected override Vector2 GetPlayfieldAspectAdjust() => new Vector2(0.75f);
|
2016-09-02 10:25:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|