osu/osu.Game/Screens/Multi/Lounge/LoungeSubScreen.cs

137 lines
4.6 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 03:07:04 +00:00
using System;
2018-05-22 03:07:04 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-10-02 03:02:47 +00:00
using osu.Framework.Input.Events;
2018-05-22 03:24:39 +00:00
using osu.Framework.Screens;
using osu.Game.Graphics.UserInterface;
2018-05-22 03:07:04 +00:00
using osu.Game.Online.Multiplayer;
using osu.Game.Overlays.SearchableList;
2018-12-10 10:20:41 +00:00
using osu.Game.Screens.Multi.Lounge.Components;
using osu.Game.Screens.Multi.Match;
2018-05-22 03:07:04 +00:00
2018-12-10 10:20:41 +00:00
namespace osu.Game.Screens.Multi.Lounge
2018-05-22 03:07:04 +00:00
{
2019-01-25 10:32:37 +00:00
public class LoungeSubScreen : MultiplayerSubScreen
2018-05-22 03:07:04 +00:00
{
2019-01-25 10:32:37 +00:00
public override string Title => "Lounge";
protected readonly FilterControl Filter;
2018-05-22 03:07:04 +00:00
private readonly Container content;
private readonly Action<Screen> pushGameplayScreen;
private readonly ProcessingOverlay processingOverlay;
2018-05-22 03:07:04 +00:00
2018-12-26 11:05:57 +00:00
public LoungeSubScreen(Action<Screen> pushGameplayScreen)
2018-05-22 03:07:04 +00:00
{
this.pushGameplayScreen = pushGameplayScreen;
RoomInspector inspector;
RoomsContainer rooms;
2019-01-23 11:52:00 +00:00
InternalChildren = new Drawable[]
2018-05-22 03:07:04 +00:00
{
2018-12-03 09:30:26 +00:00
Filter = new FilterControl { Depth = -1 },
2018-05-22 03:07:04 +00:00
content = new Container
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
new Container
2018-05-22 03:07:04 +00:00
{
RelativeSizeAxes = Axes.Both,
Width = 0.55f,
Children = new Drawable[]
2018-05-22 03:07:04 +00:00
{
new ScrollContainer
{
RelativeSizeAxes = Axes.Both,
ScrollbarOverlapsContent = false,
Padding = new MarginPadding(10),
Child = new SearchContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Child = rooms = new RoomsContainer { JoinRequested = joinRequested }
},
},
processingOverlay = new ProcessingOverlay { Alpha = 0 }
}
2018-05-22 03:07:04 +00:00
},
inspector = new RoomInspector
2018-05-22 03:07:04 +00:00
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
RelativeSizeAxes = Axes.Both,
Width = 0.45f,
},
},
},
2018-05-22 03:07:04 +00:00
};
2018-05-22 03:24:39 +00:00
2018-12-20 11:58:34 +00:00
inspector.Room.BindTo(rooms.SelectedRoom);
2019-01-23 11:52:00 +00:00
Filter.Search.Exit += this.Exit;
2018-05-22 03:07:04 +00:00
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
content.Padding = new MarginPadding
{
2018-05-22 04:22:23 +00:00
Top = Filter.DrawHeight,
2019-01-29 12:27:32 +00:00
Left = SearchableListOverlay.WIDTH_PADDING - DrawableRoom.SELECTION_BORDER_WIDTH + OsuScreen.HORIZONTAL_OVERFLOW_PADDING,
Right = SearchableListOverlay.WIDTH_PADDING + OsuScreen.HORIZONTAL_OVERFLOW_PADDING,
2018-05-22 03:07:04 +00:00
};
}
2018-10-02 03:02:47 +00:00
protected override void OnFocus(FocusEvent e)
2018-05-22 03:24:39 +00:00
{
Filter.Search.TakeFocus();
2018-05-22 03:24:39 +00:00
}
2019-01-25 10:32:37 +00:00
public override void OnEntering(IScreen last)
2018-05-22 03:24:39 +00:00
{
2019-01-25 10:32:37 +00:00
base.OnEntering(last);
2018-05-22 04:22:23 +00:00
Filter.Search.HoldFocus = true;
2018-05-22 03:24:39 +00:00
}
2019-01-25 10:32:37 +00:00
public override bool OnExiting(IScreen next)
2018-05-22 03:24:39 +00:00
{
2018-05-22 04:22:23 +00:00
Filter.Search.HoldFocus = false;
2019-01-25 10:32:37 +00:00
return base.OnExiting(next);
}
2019-01-25 10:32:37 +00:00
public override void OnSuspending(IScreen next)
{
2019-01-25 10:32:37 +00:00
base.OnSuspending(next);
2018-05-22 04:22:23 +00:00
Filter.Search.HoldFocus = false;
2018-05-22 03:24:39 +00:00
}
private void joinRequested(Room room)
{
processingOverlay.Show();
2019-01-25 10:32:37 +00:00
Manager?.JoinRoom(room, r =>
{
2018-12-26 12:21:26 +00:00
Push(room);
processingOverlay.Hide();
}, _ => processingOverlay.Hide());
}
2018-12-26 11:21:30 +00:00
/// <summary>
/// Push a room as a new subscreen.
/// </summary>
public void Push(Room room)
2018-12-04 06:26:06 +00:00
{
// Handles the case where a room is clicked 3 times in quick succession
2019-01-23 11:52:00 +00:00
if (!this.IsCurrentScreen())
2018-12-04 06:26:06 +00:00
return;
2019-01-23 11:52:00 +00:00
this.Push(new MatchSubScreen(room, s => pushGameplayScreen?.Invoke(s)));
2018-05-22 03:33:41 +00:00
}
2018-05-22 03:07:04 +00:00
}
}