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:50:22 +00:00
|
|
|
|
|
2017-03-21 12:26:01 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-03-29 02:35:33 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-03-10 06:08:53 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
using osu.Game.Rulesets.Replays;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Judgements;
|
|
|
|
|
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;
|
2017-04-10 10:22:02 +00:00
|
|
|
|
using OpenTK;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Beatmaps;
|
2017-05-23 04:55:18 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2016-09-02 10:50:22 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.UI
|
2016-09-02 10:50:22 +00:00
|
|
|
|
{
|
2017-03-23 10:00:18 +00:00
|
|
|
|
public class TaikoHitRenderer : HitRenderer<TaikoHitObject, TaikoJudgement>
|
2016-09-02 10:50:22 +00:00
|
|
|
|
{
|
2017-05-19 06:57:32 +00:00
|
|
|
|
public TaikoHitRenderer(WorkingBeatmap beatmap, bool isForCurrentRuleset)
|
|
|
|
|
: base(beatmap, isForCurrentRuleset)
|
2017-03-10 06:08:53 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-21 12:26:01 +00: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;
|
|
|
|
|
|
2017-05-23 06:20:32 +00:00
|
|
|
|
var timingPoints = Beatmap.ControlPointInfo.TimingPoints.ToList();
|
2017-03-21 12:26:01 +00:00
|
|
|
|
|
2017-04-03 12:10:39 +00:00
|
|
|
|
if (timingPoints.Count == 0)
|
2017-03-21 12:26:01 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2017-04-18 08:37:01 +00:00
|
|
|
|
int currentIndex = 0;
|
2017-03-21 12:26:01 +00:00
|
|
|
|
int currentBeat = 0;
|
2017-04-18 08:37:01 +00:00
|
|
|
|
double time = timingPoints[currentIndex].Time;
|
2017-03-21 12:26:01 +00:00
|
|
|
|
while (time <= lastHitTime)
|
2017-04-18 08:26:59 +00:00
|
|
|
|
{
|
2017-04-18 08:37:01 +00:00
|
|
|
|
int nextIndex = currentIndex + 1;
|
|
|
|
|
if (nextIndex < timingPoints.Count && time > timingPoints[nextIndex].Time)
|
2017-03-21 12:26:01 +00:00
|
|
|
|
{
|
2017-04-18 08:37:01 +00:00
|
|
|
|
currentIndex = nextIndex;
|
|
|
|
|
time = timingPoints[currentIndex].Time;
|
2017-04-17 11:02:36 +00:00
|
|
|
|
currentBeat = 0;
|
|
|
|
|
}
|
2017-03-21 12:26:01 +00:00
|
|
|
|
|
2017-04-18 08:37:01 +00:00
|
|
|
|
var currentPoint = timingPoints[currentIndex];
|
2017-03-21 12:26:01 +00:00
|
|
|
|
|
2017-04-17 11:02:36 +00:00
|
|
|
|
var barLine = new BarLine
|
|
|
|
|
{
|
|
|
|
|
StartTime = time,
|
|
|
|
|
};
|
2017-03-21 12:26:01 +00:00
|
|
|
|
|
2017-05-23 04:55:18 +00:00
|
|
|
|
barLine.ApplyDefaults(Beatmap.ControlPointInfo, Beatmap.BeatmapInfo.Difficulty);
|
2017-03-21 12:26:01 +00:00
|
|
|
|
|
2017-04-17 11:02:36 +00:00
|
|
|
|
bool isMajor = currentBeat % (int)currentPoint.TimeSignature == 0;
|
|
|
|
|
taikoPlayfield.AddBarLine(isMajor ? new DrawableBarLineMajor(barLine) : new DrawableBarLine(barLine));
|
2017-03-21 12:26:01 +00:00
|
|
|
|
|
2017-04-17 11:02:36 +00:00
|
|
|
|
double bl = currentPoint.BeatLength;
|
2017-03-21 12:26:01 +00:00
|
|
|
|
if (bl < 800)
|
2017-04-17 11:02:36 +00:00
|
|
|
|
bl *= (int)currentPoint.TimeSignature;
|
2017-03-21 12:26:01 +00:00
|
|
|
|
|
|
|
|
|
time += bl;
|
2017-04-17 11:02:36 +00:00
|
|
|
|
currentBeat++;
|
2017-03-21 12:26:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-10 10:22:02 +00:00
|
|
|
|
protected override Vector2 GetPlayfieldAspectAdjust()
|
|
|
|
|
{
|
|
|
|
|
const float default_relative_height = TaikoPlayfield.DEFAULT_PLAYFIELD_HEIGHT / 768;
|
|
|
|
|
const float default_aspect = 16f / 9f;
|
|
|
|
|
|
|
|
|
|
float aspectAdjust = MathHelper.Clamp(DrawWidth / DrawHeight, 0.4f, 4) / default_aspect;
|
|
|
|
|
|
|
|
|
|
return new Vector2(1, default_relative_height * aspectAdjust);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-03-16 03:40:35 +00:00
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new TaikoScoreProcessor(this);
|
|
|
|
|
|
2017-04-18 00:38:52 +00:00
|
|
|
|
protected override BeatmapConverter<TaikoHitObject> CreateBeatmapConverter() => new TaikoBeatmapConverter();
|
2016-09-02 10:50:22 +00:00
|
|
|
|
|
2017-03-29 02:35:33 +00:00
|
|
|
|
protected override Playfield<TaikoHitObject, TaikoJudgement> CreatePlayfield() => new TaikoPlayfield
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft
|
|
|
|
|
};
|
2016-09-02 10:50:22 +00:00
|
|
|
|
|
2017-03-29 02:22:27 +00:00
|
|
|
|
protected override DrawableHitObject<TaikoHitObject, TaikoJudgement> GetVisualRepresentation(TaikoHitObject h)
|
|
|
|
|
{
|
2017-04-03 05:22:22 +00:00
|
|
|
|
var centreHit = h as CentreHit;
|
|
|
|
|
if (centreHit != null)
|
|
|
|
|
{
|
|
|
|
|
if (h.IsStrong)
|
2017-04-05 01:37:49 +00:00
|
|
|
|
return new DrawableCentreHitStrong(centreHit);
|
2017-04-03 05:22:22 +00:00
|
|
|
|
return new DrawableCentreHit(centreHit);
|
|
|
|
|
}
|
2016-09-02 10:50:22 +00:00
|
|
|
|
|
2017-04-03 05:22:22 +00:00
|
|
|
|
var rimHit = h as RimHit;
|
2017-04-03 05:28:28 +00:00
|
|
|
|
if (rimHit != null)
|
2017-03-29 02:22:27 +00:00
|
|
|
|
{
|
2017-04-03 05:22:22 +00:00
|
|
|
|
if (h.IsStrong)
|
2017-04-05 01:37:49 +00:00
|
|
|
|
return new DrawableRimHitStrong(rimHit);
|
2017-04-03 05:22:22 +00:00
|
|
|
|
return new DrawableRimHit(rimHit);
|
2017-03-29 02:22:27 +00: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 07:20:31 +00:00
|
|
|
|
|
|
|
|
|
protected override FramedReplayInputHandler CreateReplayInputHandler(Replay replay) => new TaikoFramedReplayInputHandler(replay);
|
2016-09-02 10:50:22 +00:00
|
|
|
|
}
|
2016-10-13 13:14:18 +00:00
|
|
|
|
}
|