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 19:30:27 +08:00
|
|
|
|
|
2017-05-23 14:20:32 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-05-10 13:56:39 +08:00
|
|
|
|
using System.Linq;
|
2017-05-11 13:26:00 +08:00
|
|
|
|
using OpenTK;
|
2017-06-09 21:03:28 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
2017-05-11 13:26:00 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-08-21 11:31:21 +08:00
|
|
|
|
using osu.Framework.Input;
|
2017-05-29 13:44:42 +08:00
|
|
|
|
using osu.Framework.MathUtils;
|
2017-03-10 14:08:53 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-05-23 12:55:18 +08:00
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
2017-05-11 11:33:19 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
2017-09-12 14:52:18 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Replays;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2017-05-10 13:56:39 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-09-12 14:52:18 +08:00
|
|
|
|
using osu.Game.Rulesets.Replays;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-01-04 18:22:15 +08:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2017-09-06 17:05:51 +08:00
|
|
|
|
public class ManiaRulesetContainer : ScrollingRulesetContainer<ManiaPlayfield, ManiaHitObject>
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2018-01-03 17:44:25 +08:00
|
|
|
|
public new ManiaBeatmap Beatmap => (ManiaBeatmap)base.Beatmap;
|
2017-06-07 18:09:51 +08:00
|
|
|
|
|
2017-06-09 21:03:28 +08:00
|
|
|
|
public IEnumerable<DrawableBarLine> BarLines;
|
2017-06-09 18:57:03 +08:00
|
|
|
|
|
2017-08-09 12:28:29 +08:00
|
|
|
|
public ManiaRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap, bool isForCurrentRuleset)
|
2017-08-09 12:04:11 +08:00
|
|
|
|
: base(ruleset, beatmap, isForCurrentRuleset)
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2017-06-09 21:03:28 +08:00
|
|
|
|
// Generate the bar lines
|
2017-06-09 18:57:03 +08:00
|
|
|
|
double lastObjectTime = (Objects.LastOrDefault() as IHasEndTime)?.EndTime ?? Objects.LastOrDefault()?.StartTime ?? double.MaxValue;
|
2017-06-09 21:03:28 +08:00
|
|
|
|
|
2017-12-21 18:40:41 +08:00
|
|
|
|
var timingPoints = Beatmap.ControlPointInfo.TimingPoints;
|
2017-06-09 21:03:28 +08:00
|
|
|
|
var barLines = new List<DrawableBarLine>();
|
|
|
|
|
|
2017-06-09 18:57:03 +08:00
|
|
|
|
for (int i = 0; i < timingPoints.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
TimingControlPoint point = timingPoints[i];
|
|
|
|
|
|
|
|
|
|
// Stop on the beat before the next timing point, or if there is no next timing point stop slightly past the last object
|
|
|
|
|
double endTime = i < timingPoints.Count - 1 ? timingPoints[i + 1].Time - point.BeatLength : lastObjectTime + point.BeatLength * (int)point.TimeSignature;
|
|
|
|
|
|
|
|
|
|
int index = 0;
|
|
|
|
|
for (double t = timingPoints[i].Time; Precision.DefinitelyBigger(endTime, t); t += point.BeatLength, index++)
|
|
|
|
|
{
|
2017-06-09 21:03:28 +08:00
|
|
|
|
barLines.Add(new DrawableBarLine(new BarLine
|
2017-06-09 18:57:03 +08:00
|
|
|
|
{
|
|
|
|
|
StartTime = t,
|
|
|
|
|
ControlPoint = point,
|
|
|
|
|
BeatIndex = index
|
2017-06-09 21:03:28 +08:00
|
|
|
|
}));
|
2017-06-09 18:57:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-09 21:03:28 +08:00
|
|
|
|
BarLines = barLines;
|
2017-05-10 13:56:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-09 21:03:28 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2017-08-04 22:07:08 +08:00
|
|
|
|
BarLines.ForEach(Playfield.Add);
|
2017-06-09 21:03:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 17:44:25 +08:00
|
|
|
|
protected sealed override Playfield CreatePlayfield() => new ManiaPlayfield(Beatmap.TotalColumns)
|
2017-06-02 16:33:58 +08:00
|
|
|
|
{
|
2017-06-15 18:25:54 +08:00
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
};
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2017-03-16 11:40:35 +08:00
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new ManiaScoreProcessor(this);
|
|
|
|
|
|
2018-01-03 17:44:25 +08:00
|
|
|
|
public override PassThroughInputManager CreateInputManager() => new ManiaInputManager(Ruleset.RulesetInfo, Beatmap.TotalColumns);
|
2017-08-21 11:31:21 +08:00
|
|
|
|
|
2018-01-03 17:44:25 +08:00
|
|
|
|
protected override BeatmapConverter<ManiaHitObject> CreateBeatmapConverter() => new ManiaBeatmapConverter(IsForCurrentRuleset, WorkingBeatmap.Beatmap);
|
2017-03-12 01:26:10 +08:00
|
|
|
|
|
2017-09-06 17:05:51 +08:00
|
|
|
|
protected override DrawableHitObject<ManiaHitObject> GetVisualRepresentation(ManiaHitObject h)
|
2017-05-11 11:33:19 +08:00
|
|
|
|
{
|
2017-08-23 12:42:11 +08:00
|
|
|
|
ManiaAction action = Playfield.Columns.ElementAt(h.Column).Action;
|
2017-05-22 14:27:38 +08:00
|
|
|
|
|
2017-05-12 15:35:57 +08:00
|
|
|
|
var holdNote = h as HoldNote;
|
|
|
|
|
if (holdNote != null)
|
2017-08-23 12:42:11 +08:00
|
|
|
|
return new DrawableHoldNote(holdNote, action);
|
2017-05-12 15:35:57 +08:00
|
|
|
|
|
2017-05-11 11:33:19 +08:00
|
|
|
|
var note = h as Note;
|
|
|
|
|
if (note != null)
|
2017-08-23 12:42:11 +08:00
|
|
|
|
return new DrawableNote(note, action);
|
2017-05-11 11:33:19 +08:00
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-05-11 13:26:00 +08:00
|
|
|
|
|
|
|
|
|
protected override Vector2 GetPlayfieldAspectAdjust() => new Vector2(1, 0.8f);
|
2017-08-04 22:07:08 +08:00
|
|
|
|
|
2017-11-28 14:27:20 +08:00
|
|
|
|
protected override FramedReplayInputHandler CreateReplayInputHandler(Replay replay) => new ManiaFramedReplayInputHandler(replay, this);
|
2016-09-02 19:30:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|