mirror of
https://github.com/osukey/osukey.git
synced 2025-06-05 12:57:39 +09:00
Merge branch 'explicit-beatmap-markers' into explicit-search-control
This commit is contained in:
commit
a5f99ed8e6
@ -23,6 +23,7 @@ namespace osu.Game.Rulesets.Taiko.Tests
|
|||||||
[TestCase("sample-to-type-conversions")]
|
[TestCase("sample-to-type-conversions")]
|
||||||
[TestCase("slider-conversion-v6")]
|
[TestCase("slider-conversion-v6")]
|
||||||
[TestCase("slider-conversion-v14")]
|
[TestCase("slider-conversion-v14")]
|
||||||
|
[TestCase("slider-generating-drumroll-2")]
|
||||||
public void Test(string name) => base.Test(name);
|
public void Test(string name) => base.Test(name);
|
||||||
|
|
||||||
protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)
|
protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)
|
||||||
|
@ -160,7 +160,7 @@ namespace osu.Game.Rulesets.Taiko.Beatmaps
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool shouldConvertSliderToHits(HitObject obj, IBeatmap beatmap, IHasDistance distanceData, out double taikoDuration, out double tickSpacing)
|
private bool shouldConvertSliderToHits(HitObject obj, IBeatmap beatmap, IHasDistance distanceData, out int taikoDuration, out double tickSpacing)
|
||||||
{
|
{
|
||||||
// DO NOT CHANGE OR REFACTOR ANYTHING IN HERE WITHOUT TESTING AGAINST _ALL_ BEATMAPS.
|
// DO NOT CHANGE OR REFACTOR ANYTHING IN HERE WITHOUT TESTING AGAINST _ALL_ BEATMAPS.
|
||||||
// Some of these calculations look redundant, but they are not - extremely small floating point errors are introduced to maintain 1:1 compatibility with stable.
|
// Some of these calculations look redundant, but they are not - extremely small floating point errors are introduced to maintain 1:1 compatibility with stable.
|
||||||
@ -185,7 +185,7 @@ namespace osu.Game.Rulesets.Taiko.Beatmaps
|
|||||||
|
|
||||||
// The velocity and duration of the taiko hit object - calculated as the velocity of a drum roll.
|
// The velocity and duration of the taiko hit object - calculated as the velocity of a drum roll.
|
||||||
double taikoVelocity = sliderScoringPointDistance * beatmap.BeatmapInfo.BaseDifficulty.SliderTickRate;
|
double taikoVelocity = sliderScoringPointDistance * beatmap.BeatmapInfo.BaseDifficulty.SliderTickRate;
|
||||||
taikoDuration = distance / taikoVelocity * beatLength;
|
taikoDuration = (int)(distance / taikoVelocity * beatLength);
|
||||||
|
|
||||||
if (isForCurrentRuleset)
|
if (isForCurrentRuleset)
|
||||||
{
|
{
|
||||||
@ -200,7 +200,7 @@ namespace osu.Game.Rulesets.Taiko.Beatmaps
|
|||||||
beatLength = timingPoint.BeatLength;
|
beatLength = timingPoint.BeatLength;
|
||||||
|
|
||||||
// If the drum roll is to be split into hit circles, assume the ticks are 1/8 spaced within the duration of one beat
|
// If the drum roll is to be split into hit circles, assume the ticks are 1/8 spaced within the duration of one beat
|
||||||
tickSpacing = Math.Min(beatLength / beatmap.BeatmapInfo.BaseDifficulty.SliderTickRate, taikoDuration / spans);
|
tickSpacing = Math.Min(beatLength / beatmap.BeatmapInfo.BaseDifficulty.SliderTickRate, (double)taikoDuration / spans);
|
||||||
|
|
||||||
return tickSpacing > 0
|
return tickSpacing > 0
|
||||||
&& distance / osuVelocity * 1000 < 2 * beatLength;
|
&& distance / osuVelocity * 1000 < 2 * beatLength;
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
{
|
{
|
||||||
"Mappings": [{
|
"Mappings": [
|
||||||
|
{
|
||||||
"StartTime": 2000,
|
"StartTime": 2000,
|
||||||
"Objects": [{
|
"Objects": [
|
||||||
|
{
|
||||||
"StartTime": 2000,
|
"StartTime": 2000,
|
||||||
"EndTime": 2000,
|
"EndTime": 2000,
|
||||||
"IsRim": false,
|
"IsRim": false,
|
||||||
@ -23,7 +25,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"StartTime": 4000,
|
"StartTime": 4000,
|
||||||
"Objects": [{
|
"Objects": [
|
||||||
|
{
|
||||||
"StartTime": 4000,
|
"StartTime": 4000,
|
||||||
"EndTime": 4000,
|
"EndTime": 4000,
|
||||||
"IsRim": false,
|
"IsRim": false,
|
||||||
@ -45,7 +48,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"StartTime": 6000,
|
"StartTime": 6000,
|
||||||
"Objects": [{
|
"Objects": [
|
||||||
|
{
|
||||||
"StartTime": 6000,
|
"StartTime": 6000,
|
||||||
"EndTime": 6000,
|
"EndTime": 6000,
|
||||||
"IsRim": true,
|
"IsRim": true,
|
||||||
@ -76,300 +80,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"StartTime": 8000,
|
"StartTime": 8000,
|
||||||
"Objects": [{
|
"Objects": [
|
||||||
|
{
|
||||||
"StartTime": 8000,
|
"StartTime": 8000,
|
||||||
"EndTime": 8000,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8026,
|
|
||||||
"EndTime": 8026,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8053,
|
|
||||||
"EndTime": 8053,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8080,
|
|
||||||
"EndTime": 8080,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8107,
|
|
||||||
"EndTime": 8107,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8133,
|
|
||||||
"EndTime": 8133,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8160,
|
|
||||||
"EndTime": 8160,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8187,
|
|
||||||
"EndTime": 8187,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8214,
|
|
||||||
"EndTime": 8214,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8241,
|
|
||||||
"EndTime": 8241,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8267,
|
|
||||||
"EndTime": 8267,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8294,
|
|
||||||
"EndTime": 8294,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8321,
|
|
||||||
"EndTime": 8321,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8348,
|
|
||||||
"EndTime": 8348,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8374,
|
|
||||||
"EndTime": 8374,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8401,
|
|
||||||
"EndTime": 8401,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8428,
|
|
||||||
"EndTime": 8428,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8455,
|
|
||||||
"EndTime": 8455,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8482,
|
|
||||||
"EndTime": 8482,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8508,
|
|
||||||
"EndTime": 8508,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8535,
|
|
||||||
"EndTime": 8535,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8562,
|
|
||||||
"EndTime": 8562,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8589,
|
|
||||||
"EndTime": 8589,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8615,
|
|
||||||
"EndTime": 8615,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8642,
|
|
||||||
"EndTime": 8642,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8669,
|
|
||||||
"EndTime": 8669,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8696,
|
|
||||||
"EndTime": 8696,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8723,
|
|
||||||
"EndTime": 8723,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8749,
|
|
||||||
"EndTime": 8749,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8776,
|
|
||||||
"EndTime": 8776,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8803,
|
|
||||||
"EndTime": 8803,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8830,
|
|
||||||
"EndTime": 8830,
|
|
||||||
"IsRim": false,
|
|
||||||
"IsCentre": true,
|
|
||||||
"IsDrumRoll": false,
|
|
||||||
"IsSwell": false,
|
|
||||||
"IsStrong": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"StartTime": 8857,
|
|
||||||
"EndTime": 8857,
|
"EndTime": 8857,
|
||||||
"IsRim": false,
|
"IsRim": false,
|
||||||
"IsCentre": true,
|
"IsCentre": false,
|
||||||
"IsDrumRoll": false,
|
"IsDrumRoll": true,
|
||||||
"IsSwell": false,
|
"IsSwell": false,
|
||||||
"IsStrong": false
|
"IsStrong": false
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"Mappings": [
|
||||||
|
{
|
||||||
|
"StartTime": 51532,
|
||||||
|
"Objects": [
|
||||||
|
{
|
||||||
|
"StartTime": 51532,
|
||||||
|
"EndTime": 52301,
|
||||||
|
"IsRim": false,
|
||||||
|
"IsCentre": false,
|
||||||
|
"IsDrumRoll": true,
|
||||||
|
"IsSwell": false,
|
||||||
|
"IsStrong": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
osu file format v14
|
||||||
|
|
||||||
|
[General]
|
||||||
|
Mode: 0
|
||||||
|
|
||||||
|
[Difficulty]
|
||||||
|
HPDrainRate:2
|
||||||
|
CircleSize:3.2
|
||||||
|
OverallDifficulty:2
|
||||||
|
ApproachRate:3
|
||||||
|
SliderMultiplier:0.999999999999999
|
||||||
|
SliderTickRate:1
|
||||||
|
|
||||||
|
[TimingPoints]
|
||||||
|
763,384.615384615385,4,2,0,70,1,0
|
||||||
|
49993,-90.9090909090909,4,2,0,75,0,1
|
||||||
|
|
||||||
|
[HitObjects]
|
||||||
|
51,245,51532,2,0,P|18:150|17:122,2,110.000003356934,0|8|0,0:0|0:0|0:0,0:0:0:0:
|
@ -222,6 +222,15 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
|||||||
AddAssert("download buttons shown", () => playlist.ChildrenOfType<BeatmapDownloadTrackingComposite>().All(d => d.IsPresent));
|
AddAssert("download buttons shown", () => playlist.ChildrenOfType<BeatmapDownloadTrackingComposite>().All(d => d.IsPresent));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestExplicitBeatmapItem()
|
||||||
|
{
|
||||||
|
var beatmap = new TestBeatmap(new OsuRuleset().RulesetInfo).BeatmapInfo;
|
||||||
|
beatmap.BeatmapSet.OnlineInfo.HasExplicitContent = true;
|
||||||
|
|
||||||
|
createPlaylist(beatmap);
|
||||||
|
}
|
||||||
|
|
||||||
private void moveToItem(int index, Vector2? offset = null)
|
private void moveToItem(int index, Vector2? offset = null)
|
||||||
=> AddStep($"move mouse to item {index}", () => InputManager.MoveMouseTo(playlist.ChildrenOfType<OsuRearrangeableListItem<PlaylistItem>>().ElementAt(index), offset));
|
=> AddStep($"move mouse to item {index}", () => InputManager.MoveMouseTo(playlist.ChildrenOfType<OsuRearrangeableListItem<PlaylistItem>>().ElementAt(index), offset));
|
||||||
|
|
||||||
|
@ -235,6 +235,17 @@ namespace osu.Game.Tests.Visual.Online
|
|||||||
AddAssert("left-most beatmap selected", () => overlay.Header.Picker.Difficulties.First().State == BeatmapPicker.DifficultySelectorState.Selected);
|
AddAssert("left-most beatmap selected", () => overlay.Header.Picker.Difficulties.First().State == BeatmapPicker.DifficultySelectorState.Selected);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestExplicitBeatmap()
|
||||||
|
{
|
||||||
|
AddStep("show explicit map", () =>
|
||||||
|
{
|
||||||
|
var beatmapSet = CreateBeatmap(Ruleset.Value).BeatmapInfo.BeatmapSet;
|
||||||
|
beatmapSet.OnlineInfo.HasExplicitContent = true;
|
||||||
|
overlay.ShowBeatmapSet(beatmapSet);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestHide()
|
public void TestHide()
|
||||||
{
|
{
|
||||||
|
@ -99,13 +99,16 @@ namespace osu.Game.Tests.Visual.Online
|
|||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(RulesetStore rulesets)
|
private void load(RulesetStore rulesets)
|
||||||
{
|
{
|
||||||
var normal = CreateWorkingBeatmap(Ruleset.Value).BeatmapSetInfo;
|
var normal = CreateBeatmap(Ruleset.Value).BeatmapInfo.BeatmapSet;
|
||||||
normal.OnlineInfo.HasVideo = true;
|
normal.OnlineInfo.HasVideo = true;
|
||||||
normal.OnlineInfo.HasStoryboard = true;
|
normal.OnlineInfo.HasStoryboard = true;
|
||||||
|
|
||||||
var undownloadable = getUndownloadableBeatmapSet();
|
var undownloadable = getUndownloadableBeatmapSet();
|
||||||
var manyDifficulties = getManyDifficultiesBeatmapSet(rulesets);
|
var manyDifficulties = getManyDifficultiesBeatmapSet(rulesets);
|
||||||
|
|
||||||
|
var explicitMap = CreateBeatmap(Ruleset.Value).BeatmapInfo.BeatmapSet;
|
||||||
|
explicitMap.OnlineInfo.HasExplicitContent = true;
|
||||||
|
|
||||||
Child = new BasicScrollContainer
|
Child = new BasicScrollContainer
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
@ -121,9 +124,11 @@ namespace osu.Game.Tests.Visual.Online
|
|||||||
new GridBeatmapPanel(normal),
|
new GridBeatmapPanel(normal),
|
||||||
new GridBeatmapPanel(undownloadable),
|
new GridBeatmapPanel(undownloadable),
|
||||||
new GridBeatmapPanel(manyDifficulties),
|
new GridBeatmapPanel(manyDifficulties),
|
||||||
|
new GridBeatmapPanel(explicitMap),
|
||||||
new ListBeatmapPanel(normal),
|
new ListBeatmapPanel(normal),
|
||||||
new ListBeatmapPanel(undownloadable),
|
new ListBeatmapPanel(undownloadable),
|
||||||
new ListBeatmapPanel(manyDifficulties),
|
new ListBeatmapPanel(manyDifficulties),
|
||||||
|
new ListBeatmapPanel(explicitMap)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -31,6 +31,11 @@ namespace osu.Game.Beatmaps
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public BeatmapSetOnlineStatus Status { get; set; }
|
public BeatmapSetOnlineStatus Status { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether or not this beatmap set has explicit content.
|
||||||
|
/// </summary>
|
||||||
|
public bool HasExplicitContent { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether or not this beatmap set has a background video.
|
/// Whether or not this beatmap set has a background video.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -164,12 +164,13 @@ namespace osu.Game.Beatmaps.Formats
|
|||||||
/// Legacy BPM multiplier that introduces floating-point errors for rulesets that depend on it.
|
/// Legacy BPM multiplier that introduces floating-point errors for rulesets that depend on it.
|
||||||
/// DO NOT USE THIS UNLESS 100% SURE.
|
/// DO NOT USE THIS UNLESS 100% SURE.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public float BpmMultiplier { get; private set; }
|
public double BpmMultiplier { get; private set; }
|
||||||
|
|
||||||
public LegacyDifficultyControlPoint(double beatLength)
|
public LegacyDifficultyControlPoint(double beatLength)
|
||||||
: this()
|
: this()
|
||||||
{
|
{
|
||||||
BpmMultiplier = beatLength < 0 ? Math.Clamp((float)-beatLength, 10, 10000) / 100f : 1;
|
// Note: In stable, the division occurs on floats, but with compiler optimisations turned on actually seems to occur on doubles via some .NET black magic (possibly inlining?).
|
||||||
|
BpmMultiplier = beatLength < 0 ? Math.Clamp((float)-beatLength, 10, 10000) / 100.0 : 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public LegacyDifficultyControlPoint()
|
public LegacyDifficultyControlPoint()
|
||||||
|
@ -42,6 +42,9 @@ namespace osu.Game.Online.API.Requests.Responses
|
|||||||
[JsonProperty(@"bpm")]
|
[JsonProperty(@"bpm")]
|
||||||
private double bpm { get; set; }
|
private double bpm { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty(@"nsfw")]
|
||||||
|
private bool hasExplicitContent { get; set; }
|
||||||
|
|
||||||
[JsonProperty(@"video")]
|
[JsonProperty(@"video")]
|
||||||
private bool hasVideo { get; set; }
|
private bool hasVideo { get; set; }
|
||||||
|
|
||||||
@ -94,6 +97,7 @@ namespace osu.Game.Online.API.Requests.Responses
|
|||||||
FavouriteCount = favouriteCount,
|
FavouriteCount = favouriteCount,
|
||||||
BPM = bpm,
|
BPM = bpm,
|
||||||
Status = Status,
|
Status = Status,
|
||||||
|
HasExplicitContent = hasExplicitContent,
|
||||||
HasVideo = hasVideo,
|
HasVideo = hasVideo,
|
||||||
HasStoryboard = hasStoryboard,
|
HasStoryboard = hasStoryboard,
|
||||||
Submitted = submitted,
|
Submitted = submitted,
|
||||||
|
@ -14,6 +14,7 @@ using osu.Game.Beatmaps.Drawables;
|
|||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
using osu.Game.Graphics.Containers;
|
using osu.Game.Graphics.Containers;
|
||||||
using osu.Game.Graphics.Sprites;
|
using osu.Game.Graphics.Sprites;
|
||||||
|
using osu.Game.Overlays.BeatmapSet;
|
||||||
using osuTK;
|
using osuTK;
|
||||||
using osuTK.Graphics;
|
using osuTK.Graphics;
|
||||||
|
|
||||||
@ -24,7 +25,7 @@ namespace osu.Game.Overlays.BeatmapListing.Panels
|
|||||||
private const float horizontal_padding = 10;
|
private const float horizontal_padding = 10;
|
||||||
private const float vertical_padding = 5;
|
private const float vertical_padding = 5;
|
||||||
|
|
||||||
private FillFlowContainer bottomPanel, statusContainer;
|
private FillFlowContainer bottomPanel, statusContainer, titleContainer;
|
||||||
private PlayButton playButton;
|
private PlayButton playButton;
|
||||||
private Box progressBar;
|
private Box progressBar;
|
||||||
|
|
||||||
@ -73,12 +74,20 @@ namespace osu.Game.Overlays.BeatmapListing.Panels
|
|||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
Padding = new MarginPadding { Left = horizontal_padding, Right = horizontal_padding },
|
Padding = new MarginPadding { Left = horizontal_padding, Right = horizontal_padding },
|
||||||
Direction = FillDirection.Vertical,
|
Direction = FillDirection.Vertical,
|
||||||
Children = new[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new OsuSpriteText
|
titleContainer = new FillFlowContainer
|
||||||
{
|
{
|
||||||
Text = new LocalisedString((SetInfo.Metadata.TitleUnicode, SetInfo.Metadata.Title)),
|
AutoSizeAxes = Axes.Both,
|
||||||
Font = OsuFont.GetFont(size: 18, weight: FontWeight.Bold, italics: true)
|
Direction = FillDirection.Horizontal,
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
new OsuSpriteText
|
||||||
|
{
|
||||||
|
Text = new LocalisedString((SetInfo.Metadata.TitleUnicode, SetInfo.Metadata.Title)),
|
||||||
|
Font = OsuFont.GetFont(size: 18, weight: FontWeight.Bold, italics: true)
|
||||||
|
},
|
||||||
|
}
|
||||||
},
|
},
|
||||||
new OsuSpriteText
|
new OsuSpriteText
|
||||||
{
|
{
|
||||||
@ -194,6 +203,16 @@ namespace osu.Game.Overlays.BeatmapListing.Panels
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (SetInfo.OnlineInfo?.HasExplicitContent ?? false)
|
||||||
|
{
|
||||||
|
titleContainer.Add(new ExplicitBeatmapPill
|
||||||
|
{
|
||||||
|
Anchor = Anchor.CentreLeft,
|
||||||
|
Origin = Anchor.CentreLeft,
|
||||||
|
Margin = new MarginPadding { Left = 10f, Top = 2f },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (SetInfo.OnlineInfo?.HasVideo ?? false)
|
if (SetInfo.OnlineInfo?.HasVideo ?? false)
|
||||||
{
|
{
|
||||||
statusContainer.Add(new IconPill(FontAwesome.Solid.Film));
|
statusContainer.Add(new IconPill(FontAwesome.Solid.Film));
|
||||||
|
@ -14,6 +14,7 @@ using osu.Game.Beatmaps.Drawables;
|
|||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
using osu.Game.Graphics.Containers;
|
using osu.Game.Graphics.Containers;
|
||||||
using osu.Game.Graphics.Sprites;
|
using osu.Game.Graphics.Sprites;
|
||||||
|
using osu.Game.Overlays.BeatmapSet;
|
||||||
using osuTK;
|
using osuTK;
|
||||||
using osuTK.Graphics;
|
using osuTK.Graphics;
|
||||||
|
|
||||||
@ -26,7 +27,7 @@ namespace osu.Game.Overlays.BeatmapListing.Panels
|
|||||||
private const float vertical_padding = 5;
|
private const float vertical_padding = 5;
|
||||||
private const float height = 70;
|
private const float height = 70;
|
||||||
|
|
||||||
private FillFlowContainer statusContainer;
|
private FillFlowContainer statusContainer, titleContainer;
|
||||||
protected BeatmapPanelDownloadButton DownloadButton;
|
protected BeatmapPanelDownloadButton DownloadButton;
|
||||||
private PlayButton playButton;
|
private PlayButton playButton;
|
||||||
private Box progressBar;
|
private Box progressBar;
|
||||||
@ -98,10 +99,18 @@ namespace osu.Game.Overlays.BeatmapListing.Panels
|
|||||||
Direction = FillDirection.Vertical,
|
Direction = FillDirection.Vertical,
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new OsuSpriteText
|
titleContainer = new FillFlowContainer
|
||||||
{
|
{
|
||||||
Text = new LocalisedString((SetInfo.Metadata.TitleUnicode, SetInfo.Metadata.Title)),
|
AutoSizeAxes = Axes.Both,
|
||||||
Font = OsuFont.GetFont(size: 18, weight: FontWeight.Bold, italics: true)
|
Direction = FillDirection.Horizontal,
|
||||||
|
Children = new[]
|
||||||
|
{
|
||||||
|
new OsuSpriteText
|
||||||
|
{
|
||||||
|
Text = new LocalisedString((SetInfo.Metadata.TitleUnicode, SetInfo.Metadata.Title)),
|
||||||
|
Font = OsuFont.GetFont(size: 18, weight: FontWeight.Bold, italics: true)
|
||||||
|
},
|
||||||
|
}
|
||||||
},
|
},
|
||||||
new OsuSpriteText
|
new OsuSpriteText
|
||||||
{
|
{
|
||||||
@ -208,6 +217,16 @@ namespace osu.Game.Overlays.BeatmapListing.Panels
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (SetInfo.OnlineInfo?.HasExplicitContent ?? false)
|
||||||
|
{
|
||||||
|
titleContainer.Add(new ExplicitBeatmapPill
|
||||||
|
{
|
||||||
|
Anchor = Anchor.CentreLeft,
|
||||||
|
Origin = Anchor.CentreLeft,
|
||||||
|
Margin = new MarginPadding { Left = 10f, Top = 2f },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (SetInfo.OnlineInfo?.HasVideo ?? false)
|
if (SetInfo.OnlineInfo?.HasVideo ?? false)
|
||||||
{
|
{
|
||||||
statusContainer.Add(new IconPill(FontAwesome.Solid.Film) { IconSize = new Vector2(20) });
|
statusContainer.Add(new IconPill(FontAwesome.Solid.Film) { IconSize = new Vector2(20) });
|
||||||
|
49
osu.Game/Overlays/BeatmapSet/ExplicitBeatmapPill.cs
Normal file
49
osu.Game/Overlays/BeatmapSet/ExplicitBeatmapPill.cs
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
// 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 osu.Framework.Allocation;
|
||||||
|
using osu.Framework.Graphics;
|
||||||
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Framework.Graphics.Shapes;
|
||||||
|
using osu.Game.Graphics;
|
||||||
|
using osu.Game.Graphics.Sprites;
|
||||||
|
using osuTK;
|
||||||
|
using osuTK.Graphics;
|
||||||
|
|
||||||
|
namespace osu.Game.Overlays.BeatmapSet
|
||||||
|
{
|
||||||
|
public class ExplicitBeatmapPill : CompositeDrawable
|
||||||
|
{
|
||||||
|
public ExplicitBeatmapPill()
|
||||||
|
{
|
||||||
|
AutoSizeAxes = Axes.Both;
|
||||||
|
}
|
||||||
|
|
||||||
|
[BackgroundDependencyLoader(true)]
|
||||||
|
private void load(OsuColour colours, OverlayColourProvider colourProvider)
|
||||||
|
{
|
||||||
|
InternalChild = new CircularContainer
|
||||||
|
{
|
||||||
|
Masking = true,
|
||||||
|
AutoSizeAxes = Axes.Both,
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
new Box
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Colour = colourProvider?.Background5 ?? colours.Gray2,
|
||||||
|
},
|
||||||
|
new OsuSpriteText
|
||||||
|
{
|
||||||
|
Margin = new MarginPadding { Horizontal = 10f, Vertical = 2f },
|
||||||
|
Text = "EXPLICIT",
|
||||||
|
Font = OsuFont.GetFont(size: 10, weight: FontWeight.Bold),
|
||||||
|
// todo: this is --hsl-orange-2 from the new palette in https://github.com/ppy/osu-web/blob/8ceb46f/resources/assets/less/colors.less#L128-L151,
|
||||||
|
// should probably take the whole palette from there onto OsuColour for a nicer look in code.
|
||||||
|
Colour = Color4.FromHsl(new Vector4(45f / 360, 0.8f, 0.6f, 1f)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -34,6 +34,7 @@ namespace osu.Game.Overlays.BeatmapSet
|
|||||||
private readonly Box coverGradient;
|
private readonly Box coverGradient;
|
||||||
private readonly OsuSpriteText title, artist;
|
private readonly OsuSpriteText title, artist;
|
||||||
private readonly AuthorInfo author;
|
private readonly AuthorInfo author;
|
||||||
|
private readonly ExplicitBeatmapPill explicitPill;
|
||||||
private readonly FillFlowContainer downloadButtonsContainer;
|
private readonly FillFlowContainer downloadButtonsContainer;
|
||||||
private readonly BeatmapAvailability beatmapAvailability;
|
private readonly BeatmapAvailability beatmapAvailability;
|
||||||
private readonly BeatmapSetOnlineStatusPill onlineStatusPill;
|
private readonly BeatmapSetOnlineStatusPill onlineStatusPill;
|
||||||
@ -146,6 +147,13 @@ namespace osu.Game.Overlays.BeatmapSet
|
|||||||
Origin = Anchor.BottomLeft,
|
Origin = Anchor.BottomLeft,
|
||||||
Margin = new MarginPadding { Left = 3, Bottom = 4 }, // To better lineup with the font
|
Margin = new MarginPadding { Left = 3, Bottom = 4 }, // To better lineup with the font
|
||||||
},
|
},
|
||||||
|
explicitPill = new ExplicitBeatmapPill
|
||||||
|
{
|
||||||
|
Alpha = 0f,
|
||||||
|
Anchor = Anchor.CentreLeft,
|
||||||
|
Origin = Anchor.CentreLeft,
|
||||||
|
Margin = new MarginPadding { Left = 10f, Top = 4 },
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
artist = new OsuSpriteText
|
artist = new OsuSpriteText
|
||||||
@ -253,6 +261,8 @@ namespace osu.Game.Overlays.BeatmapSet
|
|||||||
title.Text = setInfo.NewValue.Metadata.Title ?? string.Empty;
|
title.Text = setInfo.NewValue.Metadata.Title ?? string.Empty;
|
||||||
artist.Text = setInfo.NewValue.Metadata.Artist ?? string.Empty;
|
artist.Text = setInfo.NewValue.Metadata.Artist ?? string.Empty;
|
||||||
|
|
||||||
|
explicitPill.Alpha = setInfo.NewValue.OnlineInfo.HasExplicitContent ? 1 : 0;
|
||||||
|
|
||||||
onlineStatusPill.FadeIn(500, Easing.OutQuint);
|
onlineStatusPill.FadeIn(500, Easing.OutQuint);
|
||||||
onlineStatusPill.Status = setInfo.NewValue.OnlineInfo.Status;
|
onlineStatusPill.Status = setInfo.NewValue.OnlineInfo.Status;
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ using osu.Game.Online;
|
|||||||
using osu.Game.Online.Chat;
|
using osu.Game.Online.Chat;
|
||||||
using osu.Game.Online.Rooms;
|
using osu.Game.Online.Rooms;
|
||||||
using osu.Game.Overlays.BeatmapListing.Panels;
|
using osu.Game.Overlays.BeatmapListing.Panels;
|
||||||
|
using osu.Game.Overlays.BeatmapSet;
|
||||||
using osu.Game.Rulesets;
|
using osu.Game.Rulesets;
|
||||||
using osu.Game.Rulesets.Mods;
|
using osu.Game.Rulesets.Mods;
|
||||||
using osu.Game.Screens.Play.HUD;
|
using osu.Game.Screens.Play.HUD;
|
||||||
@ -41,6 +42,7 @@ namespace osu.Game.Screens.OnlinePlay
|
|||||||
private Container difficultyIconContainer;
|
private Container difficultyIconContainer;
|
||||||
private LinkFlowContainer beatmapText;
|
private LinkFlowContainer beatmapText;
|
||||||
private LinkFlowContainer authorText;
|
private LinkFlowContainer authorText;
|
||||||
|
private ExplicitBeatmapPill explicitPill;
|
||||||
private ModDisplay modDisplay;
|
private ModDisplay modDisplay;
|
||||||
|
|
||||||
private readonly Bindable<BeatmapInfo> beatmap = new Bindable<BeatmapInfo>();
|
private readonly Bindable<BeatmapInfo> beatmap = new Bindable<BeatmapInfo>();
|
||||||
@ -116,6 +118,9 @@ namespace osu.Game.Screens.OnlinePlay
|
|||||||
authorText.AddUserLink(Item.Beatmap.Value?.Metadata.Author);
|
authorText.AddUserLink(Item.Beatmap.Value?.Metadata.Author);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool hasExplicitContent = Item.Beatmap.Value.BeatmapSet.OnlineInfo?.HasExplicitContent == true;
|
||||||
|
explicitPill.Alpha = hasExplicitContent ? 1 : 0;
|
||||||
|
|
||||||
modDisplay.Current.Value = requiredMods.ToArray();
|
modDisplay.Current.Value = requiredMods.ToArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -165,18 +170,37 @@ namespace osu.Game.Screens.OnlinePlay
|
|||||||
{
|
{
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
Direction = FillDirection.Horizontal,
|
Direction = FillDirection.Horizontal,
|
||||||
Spacing = new Vector2(15, 0),
|
Spacing = new Vector2(10f, 0),
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
authorText = new LinkFlowContainer { AutoSizeAxes = Axes.Both },
|
new FillFlowContainer
|
||||||
modDisplay = new ModDisplay
|
{
|
||||||
|
AutoSizeAxes = Axes.Both,
|
||||||
|
Direction = FillDirection.Horizontal,
|
||||||
|
Spacing = new Vector2(10f, 0),
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
authorText = new LinkFlowContainer { AutoSizeAxes = Axes.Both },
|
||||||
|
explicitPill = new ExplicitBeatmapPill
|
||||||
|
{
|
||||||
|
Alpha = 0f,
|
||||||
|
Anchor = Anchor.CentreLeft,
|
||||||
|
Origin = Anchor.CentreLeft,
|
||||||
|
Margin = new MarginPadding { Top = 3f },
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
new Container
|
||||||
{
|
{
|
||||||
Anchor = Anchor.CentreLeft,
|
Anchor = Anchor.CentreLeft,
|
||||||
Origin = Anchor.CentreLeft,
|
Origin = Anchor.CentreLeft,
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
Scale = new Vector2(0.4f),
|
Child = modDisplay = new ModDisplay
|
||||||
DisplayUnrankedText = false,
|
{
|
||||||
ExpansionMode = ExpansionMode.AlwaysExpanded
|
Scale = new Vector2(0.4f),
|
||||||
|
DisplayUnrankedText = false,
|
||||||
|
ExpansionMode = ExpansionMode.AlwaysExpanded
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -241,8 +241,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
|||||||
|
|
||||||
void endOperation()
|
void endOperation()
|
||||||
{
|
{
|
||||||
Debug.Assert(readyClickOperation != null);
|
readyClickOperation?.Dispose();
|
||||||
readyClickOperation.Dispose();
|
|
||||||
readyClickOperation = null;
|
readyClickOperation = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -255,9 +254,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
|||||||
|
|
||||||
StartPlay(() => new MultiplayerPlayer(SelectedItem.Value, userIds));
|
StartPlay(() => new MultiplayerPlayer(SelectedItem.Value, userIds));
|
||||||
|
|
||||||
Debug.Assert(readyClickOperation != null);
|
readyClickOperation?.Dispose();
|
||||||
|
|
||||||
readyClickOperation.Dispose();
|
|
||||||
readyClickOperation = null;
|
readyClickOperation = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ namespace osu.Game.Tests.Beatmaps
|
|||||||
BeatmapInfo.BeatmapSet.Files = new List<BeatmapSetFileInfo>();
|
BeatmapInfo.BeatmapSet.Files = new List<BeatmapSetFileInfo>();
|
||||||
BeatmapInfo.BeatmapSet.Beatmaps = new List<BeatmapInfo> { BeatmapInfo };
|
BeatmapInfo.BeatmapSet.Beatmaps = new List<BeatmapInfo> { BeatmapInfo };
|
||||||
BeatmapInfo.Length = 75000;
|
BeatmapInfo.Length = 75000;
|
||||||
|
BeatmapInfo.OnlineInfo = new BeatmapOnlineInfo();
|
||||||
BeatmapInfo.BeatmapSet.OnlineInfo = new BeatmapSetOnlineInfo
|
BeatmapInfo.BeatmapSet.OnlineInfo = new BeatmapSetOnlineInfo
|
||||||
{
|
{
|
||||||
Status = BeatmapSetOnlineStatus.Ranked,
|
Status = BeatmapSetOnlineStatus.Ranked,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user