1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00
osu-lazer/osu.Game.Modes.Catch/CatchRuleset.cs

102 lines
3.5 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK.Input;
using osu.Game.Beatmaps;
2017-01-30 12:35:40 +08:00
using osu.Game.Graphics;
2017-03-11 23:34:21 +08:00
using osu.Game.Modes.Catch.Beatmaps;
2016-11-14 17:54:24 +08:00
using osu.Game.Modes.Catch.UI;
2016-11-14 17:03:20 +08:00
using osu.Game.Modes.Objects;
2016-11-14 17:54:24 +08:00
using osu.Game.Modes.UI;
using osu.Game.Screens.Play;
using System.Collections.Generic;
2016-11-14 17:03:20 +08:00
namespace osu.Game.Modes.Catch
{
public class CatchRuleset : Ruleset
{
public override HitRenderer CreateHitRendererWith(Beatmap beatmap) => new CatchHitRenderer(beatmap);
public override IEnumerable<Mod> GetModsFor(ModType type)
{
switch (type)
{
case ModType.DifficultyReduction:
return new Mod[]
{
new CatchModEasy(),
new CatchModNoFail(),
new CatchModHalfTime(),
};
case ModType.DifficultyIncrease:
return new Mod[]
{
new CatchModHardRock(),
new MultiMod
{
Mods = new Mod[]
{
new CatchModSuddenDeath(),
2017-03-02 19:27:13 +08:00
new CatchModPerfect(),
},
},
new MultiMod
{
Mods = new Mod[]
{
new CatchModDoubleTime(),
new CatchModNightcore(),
},
},
new CatchModHidden(),
new CatchModFlashlight(),
};
case ModType.Special:
return new Mod[]
{
new CatchModRelax(),
2017-03-07 20:05:50 +08:00
null,
null,
new MultiMod
{
Mods = new Mod[]
{
new ModAutoplay(),
new ModCinema(),
},
},
};
default:
return new Mod[] { };
}
}
2016-11-14 22:18:21 +08:00
protected override PlayMode PlayMode => PlayMode.Catch;
public override string Description => "osu!catch";
2017-01-30 12:35:40 +08:00
public override FontAwesome Icon => FontAwesome.fa_osu_fruits_o;
2017-03-10 13:55:43 +08:00
public override IEnumerable<KeyCounter> CreateGameplayKeys() => new KeyCounter[]
{
2017-03-10 13:55:43 +08:00
new KeyCounterKeyboard(Key.ShiftLeft),
new KeyCounterMouse(MouseButton.Left),
new KeyCounterMouse(MouseButton.Right)
};
2017-03-07 12:50:24 +08:00
public override ScoreProcessor CreateScoreProcessor(int hitObjectCount = 0) => null;
2016-11-29 14:41:48 +08:00
public override HitObjectParser CreateHitObjectParser() => new NullHitObjectParser();
public override DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap) => new CatchDifficultyCalculator(beatmap);
2017-03-11 23:34:21 +08:00
public override IBeatmapConverter<CatchBaseHit> CreateBeatmapConverter<CatchBaseHit>()
2017-03-11 23:34:21 +08:00
{
return (IBeatmapConverter<CatchBaseHit>)new CatchBeatmapConverter();
2017-03-11 23:34:21 +08:00
}
}
}