1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/TaikoRuleset.cs

149 lines
5.6 KiB
C#
Raw Normal View History

// 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-04-13 17:19:50 +08:00
using osu.Game.Beatmaps;
using osu.Game.Graphics;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Taiko.Mods;
using osu.Game.Rulesets.Taiko.UI;
using osu.Game.Rulesets.UI;
using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.Replays.Types;
using osu.Game.Rulesets.Taiko.Replays;
2018-04-13 21:41:35 +08:00
using osu.Game.Beatmaps.Legacy;
using osu.Game.Rulesets.Difficulty;
2019-12-17 19:08:13 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.Taiko.Beatmaps;
using osu.Game.Rulesets.Taiko.Difficulty;
2019-12-17 19:08:13 +08:00
using osu.Game.Rulesets.Taiko.Scoring;
2018-11-28 15:12:57 +08:00
using osu.Game.Scoring;
2019-11-28 21:41:29 +08:00
using System;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Taiko
{
2019-12-24 12:48:27 +08:00
public class TaikoRuleset : Ruleset, ILegacyRuleset
2018-04-13 17:19:50 +08:00
{
public override DrawableRuleset CreateDrawableRulesetWith(IBeatmap beatmap, IReadOnlyList<Mod> mods = null) => new DrawableTaikoRuleset(this, beatmap, mods);
2019-12-17 19:08:13 +08:00
public override ScoreProcessor CreateScoreProcessor() => new TaikoScoreProcessor();
2019-12-17 19:08:13 +08:00
public override HealthProcessor CreateHealthProcessor(double drainStartTime) => new TaikoHealthProcessor();
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new TaikoBeatmapConverter(beatmap, this);
2018-04-13 17:19:50 +08:00
public const string SHORT_NAME = "taiko";
2018-04-13 17:19:50 +08:00
public override IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new[]
{
new KeyBinding(InputKey.MouseLeft, TaikoAction.LeftCentre),
new KeyBinding(InputKey.MouseRight, TaikoAction.LeftRim),
2018-04-13 17:19:50 +08:00
new KeyBinding(InputKey.D, TaikoAction.LeftRim),
new KeyBinding(InputKey.F, TaikoAction.LeftCentre),
new KeyBinding(InputKey.J, TaikoAction.RightCentre),
new KeyBinding(InputKey.K, TaikoAction.RightRim),
};
2018-04-16 20:14:40 +08:00
public override IEnumerable<Mod> ConvertLegacyMods(LegacyMods mods)
2018-04-13 21:41:35 +08:00
{
2018-04-16 20:14:40 +08:00
if (mods.HasFlag(LegacyMods.Nightcore))
2018-04-13 21:41:35 +08:00
yield return new TaikoModNightcore();
else if (mods.HasFlag(LegacyMods.DoubleTime))
yield return new TaikoModDoubleTime();
if (mods.HasFlag(LegacyMods.Perfect))
yield return new TaikoModPerfect();
else if (mods.HasFlag(LegacyMods.SuddenDeath))
yield return new TaikoModSuddenDeath();
2019-11-24 01:32:16 +08:00
if (mods.HasFlag(LegacyMods.Cinema))
yield return new TaikoModCinema();
else if (mods.HasFlag(LegacyMods.Autoplay))
2018-04-13 21:41:35 +08:00
yield return new TaikoModAutoplay();
if (mods.HasFlag(LegacyMods.Easy))
yield return new TaikoModEasy();
2018-04-16 20:14:40 +08:00
if (mods.HasFlag(LegacyMods.Flashlight))
2018-04-13 21:41:35 +08:00
yield return new TaikoModFlashlight();
if (mods.HasFlag(LegacyMods.HalfTime))
yield return new TaikoModHalfTime();
if (mods.HasFlag(LegacyMods.HardRock))
yield return new TaikoModHardRock();
if (mods.HasFlag(LegacyMods.Hidden))
yield return new TaikoModHidden();
if (mods.HasFlag(LegacyMods.NoFail))
yield return new TaikoModNoFail();
if (mods.HasFlag(LegacyMods.Relax))
yield return new TaikoModRelax();
}
2018-04-13 17:19:50 +08:00
public override IEnumerable<Mod> GetModsFor(ModType type)
{
switch (type)
{
case ModType.DifficultyReduction:
return new Mod[]
{
new TaikoModEasy(),
new TaikoModNoFail(),
2018-06-06 13:07:50 +08:00
new MultiMod(new TaikoModHalfTime(), new TaikoModDaycore()),
2018-04-13 17:19:50 +08:00
};
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case ModType.DifficultyIncrease:
return new Mod[]
{
new TaikoModHardRock(),
2018-06-06 13:07:50 +08:00
new MultiMod(new TaikoModSuddenDeath(), new TaikoModPerfect()),
2018-06-13 11:21:37 +08:00
new MultiMod(new TaikoModDoubleTime(), new TaikoModNightcore()),
2018-04-13 17:19:50 +08:00
new TaikoModHidden(),
new TaikoModFlashlight(),
};
2019-04-01 11:44:46 +08:00
2019-12-11 19:43:16 +08:00
case ModType.Conversion:
return new Mod[]
{
2019-12-20 18:30:23 +08:00
new TaikoModDifficultyAdjust(),
2019-12-11 19:43:16 +08:00
};
case ModType.Automation:
2018-04-13 17:19:50 +08:00
return new Mod[]
{
2019-11-24 01:32:16 +08:00
new MultiMod(new TaikoModAutoplay(), new TaikoModCinema()),
new TaikoModRelax(),
2018-04-13 17:19:50 +08:00
};
2019-04-01 11:44:46 +08:00
2019-01-26 12:15:45 +08:00
case ModType.Fun:
return new Mod[]
{
new MultiMod(new ModWindUp(), new ModWindDown())
2019-01-26 12:15:45 +08:00
};
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
default:
2019-11-28 21:41:29 +08:00
return Array.Empty<Mod>();
2018-04-13 17:19:50 +08:00
}
}
public override string Description => "osu!taiko";
public override string ShortName => SHORT_NAME;
2018-04-13 17:19:50 +08:00
public override Drawable CreateIcon() => new SpriteIcon { Icon = OsuIcon.RulesetTaiko };
2018-04-13 17:19:50 +08:00
public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => new TaikoDifficultyCalculator(this, beatmap);
2018-04-13 17:19:50 +08:00
2018-11-30 14:18:52 +08:00
public override PerformanceCalculator CreatePerformanceCalculator(WorkingBeatmap beatmap, ScoreInfo score) => new TaikoPerformanceCalculator(this, beatmap, score);
2019-12-24 12:48:27 +08:00
public int LegacyID => 1;
2018-04-13 17:19:50 +08:00
public override IConvertibleReplayFrame CreateConvertibleReplayFrame() => new TaikoReplayFrame();
}
}