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 19:30:27 +08:00
|
|
|
|
|
2017-05-10 13:56:39 +08:00
|
|
|
|
using System;
|
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-23 14:20:32 +08:00
|
|
|
|
using osu.Framework.Lists;
|
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;
|
2017-06-09 01:43:48 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Timing;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
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;
|
2017-06-02 19:17:44 +08:00
|
|
|
|
using osu.Game.Rulesets.Timing;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
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
|
|
|
|
{
|
2017-06-07 18:09:51 +08:00
|
|
|
|
/// <summary>
|
2017-08-22 12:01:51 +08:00
|
|
|
|
/// The number of columns which the <see cref="ManiaPlayfield"/> should display, and which
|
|
|
|
|
/// the beatmap converter will attempt to convert beatmaps to use.
|
2017-06-07 18:09:51 +08:00
|
|
|
|
/// </summary>
|
2017-09-12 14:52:18 +08:00
|
|
|
|
public int AvailableColumns { get; private set; }
|
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-06-09 18:57:03 +08:00
|
|
|
|
SortedList<TimingControlPoint> 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
|
|
|
|
}
|
|
|
|
|
|
2017-09-12 17:57:37 +08:00
|
|
|
|
protected sealed override Playfield CreatePlayfield() => new ManiaPlayfield(AvailableColumns)
|
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);
|
|
|
|
|
|
2017-09-12 14:52:18 +08:00
|
|
|
|
public override PassThroughInputManager CreateInputManager() => new ManiaInputManager(Ruleset.RulesetInfo, AvailableColumns);
|
2017-08-21 11:31:21 +08:00
|
|
|
|
|
2017-08-22 12:01:51 +08:00
|
|
|
|
protected override BeatmapConverter<ManiaHitObject> CreateBeatmapConverter()
|
|
|
|
|
{
|
2017-08-22 12:34:58 +08:00
|
|
|
|
if (IsForCurrentRuleset)
|
2017-10-19 13:05:11 +08:00
|
|
|
|
AvailableColumns = (int)Math.Max(1, Math.Round(WorkingBeatmap.BeatmapInfo.BaseDifficulty.CircleSize));
|
2017-08-22 12:34:58 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2017-08-22 13:21:28 +08:00
|
|
|
|
float percentSliderOrSpinner = (float)WorkingBeatmap.Beatmap.HitObjects.Count(h => h is IHasEndTime) / WorkingBeatmap.Beatmap.HitObjects.Count;
|
2017-08-22 12:34:58 +08:00
|
|
|
|
if (percentSliderOrSpinner < 0.2)
|
2017-09-12 14:52:18 +08:00
|
|
|
|
AvailableColumns = 7;
|
2017-10-19 13:05:11 +08:00
|
|
|
|
else if (percentSliderOrSpinner < 0.3 || Math.Round(WorkingBeatmap.BeatmapInfo.BaseDifficulty.CircleSize) >= 5)
|
|
|
|
|
AvailableColumns = Math.Round(WorkingBeatmap.BeatmapInfo.BaseDifficulty.OverallDifficulty) > 5 ? 7 : 6;
|
2017-08-22 12:34:58 +08:00
|
|
|
|
else if (percentSliderOrSpinner > 0.6)
|
2017-10-19 13:05:11 +08:00
|
|
|
|
AvailableColumns = Math.Round(WorkingBeatmap.BeatmapInfo.BaseDifficulty.OverallDifficulty) > 4 ? 5 : 4;
|
2017-08-22 12:34:58 +08:00
|
|
|
|
else
|
2017-10-19 13:05:11 +08:00
|
|
|
|
AvailableColumns = Math.Max(4, Math.Min((int)Math.Round(WorkingBeatmap.BeatmapInfo.BaseDifficulty.OverallDifficulty) + 1, 7));
|
2017-08-22 12:34:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-12 14:52:18 +08:00
|
|
|
|
return new ManiaBeatmapConverter(IsForCurrentRuleset, AvailableColumns);
|
2017-08-22 12:01:51 +08:00
|
|
|
|
}
|
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
|
|
|
|
|
|
|
|
|
protected override SpeedAdjustmentContainer CreateSpeedAdjustmentContainer(MultiplierControlPoint controlPoint) => new ManiaSpeedAdjustmentContainer(controlPoint, ScrollingAlgorithm.Basic);
|
2017-09-12 14:52:18 +08:00
|
|
|
|
|
|
|
|
|
protected override FramedReplayInputHandler CreateReplayInputHandler(Replay replay) => new ManiaFramedReplayInputHandler(replay);
|
2016-09-02 19:30:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|