mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 05:57:52 +08:00
58 lines
2.1 KiB
C#
58 lines
2.1 KiB
C#
// 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.
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Input.Bindings;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Difficulty;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.EmptyScrolling.Beatmaps;
|
|
using osu.Game.Rulesets.EmptyScrolling.Mods;
|
|
using osu.Game.Rulesets.EmptyScrolling.UI;
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
namespace osu.Game.Rulesets.EmptyScrolling
|
|
{
|
|
public class EmptyScrollingRuleset : Ruleset
|
|
{
|
|
public override string Description => "a very emptyscrolling ruleset";
|
|
|
|
public override DrawableRuleset CreateDrawableRulesetWith(IBeatmap beatmap, IReadOnlyList<Mod> mods = null) => new DrawableEmptyScrollingRuleset(this, beatmap, mods);
|
|
|
|
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new EmptyScrollingBeatmapConverter(beatmap, this);
|
|
|
|
public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => new EmptyScrollingDifficultyCalculator(RulesetInfo, beatmap);
|
|
|
|
public override IEnumerable<Mod> GetModsFor(ModType type)
|
|
{
|
|
switch (type)
|
|
{
|
|
case ModType.Automation:
|
|
return new[] { new EmptyScrollingModAutoplay() };
|
|
|
|
default:
|
|
return new Mod[] { null };
|
|
}
|
|
}
|
|
|
|
public override string ShortName => "emptyscrolling";
|
|
|
|
public override IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new[]
|
|
{
|
|
new KeyBinding(InputKey.Z, EmptyScrollingAction.Button1),
|
|
new KeyBinding(InputKey.X, EmptyScrollingAction.Button2),
|
|
};
|
|
|
|
public override Drawable CreateIcon() => new SpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Text = ShortName[0].ToString(),
|
|
Font = OsuFont.Default.With(size: 18),
|
|
};
|
|
}
|
|
}
|