1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 06:29:36 +08:00
osu-lazer/osu.Game.Mode.Osu/UI/OsuPlayfield.cs

67 lines
2.0 KiB
C#
Raw Normal View History

2016-09-02 18:58:57 +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.Containers;
2016-10-16 20:10:06 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Game.Modes.Objects.Drawables;
using osu.Game.Modes.Osu.Objects;
using osu.Game.Modes.Osu.Objects.Drawables;
2016-11-14 17:54:24 +08:00
using osu.Game.Modes.UI;
2016-11-14 16:23:33 +08:00
using OpenTK;
using OpenTK.Graphics;
2016-09-02 18:58:57 +08:00
2016-11-14 17:54:24 +08:00
namespace osu.Game.Modes.Osu.UI
2016-09-02 18:58:57 +08:00
{
public class OsuPlayfield : Playfield
2016-09-02 18:58:57 +08:00
{
private Container approachCircles;
2016-11-02 13:07:20 +08:00
2016-11-02 14:37:45 +08:00
public override Vector2 Size
{
get
{
var parentSize = Parent.DrawSize;
var aspectSize = parentSize.X * 0.75f < parentSize.Y ? new Vector2(parentSize.X, parentSize.X * 0.75f) : new Vector2(parentSize.Y * 4f / 3f, parentSize.Y);
return new Vector2(aspectSize.X / parentSize.X, aspectSize.Y / parentSize.Y) * base.Size;
}
}
2016-09-02 18:58:57 +08:00
public OsuPlayfield()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2016-11-02 14:37:45 +08:00
RelativeSizeAxes = Axes.Both;
2016-11-02 16:08:34 +08:00
Size = new Vector2(0.75f);
2016-09-02 18:58:57 +08:00
AddInternal(new Drawable[]
2016-11-02 13:07:20 +08:00
{
new Box
{
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Colour = Color4.Black,
Depth = float.MinValue,
Alpha = 0.5f,
},
approachCircles = new Container
{
RelativeSizeAxes = Axes.Both,
}
2016-11-02 13:07:20 +08:00
});
2016-09-02 18:58:57 +08:00
}
2016-11-02 16:08:34 +08:00
public override void Add(DrawableHitObject h)
2016-11-02 16:08:34 +08:00
{
DrawableHitCircle c = h as DrawableHitCircle;
if (c != null)
{
approachCircles.Add(c.ApproachCircle.CreateProxy());
}
base.Add(h);
2016-11-02 16:08:34 +08:00
}
2016-09-02 18:58:57 +08:00
}
}