1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game/Online/Multiplayer/PlaylistItem.cs

95 lines
2.9 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-12-17 13:45:06 +08:00
2020-02-13 17:48:28 +08:00
using System;
2018-12-17 13:45:06 +08:00
using System.Linq;
using Newtonsoft.Json;
using osu.Framework.Bindables;
2018-12-17 13:45:06 +08:00
using osu.Game.Beatmaps;
using osu.Game.Online.API;
2018-12-17 13:45:06 +08:00
using osu.Game.Rulesets;
using osu.Game.Rulesets.Mods;
namespace osu.Game.Online.Multiplayer
{
2020-02-13 17:48:28 +08:00
public class PlaylistItem : IEquatable<PlaylistItem>
2018-12-17 13:45:06 +08:00
{
[JsonProperty("id")]
public int ID { get; set; }
[JsonProperty("beatmap_id")]
public int BeatmapID { get; set; }
[JsonProperty("ruleset_id")]
public int RulesetID { get; set; }
[JsonIgnore]
public readonly Bindable<BeatmapInfo> Beatmap = new Bindable<BeatmapInfo>();
2018-12-17 13:45:06 +08:00
[JsonIgnore]
public readonly Bindable<RulesetInfo> Ruleset = new Bindable<RulesetInfo>();
2018-12-17 13:45:06 +08:00
[JsonIgnore]
public readonly BindableList<Mod> AllowedMods = new BindableList<Mod>();
2018-12-17 13:45:06 +08:00
[JsonIgnore]
public readonly BindableList<Mod> RequiredMods = new BindableList<Mod>();
2018-12-17 13:45:06 +08:00
[JsonProperty("beatmap")]
private APIPlaylistBeatmap apiBeatmap { get; set; }
2018-12-17 13:45:06 +08:00
2019-12-11 13:10:35 +08:00
private APIMod[] allowedModsBacking;
2018-12-17 13:45:06 +08:00
[JsonProperty("allowed_mods")]
private APIMod[] allowedMods
{
get => AllowedMods.Select(m => new APIMod(m)).ToArray();
2019-12-11 13:10:35 +08:00
set => allowedModsBacking = value;
2018-12-17 13:45:06 +08:00
}
2019-12-11 13:10:35 +08:00
private APIMod[] requiredModsBacking;
2018-12-17 13:45:06 +08:00
[JsonProperty("required_mods")]
private APIMod[] requiredMods
{
get => RequiredMods.Select(m => new APIMod(m)).ToArray();
2019-12-11 13:10:35 +08:00
set => requiredModsBacking = value;
2018-12-17 13:45:06 +08:00
}
public PlaylistItem()
{
Beatmap.BindValueChanged(beatmap => BeatmapID = beatmap.NewValue?.OnlineBeatmapID ?? 0);
Ruleset.BindValueChanged(ruleset => RulesetID = ruleset.NewValue?.ID ?? 0);
}
2018-12-17 13:45:06 +08:00
public void MapObjects(BeatmapManager beatmaps, RulesetStore rulesets)
{
Beatmap.Value = apiBeatmap.ToBeatmap(rulesets);
Ruleset.Value = rulesets.GetRuleset(RulesetID);
2018-12-17 13:45:06 +08:00
Ruleset rulesetInstance = Ruleset.Value.CreateInstance();
2019-12-11 13:10:35 +08:00
if (allowedModsBacking != null)
2018-12-17 13:45:06 +08:00
{
AllowedMods.Clear();
AllowedMods.AddRange(allowedModsBacking.Select(m => m.ToMod(rulesetInstance)));
2018-12-17 13:45:06 +08:00
2019-12-11 13:10:35 +08:00
allowedModsBacking = null;
2018-12-17 13:45:06 +08:00
}
2019-12-11 13:10:35 +08:00
if (requiredModsBacking != null)
2018-12-17 13:45:06 +08:00
{
RequiredMods.Clear();
RequiredMods.AddRange(requiredModsBacking.Select(m => m.ToMod(rulesetInstance)));
2018-12-17 13:45:06 +08:00
2019-12-11 13:10:35 +08:00
requiredModsBacking = null;
2018-12-17 13:45:06 +08:00
}
}
public bool ShouldSerializeID() => false;
public bool ShouldSerializeapiBeatmap() => false;
2020-02-13 17:48:28 +08:00
public bool Equals(PlaylistItem other) => ID == other?.ID && BeatmapID == other.BeatmapID && RulesetID == other.RulesetID;
2018-12-17 13:45:06 +08:00
}
}