mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
127 lines
4.8 KiB
C#
127 lines
4.8 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Input;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Input.Handlers;
|
|
using osu.Game.Replays;
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
|
using osu.Game.Rulesets.Mania.Configuration;
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
using osu.Game.Rulesets.Mania.Replays;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osu.Game.Rulesets.UI;
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
{
|
|
public class DrawableManiaRuleset : DrawableScrollingRuleset<ManiaHitObject>
|
|
{
|
|
/// <summary>
|
|
/// The minimum time range. This occurs at a <see cref="relativeTimeRange"/> of 40.
|
|
/// </summary>
|
|
public const double MIN_TIME_RANGE = 150;
|
|
|
|
/// <summary>
|
|
/// The maximum time range. This occurs at a <see cref="relativeTimeRange"/> of 1.
|
|
/// </summary>
|
|
public const double MAX_TIME_RANGE = 6000;
|
|
|
|
protected new ManiaPlayfield Playfield => (ManiaPlayfield)base.Playfield;
|
|
|
|
public new ManiaBeatmap Beatmap => (ManiaBeatmap)base.Beatmap;
|
|
|
|
public IEnumerable<BarLine> BarLines;
|
|
|
|
protected override bool RelativeScaleBeatLengths => true;
|
|
|
|
protected new ManiaRulesetConfigManager Config => (ManiaRulesetConfigManager)base.Config;
|
|
|
|
private readonly Bindable<ManiaScrollingDirection> configDirection = new Bindable<ManiaScrollingDirection>();
|
|
|
|
public DrawableManiaRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod> mods = null)
|
|
: base(ruleset, beatmap, mods)
|
|
{
|
|
BarLines = new BarLineGenerator<BarLine>(Beatmap).BarLines;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
bool isForCurrentRuleset = Beatmap.BeatmapInfo.Ruleset.Equals(Ruleset.RulesetInfo);
|
|
|
|
foreach (var p in ControlPoints)
|
|
{
|
|
// Mania doesn't care about global velocity
|
|
p.Velocity = 1;
|
|
|
|
// For non-mania beatmap, speed changes should only happen through timing points
|
|
if (!isForCurrentRuleset)
|
|
p.DifficultyPoint = new DifficultyControlPoint();
|
|
}
|
|
|
|
BarLines.ForEach(Playfield.Add);
|
|
|
|
Config.BindWith(ManiaRulesetSetting.ScrollDirection, configDirection);
|
|
configDirection.BindValueChanged(direction => Direction.Value = (ScrollingDirection)direction.NewValue, true);
|
|
|
|
Config.BindWith(ManiaRulesetSetting.ScrollTime, TimeRange);
|
|
}
|
|
|
|
protected override void AdjustScrollSpeed(int amount)
|
|
{
|
|
this.TransformTo(nameof(relativeTimeRange), relativeTimeRange + amount, 200, Easing.OutQuint);
|
|
}
|
|
|
|
private double relativeTimeRange
|
|
{
|
|
get => MAX_TIME_RANGE / TimeRange.Value;
|
|
set => TimeRange.Value = MAX_TIME_RANGE / value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieves the column that intersects a screen-space position.
|
|
/// </summary>
|
|
/// <param name="screenSpacePosition">The screen-space position.</param>
|
|
/// <returns>The column which intersects with <paramref name="screenSpacePosition"/>.</returns>
|
|
public Column GetColumnByPosition(Vector2 screenSpacePosition) => Playfield.GetColumnByPosition(screenSpacePosition);
|
|
|
|
public override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new ManiaPlayfieldAdjustmentContainer();
|
|
|
|
protected override Playfield CreatePlayfield() => new ManiaPlayfield(Beatmap.Stages);
|
|
|
|
public override int Variant => (int)(Beatmap.Stages.Count == 1 ? PlayfieldType.Single : PlayfieldType.Dual) + Beatmap.TotalColumns;
|
|
|
|
protected override PassThroughInputManager CreateInputManager() => new ManiaInputManager(Ruleset.RulesetInfo, Variant);
|
|
|
|
public override DrawableHitObject<ManiaHitObject> CreateDrawableRepresentation(ManiaHitObject h)
|
|
{
|
|
switch (h)
|
|
{
|
|
case HoldNote holdNote:
|
|
return new DrawableHoldNote(holdNote);
|
|
|
|
case Note note:
|
|
return new DrawableNote(note);
|
|
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new ManiaFramedReplayInputHandler(replay);
|
|
|
|
protected override ReplayRecorder CreateReplayRecorder(Replay replay) => new ManiaReplayRecorder(replay);
|
|
}
|
|
}
|