osu/osu.Game.Rulesets.Mania/Edit/ManiaHitObjectComposer.cs

55 lines
2.0 KiB
C#
Raw Normal View History

2018-05-20 10:22:42 +00:00
// 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;
2018-05-20 10:22:42 +00: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;
using osu.Framework.Allocation;
using osu.Game.Rulesets.Mania.Configuration;
2018-10-03 04:45:41 +00:00
using osu.Game.Rulesets.Mania.Edit.Masks;
using osu.Game.Rulesets.Mania.UI;
using osu.Game.Rulesets.UI;
2018-05-20 10:22:42 +00:00
namespace osu.Game.Rulesets.Mania.Edit
{
public class ManiaHitObjectComposer : HitObjectComposer<ManiaHitObject>
2018-05-20 10:22:42 +00:00
{
protected new ManiaConfigManager Config => (ManiaConfigManager)base.Config;
public ManiaHitObjectComposer(Ruleset ruleset)
2018-05-20 10:22:42 +00:00
: 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);
2018-05-20 10:22:42 +00:00
protected override IReadOnlyList<HitObjectCompositionTool> CompositionTools => Array.Empty<HitObjectCompositionTool>();
2018-05-20 10:22:42 +00:00
2018-11-06 08:56:04 +00:00
public override SelectionBlueprint CreateMaskFor(DrawableHitObject hitObject)
2018-05-20 10:22:42 +00:00
{
switch (hitObject)
{
case DrawableNote note:
2018-11-06 08:56:04 +00:00
return new NoteSelectionBlueprint(note);
2018-05-20 10:22:42 +00:00
case DrawableHoldNote holdNote:
2018-11-06 08:56:04 +00:00
return new HoldNoteSelectionBlueprint(holdNote);
2018-05-20 10:22:42 +00:00
}
return base.CreateMaskFor(hitObject);
}
}
}