2019-01-24 08:43:03 +00:00
|
|
|
|
// 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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 10:04:31 +00:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Input.Handlers;
|
2018-11-28 08:20:37 +00:00
|
|
|
|
using osu.Game.Replays;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
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;
|
2019-04-08 09:32:05 +00:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2019-09-10 04:29:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2018-11-26 01:54:54 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
|
|
|
{
|
2019-03-20 02:29:16 +00:00
|
|
|
|
public class DrawableManiaRuleset : DrawableScrollingRuleset<ManiaHitObject>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-03-20 02:29:16 +00:00
|
|
|
|
protected new ManiaPlayfield Playfield => (ManiaPlayfield)base.Playfield;
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
public new ManiaBeatmap Beatmap => (ManiaBeatmap)base.Beatmap;
|
|
|
|
|
|
|
|
|
|
public IEnumerable<BarLine> BarLines;
|
|
|
|
|
|
2019-08-26 03:51:23 +00:00
|
|
|
|
protected override bool RelativeScaleBeatLengths => true;
|
|
|
|
|
|
2019-01-25 10:14:37 +00:00
|
|
|
|
protected new ManiaRulesetConfigManager Config => (ManiaRulesetConfigManager)base.Config;
|
2018-06-08 11:13:24 +00:00
|
|
|
|
|
2018-11-06 06:46:36 +00:00
|
|
|
|
private readonly Bindable<ManiaScrollingDirection> configDirection = new Bindable<ManiaScrollingDirection>();
|
|
|
|
|
|
2019-12-12 06:58:11 +00:00
|
|
|
|
public DrawableManiaRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod> mods = null)
|
2019-04-08 09:32:05 +00:00
|
|
|
|
: base(ruleset, beatmap, mods)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-09-24 21:03:55 +00:00
|
|
|
|
BarLines = new BarLineGenerator<BarLine>(Beatmap).BarLines;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
BarLines.ForEach(Playfield.Add);
|
2018-07-17 07:55:50 +00:00
|
|
|
|
|
2019-01-25 10:14:37 +00:00
|
|
|
|
Config.BindWith(ManiaRulesetSetting.ScrollDirection, configDirection);
|
2019-02-22 11:13:38 +00:00
|
|
|
|
configDirection.BindValueChanged(direction => Direction.Value = (ScrollingDirection)direction.NewValue, true);
|
2018-11-07 08:24:05 +00:00
|
|
|
|
|
2019-01-25 10:14:37 +00:00
|
|
|
|
Config.BindWith(ManiaRulesetSetting.ScrollTime, TimeRange);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-26 01:54:54 +00:00
|
|
|
|
/// <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);
|
|
|
|
|
|
2019-03-30 16:29:37 +00:00
|
|
|
|
public override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new ManiaPlayfieldAdjustmentContainer();
|
2019-03-26 04:31:49 +00:00
|
|
|
|
|
|
|
|
|
protected override Playfield CreatePlayfield() => new ManiaPlayfield(Beatmap.Stages);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-02-28 10:07:43 +00:00
|
|
|
|
public override int Variant => (int)(Beatmap.Stages.Count == 1 ? PlayfieldType.Single : PlayfieldType.Dual) + Beatmap.TotalColumns;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-19 11:21:31 +00:00
|
|
|
|
protected override PassThroughInputManager CreateInputManager() => new ManiaInputManager(Ruleset.RulesetInfo, Variant);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-24 14:40:43 +00:00
|
|
|
|
public override DrawableHitObject<ManiaHitObject> CreateDrawableRepresentation(ManiaHitObject h)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2018-07-02 03:31:41 +00:00
|
|
|
|
switch (h)
|
|
|
|
|
{
|
|
|
|
|
case HoldNote holdNote:
|
|
|
|
|
return new DrawableHoldNote(holdNote);
|
2019-04-01 03:16:05 +00:00
|
|
|
|
|
2018-07-02 03:31:41 +00:00
|
|
|
|
case Note note:
|
|
|
|
|
return new DrawableNote(note);
|
2019-04-01 03:16:05 +00:00
|
|
|
|
|
2018-07-02 03:31:41 +00:00
|
|
|
|
default:
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new ManiaFramedReplayInputHandler(replay);
|
|
|
|
|
}
|
|
|
|
|
}
|