mirror of
https://github.com/ppy/osu.git
synced 2026-05-27 10:50:11 +08:00
108 lines
3.8 KiB
C#
108 lines
3.8 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 System.Linq;
|
|
using osu.Framework.Bindables;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.Formats;
|
|
using osu.Game.Rulesets.Filter;
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
|
using osu.Game.Rulesets.Mania.Mods;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Scoring.Legacy;
|
|
using osu.Game.Screens.Select;
|
|
using osu.Game.Screens.Select.Filter;
|
|
|
|
namespace osu.Game.Rulesets.Mania
|
|
{
|
|
public class ManiaFilterCriteria : IRulesetFilterCriteria
|
|
{
|
|
private readonly HashSet<int> includedKeyCounts = Enumerable.Range(1, LegacyBeatmapDecoder.MAX_MANIA_KEY_COUNT).ToHashSet();
|
|
|
|
public bool Matches(BeatmapInfo beatmapInfo, FilterCriteria criteria)
|
|
{
|
|
int keyCount = ManiaBeatmapConverter.GetColumnCount(LegacyBeatmapConversionDifficultyInfo.FromBeatmapInfo(beatmapInfo), criteria.Mods);
|
|
|
|
return includedKeyCounts.Contains(keyCount);
|
|
}
|
|
|
|
public bool TryParseCustomKeywordCriteria(string key, Operator op, string strValues)
|
|
{
|
|
switch (key)
|
|
{
|
|
case "key":
|
|
case "keys":
|
|
{
|
|
var keyCounts = new HashSet<int>();
|
|
|
|
foreach (string strValue in strValues.Split(','))
|
|
{
|
|
if (!int.TryParse(strValue, out int keyCount))
|
|
return false;
|
|
|
|
keyCounts.Add(keyCount);
|
|
}
|
|
|
|
int? singleKeyCount = keyCounts.Count == 1 ? keyCounts.Single() : null;
|
|
|
|
switch (op)
|
|
{
|
|
case Operator.Equal:
|
|
includedKeyCounts.IntersectWith(keyCounts);
|
|
return true;
|
|
|
|
case Operator.NotEqual:
|
|
includedKeyCounts.ExceptWith(keyCounts);
|
|
return true;
|
|
|
|
case Operator.Less:
|
|
if (singleKeyCount == null) return false;
|
|
|
|
includedKeyCounts.RemoveWhere(k => k >= singleKeyCount.Value);
|
|
return true;
|
|
|
|
case Operator.LessOrEqual:
|
|
if (singleKeyCount == null) return false;
|
|
|
|
includedKeyCounts.RemoveWhere(k => k > singleKeyCount.Value);
|
|
return true;
|
|
|
|
case Operator.Greater:
|
|
if (singleKeyCount == null) return false;
|
|
|
|
includedKeyCounts.RemoveWhere(k => k <= singleKeyCount.Value);
|
|
return true;
|
|
|
|
case Operator.GreaterOrEqual:
|
|
if (singleKeyCount == null) return false;
|
|
|
|
includedKeyCounts.RemoveWhere(k => k < singleKeyCount.Value);
|
|
return true;
|
|
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public bool FilterMayChangeFromMods(ValueChangedEvent<IReadOnlyList<Mod>> mods)
|
|
{
|
|
if (includedKeyCounts.Count != LegacyBeatmapDecoder.MAX_MANIA_KEY_COUNT)
|
|
{
|
|
// Interpreting as the Mod type is required for equality comparison.
|
|
HashSet<Mod> oldSet = mods.OldValue.OfType<ManiaKeyMod>().AsEnumerable<Mod>().ToHashSet();
|
|
HashSet<Mod> newSet = mods.NewValue.OfType<ManiaKeyMod>().AsEnumerable<Mod>().ToHashSet();
|
|
|
|
if (!oldSet.SetEquals(newSet))
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|