2019-01-24 16:43:03 +08: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 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;
|
2023-11-11 21:02:42 +08:00
|
|
|
|
using System.Text.RegularExpressions;
|
2022-05-12 15:13:31 +08: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 17:24:18 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2019-04-08 17:32:05 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-10-17 17:01:38 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2020-04-27 19:35:24 +08:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2018-11-16 16:12:24 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
2023-09-01 18:49:57 +08:00
|
|
|
|
public partial class ManiaHitObjectComposer : ScrollingHitObjectComposer<ManiaHitObject>
|
2018-05-20 18:22:42 +08:00
|
|
|
|
{
|
2021-04-26 13:33:30 +08:00
|
|
|
|
private DrawableManiaEditorRuleset drawableRuleset;
|
2018-11-26 09:54:54 +08:00
|
|
|
|
|
2018-06-07 15:08:37 +08:00
|
|
|
|
public ManiaHitObjectComposer(Ruleset ruleset)
|
2018-05-20 18:22:42 +08:00
|
|
|
|
: base(ruleset)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-15 00:41:15 +08:00
|
|
|
|
public new ManiaPlayfield Playfield => drawableRuleset.Playfield;
|
2020-04-27 19:35:24 +08:00
|
|
|
|
|
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);
|
2020-05-20 20:42:21 +08:00
|
|
|
|
|
2023-10-17 15:42:22 +08:00
|
|
|
|
protected override DrawableRuleset<ManiaHitObject> CreateDrawableRuleset(Ruleset ruleset, IBeatmap beatmap, IReadOnlyList<Mod> mods) =>
|
2023-09-01 18:49:57 +08:00
|
|
|
|
drawableRuleset = new DrawableManiaEditorRuleset(ruleset, beatmap, mods);
|
2018-11-07 15:43:34 +08:00
|
|
|
|
|
2020-11-12 18:52:02 +08:00
|
|
|
|
protected override ComposeBlueprintContainer CreateBlueprintContainer()
|
|
|
|
|
=> new ManiaBlueprintContainer(this);
|
2020-01-02 10:46:18 +08:00
|
|
|
|
|
2023-10-17 16:09:42 +08:00
|
|
|
|
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()
|
2023-11-11 21:02:42 +08:00
|
|
|
|
=> string.Join(',', EditorBeatmap.SelectedHitObjects.Cast<ManiaHitObject>().OrderBy(h => h.StartTime).Select(h => $"{h.StartTime}|{h.Column}"));
|
2023-11-07 08:36:58 +08:00
|
|
|
|
|
2023-11-20 21:03:25 +08:00
|
|
|
|
// 123|0,456|1,789|2 ...
|
|
|
|
|
private static readonly Regex selection_regex = new Regex(@"^\d+\|\d+(,\d+\|\d+)*$", RegexOptions.Compiled);
|
|
|
|
|
|
2023-11-20 20:37:29 +08:00
|
|
|
|
public override void SelectFromTimestamp(double timestamp, string objectDescription)
|
2023-11-07 08:36:58 +08:00
|
|
|
|
{
|
2023-11-11 21:02:42 +08:00
|
|
|
|
if (!selection_regex.IsMatch(objectDescription))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
List<ManiaHitObject> remainingHitObjects = EditorBeatmap.HitObjects.Cast<ManiaHitObject>().Where(h => h.StartTime >= timestamp).ToList();
|
2023-11-20 21:04:08 +08:00
|
|
|
|
string[] objectDescriptions = objectDescription.Split(',').ToArray();
|
2023-11-11 21:02:42 +08:00
|
|
|
|
|
2023-11-20 21:04:08 +08:00
|
|
|
|
for (int i = 0; i < objectDescriptions.Length; i++)
|
2023-11-11 21:02:42 +08:00
|
|
|
|
{
|
2023-11-20 21:04:08 +08:00
|
|
|
|
string[] split = objectDescriptions[i].Split('|').ToArray();
|
2023-11-12 21:58:46 +08:00
|
|
|
|
if (split.Length != 2)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (!double.TryParse(split[0], out double time) || !int.TryParse(split[1], out int column))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
ManiaHitObject current = remainingHitObjects.FirstOrDefault(h => h.StartTime == time && h.Column == column);
|
2023-11-11 21:02:42 +08:00
|
|
|
|
|
|
|
|
|
if (current == null)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
EditorBeatmap.SelectedHitObjects.Add(current);
|
2023-11-07 08:36:58 +08:00
|
|
|
|
|
2023-11-20 21:04:08 +08:00
|
|
|
|
if (i < objectDescriptions.Length - 1)
|
2023-11-11 21:02:42 +08:00
|
|
|
|
remainingHitObjects = remainingHitObjects.Where(h => h != current && h.StartTime >= current.StartTime).ToList();
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-05-20 18:22:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|