2018-05-16 08:14:10 +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 osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Screens.Multi.Screens;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Multi
|
|
|
|
|
{
|
|
|
|
|
public class Multiplayer : OsuScreen
|
|
|
|
|
{
|
|
|
|
|
private readonly MultiplayerWaveContainer waves;
|
|
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => waves;
|
|
|
|
|
|
|
|
|
|
public Multiplayer()
|
|
|
|
|
{
|
|
|
|
|
InternalChild = waves = new MultiplayerWaveContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
};
|
|
|
|
|
|
2018-05-22 11:07:04 +08:00
|
|
|
|
Lounge lounge;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = OsuColour.FromHex(@"3e3a44"),
|
|
|
|
|
},
|
|
|
|
|
new Triangles
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ColourLight = OsuColour.FromHex(@"3c3842"),
|
|
|
|
|
ColourDark = OsuColour.FromHex(@"393540"),
|
|
|
|
|
TriangleScale = 5,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Top = Header.HEIGHT },
|
2018-05-22 11:07:04 +08:00
|
|
|
|
Child = lounge = new Lounge(),
|
2018-05-16 08:14:10 +08:00
|
|
|
|
},
|
2018-05-22 11:07:04 +08:00
|
|
|
|
new Header(lounge),
|
2018-05-16 08:14:10 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-05-22 11:07:04 +08:00
|
|
|
|
lounge.Exited += s => Exit();
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnEntering(Screen last)
|
|
|
|
|
{
|
|
|
|
|
base.OnEntering(last);
|
|
|
|
|
waves.Show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnExiting(Screen next)
|
|
|
|
|
{
|
|
|
|
|
waves.Hide();
|
|
|
|
|
return base.OnExiting(next);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnResuming(Screen last)
|
|
|
|
|
{
|
|
|
|
|
base.OnResuming(last);
|
|
|
|
|
waves.Show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnSuspending(Screen next)
|
|
|
|
|
{
|
|
|
|
|
base.OnSuspending(next);
|
|
|
|
|
waves.Hide();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|