2018-01-05 20:21:19 +09:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 13:59:30 +09:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-11-09 19:49:05 +09:00
|
|
|
|
|
2017-01-30 13:12:30 +09:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Graphics;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
2017-06-05 23:45:22 +02:00
|
|
|
|
using osu.Game.Rulesets.Osu.OsuDifficulty;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2017-03-10 15:08:53 +09:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2017-08-03 14:36:21 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-07-11 20:25:24 +02:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
2017-08-14 20:19:25 +09:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2017-11-17 12:35:23 +09:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-11-17 14:29:19 +09:00
|
|
|
|
using osu.Game.Rulesets.Osu.Scoring;
|
2017-11-29 17:46:12 +09:00
|
|
|
|
using osu.Game.Rulesets.Osu.Edit;
|
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2017-12-13 16:32:32 +01:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-02-28 16:34:47 +09:00
|
|
|
|
using osu.Game.Rulesets.Osu.Replays;
|
2018-03-01 01:32:32 +09:00
|
|
|
|
using osu.Game.Rulesets.Replays.Types;
|
2016-11-09 19:49:05 +09:00
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Osu
|
2016-11-09 19:49:05 +09:00
|
|
|
|
{
|
2016-11-14 19:20:21 +09:00
|
|
|
|
public class OsuRuleset : Ruleset
|
2016-11-09 19:49:05 +09:00
|
|
|
|
{
|
2017-08-09 13:28:29 +09:00
|
|
|
|
public override RulesetContainer CreateRulesetContainerWith(WorkingBeatmap beatmap, bool isForCurrentRuleset) => new OsuRulesetContainer(this, beatmap, isForCurrentRuleset);
|
2016-11-14 22:03:39 +09:00
|
|
|
|
|
2017-08-14 20:19:25 +09:00
|
|
|
|
public override IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new[]
|
2017-01-30 13:12:30 +09:00
|
|
|
|
{
|
2017-08-18 18:22:00 +09:00
|
|
|
|
new KeyBinding(InputKey.Z, OsuAction.LeftButton),
|
|
|
|
|
new KeyBinding(InputKey.X, OsuAction.RightButton),
|
2017-08-20 21:56:28 +09:00
|
|
|
|
new KeyBinding(InputKey.MouseLeft, OsuAction.LeftButton),
|
|
|
|
|
new KeyBinding(InputKey.MouseRight, OsuAction.RightButton),
|
2017-08-14 20:19:25 +09:00
|
|
|
|
};
|
|
|
|
|
|
2017-12-13 16:32:32 +01:00
|
|
|
|
public override IEnumerable<BeatmapStatistic> GetBeatmapStatistics(WorkingBeatmap beatmap)
|
2017-11-21 12:30:06 +09:00
|
|
|
|
{
|
2017-12-13 16:32:32 +01:00
|
|
|
|
IEnumerable<HitObject> hitObjects = beatmap.Beatmap.HitObjects;
|
2017-12-14 19:55:15 +01:00
|
|
|
|
IEnumerable<HitObject> circles = hitObjects.Where(c => !(c is IHasEndTime));
|
2017-12-13 16:32:32 +01:00
|
|
|
|
IEnumerable<HitObject> sliders = hitObjects.Where(s => s is IHasCurve);
|
2017-12-14 19:55:15 +01:00
|
|
|
|
IEnumerable<HitObject> spinners = hitObjects.Where(s => s is IHasEndTime && !(s is IHasCurve));
|
2017-12-13 16:32:32 +01:00
|
|
|
|
|
|
|
|
|
return new[]
|
2017-01-30 13:12:30 +09:00
|
|
|
|
{
|
2017-12-13 16:32:32 +01:00
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Circle Count",
|
|
|
|
|
Content = circles.Count().ToString(),
|
|
|
|
|
Icon = FontAwesome.fa_circle_o
|
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Slider Count",
|
|
|
|
|
Content = sliders.Count().ToString(),
|
|
|
|
|
Icon = FontAwesome.fa_circle
|
2017-12-14 19:55:15 +01:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Spinner Count",
|
|
|
|
|
Content = spinners.Count().ToString(),
|
|
|
|
|
Icon = FontAwesome.fa_circle
|
2017-12-13 16:32:32 +01:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-01-30 13:12:30 +09:00
|
|
|
|
|
2017-03-02 01:07:28 -04:00
|
|
|
|
public override IEnumerable<Mod> GetModsFor(ModType type)
|
2017-03-01 22:05:52 -04:00
|
|
|
|
{
|
2017-03-02 01:07:28 -04:00
|
|
|
|
switch (type)
|
2017-03-01 22:05:52 -04:00
|
|
|
|
{
|
2017-03-02 01:07:28 -04:00
|
|
|
|
case ModType.DifficultyReduction:
|
|
|
|
|
return new Mod[]
|
2017-03-01 22:05:52 -04:00
|
|
|
|
{
|
2017-03-02 01:07:28 -04:00
|
|
|
|
new OsuModEasy(),
|
|
|
|
|
new OsuModNoFail(),
|
2017-05-30 12:49:06 -04:00
|
|
|
|
new MultiMod
|
|
|
|
|
{
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModHalfTime(),
|
|
|
|
|
new OsuModDaycore(),
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-03-02 01:07:28 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case ModType.DifficultyIncrease:
|
|
|
|
|
return new Mod[]
|
2017-03-01 22:05:52 -04:00
|
|
|
|
{
|
2017-03-02 01:07:28 -04:00
|
|
|
|
new OsuModHardRock(),
|
|
|
|
|
new MultiMod
|
2017-03-01 22:05:52 -04:00
|
|
|
|
{
|
2017-03-02 01:07:28 -04:00
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModSuddenDeath(),
|
|
|
|
|
new OsuModPerfect(),
|
|
|
|
|
},
|
2017-03-01 22:05:52 -04:00
|
|
|
|
},
|
2017-03-02 01:07:28 -04:00
|
|
|
|
new MultiMod
|
2017-03-01 22:05:52 -04:00
|
|
|
|
{
|
2017-03-02 01:07:28 -04:00
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModNightcore(),
|
|
|
|
|
},
|
2017-03-01 22:05:52 -04:00
|
|
|
|
},
|
2017-03-02 01:07:28 -04:00
|
|
|
|
new OsuModHidden(),
|
|
|
|
|
new OsuModFlashlight(),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case ModType.Special:
|
|
|
|
|
return new Mod[]
|
2017-03-01 22:05:52 -04:00
|
|
|
|
{
|
2017-03-02 01:07:28 -04:00
|
|
|
|
new OsuModRelax(),
|
|
|
|
|
new OsuModAutopilot(),
|
|
|
|
|
new OsuModSpunOut(),
|
|
|
|
|
new MultiMod
|
2017-03-01 22:05:52 -04:00
|
|
|
|
{
|
2017-03-02 01:07:28 -04:00
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
2017-03-06 22:57:30 +09:00
|
|
|
|
new OsuModAutoplay(),
|
2017-03-02 01:07:28 -04:00
|
|
|
|
new ModCinema(),
|
|
|
|
|
},
|
2017-03-01 22:05:52 -04:00
|
|
|
|
},
|
2017-03-07 20:05:50 +08:00
|
|
|
|
new OsuModTarget(),
|
2017-03-02 01:07:28 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return new Mod[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-01 22:05:52 -04:00
|
|
|
|
|
2017-08-03 14:36:21 +09:00
|
|
|
|
public override Drawable CreateIcon() => new SpriteIcon { Icon = FontAwesome.fa_osu_osu_o };
|
2017-01-30 13:35:40 +09:00
|
|
|
|
|
2017-11-17 14:23:52 +09:00
|
|
|
|
public override DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap, Mod[] mods = null) => new OsuDifficultyCalculator(beatmap, mods);
|
2017-02-19 17:41:51 +01:00
|
|
|
|
|
2017-11-17 12:35:23 +09:00
|
|
|
|
public override PerformanceCalculator CreatePerformanceCalculator(Beatmap beatmap, Score score) => new OsuPerformanceCalculator(this, beatmap, score);
|
|
|
|
|
|
2017-11-29 17:46:12 +09:00
|
|
|
|
public override HitObjectComposer CreateHitObjectComposer() => new OsuHitObjectComposer(this);
|
|
|
|
|
|
2017-03-09 21:37:03 +01:00
|
|
|
|
public override string Description => "osu!";
|
2017-03-10 14:42:14 +09:00
|
|
|
|
|
2017-12-08 18:55:25 +09:00
|
|
|
|
public override string ShortName => "osu";
|
|
|
|
|
|
2017-07-11 20:25:24 +02:00
|
|
|
|
public override SettingsSubsection CreateSettings() => new OsuSettings();
|
|
|
|
|
|
2018-03-06 17:29:58 +09:00
|
|
|
|
public override int? LegacyID => 0;
|
2017-08-09 13:04:11 +09:00
|
|
|
|
|
2018-03-01 01:32:32 +09:00
|
|
|
|
public override IConvertibleReplayFrame CreateConvertibleReplayFrame() => new OsuReplayFrame();
|
2018-02-28 16:34:47 +09:00
|
|
|
|
|
2018-01-10 16:58:10 +09:00
|
|
|
|
public OsuRuleset(RulesetInfo rulesetInfo = null)
|
2017-08-09 13:04:11 +09:00
|
|
|
|
: base(rulesetInfo)
|
|
|
|
|
{
|
|
|
|
|
}
|
2016-11-14 19:20:21 +09:00
|
|
|
|
}
|
|
|
|
|
}
|