2016-09-02 19:30:27 +08:00
|
|
|
|
//Copyright (c) 2007-2016 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.Sprites;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.UI;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
|
2016-11-14 17:54:24 +08:00
|
|
|
|
namespace osu.Game.Modes.Mania.UI
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
|
|
|
|
public class ManiaPlayfield : Playfield
|
|
|
|
|
{
|
|
|
|
|
private readonly int columns;
|
|
|
|
|
|
|
|
|
|
public ManiaPlayfield(int columns)
|
|
|
|
|
{
|
|
|
|
|
this.columns = columns;
|
2016-10-01 17:40:14 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
Size = new Vector2(columns / 20f, 1f);
|
|
|
|
|
Anchor = Anchor.BottomCentre;
|
|
|
|
|
Origin = Anchor.BottomCentre;
|
|
|
|
|
|
2016-11-09 07:13:20 +08:00
|
|
|
|
Add(new Box { RelativeSizeAxes = Axes.Both, Alpha = 0.5f });
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < columns; i++)
|
|
|
|
|
Add(new Box()
|
|
|
|
|
{
|
2016-10-01 17:40:14 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2016-09-02 19:30:27 +08:00
|
|
|
|
Size = new Vector2(2, 1),
|
2016-10-01 17:40:14 +08:00
|
|
|
|
RelativePositionAxes = Axes.Both,
|
2016-09-02 19:30:27 +08:00
|
|
|
|
Position = new Vector2((float)i / columns, 0),
|
|
|
|
|
Alpha = 0.5f,
|
|
|
|
|
Colour = Color4.Black
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|