1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Mania/UI/ManiaRulesetContainer.cs

112 lines
4.5 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +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;
2017-05-10 13:56:39 +08:00
using System.Linq;
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;
using osu.Framework.Input;
2017-05-29 13:44:42 +08:00
using osu.Framework.MathUtils;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Configuration;
using osu.Game.Input.Handlers;
using osu.Game.Rulesets.Configuration;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Mania.Beatmaps;
2018-01-15 18:29:51 +08:00
using osu.Game.Rulesets.Mania.Mods;
using osu.Game.Rulesets.Mania.Configuration;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Rulesets.Mania.Objects.Drawables;
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;
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;
using OpenTK;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Mania.UI
{
2017-09-06 17:05:51 +08:00
public class ManiaRulesetContainer : ScrollingRulesetContainer<ManiaPlayfield, ManiaHitObject>
{
public new ManiaBeatmap Beatmap => (ManiaBeatmap)base.Beatmap;
public IEnumerable<BarLine> BarLines;
2017-08-09 12:28:29 +08:00
public ManiaRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap, bool isForCurrentRuleset)
: base(ruleset, beatmap, isForCurrentRuleset)
{
2017-06-09 21:03:28 +08:00
// Generate the bar lines
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;
var barLines = new List<BarLine>();
2017-06-09 21:03:28 +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++)
{
barLines.Add(new BarLine
{
StartTime = t,
ControlPoint = point,
BeatIndex = index
});
}
}
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()
{
BarLines.ForEach(Playfield.Add);
2017-06-09 21:03:28 +08:00
}
2018-01-03 21:58:08 +08:00
protected sealed override Playfield CreatePlayfield() => new ManiaPlayfield(Beatmap.Stages)
2017-06-02 16:33:58 +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 BeatmapConverter<ManiaHitObject> CreateBeatmapConverter() => new ManiaBeatmapConverter(IsForCurrentRuleset, WorkingBeatmap.Beatmap);
2017-09-06 17:05:51 +08:00
protected override DrawableHitObject<ManiaHitObject> GetVisualRepresentation(ManiaHitObject h)
{
2017-08-23 12:42:11 +08:00
ManiaAction action = Playfield.Columns.ElementAt(h.Column).Action;
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
var note = h as Note;
if (note != null)
2017-08-23 12:42:11 +08:00
return new DrawableNote(note, action);
return null;
}
2017-05-11 13:26:00 +08:00
protected override Vector2 PlayfieldArea => new Vector2(1, 0.8f);
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new ManiaFramedReplayInputHandler(replay);
protected override IRulesetConfigManager CreateConfig(Ruleset ruleset, SettingsStore settings) => new ManiaConfigManager(settings, Ruleset.RulesetInfo, Variant);
}
}