1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:07:25 +08:00
osu-lazer/osu.Game/Online/Rooms/APIPlaylistItem.cs

55 lines
1.4 KiB
C#
Raw Normal View History

2021-10-20 20:08:58 +08:00
// 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.
#nullable enable
2021-11-10 17:25:14 +08:00
using System;
2021-10-20 20:08:58 +08:00
using System.Collections.Generic;
using System.Linq;
using MessagePack;
using osu.Game.Online.API;
namespace osu.Game.Online.Rooms
2021-10-20 20:08:58 +08:00
{
2021-11-10 17:25:14 +08:00
[Serializable]
[MessagePackObject]
public class APIPlaylistItem
2021-10-20 20:08:58 +08:00
{
[Key(0)]
public long ID { get; set; }
2021-10-20 20:08:58 +08:00
[Key(1)]
public int BeatmapID { get; set; }
2021-10-20 20:08:58 +08:00
[Key(2)]
public string BeatmapChecksum { get; set; } = string.Empty;
[Key(3)]
public int RulesetID { get; set; }
2021-10-20 20:08:58 +08:00
[Key(4)]
public IEnumerable<APIMod> RequiredMods { get; set; } = Enumerable.Empty<APIMod>();
[Key(5)]
2021-10-20 20:08:58 +08:00
public IEnumerable<APIMod> AllowedMods { get; set; } = Enumerable.Empty<APIMod>();
2021-10-22 20:25:49 +08:00
[Key(6)]
public bool Expired { get; set; }
public APIPlaylistItem()
{
}
public APIPlaylistItem(PlaylistItem item)
{
ID = item.ID;
BeatmapID = item.BeatmapID;
BeatmapChecksum = item.Beatmap.Value?.MD5Hash ?? string.Empty;
RulesetID = item.RulesetID;
RequiredMods = item.RequiredMods.Select(m => new APIMod(m)).ToArray();
AllowedMods = item.AllowedMods.Select(m => new APIMod(m)).ToArray();
2021-10-22 20:25:49 +08:00
Expired = item.Expired;
}
2021-10-20 20:08:58 +08:00
}
}