2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Allocation;
|
2018-06-08 20:41:20 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Framework.MathUtils;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
|
using osu.Game.Input.Handlers;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
2018-06-11 13:36:19 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Configuration;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Mods;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Replays;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Scoring;
|
|
|
|
|
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.UI;
|
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
|
|
|
{
|
|
|
|
|
public class ManiaRulesetContainer : ScrollingRulesetContainer<ManiaPlayfield, ManiaHitObject>
|
|
|
|
|
{
|
|
|
|
|
public new ManiaBeatmap Beatmap => (ManiaBeatmap)base.Beatmap;
|
|
|
|
|
|
|
|
|
|
public IEnumerable<BarLine> BarLines;
|
|
|
|
|
|
2018-06-11 13:36:19 +08:00
|
|
|
|
private readonly Bindable<ManiaScrollingDirection> configDirection = new Bindable<ManiaScrollingDirection>();
|
2018-06-08 19:13:24 +08:00
|
|
|
|
private ScrollingInfo scrollingInfo;
|
|
|
|
|
|
2018-05-07 09:17:54 +08:00
|
|
|
|
public ManiaRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap)
|
|
|
|
|
: base(ruleset, beatmap)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
// Generate the bar lines
|
|
|
|
|
double lastObjectTime = (Objects.LastOrDefault() as IHasEndTime)?.EndTime ?? Objects.LastOrDefault()?.StartTime ?? double.MaxValue;
|
|
|
|
|
|
|
|
|
|
var timingPoints = Beatmap.ControlPointInfo.TimingPoints;
|
|
|
|
|
var barLines = new List<BarLine>();
|
|
|
|
|
|
|
|
|
|
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++)
|
|
|
|
|
{
|
|
|
|
|
barLines.Add(new BarLine
|
|
|
|
|
{
|
|
|
|
|
StartTime = t,
|
|
|
|
|
ControlPoint = point,
|
|
|
|
|
BeatIndex = index
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BarLines = barLines;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2018-07-11 16:25:57 +08:00
|
|
|
|
private void load()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
BarLines.ForEach(Playfield.Add);
|
2018-06-11 13:36:19 +08:00
|
|
|
|
|
2018-07-11 16:25:57 +08:00
|
|
|
|
((ManiaConfigManager)Config).BindWith(ManiaSetting.ScrollDirection, configDirection);
|
2018-06-11 13:36:19 +08:00
|
|
|
|
configDirection.BindValueChanged(d => scrollingInfo.Direction.Value = (ScrollingDirection)d, true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-08 19:13:24 +08:00
|
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
|
2018-07-11 16:07:14 +08:00
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
2018-06-08 19:13:24 +08:00
|
|
|
|
{
|
2018-07-11 16:07:14 +08:00
|
|
|
|
dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
2018-06-11 13:36:19 +08:00
|
|
|
|
dependencies.CacheAs<IScrollingInfo>(scrollingInfo = new ScrollingInfo());
|
2018-06-08 19:13:24 +08:00
|
|
|
|
return dependencies;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-17 14:14:03 +08:00
|
|
|
|
protected sealed override Playfield CreatePlayfield() => new ManiaPlayfield(Beatmap.Stages)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new ManiaScoreProcessor(this);
|
|
|
|
|
|
|
|
|
|
public override int Variant => (int)(Mods.OfType<IPlayfieldTypeMod>().FirstOrDefault()?.PlayfieldType ?? PlayfieldType.Single) + Beatmap.TotalColumns;
|
|
|
|
|
|
|
|
|
|
public override PassThroughInputManager CreateInputManager() => new ManiaInputManager(Ruleset.RulesetInfo, Variant);
|
|
|
|
|
|
|
|
|
|
protected override DrawableHitObject<ManiaHitObject> GetVisualRepresentation(ManiaHitObject h)
|
|
|
|
|
{
|
2018-07-02 11:31:41 +08:00
|
|
|
|
switch (h)
|
|
|
|
|
{
|
|
|
|
|
case HoldNote holdNote:
|
|
|
|
|
return new DrawableHoldNote(holdNote);
|
|
|
|
|
case Note note:
|
|
|
|
|
return new DrawableNote(note);
|
|
|
|
|
default:
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override Vector2 PlayfieldArea => new Vector2(1, 0.8f);
|
|
|
|
|
|
|
|
|
|
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new ManiaFramedReplayInputHandler(replay);
|
|
|
|
|
|
2018-06-08 20:41:20 +08:00
|
|
|
|
private class ScrollingInfo : IScrollingInfo
|
|
|
|
|
{
|
|
|
|
|
public readonly Bindable<ScrollingDirection> Direction = new Bindable<ScrollingDirection>();
|
|
|
|
|
IBindable<ScrollingDirection> IScrollingInfo.Direction => Direction;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|