mirror of
https://github.com/ppy/osu.git
synced 2025-01-11 06:32:53 +08:00
523 lines
22 KiB
C#
523 lines
22 KiB
C#
// 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 System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Threading;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Extensions;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Colour;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Effects;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.Drawables;
|
|
using osu.Game.Database;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Online.Chat;
|
|
using osu.Game.Online.Rooms;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Screens.OnlinePlay.Components;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
using Container = osu.Framework.Graphics.Containers.Container;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Lounge.Components
|
|
{
|
|
public abstract partial class DrawableRoom : CompositeDrawable
|
|
{
|
|
protected const float CORNER_RADIUS = 10;
|
|
private const float height = 100;
|
|
|
|
public readonly Room Room;
|
|
|
|
protected readonly Bindable<PlaylistItem?> SelectedItem = new Bindable<PlaylistItem?>();
|
|
protected Container ButtonsContainer { get; private set; } = null!;
|
|
|
|
private readonly Bindable<MatchType> roomType = new Bindable<MatchType>();
|
|
private readonly Bindable<RoomCategory> roomCategory = new Bindable<RoomCategory>();
|
|
private readonly Bindable<bool> hasPassword = new Bindable<bool>();
|
|
|
|
private DrawableRoomParticipantsList? drawableRoomParticipantsList;
|
|
private RoomSpecialCategoryPill? specialCategoryPill;
|
|
private PasswordProtectedIcon? passwordIcon;
|
|
private EndDateInfo? endDateInfo;
|
|
private SpriteText? roomName;
|
|
private UpdateableBeatmapBackgroundSprite background = null!;
|
|
private DelayedLoadWrapper wrapper = null!;
|
|
|
|
protected DrawableRoom(Room room)
|
|
{
|
|
Room = room;
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
Height = height;
|
|
|
|
Masking = true;
|
|
CornerRadius = CORNER_RADIUS;
|
|
EdgeEffect = new EdgeEffectParameters
|
|
{
|
|
Type = EdgeEffectType.Shadow,
|
|
Colour = Color4.Black.Opacity(40),
|
|
Radius = 5,
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colours)
|
|
{
|
|
ButtonsContainer = new Container
|
|
{
|
|
Anchor = Anchor.CentreRight,
|
|
Origin = Anchor.CentreRight,
|
|
RelativeSizeAxes = Axes.Y,
|
|
AutoSizeAxes = Axes.X
|
|
};
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
// This resolves internal 1px gaps due to applying the (parenting) corner radius and masking across multiple filling background sprites.
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = colours.Background5,
|
|
},
|
|
background = CreateBackground().With(d =>
|
|
{
|
|
d.RelativeSizeAxes = Axes.Both;
|
|
}),
|
|
wrapper = new DelayedLoadWrapper(() =>
|
|
new Container
|
|
{
|
|
Name = @"Room content",
|
|
RelativeSizeAxes = Axes.Both,
|
|
// This negative padding resolves 1px gaps between this background and the background above.
|
|
Padding = new MarginPadding { Left = 20, Vertical = -0.5f },
|
|
Child = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Masking = true,
|
|
CornerRadius = CORNER_RADIUS,
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = colours.Background5,
|
|
Width = 0.2f,
|
|
},
|
|
new Box
|
|
{
|
|
Anchor = Anchor.TopRight,
|
|
Origin = Anchor.TopRight,
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = ColourInfo.GradientHorizontal(colours.Background5, colours.Background5.Opacity(0.3f)),
|
|
Width = 0.8f,
|
|
},
|
|
new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
ColumnDimensions = new[]
|
|
{
|
|
new Dimension(),
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
},
|
|
Content = new[]
|
|
{
|
|
new Drawable[]
|
|
{
|
|
new Container
|
|
{
|
|
Name = @"Left details",
|
|
RelativeSizeAxes = Axes.Both,
|
|
Padding = new MarginPadding
|
|
{
|
|
Left = 20,
|
|
Right = DrawableRoomParticipantsList.SHEAR_WIDTH,
|
|
Vertical = 5
|
|
},
|
|
Children = new Drawable[]
|
|
{
|
|
new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Vertical,
|
|
Children = new Drawable[]
|
|
{
|
|
new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(5),
|
|
Children = new Drawable[]
|
|
{
|
|
new RoomStatusPill(Room)
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft
|
|
},
|
|
specialCategoryPill = new RoomSpecialCategoryPill(Room)
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft
|
|
},
|
|
endDateInfo = new EndDateInfo(Room)
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
},
|
|
}
|
|
},
|
|
new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Padding = new MarginPadding { Top = 3 },
|
|
Direction = FillDirection.Vertical,
|
|
Children = new Drawable[]
|
|
{
|
|
roomName = new TruncatingSpriteText
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Font = OsuFont.GetFont(size: 28)
|
|
},
|
|
new RoomStatusText(Room)
|
|
{
|
|
SelectedItem = { BindTarget = SelectedItem }
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
new FillFlowContainer
|
|
{
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft,
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(5),
|
|
ChildrenEnumerable = CreateBottomDetails()
|
|
}
|
|
}
|
|
},
|
|
new FillFlowContainer
|
|
{
|
|
Name = "Right content",
|
|
Anchor = Anchor.CentreRight,
|
|
Origin = Anchor.CentreRight,
|
|
AutoSizeAxes = Axes.X,
|
|
RelativeSizeAxes = Axes.Y,
|
|
Spacing = new Vector2(5),
|
|
Padding = new MarginPadding
|
|
{
|
|
Right = 10,
|
|
Vertical = 20,
|
|
},
|
|
Children = new Drawable[]
|
|
{
|
|
ButtonsContainer,
|
|
drawableRoomParticipantsList = new DrawableRoomParticipantsList(Room)
|
|
{
|
|
Anchor = Anchor.CentreRight,
|
|
Origin = Anchor.CentreRight,
|
|
NumberOfCircles = NumberOfAvatars
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}
|
|
},
|
|
passwordIcon = new PasswordProtectedIcon { Alpha = 0 }
|
|
},
|
|
},
|
|
}, 0)
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Room.PropertyChanged += onRoomPropertyChanged;
|
|
|
|
wrapper.DelayedLoadComplete += _ =>
|
|
{
|
|
Debug.Assert(specialCategoryPill != null);
|
|
Debug.Assert(endDateInfo != null);
|
|
Debug.Assert(passwordIcon != null);
|
|
|
|
wrapper.FadeInFromZero(200);
|
|
|
|
updateRoomName();
|
|
updateRoomCategory();
|
|
updateRoomType();
|
|
updateRoomHasPassword();
|
|
};
|
|
|
|
SelectedItem.BindValueChanged(item => background.Beatmap.Value = item.NewValue?.Beatmap, true);
|
|
}
|
|
|
|
private void onRoomPropertyChanged(object? sender, PropertyChangedEventArgs e)
|
|
{
|
|
switch (e.PropertyName)
|
|
{
|
|
case nameof(Room.Name):
|
|
updateRoomName();
|
|
break;
|
|
|
|
case nameof(Room.Category):
|
|
updateRoomCategory();
|
|
break;
|
|
|
|
case nameof(Room.Type):
|
|
updateRoomType();
|
|
break;
|
|
|
|
case nameof(Room.HasPassword):
|
|
updateRoomHasPassword();
|
|
break;
|
|
}
|
|
}
|
|
|
|
private void updateRoomName()
|
|
{
|
|
if (roomName != null)
|
|
roomName.Text = Room.Name;
|
|
}
|
|
|
|
private void updateRoomCategory()
|
|
{
|
|
if (Room.Category > RoomCategory.Normal)
|
|
specialCategoryPill?.Show();
|
|
else
|
|
specialCategoryPill?.Hide();
|
|
}
|
|
|
|
private void updateRoomType()
|
|
{
|
|
if (endDateInfo != null)
|
|
endDateInfo.Alpha = Room.Type == MatchType.Playlists ? 1 : 0;
|
|
}
|
|
|
|
private void updateRoomHasPassword()
|
|
{
|
|
if (passwordIcon != null)
|
|
passwordIcon.Alpha = Room.HasPassword ? 1 : 0;
|
|
}
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
|
{
|
|
return new CachedModelDependencyContainer<Room>(base.CreateChildDependencies(parent))
|
|
{
|
|
Model = { Value = Room }
|
|
};
|
|
}
|
|
|
|
private int numberOfAvatars = 7;
|
|
|
|
public int NumberOfAvatars
|
|
{
|
|
get => numberOfAvatars;
|
|
set
|
|
{
|
|
numberOfAvatars = value;
|
|
|
|
if (drawableRoomParticipantsList != null)
|
|
drawableRoomParticipantsList.NumberOfCircles = value;
|
|
}
|
|
}
|
|
|
|
protected virtual UpdateableBeatmapBackgroundSprite CreateBackground() => new UpdateableBeatmapBackgroundSprite();
|
|
|
|
protected virtual IEnumerable<Drawable> CreateBottomDetails()
|
|
{
|
|
var pills = new List<Drawable>();
|
|
|
|
if (Room.Type != MatchType.Playlists)
|
|
{
|
|
pills.AddRange(new OnlinePlayComposite[]
|
|
{
|
|
new MatchTypePill(Room),
|
|
new QueueModePill(Room),
|
|
});
|
|
}
|
|
|
|
pills.AddRange(new Drawable[]
|
|
{
|
|
new PlaylistCountPill
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
},
|
|
new StarRatingRangeDisplay
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Scale = new Vector2(0.8f)
|
|
}
|
|
});
|
|
|
|
return pills;
|
|
}
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
{
|
|
base.Dispose(isDisposing);
|
|
Room.PropertyChanged -= onRoomPropertyChanged;
|
|
}
|
|
|
|
private partial class RoomStatusText : OnlinePlayComposite
|
|
{
|
|
public readonly IBindable<PlaylistItem?> SelectedItem = new Bindable<PlaylistItem?>();
|
|
|
|
[Resolved]
|
|
private OsuColour colours { get; set; } = null!;
|
|
|
|
[Resolved]
|
|
private BeatmapLookupCache beatmapLookupCache { get; set; } = null!;
|
|
|
|
private readonly Room room;
|
|
private SpriteText statusText = null!;
|
|
private LinkFlowContainer beatmapText = null!;
|
|
|
|
public RoomStatusText(Room room)
|
|
{
|
|
this.room = room;
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
InternalChild = new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
ColumnDimensions = new[]
|
|
{
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
},
|
|
RowDimensions = new[]
|
|
{
|
|
new Dimension(GridSizeMode.AutoSize)
|
|
},
|
|
Content = new[]
|
|
{
|
|
new Drawable[]
|
|
{
|
|
statusText = new OsuSpriteText
|
|
{
|
|
Font = OsuFont.Default.With(size: 16),
|
|
Colour = colours.Lime1
|
|
},
|
|
beatmapText = new LinkFlowContainer(s =>
|
|
{
|
|
s.Font = OsuFont.Default.With(size: 16);
|
|
s.Colour = colours.Lime1;
|
|
})
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
// workaround to ensure only the first line of text shows, emulating truncation (but without ellipsis at the end).
|
|
// TODO: remove when text/link flow can support truncation with ellipsis natively.
|
|
Height = 16,
|
|
Masking = true
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
SelectedItem.BindValueChanged(onSelectedItemChanged, true);
|
|
}
|
|
|
|
private CancellationTokenSource? beatmapLookupCancellation;
|
|
|
|
private void onSelectedItemChanged(ValueChangedEvent<PlaylistItem?> item)
|
|
{
|
|
beatmapLookupCancellation?.Cancel();
|
|
beatmapText.Clear();
|
|
|
|
if (room.Type == MatchType.Playlists)
|
|
{
|
|
statusText.Text = "Ready to play";
|
|
return;
|
|
}
|
|
|
|
var beatmap = item.NewValue?.Beatmap;
|
|
if (beatmap == null)
|
|
return;
|
|
|
|
var cancellationSource = beatmapLookupCancellation = new CancellationTokenSource();
|
|
beatmapLookupCache.GetBeatmapAsync(beatmap.OnlineID, cancellationSource.Token)
|
|
.ContinueWith(task => Schedule(() =>
|
|
{
|
|
if (cancellationSource.IsCancellationRequested)
|
|
return;
|
|
|
|
var retrievedBeatmap = task.GetResultSafely();
|
|
|
|
statusText.Text = "Currently playing ";
|
|
|
|
if (retrievedBeatmap != null)
|
|
{
|
|
beatmapText.AddLink(retrievedBeatmap.GetDisplayTitleRomanisable(),
|
|
LinkAction.OpenBeatmap,
|
|
retrievedBeatmap.OnlineID.ToString(),
|
|
creationParameters: s => s.Truncate = true);
|
|
}
|
|
else
|
|
beatmapText.AddText("unknown beatmap");
|
|
}), cancellationSource.Token);
|
|
}
|
|
}
|
|
|
|
public partial class PasswordProtectedIcon : CompositeDrawable
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
Anchor = Anchor.TopRight;
|
|
Origin = Anchor.TopRight;
|
|
|
|
Size = new Vector2(32);
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
Anchor = Anchor.TopRight,
|
|
Origin = Anchor.TopCentre,
|
|
Colour = colours.Gray5,
|
|
Rotation = 45,
|
|
RelativeSizeAxes = Axes.Both,
|
|
Width = 2,
|
|
},
|
|
new SpriteIcon
|
|
{
|
|
Icon = FontAwesome.Solid.Lock,
|
|
Anchor = Anchor.TopRight,
|
|
Origin = Anchor.TopRight,
|
|
Margin = new MarginPadding(6),
|
|
Size = new Vector2(14),
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|