1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:47:24 +08:00
osu-lazer/osu.Game/Screens/Multi/Match/MatchSubScreen.cs

253 lines
8.9 KiB
C#
Raw Normal View History

2018-05-29 08:01:56 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
2018-12-12 13:38:03 +08:00
using System.Linq;
2018-12-06 11:21:30 +08:00
using osu.Framework.Allocation;
2018-05-29 09:11:01 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Screens;
2018-05-29 09:11:01 +08:00
using osu.Game.Beatmaps;
using osu.Game.Graphics.Containers;
2018-05-29 08:01:56 +08:00
using osu.Game.Online.Multiplayer;
2018-12-26 15:46:50 +08:00
using osu.Game.Online.Multiplayer.GameTypes;
2018-12-22 13:01:06 +08:00
using osu.Game.Rulesets;
2018-12-10 18:20:41 +08:00
using osu.Game.Screens.Multi.Match.Components;
using osu.Game.Screens.Multi.Play;
using osu.Game.Screens.Play;
2018-05-29 09:11:01 +08:00
using osu.Game.Screens.Select;
2018-05-29 08:01:56 +08:00
2018-12-10 18:20:41 +08:00
namespace osu.Game.Screens.Multi.Match
2018-05-29 08:01:56 +08:00
{
public class MatchSubScreen : CompositeDrawable, IMultiplayerSubScreen
2018-05-29 08:01:56 +08:00
{
public bool AllowBeatmapRulesetChange => false;
public bool AllowExternalScreenChange => true;
public bool CursorVisible => true;
public string Title => room.RoomID.Value == null ? "New room" : room.Name.Value;
public string ShortTitle => "room";
public bool ValidForResume { get; set; } = true;
public bool ValidForPush { get; set; } = true;
public override bool RemoveWhenNotAlive => false;
2018-12-22 13:01:06 +08:00
private readonly RoomBindings bindings = new RoomBindings();
private readonly MatchLeaderboard leaderboard;
2018-12-25 16:14:56 +08:00
private readonly Action<Screen> pushGameplayScreen;
2018-12-13 17:38:03 +08:00
[Cached]
private readonly Room room;
[Resolved]
private IBindableBeatmap beatmap { get; set; }
2018-12-06 11:21:30 +08:00
[Resolved]
private BeatmapManager beatmapManager { get; set; }
[Resolved(CanBeNull = true)]
private OsuGame game { get; set; }
2018-12-20 19:58:34 +08:00
[Resolved(CanBeNull = true)]
private IRoomManager manager { get; set; }
2018-12-20 19:58:34 +08:00
2018-12-26 19:05:57 +08:00
public MatchSubScreen(Room room, Action<Screen> pushGameplayScreen)
2018-05-29 08:01:56 +08:00
{
this.room = room;
this.pushGameplayScreen = pushGameplayScreen;
2018-12-06 11:21:30 +08:00
RelativeSizeAxes = Axes.Both;
2018-12-22 13:01:06 +08:00
bindings.Room = room;
2018-12-07 15:20:05 +08:00
2018-12-25 16:14:56 +08:00
MatchChatDisplay chat;
2018-12-22 13:01:06 +08:00
Components.Header header;
Info info;
GridContainer bottomRow;
MatchSettingsOverlay settings;
2018-05-29 09:11:01 +08:00
2019-01-23 19:52:00 +08:00
InternalChildren = new Drawable[]
2018-05-29 09:11:01 +08:00
{
2018-12-14 13:20:03 +08:00
new GridContainer
{
RelativeSizeAxes = Axes.Both,
2018-12-14 13:20:03 +08:00
Content = new[]
{
2018-12-20 14:17:33 +08:00
new Drawable[] { header = new Components.Header(room) { Depth = -1 } },
new Drawable[] { info = new Info(room) { OnStart = onStart } },
2018-12-14 18:52:03 +08:00
new Drawable[]
{
bottomRow = new GridContainer
2018-12-14 18:52:03 +08:00
{
RelativeSizeAxes = Axes.Both,
Content = new[]
{
new Drawable[]
{
leaderboard = new MatchLeaderboard
{
Padding = new MarginPadding(10),
RelativeSizeAxes = Axes.Both,
Room = room
},
new Container
{
Padding = new MarginPadding(10),
RelativeSizeAxes = Axes.Both,
Child = chat = new MatchChatDisplay(room)
{
RelativeSizeAxes = Axes.Both
}
},
2018-12-14 18:52:03 +08:00
},
},
}
},
2018-12-14 13:20:03 +08:00
},
RowDimensions = new[]
{
new Dimension(GridSizeMode.AutoSize),
new Dimension(GridSizeMode.AutoSize),
new Dimension(GridSizeMode.Distributed),
}
},
new Container
{
RelativeSizeAxes = Axes.Both,
2018-12-10 18:20:41 +08:00
Padding = new MarginPadding { Top = Components.Header.HEIGHT },
Child = settings = new MatchSettingsOverlay(room) { RelativeSizeAxes = Axes.Both },
},
2018-05-29 09:11:01 +08:00
};
2019-01-23 19:52:00 +08:00
header.OnRequestSelectBeatmap = () => this.Push(new MatchSongSelect { Selected = addPlaylistItem });
header.Tabs.Current.ValueChanged += t =>
{
const float fade_duration = 500;
if (t is SettingsMatchPage)
{
settings.Show();
info.FadeOut(fade_duration, Easing.OutQuint);
bottomRow.FadeOut(fade_duration, Easing.OutQuint);
}
else
{
settings.Hide();
info.FadeIn(fade_duration, Easing.OutQuint);
bottomRow.FadeIn(fade_duration, Easing.OutQuint);
}
};
2018-12-25 16:14:56 +08:00
2019-01-23 19:52:00 +08:00
chat.Exit += this.Exit;
2018-05-29 08:01:56 +08:00
}
2018-12-06 11:21:30 +08:00
2018-12-27 17:10:49 +08:00
[BackgroundDependencyLoader]
private void load()
{
beatmapManager.ItemAdded += beatmapAdded;
}
public void OnEntering(IScreen last)
{
this.FadeInFromZero(WaveContainer.APPEAR_DURATION, Easing.OutQuint);
this.FadeInFromZero(WaveContainer.APPEAR_DURATION, Easing.OutQuint);
this.MoveToX(200).MoveToX(0, WaveContainer.APPEAR_DURATION, Easing.OutQuint);
}
public bool OnExiting(IScreen next)
2018-12-26 19:05:57 +08:00
{
manager?.PartRoom();
this.FadeOut(WaveContainer.DISAPPEAR_DURATION, Easing.OutQuint);
this.MoveToX(200, WaveContainer.DISAPPEAR_DURATION, Easing.OutQuint);
return false;
}
public void OnResuming(IScreen last)
{
this.FadeIn(WaveContainer.APPEAR_DURATION, Easing.OutQuint);
this.MoveToX(0, WaveContainer.APPEAR_DURATION, Easing.OutQuint);
}
public void OnSuspending(IScreen next)
{
this.FadeOut(WaveContainer.DISAPPEAR_DURATION, Easing.OutQuint);
this.MoveToX(-200, WaveContainer.DISAPPEAR_DURATION, Easing.OutQuint);
2018-12-26 19:05:57 +08:00
}
protected override void LoadComplete()
2018-12-06 11:21:30 +08:00
{
base.LoadComplete();
2018-12-22 13:01:06 +08:00
bindings.CurrentBeatmap.BindValueChanged(setBeatmap, true);
bindings.CurrentRuleset.BindValueChanged(setRuleset, true);
2018-12-13 17:38:03 +08:00
}
2018-12-22 13:01:06 +08:00
private void setBeatmap(BeatmapInfo beatmap)
{
// Retrieve the corresponding local beatmap, since we can't directly use the playlist's beatmap info
var localBeatmap = beatmap == null ? null : beatmapManager.QueryBeatmap(b => b.OnlineBeatmapID == beatmap.OnlineBeatmapID);
game?.ForcefullySetBeatmap(beatmapManager.GetWorkingBeatmap(localBeatmap));
2018-12-22 13:01:06 +08:00
}
private void setRuleset(RulesetInfo ruleset)
2018-12-13 17:38:03 +08:00
{
2018-12-22 13:01:06 +08:00
if (ruleset == null)
2018-12-13 17:38:03 +08:00
return;
game?.ForcefullySetRuleset(ruleset);
2018-12-22 13:01:06 +08:00
}
2018-12-14 16:35:18 +08:00
2018-12-27 17:10:49 +08:00
private void beatmapAdded(BeatmapSetInfo model, bool existing, bool silent) => Schedule(() =>
{
if (beatmap.Value != beatmapManager.DefaultBeatmap)
2018-12-27 17:10:49 +08:00
return;
if (bindings.CurrentBeatmap.Value == null)
return;
// Try to retrieve the corresponding local beatmap
var localBeatmap = beatmapManager.QueryBeatmap(b => b.OnlineBeatmapID == bindings.CurrentBeatmap.Value.OnlineBeatmapID);
if (localBeatmap != null)
game?.ForcefullySetBeatmap(beatmapManager.GetWorkingBeatmap(localBeatmap));
});
2018-12-22 13:01:06 +08:00
private void addPlaylistItem(PlaylistItem item)
{
bindings.Playlist.Clear();
bindings.Playlist.Add(item);
2018-12-06 11:21:30 +08:00
}
private void onStart()
{
beatmap.Value.Mods.Value = bindings.CurrentMods.Value.ToArray();
2018-12-22 13:01:06 +08:00
switch (bindings.Type.Value)
{
default:
case GameTypeTimeshift _:
2019-01-23 19:52:00 +08:00
pushGameplayScreen?.Invoke(new PlayerLoader(() => new TimeshiftPlayer(room, room.Playlist.First().ID)
{
Exited = () => leaderboard.RefreshScores()
2018-12-26 21:16:35 +08:00
}));
break;
}
}
2018-12-27 17:10:49 +08:00
2019-01-25 17:38:48 +08:00
public override string ToString() => Title;
2018-12-27 17:10:49 +08:00
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
if (beatmapManager != null)
beatmapManager.ItemAdded -= beatmapAdded;
}
2018-05-29 08:01:56 +08:00
}
}