// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Linq; using Newtonsoft.Json; using osu.Framework.Bindables; using osu.Game.Beatmaps; using osu.Game.Online.API; using osu.Game.Rulesets; using osu.Game.Rulesets.Mods; namespace osu.Game.Online.Rooms { public class PlaylistItem : IEquatable { [JsonProperty("id")] public long ID { get; set; } [JsonProperty("beatmap_id")] public int BeatmapID { get; set; } [JsonProperty("ruleset_id")] public int RulesetID { get; set; } /// /// Whether this is still a valid selection for the . /// [JsonProperty("expired")] public bool Expired { get; set; } [JsonIgnore] public readonly Bindable Beatmap = new Bindable(); [JsonIgnore] public readonly Bindable Ruleset = new Bindable(); [JsonIgnore] public readonly BindableList AllowedMods = new BindableList(); [JsonIgnore] public readonly BindableList RequiredMods = new BindableList(); [JsonProperty("beatmap")] private APIPlaylistBeatmap apiBeatmap { get; set; } private APIMod[] allowedModsBacking; [JsonProperty("allowed_mods")] private APIMod[] allowedMods { get => AllowedMods.Select(m => new APIMod(m)).ToArray(); set => allowedModsBacking = value; } private APIMod[] requiredModsBacking; [JsonProperty("required_mods")] private APIMod[] requiredMods { get => RequiredMods.Select(m => new APIMod(m)).ToArray(); set => requiredModsBacking = value; } public PlaylistItem() { Beatmap.BindValueChanged(beatmap => BeatmapID = beatmap.NewValue?.OnlineBeatmapID ?? 0); Ruleset.BindValueChanged(ruleset => RulesetID = ruleset.NewValue?.ID ?? 0); } public void MapObjects(BeatmapManager beatmaps, RulesetStore rulesets) { Beatmap.Value ??= apiBeatmap.ToBeatmap(rulesets); Ruleset.Value ??= rulesets.GetRuleset(RulesetID); Ruleset rulesetInstance = Ruleset.Value.CreateInstance(); if (allowedModsBacking != null) { AllowedMods.Clear(); AllowedMods.AddRange(allowedModsBacking.Select(m => m.ToMod(rulesetInstance))); allowedModsBacking = null; } if (requiredModsBacking != null) { RequiredMods.Clear(); RequiredMods.AddRange(requiredModsBacking.Select(m => m.ToMod(rulesetInstance))); requiredModsBacking = null; } } public bool ShouldSerializeID() => false; public bool ShouldSerializeapiBeatmap() => false; public bool Equals(PlaylistItem other) => ID == other?.ID && BeatmapID == other.BeatmapID && RulesetID == other.RulesetID; } }