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

243 lines
8.8 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-29 08:01:56 +08:00
using System;
2019-02-11 18:11:34 +08:00
using System.Collections.Generic;
2018-12-12 13:38:03 +08:00
using System.Linq;
2018-12-06 11:21:30 +08:00
using osu.Framework.Allocation;
2019-02-05 18:00:01 +08:00
using osu.Framework.Configuration;
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;
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;
2019-02-11 18:11:34 +08:00
using osu.Game.Rulesets.Mods;
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;
2019-02-11 18:11:34 +08:00
using PlaylistItem = osu.Game.Online.Multiplayer.PlaylistItem;
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
{
2019-01-25 18:32:37 +08:00
public class MatchSubScreen : MultiplayerSubScreen
2018-05-29 08:01:56 +08:00
{
2019-02-01 14:42:15 +08:00
public override bool DisallowExternalBeatmapRulesetChanges => true;
2019-02-07 18:52:33 +08:00
public override string Title { get; }
2019-02-05 18:00:01 +08:00
2019-01-25 18:32:37 +08:00
public override string ShortTitle => "room";
2019-02-05 18:00:01 +08:00
[Resolved(typeof(Room), nameof(Room.RoomID))]
private Bindable<int?> roomId { get; set; }
2018-12-22 13:01:06 +08:00
2019-02-05 18:00:01 +08:00
[Resolved(typeof(Room), nameof(Room.Name))]
private Bindable<string> name { get; set; }
2018-12-25 16:14:56 +08:00
2019-02-11 18:11:34 +08:00
[Resolved(typeof(Room), nameof(Room.Type))]
private Bindable<GameType> type { get; set; }
2018-12-13 17:38:03 +08:00
2019-02-11 18:11:34 +08:00
[Resolved(typeof(Room))]
protected BindableList<PlaylistItem> Playlist { get; private set; }
2019-02-11 18:11:34 +08:00
[Resolved(typeof(Room))]
protected Bindable<PlaylistItem> CurrentItem { get; private set; }
2018-12-06 11:21:30 +08:00
2019-02-11 18:11:34 +08:00
[Resolved]
protected Bindable<IEnumerable<Mod>> CurrentMods { get; private set; }
public MatchSubScreen(Room room)
2019-02-05 18:00:01 +08:00
{
2019-02-11 18:11:34 +08:00
Title = room.RoomID.Value == null ? "New room" : room.Name;
2019-02-05 18:00:01 +08:00
}
2018-12-06 11:21:30 +08:00
2019-02-11 18:11:34 +08:00
private readonly Action<Screen> pushGameplayScreen;
2018-12-06 11:21:30 +08:00
2019-02-11 18:11:34 +08:00
private MatchLeaderboard leaderboard;
2018-12-07 15:20:05 +08:00
2019-02-11 18:11:34 +08:00
[Resolved]
private BeatmapManager beatmapManager { get; set; }
2018-05-29 09:11:01 +08:00
2019-02-11 18:11:34 +08:00
[Resolved(CanBeNull = true)]
private OsuGame game { get; set; }
2018-12-07 15:20:05 +08:00
2019-02-11 18:11:34 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
2018-05-29 09:11:01 +08:00
2019-02-11 18:11:34 +08:00
CurrentItem.BindValueChanged(currentItemChanged, true);
}
2019-02-05 18:00:01 +08:00
2019-02-11 18:11:34 +08:00
private void currentItemChanged(PlaylistItem item)
{
// Retrieve the corresponding local beatmap, since we can't directly use the playlist's beatmap info
var localBeatmap = item?.Beatmap == null ? null : beatmapManager.QueryBeatmap(b => b.OnlineBeatmapID == item.Beatmap.OnlineBeatmapID);
2019-02-05 18:00:01 +08:00
2019-02-11 18:11:34 +08:00
Beatmap.Value = beatmapManager.GetWorkingBeatmap(localBeatmap);
CurrentMods.Value = item?.RequiredMods ?? Enumerable.Empty<Mod>();
if (item?.Ruleset != null)
Ruleset.Value = item.Ruleset;
}
public override bool OnExiting(IScreen next)
{
RoomManager?.PartRoom();
return base.OnExiting(next);
}
[BackgroundDependencyLoader]
private void load()
{
MatchChatDisplay chat;
Components.Header header;
Info info;
GridContainer bottomRow;
MatchSettingsOverlay settings;
2019-02-05 18:00:01 +08:00
2019-02-11 18:11:34 +08:00
InternalChildren = new Drawable[]
{
new GridContainer
{
2019-02-11 18:11:34 +08:00
RelativeSizeAxes = Axes.Both,
Content = new[]
2018-12-14 13:20:03 +08:00
{
2019-02-11 18:11:34 +08:00
new Drawable[]
2018-12-14 18:52:03 +08:00
{
2019-02-11 18:11:34 +08:00
header = new Components.Header
2018-12-14 18:52:03 +08:00
{
2019-02-11 18:11:34 +08:00
Depth = -1,
RequestBeatmapSelection = () =>
2018-12-14 18:52:03 +08:00
{
2019-02-11 18:11:34 +08:00
this.Push(new MatchSongSelect
{
Selected = item =>
{
Playlist.Clear();
Playlist.Add(item);
}
});
2019-02-05 18:00:01 +08:00
}
2019-02-11 18:11:34 +08:00
}
},
new Drawable[] { info = new Info { OnStart = onStart } },
new Drawable[]
{
bottomRow = new GridContainer
2018-12-14 18:52:03 +08:00
{
2019-02-11 18:11:34 +08:00
RelativeSizeAxes = Axes.Both,
Content = new[]
2018-12-14 18:52:03 +08:00
{
2019-02-11 18:11:34 +08:00
new Drawable[]
2018-12-14 18:52:03 +08:00
{
2019-02-11 18:11:34 +08:00
leaderboard = new MatchLeaderboard
{
2019-02-11 18:11:34 +08:00
Padding = new MarginPadding
{
2019-02-11 18:11:34 +08:00
Left = 10 + HORIZONTAL_OVERFLOW_PADDING,
Right = 10,
Vertical = 10,
},
2019-02-11 18:11:34 +08:00
RelativeSizeAxes = Axes.Both
},
new Container
{
Padding = new MarginPadding
{
2019-02-11 18:11:34 +08:00
Left = 10,
Right = 10 + HORIZONTAL_OVERFLOW_PADDING,
Vertical = 10,
},
2019-02-11 18:11:34 +08:00
RelativeSizeAxes = Axes.Both,
Child = chat = new MatchChatDisplay
{
RelativeSizeAxes = Axes.Both
}
},
2018-12-14 18:52:03 +08:00
},
2019-02-11 18:11:34 +08:00
},
}
2018-12-14 18:52:03 +08:00
},
2019-02-05 18:00:01 +08:00
},
2019-02-11 18:11:34 +08:00
RowDimensions = new[]
2019-02-05 18:00:01 +08:00
{
2019-02-11 18:11:34 +08:00
new Dimension(GridSizeMode.AutoSize),
new Dimension(GridSizeMode.AutoSize),
new Dimension(GridSizeMode.Distributed),
2019-02-05 18:00:01 +08:00
}
2019-02-11 18:11:34 +08:00
},
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = Components.Header.HEIGHT },
Child = settings = new MatchSettingsOverlay { RelativeSizeAxes = Axes.Both },
},
};
2018-12-13 17:38:03 +08:00
2019-02-11 18:11:34 +08:00
header.Tabs.Current.BindValueChanged(t =>
2019-02-05 18:00:01 +08:00
{
2019-02-11 18:11:34 +08:00
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);
}
}, true);
2018-12-22 13:01:06 +08:00
2019-02-11 18:11:34 +08:00
chat.Exit += () =>
2019-02-05 18:00:01 +08:00
{
2019-02-11 18:11:34 +08:00
if (this.IsCurrentScreen())
this.Exit();
};
2018-12-14 16:35:18 +08:00
2019-02-11 18:11:34 +08:00
beatmapManager.ItemAdded += beatmapAdded;
}
2018-12-27 17:10:49 +08:00
2019-02-11 18:11:34 +08:00
private void beatmapAdded(BeatmapSetInfo model, bool existing, bool silent) => Schedule(() =>
{
if (Beatmap.Value != beatmapManager.DefaultBeatmap)
return;
2018-12-27 17:10:49 +08:00
2019-02-11 18:11:34 +08:00
if (Beatmap.Value == null)
return;
2018-12-27 17:10:49 +08:00
2019-02-11 18:11:34 +08:00
// Try to retrieve the corresponding local beatmap
var localBeatmap = beatmapManager.QueryBeatmap(b => b.OnlineBeatmapID == CurrentItem.Value.Beatmap.OnlineBeatmapID);
2018-12-27 17:10:49 +08:00
2019-02-11 18:11:34 +08:00
if (localBeatmap != null)
Beatmap.Value = beatmapManager.GetWorkingBeatmap(localBeatmap);
});
2019-02-11 18:11:34 +08:00
private void onStart()
{
//Beatmap.Value.Mods.Value = CurrentMods.Value.ToArray();
2019-02-11 18:11:34 +08:00
switch (type.Value)
{
2019-02-11 18:11:34 +08:00
default:
case GameTypeTimeshift _:
pushGameplayScreen?.Invoke(new PlayerLoader(() => new TimeshiftPlayer(CurrentItem)
{
Exited = () => leaderboard.RefreshScores()
}));
break;
}
2019-02-11 18:11:34 +08:00
}
2018-12-27 17:10:49 +08:00
2019-02-11 18:11:34 +08:00
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
2018-12-27 17:10:49 +08:00
2019-02-11 18:11:34 +08:00
if (beatmapManager != null)
beatmapManager.ItemAdded -= beatmapAdded;
2018-12-27 17:10:49 +08:00
}
2018-05-29 08:01:56 +08:00
}
}