mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
55 lines
2.0 KiB
C#
55 lines
2.0 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
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;
|
|
using osu.Framework.Allocation;
|
|
using osu.Game.Rulesets.Mania.Configuration;
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints;
|
|
using osu.Game.Rulesets.Mania.UI;
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit
|
|
{
|
|
public class ManiaHitObjectComposer : HitObjectComposer<ManiaHitObject>
|
|
{
|
|
protected new ManiaConfigManager Config => (ManiaConfigManager)base.Config;
|
|
|
|
public ManiaHitObjectComposer(Ruleset ruleset)
|
|
: base(ruleset)
|
|
{
|
|
}
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
|
{
|
|
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
|
dependencies.CacheAs<IScrollingInfo>(new ManiaScrollingInfo(Config));
|
|
return dependencies;
|
|
}
|
|
|
|
protected override RulesetContainer<ManiaHitObject> CreateRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap)
|
|
=> new ManiaEditRulesetContainer(ruleset, beatmap);
|
|
|
|
protected override IReadOnlyList<HitObjectCompositionTool> CompositionTools => Array.Empty<HitObjectCompositionTool>();
|
|
|
|
public override SelectionBlueprint CreateBlueprintFor(DrawableHitObject hitObject)
|
|
{
|
|
switch (hitObject)
|
|
{
|
|
case DrawableNote note:
|
|
return new NoteSelectionBlueprint(note);
|
|
case DrawableHoldNote holdNote:
|
|
return new HoldNoteSelectionBlueprint(holdNote);
|
|
}
|
|
|
|
return base.CreateBlueprintFor(hitObject);
|
|
}
|
|
}
|
|
}
|