osu/osu.Game.Rulesets.Taiko/UI/DrawableTaikoRuleset.cs

117 lines
4.0 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
2019-04-08 09:32:05 +00:00
using System.Collections.Generic;
2018-04-13 09:19:50 +00:00
using osu.Framework.Allocation;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.Taiko.Objects;
using osu.Game.Rulesets.Taiko.Objects.Drawables;
using osu.Game.Rulesets.Taiko.Scoring;
using osu.Game.Rulesets.UI;
using osu.Game.Rulesets.Taiko.Replays;
using System.Linq;
using osu.Framework.Input;
using osu.Game.Configuration;
2018-04-13 09:19:50 +00:00
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.UI.Scrolling;
namespace osu.Game.Rulesets.Taiko.UI
{
2019-03-20 02:29:16 +00:00
public class DrawableTaikoRuleset : DrawableScrollingRuleset<TaikoHitObject>
2018-04-13 09:19:50 +00:00
{
2018-11-12 08:36:19 +00:00
protected override ScrollVisualisationMethod VisualisationMethod => ScrollVisualisationMethod.Overlapping;
protected override bool UserScrollSpeedAdjustment => false;
public DrawableTaikoRuleset(Ruleset ruleset, WorkingBeatmap beatmap, IReadOnlyList<Mod> mods)
2019-04-08 09:32:05 +00:00
: base(ruleset, beatmap, mods)
2018-04-13 09:19:50 +00:00
{
2018-11-06 06:46:36 +00:00
Direction.Value = ScrollingDirection.Left;
TimeRange.Value = 7000;
2018-04-13 09:19:50 +00:00
}
[BackgroundDependencyLoader]
private void load()
{
loadBarLines();
}
private void loadBarLines()
{
TaikoHitObject lastObject = Beatmap.HitObjects[Beatmap.HitObjects.Count - 1];
double lastHitTime = 1 + ((lastObject as IHasEndTime)?.EndTime ?? lastObject.StartTime);
2018-04-13 09:19:50 +00:00
var timingPoints = Beatmap.ControlPointInfo.TimingPoints.ToList();
if (timingPoints.Count == 0)
return;
int currentIndex = 0;
int currentBeat = 0;
double time = timingPoints[currentIndex].Time;
2019-04-01 03:44:46 +00:00
2018-04-13 09:19:50 +00:00
while (time <= lastHitTime)
{
int nextIndex = currentIndex + 1;
2019-04-01 03:44:46 +00:00
2018-04-13 09:19:50 +00:00
if (nextIndex < timingPoints.Count && time > timingPoints[nextIndex].Time)
{
currentIndex = nextIndex;
time = timingPoints[currentIndex].Time;
currentBeat = 0;
}
var currentPoint = timingPoints[currentIndex];
var barLine = new BarLine
{
StartTime = time,
};
barLine.ApplyDefaults(Beatmap.ControlPointInfo, Beatmap.BeatmapInfo.BaseDifficulty);
bool isMajor = currentBeat % (int)currentPoint.TimeSignature == 0;
Playfield.Add(isMajor ? new DrawableBarLineMajor(barLine) : new DrawableBarLine(barLine));
2018-06-25 07:53:12 +00:00
time += currentPoint.BeatLength * (int)currentPoint.TimeSignature;
2018-04-13 09:19:50 +00:00
currentBeat++;
}
}
public override ScoreProcessor CreateScoreProcessor() => new TaikoScoreProcessor(this);
public override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new TaikoPlayfieldAdjustmentContainer();
protected override PassThroughInputManager CreateInputManager() => new TaikoInputManager(Ruleset.RulesetInfo);
2018-04-13 09:19:50 +00:00
protected override Playfield CreatePlayfield() => new TaikoPlayfield(Beatmap.ControlPointInfo);
2018-04-13 09:19:50 +00:00
public override DrawableHitObject<TaikoHitObject> CreateDrawableRepresentation(TaikoHitObject h)
2018-04-13 09:19:50 +00:00
{
switch (h)
2018-04-13 09:19:50 +00:00
{
case CentreHit centreHit:
return new DrawableCentreHit(centreHit);
2019-04-01 03:44:46 +00:00
case RimHit rimHit:
return new DrawableRimHit(rimHit);
2019-04-01 03:44:46 +00:00
case DrumRoll drumRoll:
return new DrawableDrumRoll(drumRoll);
2019-04-01 03:44:46 +00:00
case Swell swell:
return new DrawableSwell(swell);
2018-04-13 09:19:50 +00:00
}
return null;
}
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new TaikoFramedReplayInputHandler(replay);
}
}