1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 10:17:36 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Edit/ManiaHitObjectComposer.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
2.0 KiB
C#
Raw Normal View History

// 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-05-20 18:22:42 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2018-05-20 18:22:42 +08:00
using System.Collections.Generic;
2020-05-14 18:55:07 +08:00
using System.Linq;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Edit.Tools;
using osu.Game.Rulesets.Mania.Objects;
2018-11-12 17:24:18 +08:00
using osu.Game.Rulesets.Mania.UI;
2019-04-08 17:32:05 +08:00
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.UI;
using osu.Game.Rulesets.UI.Scrolling;
using osu.Game.Screens.Edit.Compose.Components;
2018-11-26 09:44:48 +08:00
using osuTK;
2018-05-20 18:22:42 +08:00
namespace osu.Game.Rulesets.Mania.Edit
{
public partial class ManiaHitObjectComposer : ScrollingHitObjectComposer<ManiaHitObject>
2018-05-20 18:22:42 +08:00
{
private DrawableManiaEditorRuleset drawableRuleset;
public ManiaHitObjectComposer(Ruleset ruleset)
2018-05-20 18:22:42 +08:00
: base(ruleset)
{
}
public new ManiaPlayfield Playfield => ((ManiaPlayfield)drawableRuleset.Playfield);
2020-04-28 17:35:37 +08:00
public IScrollingInfo ScrollingInfo => drawableRuleset.ScrollingInfo;
2020-05-25 18:21:53 +08:00
protected override Playfield PlayfieldAtScreenSpacePosition(Vector2 screenSpacePosition) =>
Playfield.GetColumnByPosition(screenSpacePosition);
protected override DrawableRuleset<ManiaHitObject> CreateDrawableRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod> mods) =>
drawableRuleset = new DrawableManiaEditorRuleset(ruleset, beatmap, mods);
2018-11-07 15:43:34 +08:00
protected override ComposeBlueprintContainer CreateBlueprintContainer()
=> new ManiaBlueprintContainer(this);
protected override BeatSnapGrid CreateBeatSnapGrid() => new ManiaBeatSnapGrid();
2018-11-12 17:24:18 +08:00
protected override IReadOnlyList<HitObjectCompositionTool> CompositionTools => new HitObjectCompositionTool[]
{
2018-11-19 17:38:06 +08:00
new NoteCompositionTool(),
new HoldNoteCompositionTool()
2018-11-12 17:24:18 +08:00
};
2020-05-22 10:45:58 +08:00
2021-03-29 17:29:05 +08:00
public override string ConvertSelectionToString()
=> string.Join(',', EditorBeatmap.SelectedHitObjects.Cast<ManiaHitObject>().OrderBy(h => h.StartTime).Select(h => $"{h.StartTime}|{h.Column}"));
2018-05-20 18:22:42 +08:00
}
}