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-04-13 17:19:50 +08:00
|
|
|
|
|
2018-12-14 12:38:27 +08:00
|
|
|
|
using System;
|
2018-12-25 16:17:51 +08:00
|
|
|
|
using Humanizer;
|
2019-02-22 19:26:06 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
2019-01-31 17:16:28 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-01-23 19:52:00 +08:00
|
|
|
|
using osu.Framework.Screens;
|
2019-02-22 19:26:06 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2018-12-14 12:38:27 +08:00
|
|
|
|
using osu.Game.Online.Multiplayer;
|
2019-02-28 14:01:32 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-12-10 18:20:41 +08:00
|
|
|
|
using osu.Game.Screens.Multi;
|
2018-12-04 16:43:44 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
2018-12-26 19:05:57 +08:00
|
|
|
|
public class MatchSongSelect : SongSelect, IMultiplayerSubScreen
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-12-14 12:38:27 +08:00
|
|
|
|
public Action<PlaylistItem> Selected;
|
|
|
|
|
|
2018-12-04 16:43:44 +08:00
|
|
|
|
public string ShortTitle => "song selection";
|
2018-12-25 16:17:51 +08:00
|
|
|
|
public override string Title => ShortTitle.Humanize();
|
2018-12-04 16:43:44 +08:00
|
|
|
|
|
2019-02-22 19:26:06 +08:00
|
|
|
|
[Resolved(typeof(Room))]
|
|
|
|
|
protected Bindable<PlaylistItem> CurrentItem { get; private set; }
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private BeatmapManager beatmaps { get; set; }
|
|
|
|
|
|
2019-01-31 17:16:28 +08:00
|
|
|
|
public MatchSongSelect()
|
|
|
|
|
{
|
|
|
|
|
Padding = new MarginPadding { Horizontal = HORIZONTAL_OVERFLOW_PADDING };
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-30 14:44:35 +08:00
|
|
|
|
protected override bool OnStart()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-12-14 12:38:27 +08:00
|
|
|
|
var item = new PlaylistItem
|
|
|
|
|
{
|
|
|
|
|
Beatmap = Beatmap.Value.BeatmapInfo,
|
|
|
|
|
Ruleset = Ruleset.Value,
|
2018-12-14 16:35:05 +08:00
|
|
|
|
RulesetID = Ruleset.Value.ID ?? 0
|
2018-12-14 12:38:27 +08:00
|
|
|
|
};
|
|
|
|
|
|
2019-04-10 11:03:57 +08:00
|
|
|
|
item.RequiredMods.AddRange(Mods.Value);
|
2018-12-14 12:38:27 +08:00
|
|
|
|
|
|
|
|
|
Selected?.Invoke(item);
|
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
if (this.IsCurrentScreen())
|
|
|
|
|
this.Exit();
|
2018-12-14 12:38:27 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2019-02-01 14:42:15 +08:00
|
|
|
|
|
|
|
|
|
public override bool OnExiting(IScreen next)
|
|
|
|
|
{
|
2019-02-22 19:26:06 +08:00
|
|
|
|
if (base.OnExiting(next))
|
|
|
|
|
return true;
|
|
|
|
|
|
2019-03-07 13:09:28 +08:00
|
|
|
|
if (CurrentItem.Value != null)
|
|
|
|
|
{
|
|
|
|
|
Ruleset.Value = CurrentItem.Value.Ruleset;
|
|
|
|
|
Beatmap.Value = beatmaps.GetWorkingBeatmap(CurrentItem.Value.Beatmap);
|
2019-04-10 16:13:12 +08:00
|
|
|
|
Mods.Value = CurrentItem.Value.RequiredMods?.ToArray() ?? Array.Empty<Mod>();
|
2019-03-07 13:09:28 +08:00
|
|
|
|
}
|
2019-02-27 15:16:13 +08:00
|
|
|
|
|
2019-02-01 14:42:15 +08:00
|
|
|
|
Beatmap.Disabled = true;
|
|
|
|
|
Ruleset.Disabled = true;
|
2019-04-10 11:03:57 +08:00
|
|
|
|
Mods.Disabled = true;
|
2019-02-01 14:42:15 +08:00
|
|
|
|
|
2019-02-22 19:26:06 +08:00
|
|
|
|
return false;
|
2019-02-01 14:42:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnEntering(IScreen last)
|
|
|
|
|
{
|
|
|
|
|
base.OnEntering(last);
|
|
|
|
|
|
|
|
|
|
Beatmap.Disabled = false;
|
|
|
|
|
Ruleset.Disabled = false;
|
2019-04-10 11:03:57 +08:00
|
|
|
|
Mods.Disabled = false;
|
2019-02-01 14:42:15 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|