2019-01-24 16:43:03 +08: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-05-16 08:14:10 +08:00
|
|
|
|
|
2019-02-12 10:19:34 +08:00
|
|
|
|
using System;
|
2018-12-11 16:32:01 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-12-27 19:06:07 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2018-12-27 19:06:07 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
2018-12-19 15:56:51 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-12-27 19:06:07 +08:00
|
|
|
|
using osu.Game.Input;
|
2018-12-26 15:46:50 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2018-12-19 15:56:51 +08:00
|
|
|
|
using osu.Game.Online.Multiplayer;
|
|
|
|
|
using osu.Game.Overlays.BeatmapSet.Buttons;
|
2018-05-28 11:28:11 +08:00
|
|
|
|
using osu.Game.Screens.Menu;
|
2018-12-10 18:20:41 +08:00
|
|
|
|
using osu.Game.Screens.Multi.Lounge;
|
2019-02-05 14:38:19 +08:00
|
|
|
|
using osu.Game.Screens.Multi.Lounge.Components;
|
2018-12-18 16:07:47 +08:00
|
|
|
|
using osu.Game.Screens.Multi.Match;
|
2019-02-12 10:19:34 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2018-12-19 15:56:51 +08:00
|
|
|
|
using osuTK;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Multi
|
|
|
|
|
{
|
2018-12-11 16:32:01 +08:00
|
|
|
|
[Cached]
|
2019-02-11 18:11:34 +08:00
|
|
|
|
public class Multiplayer : OsuScreen, IOnlineComponent
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-02-11 18:11:34 +08:00
|
|
|
|
public override bool CursorVisible => (screenStack.CurrentScreen as IMultiplayerSubScreen)?.CursorVisible ?? true;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
|
2019-02-12 10:19:34 +08:00
|
|
|
|
public override bool DisallowExternalBeatmapRulesetChanges => true;
|
2019-01-25 19:25:55 +08:00
|
|
|
|
|
|
|
|
|
private readonly MultiplayerWaveContainer waves;
|
2018-12-14 16:35:18 +08:00
|
|
|
|
|
2018-12-19 15:56:51 +08:00
|
|
|
|
private readonly OsuButton createButton;
|
2018-12-26 19:05:57 +08:00
|
|
|
|
private readonly LoungeSubScreen loungeSubScreen;
|
2019-01-23 19:52:00 +08:00
|
|
|
|
private readonly ScreenStack screenStack;
|
2018-12-14 16:35:18 +08:00
|
|
|
|
|
2019-02-08 14:38:05 +08:00
|
|
|
|
private readonly IBindable<bool> isIdle = new BindableBool();
|
|
|
|
|
|
2019-02-05 14:38:19 +08:00
|
|
|
|
[Cached]
|
2019-02-08 13:57:51 +08:00
|
|
|
|
private readonly Bindable<Room> currentRoom = new Bindable<Room>();
|
|
|
|
|
|
|
|
|
|
[Cached]
|
|
|
|
|
private readonly Bindable<FilterCriteria> currentFilter = new Bindable<FilterCriteria>();
|
2018-12-14 16:35:18 +08:00
|
|
|
|
|
2018-12-25 10:45:50 +08:00
|
|
|
|
[Cached(Type = typeof(IRoomManager))]
|
2018-12-22 11:45:36 +08:00
|
|
|
|
private RoomManager roomManager;
|
|
|
|
|
|
2019-01-25 19:25:55 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuGameBase game { get; set; }
|
|
|
|
|
|
2018-12-26 15:46:50 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private APIAccess api { get; set; }
|
|
|
|
|
|
2019-01-31 12:50:37 +08:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
2019-01-25 19:25:55 +08:00
|
|
|
|
private OsuLogo logo { get; set; }
|
|
|
|
|
|
2018-05-16 08:14:10 +08:00
|
|
|
|
public Multiplayer()
|
|
|
|
|
{
|
2019-01-25 19:47:31 +08:00
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
2019-01-25 19:25:55 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2019-02-12 12:02:33 +08:00
|
|
|
|
Padding = new MarginPadding { Horizontal = -HORIZONTAL_OVERFLOW_PADDING };
|
2019-01-25 19:25:55 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
InternalChild = waves = new MultiplayerWaveContainer
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-02-12 12:02:33 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-02-12 12:02:33 +08:00
|
|
|
|
new Container
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-02-12 12:02:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Children = new Drawable[]
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-02-12 12:02:33 +08:00
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = OsuColour.FromHex(@"3e3a44"),
|
|
|
|
|
},
|
|
|
|
|
new Triangles
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ColourLight = OsuColour.FromHex(@"3c3842"),
|
|
|
|
|
ColourDark = OsuColour.FromHex(@"393540"),
|
|
|
|
|
TriangleScale = 5,
|
|
|
|
|
},
|
2018-05-16 08:14:10 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
2019-02-12 12:02:33 +08:00
|
|
|
|
new Container
|
2018-12-19 15:56:51 +08:00
|
|
|
|
{
|
2019-02-12 12:02:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Top = Header.HEIGHT },
|
|
|
|
|
Child = screenStack = new ScreenStack(loungeSubScreen = new LoungeSubScreen()) { RelativeSizeAxes = Axes.Both }
|
2018-12-19 15:56:51 +08:00
|
|
|
|
},
|
2019-02-12 12:02:33 +08:00
|
|
|
|
new Header(screenStack),
|
|
|
|
|
createButton = new HeaderButton
|
2018-12-26 15:46:50 +08:00
|
|
|
|
{
|
2019-02-12 12:02:33 +08:00
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
|
Size = new Vector2(150, Header.HEIGHT - 20),
|
|
|
|
|
Margin = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Top = 10,
|
|
|
|
|
Right = 10 + HORIZONTAL_OVERFLOW_PADDING,
|
|
|
|
|
},
|
|
|
|
|
Text = "Create room",
|
|
|
|
|
Action = () => loungeSubScreen.Open(new Room
|
|
|
|
|
{
|
|
|
|
|
Name = { Value = $"{api.LocalUser}'s awesome room" }
|
|
|
|
|
}),
|
|
|
|
|
},
|
|
|
|
|
roomManager = new RoomManager()
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-12-26 19:05:57 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
screenStack.ScreenPushed += screenPushed;
|
|
|
|
|
screenStack.ScreenExited += screenExited;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-27 19:17:27 +08:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2018-12-27 19:06:07 +08:00
|
|
|
|
private void load(IdleTracker idleTracker)
|
2018-12-27 16:12:47 +08:00
|
|
|
|
{
|
|
|
|
|
api.Register(this);
|
2018-12-27 19:17:27 +08:00
|
|
|
|
|
|
|
|
|
if (idleTracker != null)
|
|
|
|
|
isIdle.BindTo(idleTracker.IsIdle);
|
2018-12-27 19:06:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
isIdle.BindValueChanged(updatePollingRate, true);
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-05 14:56:18 +08:00
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
|
|
|
|
{
|
2019-02-12 12:02:33 +08:00
|
|
|
|
var dependencies = new CachedModelDependencyContainer<Room>(base.CreateChildDependencies(parent));
|
2019-02-08 13:57:51 +08:00
|
|
|
|
dependencies.Model.BindTo(currentRoom);
|
2019-02-05 14:56:18 +08:00
|
|
|
|
return dependencies;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-27 19:06:07 +08:00
|
|
|
|
private void updatePollingRate(bool idle)
|
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
|
roomManager.TimeBetweenPolls = !this.IsCurrentScreen() || !(screenStack.CurrentScreen is LoungeSubScreen) ? 0 : (idle ? 120000 : 15000);
|
2018-12-27 19:06:07 +08:00
|
|
|
|
Logger.Log($"Polling adjusted to {roomManager.TimeBetweenPolls}");
|
2018-12-27 16:12:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-12 12:02:33 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Push a <see cref="Player"/> to the main screen stack to begin gameplay.
|
|
|
|
|
/// Generally called from a <see cref="MatchSubScreen"/> via DI resolution.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void Start(Func<Player> player)
|
2019-02-08 14:39:11 +08:00
|
|
|
|
{
|
|
|
|
|
if (!this.IsCurrentScreen())
|
|
|
|
|
return;
|
|
|
|
|
|
2019-02-12 12:02:33 +08:00
|
|
|
|
this.Push(new PlayerLoader(player));
|
2019-02-08 14:39:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-27 16:12:47 +08:00
|
|
|
|
public void APIStateChanged(APIAccess api, APIState state)
|
|
|
|
|
{
|
|
|
|
|
if (state != APIState.Online)
|
|
|
|
|
forcefullyExit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void forcefullyExit()
|
|
|
|
|
{
|
|
|
|
|
// This is temporary since we don't currently have a way to force screens to be exited
|
2019-01-23 19:52:00 +08:00
|
|
|
|
if (this.IsCurrentScreen())
|
|
|
|
|
this.Exit();
|
2018-12-27 16:12:47 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
|
this.MakeCurrent();
|
2018-12-27 16:12:47 +08:00
|
|
|
|
Schedule(forcefullyExit);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-11 18:11:34 +08:00
|
|
|
|
public override void OnEntering(IScreen last)
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
|
this.FadeIn();
|
2018-12-26 19:05:57 +08:00
|
|
|
|
|
2018-05-16 08:14:10 +08:00
|
|
|
|
waves.Show();
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-11 18:11:34 +08:00
|
|
|
|
public override bool OnExiting(IScreen next)
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
|
|
|
|
waves.Hide();
|
2018-12-18 16:07:47 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
this.Delay(WaveContainer.DISAPPEAR_DURATION).FadeOut();
|
2018-12-26 19:05:57 +08:00
|
|
|
|
|
2018-12-27 19:06:07 +08:00
|
|
|
|
cancelLooping();
|
2019-01-30 22:56:03 +08:00
|
|
|
|
|
|
|
|
|
if (screenStack.CurrentScreen != null)
|
|
|
|
|
loungeSubScreen.MakeCurrent();
|
|
|
|
|
|
2018-12-27 19:06:07 +08:00
|
|
|
|
updatePollingRate(isIdle.Value);
|
2018-12-20 19:58:34 +08:00
|
|
|
|
|
2019-01-25 20:02:35 +08:00
|
|
|
|
// the wave overlay transition takes longer than expected to run.
|
|
|
|
|
logo?.AppendAnimatingAction(() => logo.Delay(WaveContainer.DISAPPEAR_DURATION / 2).FadeOut(), false);
|
2019-01-25 19:25:55 +08:00
|
|
|
|
|
|
|
|
|
return false;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-11 18:11:34 +08:00
|
|
|
|
public override void OnResuming(IScreen last)
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
|
this.FadeIn(250);
|
|
|
|
|
this.ScaleTo(1, 250, Easing.OutSine);
|
2018-12-27 19:06:07 +08:00
|
|
|
|
|
2019-02-11 18:11:34 +08:00
|
|
|
|
logo?.AppendAnimatingAction(() => ApplyLogoArrivingDefaults(logo), true);
|
2019-01-25 20:02:35 +08:00
|
|
|
|
|
2018-12-27 19:06:07 +08:00
|
|
|
|
updatePollingRate(isIdle.Value);
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-11 18:11:34 +08:00
|
|
|
|
public override void OnSuspending(IScreen next)
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
|
this.ScaleTo(1.1f, 250, Easing.InSine);
|
|
|
|
|
this.FadeOut(250);
|
2018-12-11 16:32:01 +08:00
|
|
|
|
|
2018-12-26 21:37:09 +08:00
|
|
|
|
cancelLooping();
|
2018-12-27 19:06:07 +08:00
|
|
|
|
roomManager.TimeBetweenPolls = 0;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-26 21:37:09 +08:00
|
|
|
|
private void cancelLooping()
|
|
|
|
|
{
|
2019-02-11 18:11:34 +08:00
|
|
|
|
var track = Beatmap?.Value?.Track;
|
2019-02-11 15:30:12 +08:00
|
|
|
|
|
2018-12-26 21:37:09 +08:00
|
|
|
|
if (track != null)
|
|
|
|
|
track.Looping = false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-18 16:07:47 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
if (!this.IsCurrentScreen()) return;
|
2018-12-26 21:37:09 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
if (screenStack.CurrentScreen is MatchSubScreen)
|
2018-12-18 16:07:47 +08:00
|
|
|
|
{
|
2019-02-01 14:42:15 +08:00
|
|
|
|
var track = Beatmap.Value.Track;
|
2018-12-18 16:07:47 +08:00
|
|
|
|
if (track != null)
|
|
|
|
|
{
|
|
|
|
|
track.Looping = true;
|
|
|
|
|
|
|
|
|
|
if (!track.IsRunning)
|
|
|
|
|
{
|
2019-01-25 19:25:55 +08:00
|
|
|
|
game.Audio.AddItemToList(track);
|
2019-02-01 14:42:15 +08:00
|
|
|
|
track.Seek(Beatmap.Value.Metadata.PreviewTime);
|
2018-12-18 16:07:47 +08:00
|
|
|
|
track.Start();
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-19 15:56:51 +08:00
|
|
|
|
|
|
|
|
|
createButton.Hide();
|
2018-12-18 16:07:47 +08:00
|
|
|
|
}
|
2019-01-23 19:52:00 +08:00
|
|
|
|
else if (screenStack.CurrentScreen is LoungeSubScreen)
|
2018-12-19 15:56:51 +08:00
|
|
|
|
createButton.Show();
|
2018-12-18 16:07:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
private void screenPushed(IScreen lastScreen, IScreen newScreen)
|
|
|
|
|
=> updatePollingRate(isIdle.Value);
|
2018-12-14 16:35:18 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
private void screenExited(IScreen lastScreen, IScreen newScreen)
|
2018-12-14 16:35:18 +08:00
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
|
if (lastScreen is MatchSubScreen)
|
2018-12-26 21:37:09 +08:00
|
|
|
|
cancelLooping();
|
2018-12-18 16:07:47 +08:00
|
|
|
|
|
2018-12-27 19:06:07 +08:00
|
|
|
|
updatePollingRate(isIdle.Value);
|
2019-01-25 19:25:55 +08:00
|
|
|
|
|
|
|
|
|
if (screenStack.CurrentScreen == null)
|
|
|
|
|
this.Exit();
|
2018-12-14 16:35:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-27 16:12:47 +08:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
api?.Unregister(this);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-16 08:14:10 +08:00
|
|
|
|
private class MultiplayerWaveContainer : WaveContainer
|
|
|
|
|
{
|
|
|
|
|
protected override bool StartHidden => true;
|
|
|
|
|
|
|
|
|
|
public MultiplayerWaveContainer()
|
|
|
|
|
{
|
|
|
|
|
FirstWaveColour = OsuColour.FromHex(@"654d8c");
|
|
|
|
|
SecondWaveColour = OsuColour.FromHex(@"554075");
|
|
|
|
|
ThirdWaveColour = OsuColour.FromHex(@"44325e");
|
|
|
|
|
FourthWaveColour = OsuColour.FromHex(@"392850");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|