1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00
osu-lazer/osu.Game.Modes.Osu/UI/OsuPlayfield.cs

94 lines
3.1 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 18:58:57 +08:00
2017-02-10 13:16:23 +08:00
using OpenTK;
2016-09-02 18:58:57 +08: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;
using osu.Game.Modes.Osu.Objects.Drawables.Connections;
2016-11-14 17:54:24 +08:00
using osu.Game.Modes.UI;
using System.Linq;
2017-02-28 19:14:48 +08:00
using osu.Game.Graphics.Cursor;
using osu.Game.Modes.Osu.Judgements;
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<OsuHitObject, OsuJudgementInfo>
2016-09-02 18:58:57 +08:00
{
private Container approachCircles;
private Container judgementLayer;
private ConnectionRenderer<OsuHitObject> connectionLayer;
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;
}
}
2017-03-07 14:43:44 +08:00
public OsuPlayfield() : base(512)
2016-09-02 18:58:57 +08:00
{
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
Add(new Drawable[]
2016-11-02 13:07:20 +08:00
{
connectionLayer = new FollowPointRenderer
{
RelativeSizeAxes = Axes.Both,
Depth = 2,
},
2017-02-10 13:16:23 +08:00
judgementLayer = new Container
{
RelativeSizeAxes = Axes.Both,
Depth = 1,
2017-02-10 13:16:23 +08:00
},
approachCircles = new Container
{
RelativeSizeAxes = Axes.Both,
Depth = -1,
2017-02-28 19:14:48 +08:00
},
2016-11-02 13:07:20 +08:00
});
2016-09-02 18:58:57 +08:00
}
2016-11-02 16:08:34 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
AddInternal(new OsuCursorContainer { Colour = Color4.LightYellow });
}
public override void Add(DrawableHitObject<OsuHitObject, OsuJudgementInfo> h)
2016-11-02 16:08:34 +08:00
{
h.Depth = (float)h.HitObject.StartTime;
IDrawableHitObjectWithProxiedApproach c = h as IDrawableHitObjectWithProxiedApproach;
if (c != null)
approachCircles.Add(c.ProxiedLayer.CreateProxy());
base.Add(h);
2016-11-02 16:08:34 +08:00
}
2017-02-10 13:16:23 +08:00
public override void PostProcess()
{
connectionLayer.HitObjects = HitObjects.Children
2017-03-07 14:43:44 +08:00
.Select(d => d.HitObject)
.OrderBy(h => h.StartTime);
2017-02-10 13:16:23 +08:00
}
public override void OnJudgement(DrawableHitObject<OsuHitObject, OsuJudgementInfo> judgedObject)
{
HitExplosion explosion = new HitExplosion(judgedObject.Judgement, judgedObject.HitObject);
judgementLayer.Add(explosion);
}
2016-09-02 18:58:57 +08:00
}
}