2020-12-22 14:52:47 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-22 14:52:47 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Specialized;
|
2021-11-16 16:01:37 +08:00
|
|
|
using System.Linq;
|
2020-12-22 14:52:47 +08:00
|
|
|
using Humanizer;
|
2021-12-10 12:45:29 +08:00
|
|
|
using Humanizer.Localisation;
|
2020-12-22 14:52:47 +08:00
|
|
|
using osu.Framework.Allocation;
|
2021-12-10 12:45:29 +08:00
|
|
|
using osu.Framework.Bindables;
|
2020-12-22 14:52:47 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2021-02-22 16:14:00 +08:00
|
|
|
using osu.Framework.Localisation;
|
2020-12-22 14:52:47 +08:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2021-12-10 12:45:29 +08:00
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-22 14:52:47 +08:00
|
|
|
using osu.Game.Overlays;
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Match.Components;
|
2020-12-22 14:52:47 +08:00
|
|
|
using osuTK;
|
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Playlists
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-08-17 16:14:21 +08:00
|
|
|
public class PlaylistsRoomSettingsOverlay : RoomSettingsOverlay
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
|
|
|
public Action EditPlaylist;
|
|
|
|
|
2021-08-05 13:00:35 +08:00
|
|
|
private MatchSettings settings;
|
|
|
|
|
|
|
|
protected override OsuButton SubmitButton => settings.ApplyButton;
|
|
|
|
|
2021-08-05 13:14:07 +08:00
|
|
|
protected override bool IsLoading => settings.IsLoading; // should probably be replaced with an OngoingOperationTracker.
|
|
|
|
|
2021-08-19 15:40:27 +08:00
|
|
|
public PlaylistsRoomSettingsOverlay(Room room)
|
|
|
|
: base(room)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-08-05 13:21:51 +08:00
|
|
|
protected override void SelectBeatmap() => settings.SelectBeatmap();
|
2021-08-05 13:00:35 +08:00
|
|
|
|
2021-08-19 15:40:27 +08:00
|
|
|
protected override OnlinePlayComposite CreateSettings(Room room) => settings = new MatchSettings(room)
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
RelativePositionAxes = Axes.Y,
|
|
|
|
EditPlaylist = () => EditPlaylist?.Invoke()
|
|
|
|
};
|
2020-12-22 14:52:47 +08:00
|
|
|
|
2020-12-26 00:12:33 +08:00
|
|
|
protected class MatchSettings : OnlinePlayComposite
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
|
|
|
private const float disabled_alpha = 0.2f;
|
|
|
|
|
|
|
|
public Action EditPlaylist;
|
|
|
|
|
2021-02-02 16:57:23 +08:00
|
|
|
public OsuTextBox NameField, MaxParticipantsField, MaxAttemptsField;
|
2020-12-22 14:52:47 +08:00
|
|
|
public OsuDropdown<TimeSpan> DurationField;
|
|
|
|
public RoomAvailabilityPicker AvailabilityPicker;
|
|
|
|
public TriangleButton ApplyButton;
|
|
|
|
|
2021-08-05 13:14:07 +08:00
|
|
|
public bool IsLoading => loadingLayer.State.Value == Visibility.Visible;
|
|
|
|
|
2020-12-22 14:52:47 +08:00
|
|
|
public OsuSpriteText ErrorText;
|
|
|
|
|
|
|
|
private LoadingLayer loadingLayer;
|
|
|
|
private DrawableRoomPlaylist playlist;
|
|
|
|
private OsuSpriteText playlistLength;
|
|
|
|
|
2021-08-05 13:21:51 +08:00
|
|
|
private PurpleTriangleButton editPlaylistButton;
|
|
|
|
|
2020-12-22 14:52:47 +08:00
|
|
|
[Resolved(CanBeNull = true)]
|
|
|
|
private IRoomManager manager { get; set; }
|
|
|
|
|
2021-12-10 12:45:29 +08:00
|
|
|
[Resolved]
|
|
|
|
private IAPIProvider api { get; set; }
|
|
|
|
|
2021-08-19 15:40:27 +08:00
|
|
|
private readonly Room room;
|
|
|
|
|
|
|
|
public MatchSettings(Room room)
|
|
|
|
{
|
|
|
|
this.room = room;
|
|
|
|
}
|
2020-12-22 14:52:47 +08:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2021-10-14 04:50:19 +08:00
|
|
|
private void load(OverlayColourProvider colourProvider, OsuColour colours)
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-10-14 04:50:19 +08:00
|
|
|
Colour = colourProvider.Background4
|
2021-01-04 21:42:39 +08:00
|
|
|
},
|
|
|
|
new GridContainer
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-01-04 21:42:39 +08:00
|
|
|
RowDimensions = new[]
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-07-05 23:52:39 +08:00
|
|
|
new Dimension(),
|
2021-01-04 21:42:39 +08:00
|
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
|
|
},
|
|
|
|
Content = new[]
|
|
|
|
{
|
|
|
|
new Drawable[]
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
new OsuScrollContainer
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
Padding = new MarginPadding
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
Horizontal = OsuScreen.HORIZONTAL_OVERFLOW_PADDING,
|
|
|
|
Vertical = 10
|
|
|
|
},
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Children = new[]
|
|
|
|
{
|
|
|
|
new Container
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
Padding = new MarginPadding { Horizontal = WaveOverlayContainer.WIDTH_PADDING },
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Children = new Drawable[]
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
new SectionContainer
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
Padding = new MarginPadding { Right = FIELD_PADDING / 2 },
|
|
|
|
Children = new[]
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
new Section("Room name")
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-10-17 19:10:23 +08:00
|
|
|
Child = NameField = new OsuTextBox
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
TabbableContentContainer = this,
|
|
|
|
LengthLimit = 100
|
|
|
|
},
|
|
|
|
},
|
|
|
|
new Section("Duration")
|
|
|
|
{
|
2022-07-10 10:05:40 +08:00
|
|
|
Child = new Container
|
2021-01-04 21:42:39 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2022-07-10 10:05:40 +08:00
|
|
|
Height = 40,
|
|
|
|
Child = DurationField = new DurationDropdown
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X
|
|
|
|
}
|
2021-01-04 21:42:39 +08:00
|
|
|
}
|
|
|
|
},
|
2021-02-02 16:57:23 +08:00
|
|
|
new Section("Allowed attempts (across all playlist items)")
|
2021-01-04 21:42:39 +08:00
|
|
|
{
|
2021-10-17 19:10:23 +08:00
|
|
|
Child = MaxAttemptsField = new OsuNumberBox
|
2021-01-04 21:42:39 +08:00
|
|
|
{
|
2021-02-02 16:57:23 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
TabbableContentContainer = this,
|
|
|
|
PlaceholderText = "Unlimited",
|
2021-01-04 21:42:39 +08:00
|
|
|
},
|
|
|
|
},
|
2021-02-02 16:57:23 +08:00
|
|
|
new Section("Room visibility")
|
2021-01-04 21:42:39 +08:00
|
|
|
{
|
|
|
|
Alpha = disabled_alpha,
|
2021-02-02 16:57:23 +08:00
|
|
|
Child = AvailabilityPicker = new RoomAvailabilityPicker
|
2021-01-04 21:42:39 +08:00
|
|
|
{
|
2021-02-02 16:57:23 +08:00
|
|
|
Enabled = { Value = false }
|
2020-12-22 14:52:47 +08:00
|
|
|
},
|
|
|
|
},
|
2021-01-04 21:42:39 +08:00
|
|
|
new Section("Max participants")
|
|
|
|
{
|
|
|
|
Alpha = disabled_alpha,
|
2021-10-17 19:10:23 +08:00
|
|
|
Child = MaxParticipantsField = new OsuNumberBox
|
2021-01-04 21:42:39 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
TabbableContentContainer = this,
|
|
|
|
ReadOnly = true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
new Section("Password (optional)")
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
Alpha = disabled_alpha,
|
2021-10-17 19:10:23 +08:00
|
|
|
Child = new OsuPasswordTextBox
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
TabbableContentContainer = this,
|
|
|
|
ReadOnly = true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
new SectionContainer
|
|
|
|
{
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
Padding = new MarginPadding { Left = FIELD_PADDING / 2 },
|
|
|
|
Children = new[]
|
|
|
|
{
|
|
|
|
new Section("Playlist")
|
|
|
|
{
|
|
|
|
Child = new GridContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2021-08-18 16:28:20 +08:00
|
|
|
Height = 448,
|
2021-01-04 21:42:39 +08:00
|
|
|
Content = new[]
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
new Drawable[]
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-12-09 00:29:45 +08:00
|
|
|
playlist = new PlaylistsRoomSettingsPlaylist
|
2021-12-08 19:38:18 +08:00
|
|
|
{
|
2021-12-09 00:16:37 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-12-08 19:38:18 +08:00
|
|
|
}
|
2021-01-04 21:42:39 +08:00
|
|
|
},
|
|
|
|
new Drawable[]
|
|
|
|
{
|
|
|
|
playlistLength = new OsuSpriteText
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
Margin = new MarginPadding { Vertical = 5 },
|
|
|
|
Colour = colours.Yellow,
|
|
|
|
Font = OsuFont.GetFont(size: 12),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
new Drawable[]
|
|
|
|
{
|
2021-08-05 13:21:51 +08:00
|
|
|
editPlaylistButton = new PurpleTriangleButton
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Height = 40,
|
|
|
|
Text = "Edit playlist",
|
|
|
|
Action = () => EditPlaylist?.Invoke()
|
2020-12-22 14:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-01-04 21:42:39 +08:00
|
|
|
RowDimensions = new[]
|
|
|
|
{
|
|
|
|
new Dimension(),
|
|
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
|
|
}
|
|
|
|
}
|
2020-12-22 14:52:47 +08:00
|
|
|
},
|
|
|
|
},
|
2021-01-04 21:42:39 +08:00
|
|
|
},
|
2020-12-22 14:52:47 +08:00
|
|
|
},
|
2021-01-04 21:42:39 +08:00
|
|
|
}
|
2020-12-22 14:52:47 +08:00
|
|
|
},
|
2021-01-04 21:42:39 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
new Drawable[]
|
|
|
|
{
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
Y = 2,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Children = new Drawable[]
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-10-14 04:50:19 +08:00
|
|
|
Colour = colourProvider.Background5
|
2021-01-04 21:42:39 +08:00
|
|
|
},
|
|
|
|
new FillFlowContainer
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2021-01-04 21:42:39 +08:00
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
Spacing = new Vector2(0, 20),
|
|
|
|
Margin = new MarginPadding { Vertical = 20 },
|
|
|
|
Padding = new MarginPadding { Horizontal = OsuScreen.HORIZONTAL_OVERFLOW_PADDING },
|
2020-12-22 14:52:47 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
ApplyButton = new CreateRoomButton
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
Size = new Vector2(230, 55),
|
|
|
|
Enabled = { Value = false },
|
|
|
|
Action = apply,
|
2020-12-22 14:52:47 +08:00
|
|
|
},
|
2021-01-04 21:42:39 +08:00
|
|
|
ErrorText = new OsuSpriteText
|
2020-12-22 14:52:47 +08:00
|
|
|
{
|
2021-01-04 21:42:39 +08:00
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
Alpha = 0,
|
|
|
|
Depth = 1,
|
|
|
|
Colour = colours.RedDark
|
2020-12-22 14:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-04 21:42:39 +08:00
|
|
|
}
|
2020-12-22 14:52:47 +08:00
|
|
|
}
|
|
|
|
},
|
2021-01-04 21:42:39 +08:00
|
|
|
loadingLayer = new LoadingLayer(true)
|
2020-12-22 14:52:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
RoomName.BindValueChanged(name => NameField.Text = name.NewValue, true);
|
|
|
|
Availability.BindValueChanged(availability => AvailabilityPicker.Current.Value = availability.NewValue, true);
|
|
|
|
MaxParticipants.BindValueChanged(count => MaxParticipantsField.Text = count.NewValue?.ToString(), true);
|
2021-02-03 21:02:40 +08:00
|
|
|
MaxAttempts.BindValueChanged(count => MaxAttemptsField.Text = count.NewValue?.ToString(), true);
|
2020-12-22 14:52:47 +08:00
|
|
|
Duration.BindValueChanged(duration => DurationField.Current.Value = duration.NewValue ?? TimeSpan.FromMinutes(30), true);
|
|
|
|
|
2021-12-10 12:45:29 +08:00
|
|
|
api.LocalUser.BindValueChanged(populateDurations, true);
|
|
|
|
|
2020-12-22 14:52:47 +08:00
|
|
|
playlist.Items.BindTo(Playlist);
|
|
|
|
Playlist.BindCollectionChanged(onPlaylistChanged, true);
|
|
|
|
}
|
|
|
|
|
2021-12-10 12:45:29 +08:00
|
|
|
private void populateDurations(ValueChangedEvent<APIUser> user)
|
|
|
|
{
|
|
|
|
DurationField.Items = new[]
|
|
|
|
{
|
|
|
|
TimeSpan.FromMinutes(30),
|
|
|
|
TimeSpan.FromHours(1),
|
|
|
|
TimeSpan.FromHours(2),
|
|
|
|
TimeSpan.FromHours(4),
|
|
|
|
TimeSpan.FromHours(8),
|
|
|
|
TimeSpan.FromHours(12),
|
|
|
|
TimeSpan.FromHours(24),
|
|
|
|
TimeSpan.FromDays(3),
|
|
|
|
TimeSpan.FromDays(7),
|
|
|
|
TimeSpan.FromDays(14),
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: show these in the interface at all times.
|
|
|
|
if (user.NewValue.IsSupporter)
|
|
|
|
{
|
|
|
|
// roughly correct (see https://github.com/Humanizr/Humanizer/blob/18167e56c082449cc4fe805b8429e3127a7b7f93/readme.md?plain=1#L427)
|
|
|
|
// if we want this to be more accurate we might consider sending an actual end time, not a time span. probably not required though.
|
|
|
|
const int days_in_month = 31;
|
|
|
|
|
|
|
|
DurationField.AddDropdownItem(TimeSpan.FromDays(days_in_month));
|
|
|
|
DurationField.AddDropdownItem(TimeSpan.FromDays(days_in_month * 3));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-22 14:52:47 +08:00
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
ApplyButton.Enabled.Value = hasValidSettings;
|
|
|
|
}
|
|
|
|
|
2021-08-05 13:21:51 +08:00
|
|
|
public void SelectBeatmap() => editPlaylistButton.TriggerClick();
|
|
|
|
|
2020-12-22 14:52:47 +08:00
|
|
|
private void onPlaylistChanged(object sender, NotifyCollectionChangedEventArgs e) =>
|
|
|
|
playlistLength.Text = $"Length: {Playlist.GetTotalDuration()}";
|
|
|
|
|
|
|
|
private bool hasValidSettings => RoomID.Value == null && NameField.Text.Length > 0 && Playlist.Count > 0;
|
|
|
|
|
|
|
|
private void apply()
|
|
|
|
{
|
|
|
|
if (!ApplyButton.Enabled.Value)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hideError();
|
|
|
|
|
|
|
|
RoomName.Value = NameField.Text;
|
|
|
|
Availability.Value = AvailabilityPicker.Current.Value;
|
|
|
|
|
|
|
|
if (int.TryParse(MaxParticipantsField.Text, out int max))
|
|
|
|
MaxParticipants.Value = max;
|
|
|
|
else
|
|
|
|
MaxParticipants.Value = null;
|
|
|
|
|
2021-02-02 16:57:23 +08:00
|
|
|
if (int.TryParse(MaxAttemptsField.Text, out max))
|
|
|
|
MaxAttempts.Value = max;
|
|
|
|
else
|
|
|
|
MaxAttempts.Value = null;
|
|
|
|
|
2020-12-22 14:52:47 +08:00
|
|
|
Duration.Value = DurationField.Current.Value;
|
|
|
|
|
|
|
|
loadingLayer.Show();
|
2021-11-16 16:13:50 +08:00
|
|
|
manager?.CreateRoom(room, onSuccess, onError);
|
2020-12-22 14:52:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void hideError() => ErrorText.FadeOut(50);
|
|
|
|
|
|
|
|
private void onSuccess(Room room) => loadingLayer.Hide();
|
|
|
|
|
|
|
|
private void onError(string text)
|
|
|
|
{
|
2021-11-16 16:01:37 +08:00
|
|
|
// see https://github.com/ppy/osu-web/blob/2c97aaeb64fb4ed97c747d8383a35b30f57428c7/app/Models/Multiplayer/PlaylistItem.php#L48.
|
|
|
|
const string not_found_prefix = "beatmaps not found:";
|
|
|
|
|
|
|
|
if (text.StartsWith(not_found_prefix, StringComparison.Ordinal))
|
|
|
|
{
|
2021-11-17 20:11:37 +08:00
|
|
|
ErrorText.Text = "One or more beatmaps were not available online. Please remove or replace the highlighted items.";
|
2020-12-22 14:52:47 +08:00
|
|
|
|
2021-11-16 16:01:37 +08:00
|
|
|
int[] invalidBeatmapIDs = text
|
|
|
|
.Substring(not_found_prefix.Length + 1)
|
|
|
|
.Split(", ")
|
|
|
|
.Select(int.Parse)
|
|
|
|
.ToArray();
|
|
|
|
|
|
|
|
foreach (var item in Playlist)
|
|
|
|
{
|
2022-02-15 22:33:26 +08:00
|
|
|
if (invalidBeatmapIDs.Contains(item.Beatmap.OnlineID))
|
2021-11-16 16:01:37 +08:00
|
|
|
item.MarkInvalid();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ErrorText.Text = text;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorText.FadeIn(50);
|
2020-12-22 14:52:47 +08:00
|
|
|
loadingLayer.Hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class CreateRoomButton : TriangleButton
|
|
|
|
{
|
|
|
|
public CreateRoomButton()
|
|
|
|
{
|
|
|
|
Text = "Create";
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
BackgroundColour = colours.Yellow;
|
|
|
|
Triangles.ColourLight = colours.YellowLight;
|
|
|
|
Triangles.ColourDark = colours.YellowDark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class DurationDropdown : OsuDropdown<TimeSpan>
|
|
|
|
{
|
|
|
|
public DurationDropdown()
|
|
|
|
{
|
|
|
|
Menu.MaxHeight = 100;
|
|
|
|
}
|
|
|
|
|
2021-12-10 12:45:29 +08:00
|
|
|
protected override LocalisableString GenerateItemText(TimeSpan item) => item.Humanize(maxUnit: TimeUnit.Month);
|
2020-12-22 14:52:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|