1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 03:27:26 +08:00
osu-lazer/osu.Game/Screens/Multi/Lounge/LoungeSubScreen.cs

193 lines
5.9 KiB
C#
Raw Normal View History

// 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.
2018-05-22 11:07:04 +08:00
using System.Linq;
2019-02-08 14:20:11 +08:00
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-05-22 11:07:04 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
2018-05-22 11:24:39 +08:00
using osu.Framework.Screens;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
2018-05-22 11:07:04 +08:00
using osu.Game.Online.Multiplayer;
using osu.Game.Overlays;
2018-05-22 11:07:04 +08:00
using osu.Game.Overlays.SearchableList;
2018-12-10 18:20:41 +08:00
using osu.Game.Screens.Multi.Lounge.Components;
using osu.Game.Screens.Multi.Match;
2018-05-22 11:07:04 +08:00
2018-12-10 18:20:41 +08:00
namespace osu.Game.Screens.Multi.Lounge
2018-05-22 11:07:04 +08:00
{
2019-01-25 18:32:37 +08:00
public class LoungeSubScreen : MultiplayerSubScreen
2018-05-22 11:07:04 +08:00
{
2019-01-25 18:32:37 +08:00
public override string Title => "Lounge";
protected FilterControl Filter;
private readonly Bindable<bool> initialRoomsReceived = new Bindable<bool>();
private Container content;
private LoadingLayer loadingLayer;
2018-05-22 11:07:04 +08:00
2019-02-08 14:20:11 +08:00
[Resolved]
private Bindable<Room> selectedRoom { get; set; }
2019-02-08 14:20:11 +08:00
2020-08-11 11:40:58 +08:00
[Resolved]
private MusicController music { get; set; }
private bool joiningRoom;
[BackgroundDependencyLoader]
private void load()
2018-05-22 11:07:04 +08:00
{
RoomsContainer roomsContainer;
OsuScrollContainer scrollContainer;
2019-01-23 19:52:00 +08:00
InternalChildren = new Drawable[]
2018-05-22 11:07:04 +08:00
{
2018-12-03 17:30:26 +08:00
Filter = new FilterControl { Depth = -1 },
2018-05-22 11:07:04 +08:00
content = new Container
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
new Container
2018-05-22 11:07:04 +08:00
{
RelativeSizeAxes = Axes.Both,
Width = 0.55f,
Children = new Drawable[]
2018-05-22 11:07:04 +08:00
{
scrollContainer = new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both,
ScrollbarOverlapsContent = false,
Padding = new MarginPadding(10),
Child = roomsContainer = new RoomsContainer { JoinRequested = joinRequested }
},
loadingLayer = new LoadingLayer(roomsContainer),
}
2018-05-22 11:07:04 +08:00
},
2019-02-05 18:00:01 +08:00
new RoomInspector
2018-05-22 11:07:04 +08:00
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
RelativeSizeAxes = Axes.Both,
Width = 0.45f,
},
},
},
2018-05-22 11:07:04 +08:00
};
// scroll selected room into view on selection.
selectedRoom.BindValueChanged(val =>
{
var drawable = roomsContainer.Rooms.FirstOrDefault(r => r.Room == val.NewValue);
if (drawable != null)
scrollContainer.ScrollIntoView(drawable);
});
2018-05-22 11:07:04 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
initialRoomsReceived.BindTo(RoomManager.InitialRoomsReceived);
initialRoomsReceived.BindValueChanged(onInitialRoomsReceivedChanged, true);
}
2018-05-22 11:07:04 +08:00
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
content.Padding = new MarginPadding
{
2018-05-22 12:22:23 +08:00
Top = Filter.DrawHeight,
2019-02-11 18:11:34 +08:00
Left = SearchableListOverlay.WIDTH_PADDING - DrawableRoom.SELECTION_BORDER_WIDTH + HORIZONTAL_OVERFLOW_PADDING,
Right = SearchableListOverlay.WIDTH_PADDING + HORIZONTAL_OVERFLOW_PADDING,
2018-05-22 11:07:04 +08:00
};
}
2018-10-02 11:02:47 +08:00
protected override void OnFocus(FocusEvent e)
2018-05-22 11:24:39 +08:00
{
Filter.Search.TakeFocus();
2018-05-22 11:24:39 +08:00
}
2019-01-25 18:32:37 +08:00
public override void OnEntering(IScreen last)
2018-05-22 11:24:39 +08:00
{
2019-01-25 18:32:37 +08:00
base.OnEntering(last);
onReturning();
}
public override void OnResuming(IScreen last)
{
base.OnResuming(last);
if (selectedRoom.Value?.RoomID.Value == null)
selectedRoom.Value = new Room();
music.EnsurePlayingSomething();
onReturning();
}
private void onReturning()
{
2018-05-22 12:22:23 +08:00
Filter.Search.HoldFocus = true;
2018-05-22 11:24:39 +08:00
}
2019-01-25 18:32:37 +08:00
public override bool OnExiting(IScreen next)
2018-05-22 11:24:39 +08:00
{
2018-05-22 12:22:23 +08:00
Filter.Search.HoldFocus = false;
2019-01-25 18:32:37 +08:00
return base.OnExiting(next);
}
2019-01-25 18:32:37 +08:00
public override void OnSuspending(IScreen next)
{
2019-01-25 18:32:37 +08:00
base.OnSuspending(next);
2018-05-22 12:22:23 +08:00
Filter.Search.HoldFocus = false;
2018-05-22 11:24:39 +08:00
}
private void joinRequested(Room room)
{
joiningRoom = true;
updateLoadingLayer();
2019-02-11 18:11:34 +08:00
RoomManager?.JoinRoom(room, r =>
{
2019-02-05 18:00:01 +08:00
Open(room);
joiningRoom = false;
updateLoadingLayer();
}, _ =>
{
joiningRoom = false;
updateLoadingLayer();
});
}
private void onInitialRoomsReceivedChanged(ValueChangedEvent<bool> received) => updateLoadingLayer();
private void updateLoadingLayer()
{
if (joiningRoom || !initialRoomsReceived.Value)
loadingLayer.Show();
else
loadingLayer.Hide();
}
2018-12-26 19:21:30 +08:00
/// <summary>
/// Push a room as a new subscreen.
/// </summary>
2019-02-05 18:00:01 +08:00
public void Open(Room room)
2018-12-04 14:26:06 +08:00
{
// Handles the case where a room is clicked 3 times in quick succession
2019-01-23 19:52:00 +08:00
if (!this.IsCurrentScreen())
2018-12-04 14:26:06 +08:00
return;
selectedRoom.Value = room;
2019-02-08 14:20:11 +08:00
2019-02-11 18:11:34 +08:00
this.Push(new MatchSubScreen(room));
2018-05-22 11:33:41 +08:00
}
2018-05-22 11:07:04 +08:00
}
}