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

296 lines
12 KiB
C#
Raw Normal View History

2018-06-06 11:29:52 +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
2018-06-06 11:53:24 +08:00
using osu.Framework.Allocation;
using osu.Framework.Configuration;
2018-06-06 11:29:52 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
2018-06-06 11:53:24 +08:00
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
2018-06-06 13:38:09 +08:00
using osu.Game.Online.Multiplayer;
using osu.Game.Overlays.SearchableList;
2018-11-26 15:29:56 +08:00
using osuTK;
using osuTK.Graphics;
2018-06-06 11:29:52 +08:00
2018-12-10 18:20:41 +08:00
namespace osu.Game.Screens.Multi.Match.Components
2018-06-06 11:29:52 +08:00
{
2018-06-07 10:30:17 +08:00
public class RoomSettingsOverlay : FocusedOverlayContainer
2018-06-06 11:29:52 +08:00
{
2018-08-25 06:11:52 +08:00
private const float transition_duration = 350;
private const float field_padding = 45;
2018-06-06 11:29:52 +08:00
private readonly Bindable<string> nameBind = new Bindable<string>();
private readonly Bindable<RoomAvailability> availabilityBind = new Bindable<RoomAvailability>();
private readonly Bindable<GameType> typeBind = new Bindable<GameType>();
private readonly Bindable<int?> maxParticipantsBind = new Bindable<int?>();
2018-12-13 17:38:03 +08:00
private readonly IBindableCollection<PlaylistItem> playlistBind = new BindableCollection<PlaylistItem>();
2018-06-06 13:38:09 +08:00
private readonly Container content;
2018-12-06 17:16:17 +08:00
private readonly OsuSpriteText typeLabel;
2018-06-06 13:38:09 +08:00
protected readonly OsuTextBox NameField, MaxParticipantsField;
protected readonly RoomAvailabilityPicker AvailabilityPicker;
protected readonly GameTypePicker TypePicker;
protected readonly TriangleButton ApplyButton;
2018-12-10 15:50:00 +08:00
protected readonly OsuPasswordTextBox PasswordField;
2018-06-07 10:30:17 +08:00
[Resolved]
private RoomManager manager { get; set; }
2018-12-10 17:25:32 +08:00
[Resolved]
private Room room { get; set; }
public RoomSettingsOverlay()
2018-06-06 11:29:52 +08:00
{
Masking = true;
Child = content = new Container
2018-06-06 11:29:52 +08:00
{
RelativeSizeAxes = Axes.Both,
RelativePositionAxes = Axes.Y,
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.FromHex(@"28242d"),
},
2018-06-06 11:53:24 +08:00
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = 35, Bottom = 75, Horizontal = SearchableListOverlay.WIDTH_PADDING },
2018-06-06 11:53:24 +08:00
Children = new[]
{
new SectionContainer
{
Padding = new MarginPadding { Right = field_padding / 2 },
2018-06-06 11:53:24 +08:00
Children = new[]
{
2018-06-06 12:29:36 +08:00
new Section("ROOM NAME")
{
Child = NameField = new SettingsTextBox
2018-06-07 11:25:16 +08:00
{
2018-06-07 11:51:27 +08:00
RelativeSizeAxes = Axes.X,
2018-08-14 22:36:46 +08:00
TabbableContentContainer = this,
2018-06-07 11:25:16 +08:00
OnCommit = (sender, text) => apply(),
},
2018-06-06 12:29:36 +08:00
},
2018-06-06 13:25:08 +08:00
new Section("ROOM VISIBILITY")
{
Child = AvailabilityPicker = new RoomAvailabilityPicker(),
2018-06-06 13:25:08 +08:00
},
2018-06-06 13:06:33 +08:00
new Section("GAME TYPE")
{
Child = new FillFlowContainer
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Direction = FillDirection.Vertical,
Spacing = new Vector2(7),
Children = new Drawable[]
{
TypePicker = new GameTypePicker
{
RelativeSizeAxes = Axes.X,
},
typeLabel = new OsuSpriteText
{
TextSize = 14,
},
},
},
2018-06-06 13:06:33 +08:00
},
2018-06-06 11:53:24 +08:00
},
},
new SectionContainer
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Padding = new MarginPadding { Left = field_padding / 2 },
2018-06-06 11:53:24 +08:00
Children = new[]
{
2018-06-06 12:29:36 +08:00
new Section("MAX PARTICIPANTS")
{
Child = MaxParticipantsField = new SettingsNumberTextBox
2018-06-07 11:25:16 +08:00
{
2018-06-07 11:51:27 +08:00
RelativeSizeAxes = Axes.X,
2018-08-14 22:36:46 +08:00
TabbableContentContainer = this,
2018-06-07 11:25:16 +08:00
OnCommit = (sender, text) => apply(),
},
2018-06-06 12:29:36 +08:00
},
new Section("PASSWORD (OPTIONAL)")
{
2018-12-10 15:50:00 +08:00
Child = PasswordField = new SettingsPasswordTextBox
2018-06-07 11:25:16 +08:00
{
2018-06-07 11:51:27 +08:00
RelativeSizeAxes = Axes.X,
2018-08-14 22:36:46 +08:00
TabbableContentContainer = this,
2018-12-10 15:50:00 +08:00
OnCommit = (sender, text) => apply()
2018-06-07 11:25:16 +08:00
},
2018-06-06 12:29:36 +08:00
},
2018-06-06 11:53:24 +08:00
},
},
},
},
ApplyButton = new CreateRoomButton
2018-06-06 11:53:24 +08:00
{
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
Size = new Vector2(230, 35),
Margin = new MarginPadding { Bottom = 20 },
2018-06-07 11:25:16 +08:00
Action = apply,
2018-06-06 11:53:24 +08:00
},
2018-06-06 11:29:52 +08:00
},
};
TypePicker.Current.ValueChanged += t => typeLabel.Text = t.Name;
nameBind.ValueChanged += n => NameField.Text = n;
availabilityBind.ValueChanged += a => AvailabilityPicker.Current.Value = a;
typeBind.ValueChanged += t => TypePicker.Current.Value = t;
maxParticipantsBind.ValueChanged += m => MaxParticipantsField.Text = m?.ToString();
2018-06-06 11:29:52 +08:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
typeLabel.Colour = colours.Yellow;
2018-12-10 15:50:00 +08:00
2018-12-10 17:25:32 +08:00
nameBind.BindTo(room.Name);
2018-12-13 17:38:03 +08:00
playlistBind.BindTo(room.Playlist);
2018-12-10 17:25:32 +08:00
availabilityBind.BindTo(room.Availability);
typeBind.BindTo(room.Type);
maxParticipantsBind.BindTo(room.MaxParticipants);
MaxParticipantsField.ReadOnly = true;
PasswordField.ReadOnly = true;
AvailabilityPicker.ReadOnly.Value = true;
TypePicker.ReadOnly.Value = true;
ApplyButton.Enabled.Value = false;
2018-12-10 15:50:00 +08:00
}
2018-12-10 17:25:32 +08:00
protected override void Update()
{
2018-12-10 17:25:32 +08:00
base.Update();
2018-12-10 17:25:32 +08:00
ApplyButton.Enabled.Value = hasValidSettings;
}
2018-12-13 17:38:03 +08:00
private bool hasValidSettings => NameField.Text.Length > 0 && playlistBind.Count > 0;
2018-12-10 17:25:32 +08:00
2018-06-06 11:29:52 +08:00
protected override void PopIn()
{
// reapply the rooms values if the overlay was completely closed
if (content.Y == -1)
{
nameBind.TriggerChange();
availabilityBind.TriggerChange();
typeBind.TriggerChange();
maxParticipantsBind.TriggerChange();
}
content.MoveToY(0, transition_duration, Easing.OutQuint);
2018-06-06 11:29:52 +08:00
}
protected override void PopOut()
{
content.MoveToY(-1, transition_duration, Easing.InSine);
2018-06-06 11:29:52 +08:00
}
2018-06-06 11:53:24 +08:00
2018-06-07 11:25:16 +08:00
private void apply()
{
nameBind.Value = NameField.Text;
availabilityBind.Value = AvailabilityPicker.Current.Value;
typeBind.Value = TypePicker.Current.Value;
if (int.TryParse(MaxParticipantsField.Text, out int max))
maxParticipantsBind.Value = max;
else
maxParticipantsBind.Value = null;
2018-06-07 11:25:16 +08:00
manager.CreateRoom(room);
2018-06-07 11:25:16 +08:00
}
2018-06-06 12:29:36 +08:00
private class SettingsTextBox : OsuTextBox
{
protected override Color4 BackgroundUnfocused => Color4.Black;
protected override Color4 BackgroundFocused => Color4.Black;
2018-08-14 23:08:00 +08:00
}
2018-06-06 12:29:36 +08:00
private class SettingsNumberTextBox : SettingsTextBox
{
protected override bool CanAddCharacter(char character) => char.IsNumber(character);
}
2018-08-14 23:08:00 +08:00
private class SettingsPasswordTextBox : OsuPasswordTextBox
{
protected override Color4 BackgroundUnfocused => Color4.Black;
protected override Color4 BackgroundFocused => Color4.Black;
2018-06-06 12:29:36 +08:00
}
2018-06-06 11:53:24 +08:00
private class SectionContainer : FillFlowContainer<Section>
{
public SectionContainer()
{
RelativeSizeAxes = Axes.Both;
Width = 0.5f;
2018-06-06 11:53:24 +08:00
Direction = FillDirection.Vertical;
Spacing = new Vector2(field_padding);
2018-06-06 11:53:24 +08:00
}
}
private class Section : Container
{
private readonly Container content;
protected override Container<Drawable> Content => content;
public Section(string title)
{
2018-06-06 12:29:36 +08:00
AutoSizeAxes = Axes.Y;
RelativeSizeAxes = Axes.X;
2018-06-06 11:53:24 +08:00
InternalChild = new FillFlowContainer
{
2018-06-06 12:29:36 +08:00
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
2018-06-06 11:53:24 +08:00
Direction = FillDirection.Vertical,
Spacing = new Vector2(5),
Children = new Drawable[]
{
new OsuSpriteText
{
TextSize = 12,
Font = @"Exo2.0-Bold",
Text = title.ToUpper(),
},
content = new Container
{
2018-06-06 12:29:36 +08:00
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
2018-06-06 11:53:24 +08:00
},
},
};
}
}
private class CreateRoomButton : TriangleButton
2018-06-06 11:53:24 +08:00
{
public CreateRoomButton()
2018-06-06 11:53:24 +08:00
{
Text = "Create";
2018-06-06 11:53:24 +08:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
BackgroundColour = colours.Yellow;
2018-06-06 15:32:04 +08:00
Triangles.ColourLight = colours.YellowLight;
Triangles.ColourDark = colours.YellowDark;
2018-06-06 11:53:24 +08:00
}
}
2018-06-06 11:29:52 +08:00
}
}