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
|
|
|
|
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using System.Collections.Generic;
|
2018-07-17 15:55:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-11-07 15:08:56 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints;
|
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;
|
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
|
|
|
|
|
{
|
2018-11-12 18:41:06 +08:00
|
|
|
|
[Cached(Type = typeof(IManiaHitObjectComposer))]
|
|
|
|
|
public class ManiaHitObjectComposer : HitObjectComposer<ManiaHitObject>, IManiaHitObjectComposer
|
2018-05-20 18:22:42 +08:00
|
|
|
|
{
|
2019-08-29 17:12:29 +08:00
|
|
|
|
private DrawableManiaEditRuleset 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)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-26 09:54:54 +08: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>
|
2019-08-29 17:12:29 +08:00
|
|
|
|
public Column ColumnAt(Vector2 screenSpacePosition) => drawableRuleset.GetColumnByPosition(screenSpacePosition);
|
2018-11-26 09:54:54 +08:00
|
|
|
|
|
2018-11-07 15:43:34 +08:00
|
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
|
2018-07-17 15:55:50 +08:00
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
2018-11-07 15:43:34 +08:00
|
|
|
|
=> dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
2018-07-17 15:55:50 +08:00
|
|
|
|
|
2019-08-29 17:12:29 +08:00
|
|
|
|
public int TotalColumns => ((ManiaPlayfield)drawableRuleset.Playfield).TotalColumns;
|
2018-11-15 20:37:22 +08:00
|
|
|
|
|
2019-04-10 16:13:12 +08:00
|
|
|
|
protected override DrawableRuleset<ManiaHitObject> CreateDrawableRuleset(Ruleset ruleset, WorkingBeatmap beatmap, IReadOnlyList<Mod> mods)
|
2018-11-07 15:43:34 +08:00
|
|
|
|
{
|
2019-08-29 17:12:29 +08:00
|
|
|
|
drawableRuleset = new DrawableManiaEditRuleset(ruleset, beatmap, mods);
|
2018-11-07 15:43:34 +08:00
|
|
|
|
|
|
|
|
|
// This is the earliest we can cache the scrolling info to ourselves, before masks are added to the hierarchy and inject it
|
2019-08-29 17:12:29 +08:00
|
|
|
|
dependencies.CacheAs(drawableRuleset.ScrollingInfo);
|
2018-11-07 15:43:34 +08:00
|
|
|
|
|
2019-08-29 17:12:29 +08:00
|
|
|
|
return drawableRuleset;
|
2018-11-07 15:43:34 +08:00
|
|
|
|
}
|
2018-05-20 18:22:42 +08:00
|
|
|
|
|
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
|
|
|
|
};
|
2018-05-20 18:22:42 +08:00
|
|
|
|
|
2018-11-19 15:58:11 +08:00
|
|
|
|
public override SelectionHandler CreateSelectionHandler() => new ManiaSelectionHandler();
|
2018-11-16 16:12:24 +08:00
|
|
|
|
|
2018-11-06 17:03:21 +08:00
|
|
|
|
public override SelectionBlueprint CreateBlueprintFor(DrawableHitObject hitObject)
|
2018-05-20 18:22:42 +08:00
|
|
|
|
{
|
|
|
|
|
switch (hitObject)
|
|
|
|
|
{
|
|
|
|
|
case DrawableNote note:
|
2018-11-06 16:56:04 +08:00
|
|
|
|
return new NoteSelectionBlueprint(note);
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-05-20 18:22:42 +08:00
|
|
|
|
case DrawableHoldNote holdNote:
|
2018-11-06 16:56:04 +08:00
|
|
|
|
return new HoldNoteSelectionBlueprint(holdNote);
|
2018-05-20 18:22:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-06 17:03:21 +08:00
|
|
|
|
return base.CreateBlueprintFor(hitObject);
|
2018-05-20 18:22:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|