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