2019-01-24 17:43:03 +09: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.
|
2018-12-27 13:30:36 +09:00
|
|
|
|
2020-12-18 15:18:06 +09:00
|
|
|
using System;
|
2018-12-27 13:30:36 +09:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-12-25 13:38:11 +09:00
|
|
|
using osu.Game.Online.Rooms;
|
|
|
|
using osu.Game.Online.Rooms.RoomStatuses;
|
2020-12-25 16:50:00 +01:00
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge.Components;
|
2018-12-27 13:30:36 +09:00
|
|
|
|
2019-03-25 01:02:36 +09:00
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
2018-12-27 13:30:36 +09:00
|
|
|
{
|
2019-05-14 22:37:25 +03:00
|
|
|
public class TestSceneRoomStatus : OsuTestScene
|
2018-12-27 13:30:36 +09:00
|
|
|
{
|
2019-05-14 22:37:25 +03:00
|
|
|
public TestSceneRoomStatus()
|
2018-12-27 13:30:36 +09:00
|
|
|
{
|
|
|
|
Child = new FillFlowContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Width = 0.5f,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new DrawableRoom(new Room
|
|
|
|
{
|
2020-12-21 16:18:39 +09:00
|
|
|
Name = { Value = "Open - ending in 1 day" },
|
2020-12-18 15:18:06 +09:00
|
|
|
Status = { Value = new RoomStatusOpen() },
|
|
|
|
EndDate = { Value = DateTimeOffset.Now.AddDays(1) }
|
|
|
|
}) { MatchingFilter = true },
|
2018-12-27 13:30:36 +09:00
|
|
|
new DrawableRoom(new Room
|
|
|
|
{
|
2020-12-21 16:18:39 +09:00
|
|
|
Name = { Value = "Playing - ending in 1 day" },
|
2020-12-18 15:18:06 +09:00
|
|
|
Status = { Value = new RoomStatusPlaying() },
|
|
|
|
EndDate = { Value = DateTimeOffset.Now.AddDays(1) }
|
|
|
|
}) { MatchingFilter = true },
|
2018-12-27 13:30:36 +09:00
|
|
|
new DrawableRoom(new Room
|
|
|
|
{
|
2020-12-21 16:18:39 +09:00
|
|
|
Name = { Value = "Ended" },
|
2020-12-18 15:18:06 +09:00
|
|
|
Status = { Value = new RoomStatusEnded() },
|
|
|
|
EndDate = { Value = DateTimeOffset.Now }
|
|
|
|
}) { MatchingFilter = true },
|
2020-12-21 16:18:39 +09:00
|
|
|
new DrawableRoom(new Room
|
|
|
|
{
|
2020-12-25 13:38:11 +09:00
|
|
|
Name = { Value = "Open" },
|
2020-12-21 16:18:39 +09:00
|
|
|
Status = { Value = new RoomStatusOpen() },
|
2020-12-25 23:36:09 +09:00
|
|
|
Category = { Value = RoomCategory.Realtime }
|
2020-12-21 16:18:39 +09:00
|
|
|
}) { MatchingFilter = true },
|
2018-12-27 13:30:36 +09:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|