2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-02 11:30:27 +00:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2016-09-02 11:30:27 +00:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Mania.Judgements;
|
2016-09-02 11:30:27 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
2016-09-02 11:30:27 +00:00
|
|
|
|
{
|
2017-03-23 10:00:18 +00:00
|
|
|
|
public class ManiaPlayfield : Playfield<ManiaBaseHit, ManiaJudgement>
|
2016-09-02 11:30:27 +00:00
|
|
|
|
{
|
|
|
|
|
public ManiaPlayfield(int columns)
|
|
|
|
|
{
|
2017-04-10 10:21:27 +00:00
|
|
|
|
Size = new Vector2(0.8f, 1f);
|
2016-09-02 11:30:27 +00:00
|
|
|
|
Anchor = Anchor.BottomCentre;
|
|
|
|
|
Origin = Anchor.BottomCentre;
|
|
|
|
|
|
2016-11-08 23:13:20 +00:00
|
|
|
|
Add(new Box { RelativeSizeAxes = Axes.Both, Alpha = 0.5f });
|
2016-09-02 11:30:27 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < columns; i++)
|
2017-03-07 01:59:19 +00:00
|
|
|
|
Add(new Box
|
2016-09-02 11:30:27 +00:00
|
|
|
|
{
|
2016-10-01 09:40:14 +00:00
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2016-09-02 11:30:27 +00:00
|
|
|
|
Size = new Vector2(2, 1),
|
2016-10-01 09:40:14 +00:00
|
|
|
|
RelativePositionAxes = Axes.Both,
|
2016-09-02 11:30:27 +00:00
|
|
|
|
Position = new Vector2((float)i / columns, 0),
|
|
|
|
|
Alpha = 0.5f,
|
|
|
|
|
Colour = Color4.Black
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|