2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// 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;
|
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-04-18 15:05:58 +08: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.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 18:22:02 +08:00
|
|
|
|
using OpenTK;
|
2017-05-23 12:55:18 +08:00
|
|
|
|
using System.Linq;
|
2017-08-20 21:21:16 +08:00
|
|
|
|
using osu.Framework.Input;
|
2018-02-28 15:34:47 +08:00
|
|
|
|
using osu.Game.Input.Handlers;
|
2018-01-04 18:22:15 +08:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2016-09-02 18:50:22 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.UI
|
2016-09-02 18:50:22 +08:00
|
|
|
|
{
|
2017-09-06 17:05:51 +08:00
|
|
|
|
public class TaikoRulesetContainer : ScrollingRulesetContainer<TaikoPlayfield, TaikoHitObject>
|
2016-09-02 18:50:22 +08:00
|
|
|
|
{
|
2017-08-09 12:28:29 +08:00
|
|
|
|
public TaikoRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap, bool isForCurrentRuleset)
|
2017-08-09 12:04:11 +08:00
|
|
|
|
: base(ruleset, beatmap, isForCurrentRuleset)
|
2017-03-10 14:08:53 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-21 20:26:01 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-12-08 04:18:51 +08:00
|
|
|
|
private void load()
|
2017-03-21 20:26:01 +08:00
|
|
|
|
{
|
|
|
|
|
loadBarLines();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void loadBarLines()
|
|
|
|
|
{
|
|
|
|
|
TaikoHitObject lastObject = Beatmap.HitObjects[Beatmap.HitObjects.Count - 1];
|
|
|
|
|
double lastHitTime = 1 + (lastObject as IHasEndTime)?.EndTime ?? lastObject.StartTime;
|
|
|
|
|
|
2017-05-23 14:20:32 +08:00
|
|
|
|
var timingPoints = Beatmap.ControlPointInfo.TimingPoints.ToList();
|
2017-03-21 20:26:01 +08:00
|
|
|
|
|
2017-04-03 20:10:39 +08:00
|
|
|
|
if (timingPoints.Count == 0)
|
2017-03-21 20:26:01 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2017-04-18 16:37:01 +08:00
|
|
|
|
int currentIndex = 0;
|
2017-03-21 20:26:01 +08:00
|
|
|
|
int currentBeat = 0;
|
2017-04-18 16:37:01 +08:00
|
|
|
|
double time = timingPoints[currentIndex].Time;
|
2017-03-21 20:26:01 +08:00
|
|
|
|
while (time <= lastHitTime)
|
2017-04-18 16:26:59 +08:00
|
|
|
|
{
|
2017-04-18 16:37:01 +08:00
|
|
|
|
int nextIndex = currentIndex + 1;
|
|
|
|
|
if (nextIndex < timingPoints.Count && time > timingPoints[nextIndex].Time)
|
2017-03-21 20:26:01 +08:00
|
|
|
|
{
|
2017-04-18 16:37:01 +08:00
|
|
|
|
currentIndex = nextIndex;
|
|
|
|
|
time = timingPoints[currentIndex].Time;
|
2017-04-17 19:02:36 +08:00
|
|
|
|
currentBeat = 0;
|
|
|
|
|
}
|
2017-03-21 20:26:01 +08:00
|
|
|
|
|
2017-04-18 16:37:01 +08:00
|
|
|
|
var currentPoint = timingPoints[currentIndex];
|
2017-03-21 20:26:01 +08:00
|
|
|
|
|
2017-04-17 19:02:36 +08:00
|
|
|
|
var barLine = new BarLine
|
|
|
|
|
{
|
|
|
|
|
StartTime = time,
|
|
|
|
|
};
|
2017-03-21 20:26:01 +08:00
|
|
|
|
|
2017-10-19 13:05:11 +08:00
|
|
|
|
barLine.ApplyDefaults(Beatmap.ControlPointInfo, Beatmap.BeatmapInfo.BaseDifficulty);
|
2017-03-21 20:26:01 +08:00
|
|
|
|
|
2017-04-17 19:02:36 +08:00
|
|
|
|
bool isMajor = currentBeat % (int)currentPoint.TimeSignature == 0;
|
2017-08-09 16:34:09 +08:00
|
|
|
|
Playfield.Add(isMajor ? new DrawableBarLineMajor(barLine) : new DrawableBarLine(barLine));
|
2017-03-21 20:26:01 +08:00
|
|
|
|
|
2017-04-17 19:02:36 +08:00
|
|
|
|
double bl = currentPoint.BeatLength;
|
2017-03-21 20:26:01 +08:00
|
|
|
|
if (bl < 800)
|
2017-04-17 19:02:36 +08:00
|
|
|
|
bl *= (int)currentPoint.TimeSignature;
|
2017-03-21 20:26:01 +08:00
|
|
|
|
|
|
|
|
|
time += bl;
|
2017-04-17 19:02:36 +08:00
|
|
|
|
currentBeat++;
|
2017-03-21 20:26:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-19 16:04:18 +08:00
|
|
|
|
protected override Vector2 GetAspectAdjustedSize()
|
2017-04-10 18:22:02 +08:00
|
|
|
|
{
|
2017-08-03 12:05:07 +08:00
|
|
|
|
const float default_relative_height = TaikoPlayfield.DEFAULT_HEIGHT / 768;
|
2017-04-10 18:22:02 +08:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-21 18:52:36 +08:00
|
|
|
|
protected override Vector2 PlayfieldArea => Vector2.One;
|
|
|
|
|
|
2017-03-16 11:40:35 +08:00
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new TaikoScoreProcessor(this);
|
|
|
|
|
|
2017-08-22 13:18:17 +08:00
|
|
|
|
protected override BeatmapConverter<TaikoHitObject> CreateBeatmapConverter() => new TaikoBeatmapConverter(IsForCurrentRuleset);
|
2016-09-02 18:50:22 +08:00
|
|
|
|
|
2017-08-21 11:31:21 +08:00
|
|
|
|
public override PassThroughInputManager CreateInputManager() => new TaikoInputManager(Ruleset.RulesetInfo);
|
2017-08-20 21:21:16 +08:00
|
|
|
|
|
2017-12-08 06:11:34 +08:00
|
|
|
|
protected override Playfield CreatePlayfield() => new TaikoPlayfield(Beatmap.ControlPointInfo)
|
2017-03-29 10:35:33 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft
|
|
|
|
|
};
|
2016-09-02 18:50:22 +08:00
|
|
|
|
|
2017-09-06 17:05:51 +08:00
|
|
|
|
protected override DrawableHitObject<TaikoHitObject> GetVisualRepresentation(TaikoHitObject h)
|
2017-03-29 10:22:27 +08:00
|
|
|
|
{
|
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
|
|
|
|
|
2018-02-28 15:34:47 +08:00
|
|
|
|
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new TaikoFramedReplayInputHandler(replay);
|
2016-09-02 18:50:22 +08:00
|
|
|
|
}
|
2016-10-13 21:14:18 +08:00
|
|
|
|
}
|