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:50:22 +08:00
|
|
|
|
|
2017-03-21 20:26:01 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.MathUtils;
|
2017-03-29 10:35:33 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-03-10 14:08:53 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-03-21 20:26:01 +08:00
|
|
|
|
using osu.Game.Beatmaps.Timing;
|
2016-11-14 18:49:29 +08:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
2017-04-01 22:59:44 +08:00
|
|
|
|
using osu.Game.Modes.Objects.Types;
|
2017-03-31 15:20:31 +08:00
|
|
|
|
using osu.Game.Modes.Replays;
|
2017-03-24 08:51:52 +08:00
|
|
|
|
using osu.Game.Modes.Scoring;
|
2017-03-12 13:32:50 +08:00
|
|
|
|
using osu.Game.Modes.Taiko.Beatmaps;
|
2017-03-15 17:55:38 +08:00
|
|
|
|
using osu.Game.Modes.Taiko.Judgements;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.Taiko.Objects;
|
2017-04-04 11:38:55 +08:00
|
|
|
|
using osu.Game.Modes.Taiko.Objects.Drawables;
|
2017-03-24 08:51:52 +08:00
|
|
|
|
using osu.Game.Modes.Taiko.Scoring;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.UI;
|
2017-04-03 13:22:22 +08:00
|
|
|
|
using osu.Game.Modes.Taiko.Replays;
|
2016-09-02 18:50:22 +08:00
|
|
|
|
|
2016-11-14 17:54:24 +08:00
|
|
|
|
namespace osu.Game.Modes.Taiko.UI
|
2016-09-02 18:50:22 +08:00
|
|
|
|
{
|
2017-03-23 18:00:18 +08:00
|
|
|
|
public class TaikoHitRenderer : HitRenderer<TaikoHitObject, TaikoJudgement>
|
2016-09-02 18:50:22 +08:00
|
|
|
|
{
|
2017-03-12 17:03:13 +08:00
|
|
|
|
public TaikoHitRenderer(WorkingBeatmap beatmap)
|
2017-03-10 14:08:53 +08:00
|
|
|
|
: base(beatmap)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-21 20:26:01 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
loadBarLines();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void loadBarLines()
|
|
|
|
|
{
|
|
|
|
|
var taikoPlayfield = Playfield as TaikoPlayfield;
|
|
|
|
|
|
|
|
|
|
if (taikoPlayfield == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
TaikoHitObject lastObject = Beatmap.HitObjects[Beatmap.HitObjects.Count - 1];
|
|
|
|
|
double lastHitTime = 1 + (lastObject as IHasEndTime)?.EndTime ?? lastObject.StartTime;
|
|
|
|
|
|
|
|
|
|
var timingPoints = Beatmap.TimingInfo.ControlPoints.FindAll(cp => cp.TimingChange);
|
|
|
|
|
|
2017-04-03 20:10:39 +08:00
|
|
|
|
if (timingPoints.Count == 0)
|
2017-03-21 20:26:01 +08:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
int currentIndex = 0;
|
|
|
|
|
|
|
|
|
|
while (currentIndex < timingPoints.Count && Precision.AlmostEquals(timingPoints[currentIndex].BeatLength, 0))
|
|
|
|
|
currentIndex++;
|
|
|
|
|
|
|
|
|
|
double time = timingPoints[currentIndex].Time;
|
|
|
|
|
double measureLength = timingPoints[currentIndex].BeatLength * (int)timingPoints[currentIndex].TimeSignature;
|
|
|
|
|
|
|
|
|
|
// Find the bar line time closest to 0
|
|
|
|
|
time -= measureLength * (int)(time / measureLength);
|
|
|
|
|
|
|
|
|
|
// Always start barlines from a positive time
|
|
|
|
|
while (time < 0)
|
|
|
|
|
time += measureLength;
|
|
|
|
|
|
|
|
|
|
int currentBeat = 0;
|
|
|
|
|
while (time <= lastHitTime)
|
|
|
|
|
{
|
|
|
|
|
ControlPoint current = timingPoints[currentIndex];
|
|
|
|
|
|
|
|
|
|
if (time > current.Time || current.OmitFirstBarLine)
|
|
|
|
|
{
|
|
|
|
|
bool isMajor = currentBeat % (int)current.TimeSignature == 0;
|
|
|
|
|
|
2017-04-01 22:59:44 +08:00
|
|
|
|
var barLine = new BarLine
|
2017-03-21 20:26:01 +08:00
|
|
|
|
{
|
|
|
|
|
StartTime = time,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
barLine.ApplyDefaults(Beatmap.TimingInfo, Beatmap.BeatmapInfo.Difficulty);
|
|
|
|
|
|
2017-04-05 09:37:49 +08:00
|
|
|
|
taikoPlayfield.AddBarLine(isMajor ? new DrawableBarLineMajor(barLine) : new DrawableBarLine(barLine));
|
2017-03-21 20:26:01 +08:00
|
|
|
|
|
|
|
|
|
currentBeat++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double bl = current.BeatLength;
|
|
|
|
|
|
|
|
|
|
if (bl < 800)
|
|
|
|
|
bl *= (int)current.TimeSignature;
|
|
|
|
|
|
|
|
|
|
time += bl;
|
|
|
|
|
|
|
|
|
|
if (currentIndex + 1 >= timingPoints.Count || time < timingPoints[currentIndex + 1].Time)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
currentBeat = 0;
|
|
|
|
|
currentIndex++;
|
|
|
|
|
time = timingPoints[currentIndex].Time;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-16 11:40:35 +08:00
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new TaikoScoreProcessor(this);
|
|
|
|
|
|
2017-03-17 12:33:48 +08:00
|
|
|
|
protected override IBeatmapConverter<TaikoHitObject> CreateBeatmapConverter() => new TaikoBeatmapConverter();
|
2017-03-12 01:26:10 +08:00
|
|
|
|
|
2017-03-17 12:33:48 +08:00
|
|
|
|
protected override IBeatmapProcessor<TaikoHitObject> CreateBeatmapProcessor() => new TaikoBeatmapProcessor();
|
2016-09-02 18:50:22 +08:00
|
|
|
|
|
2017-03-29 10:35:33 +08:00
|
|
|
|
protected override Playfield<TaikoHitObject, TaikoJudgement> CreatePlayfield() => new TaikoPlayfield
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft
|
|
|
|
|
};
|
2016-09-02 18:50:22 +08:00
|
|
|
|
|
2017-03-29 10:22:27 +08:00
|
|
|
|
protected override DrawableHitObject<TaikoHitObject, TaikoJudgement> GetVisualRepresentation(TaikoHitObject h)
|
|
|
|
|
{
|
2017-04-03 13:22:22 +08:00
|
|
|
|
var centreHit = h as CentreHit;
|
|
|
|
|
if (centreHit != null)
|
|
|
|
|
{
|
|
|
|
|
if (h.IsStrong)
|
2017-04-05 09:37:49 +08:00
|
|
|
|
return new DrawableCentreHitStrong(centreHit);
|
2017-04-03 13:22:22 +08:00
|
|
|
|
return new DrawableCentreHit(centreHit);
|
|
|
|
|
}
|
2016-09-02 18:50:22 +08:00
|
|
|
|
|
2017-04-03 13:22:22 +08:00
|
|
|
|
var rimHit = h as RimHit;
|
2017-04-03 13:28:28 +08:00
|
|
|
|
if (rimHit != null)
|
2017-03-29 10:22:27 +08:00
|
|
|
|
{
|
2017-04-03 13:22:22 +08:00
|
|
|
|
if (h.IsStrong)
|
2017-04-05 09:37:49 +08:00
|
|
|
|
return new DrawableRimHitStrong(rimHit);
|
2017-04-03 13:22:22 +08:00
|
|
|
|
return new DrawableRimHit(rimHit);
|
2017-03-29 10:22:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var drumRoll = h as DrumRoll;
|
|
|
|
|
if (drumRoll != null)
|
|
|
|
|
{
|
|
|
|
|
return new DrawableDrumRoll(drumRoll);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var swell = h as Swell;
|
|
|
|
|
if (swell != null)
|
|
|
|
|
return new DrawableSwell(swell);
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-03-31 15:20:31 +08:00
|
|
|
|
|
|
|
|
|
protected override FramedReplayInputHandler CreateReplayInputHandler(Replay replay) => new TaikoFramedReplayInputHandler(replay);
|
2016-09-02 18:50:22 +08:00
|
|
|
|
}
|
2016-10-13 21:14:18 +08:00
|
|
|
|
}
|