2017-05-22 11:07:15 +08:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using OpenTK;
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Localisation;
|
2017-05-23 00:05:18 +08:00
|
|
|
using osu.Game.Database;
|
2017-05-22 11:07:15 +08:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
using osu.Game.Online.Multiplayer;
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Multiplayer
|
|
|
|
{
|
2017-05-22 23:44:58 +08:00
|
|
|
public class DrawableRoom : ClickableContainer
|
2017-05-22 11:07:15 +08:00
|
|
|
{
|
|
|
|
private const float content_padding = 5;
|
|
|
|
private const float height = 90;
|
|
|
|
|
|
|
|
private readonly Box sideStrip;
|
2017-05-22 12:01:55 +08:00
|
|
|
private readonly UpdateableAvatar avatar;
|
|
|
|
private readonly OsuSpriteText name;
|
|
|
|
private readonly Container flagContainer;
|
2017-05-22 11:07:15 +08:00
|
|
|
private readonly OsuSpriteText host;
|
|
|
|
private readonly OsuSpriteText rankBounds;
|
2017-05-22 12:01:55 +08:00
|
|
|
private readonly OsuSpriteText status;
|
2017-05-22 11:07:15 +08:00
|
|
|
private readonly FillFlowContainer<OsuSpriteText> beatmapInfoFlow;
|
|
|
|
private readonly OsuSpriteText beatmapTitle;
|
2017-05-22 12:01:55 +08:00
|
|
|
private readonly OsuSpriteText beatmapDash;
|
2017-05-22 11:07:15 +08:00
|
|
|
private readonly OsuSpriteText beatmapArtist;
|
|
|
|
|
2017-05-23 08:13:57 +08:00
|
|
|
private OsuColour colours;
|
2017-05-22 12:01:55 +08:00
|
|
|
private LocalisationEngine localisation;
|
2017-05-22 11:07:15 +08:00
|
|
|
|
2017-05-23 00:05:18 +08:00
|
|
|
public readonly Room Room;
|
2017-05-22 11:07:15 +08:00
|
|
|
|
2017-05-22 23:44:58 +08:00
|
|
|
public DrawableRoom(Room room)
|
2017-05-22 11:07:15 +08:00
|
|
|
{
|
2017-05-23 00:05:18 +08:00
|
|
|
Room = room;
|
2017-05-22 11:07:15 +08:00
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
Height = height;
|
|
|
|
CornerRadius = 5;
|
|
|
|
Masking = true;
|
|
|
|
EdgeEffect = new EdgeEffect
|
|
|
|
{
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
Colour = Color4.Black.Opacity(40),
|
|
|
|
Radius = 5,
|
|
|
|
};
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = OsuColour.Gray(34),
|
|
|
|
},
|
|
|
|
sideStrip = new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2017-05-22 12:01:55 +08:00
|
|
|
Width = content_padding,
|
|
|
|
},
|
|
|
|
avatar = new UpdateableAvatar
|
|
|
|
{
|
|
|
|
Size = new Vector2(Height - content_padding* 2),
|
|
|
|
Masking = true,
|
|
|
|
CornerRadius = 5f,
|
|
|
|
Margin = new MarginPadding { Left = content_padding * 2, Top = content_padding },
|
2017-05-22 11:07:15 +08:00
|
|
|
},
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-05-22 12:01:55 +08:00
|
|
|
Padding = new MarginPadding { Top = content_padding, Bottom = content_padding, Left = Height + content_padding * 2, Right = content_padding },
|
2017-05-22 11:07:15 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new FillFlowContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
Spacing = new Vector2(5f),
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2017-05-22 12:01:55 +08:00
|
|
|
name = new OsuSpriteText
|
2017-05-22 11:07:15 +08:00
|
|
|
{
|
|
|
|
TextSize = 18,
|
|
|
|
},
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Height = 20f,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new FillFlowContainer
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
Spacing = new Vector2(5f, 0f),
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2017-05-22 12:01:55 +08:00
|
|
|
flagContainer = new Container
|
2017-05-22 11:07:15 +08:00
|
|
|
{
|
|
|
|
Width = 30f,
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
},
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
Width = 40f,
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
},
|
|
|
|
new OsuSpriteText
|
|
|
|
{
|
|
|
|
Text = "hosted by",
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
TextSize = 14,
|
|
|
|
},
|
|
|
|
host = new OsuSpriteText
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
TextSize = 14,
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
rankBounds = new OsuSpriteText
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
Origin = Anchor.CentreRight,
|
2017-05-22 12:01:55 +08:00
|
|
|
Text = "#0 - #0",
|
2017-05-22 11:07:15 +08:00
|
|
|
TextSize = 14,
|
|
|
|
Margin = new MarginPadding { Right = 10 },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
new FillFlowContainer
|
|
|
|
{
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Vertical,
|
2017-05-22 12:01:55 +08:00
|
|
|
Margin = new MarginPadding { Bottom = content_padding },
|
2017-05-22 11:07:15 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
status = new OsuSpriteText
|
|
|
|
{
|
|
|
|
TextSize = 14,
|
|
|
|
Font = @"Exo2.0-Bold",
|
|
|
|
},
|
|
|
|
beatmapInfoFlow = new FillFlowContainer<OsuSpriteText>
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
Children = new[]
|
|
|
|
{
|
|
|
|
beatmapTitle = new OsuSpriteText
|
|
|
|
{
|
|
|
|
TextSize = 14,
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
|
|
|
},
|
2017-05-22 12:01:55 +08:00
|
|
|
beatmapDash = new OsuSpriteText
|
2017-05-22 11:07:15 +08:00
|
|
|
{
|
|
|
|
TextSize = 14,
|
|
|
|
Font = @"Exo2.0-RegularItalic",
|
|
|
|
},
|
|
|
|
beatmapArtist = new OsuSpriteText
|
|
|
|
{
|
|
|
|
TextSize = 14,
|
|
|
|
Font = @"Exo2.0-RegularItalic",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2017-05-22 12:01:55 +08:00
|
|
|
|
2017-05-23 00:05:18 +08:00
|
|
|
Room.Name.ValueChanged += displayName;
|
|
|
|
Room.Host.ValueChanged += displayUser;
|
|
|
|
Room.Status.ValueChanged += displayStatus;
|
|
|
|
Room.Beatmap.ValueChanged += displayBeatmap;
|
2017-05-22 11:07:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours, LocalisationEngine localisation)
|
|
|
|
{
|
2017-05-22 12:01:55 +08:00
|
|
|
this.localisation = localisation;
|
2017-05-23 08:13:57 +08:00
|
|
|
this.colours = colours;
|
2017-05-22 12:01:55 +08:00
|
|
|
|
2017-05-22 11:07:15 +08:00
|
|
|
beatmapInfoFlow.Colour = rankBounds.Colour = colours.Gray9;
|
|
|
|
host.Colour = colours.Blue;
|
|
|
|
|
2017-05-23 00:05:18 +08:00
|
|
|
displayStatus(Room.Status.Value);
|
2017-05-22 11:07:15 +08:00
|
|
|
}
|
|
|
|
|
2017-05-23 00:05:18 +08:00
|
|
|
private void displayName(string value)
|
2017-05-22 11:07:15 +08:00
|
|
|
{
|
2017-05-23 00:05:18 +08:00
|
|
|
name.Text = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void displayUser(User value)
|
|
|
|
{
|
|
|
|
avatar.User = value;
|
|
|
|
host.Text = value.Username;
|
|
|
|
flagContainer.Children = new[] { new DrawableFlag(value.Country?.FlagName ?? @"__") { RelativeSizeAxes = Axes.Both } };
|
|
|
|
}
|
|
|
|
|
|
|
|
private void displayStatus(RoomStatus value)
|
|
|
|
{
|
2017-05-23 08:13:57 +08:00
|
|
|
if (value == null) return;
|
|
|
|
status.Text = value.Message;
|
2017-05-22 11:07:15 +08:00
|
|
|
|
2017-05-23 00:05:18 +08:00
|
|
|
foreach (Drawable d in new Drawable[] { sideStrip, status })
|
2017-05-23 08:13:57 +08:00
|
|
|
d.FadeColour(value.GetAppropriateColour(colours), 100);
|
2017-05-23 00:05:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void displayBeatmap(BeatmapMetadata value)
|
|
|
|
{
|
|
|
|
if (value != null)
|
2017-05-22 12:01:55 +08:00
|
|
|
{
|
2017-05-23 00:05:18 +08:00
|
|
|
beatmapTitle.Current = localisation.GetUnicodePreference(value.TitleUnicode, value.Title);
|
2017-05-22 12:01:55 +08:00
|
|
|
beatmapDash.Text = @" - ";
|
2017-05-23 00:05:18 +08:00
|
|
|
beatmapArtist.Current = localisation.GetUnicodePreference(value.ArtistUnicode, value.Artist);
|
2017-05-22 12:01:55 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
beatmapTitle.Current = null;
|
|
|
|
beatmapArtist.Current = null;
|
|
|
|
|
|
|
|
beatmapTitle.Text = @"Changing map";
|
|
|
|
beatmapDash.Text = string.Empty;
|
|
|
|
beatmapArtist.Text = string.Empty;
|
|
|
|
}
|
2017-05-22 11:07:15 +08:00
|
|
|
}
|
2017-05-25 04:02:28 +08:00
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
Room.Name.ValueChanged -= displayName;
|
|
|
|
Room.Host.ValueChanged -= displayUser;
|
|
|
|
Room.Status.ValueChanged -= displayStatus;
|
|
|
|
Room.Beatmap.ValueChanged -= displayBeatmap;
|
|
|
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
}
|
2017-05-22 11:07:15 +08:00
|
|
|
}
|
|
|
|
}
|