osu/osu.Game.Modes.Osu/UI/OsuPlayfield.cs

73 lines
2.2 KiB
C#
Raw Normal View History

// 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 10:58:57 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Modes.Objects.Drawables;
using osu.Game.Modes.Osu.Objects;
using osu.Game.Modes.Osu.Objects.Drawables;
2016-11-14 09:54:24 +00:00
using osu.Game.Modes.UI;
2016-11-14 08:23:33 +00:00
using OpenTK;
2016-09-02 10:58:57 +00:00
2016-11-14 09:54:24 +00:00
namespace osu.Game.Modes.Osu.UI
2016-09-02 10:58:57 +00:00
{
public class OsuPlayfield : Playfield
2016-09-02 10:58:57 +00:00
{
private Container approachCircles;
private Container judgementLayer;
2016-11-02 05:07:20 +00:00
2016-11-02 06:37:45 +00: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 10:58:57 +00:00
public OsuPlayfield()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2016-11-02 06:37:45 +00:00
RelativeSizeAxes = Axes.Both;
2016-11-02 08:08:34 +00:00
Size = new Vector2(0.75f);
2016-09-02 10:58:57 +00:00
Add(new Drawable[]
2016-11-02 05:07:20 +00:00
{
judgementLayer = new Container
{
RelativeSizeAxes = Axes.Both,
Depth = 1,
},
approachCircles = new Container
{
RelativeSizeAxes = Axes.Both,
Depth = -1,
}
2016-11-02 05:07:20 +00:00
});
2016-09-02 10:58:57 +00:00
}
2016-11-02 08:08:34 +00:00
public override void Add(DrawableHitObject h)
2016-11-02 08:08:34 +00:00
{
h.Depth = (float)h.HitObject.StartTime;
DrawableHitCircle c = h as DrawableHitCircle;
if (c != null)
{
approachCircles.Add(c.ApproachCircle.CreateProxy());
}
h.OnJudgement += judgement;
base.Add(h);
2016-11-02 08:08:34 +00:00
}
private void judgement(DrawableHitObject h, JudgementInfo j)
{
HitExplosion explosion = new HitExplosion((OsuJudgementInfo)j, (OsuHitObject)h.HitObject);
judgementLayer.Add(explosion);
}
2016-09-02 10:58:57 +00:00
}
}