1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 11:17:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu/UI/OsuPlayfield.cs

91 lines
3.0 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 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;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects.Drawables.Connections;
using osu.Game.Rulesets.UI;
using System.Linq;
using osu.Game.Rulesets.Judgements;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Osu.Judgements;
2016-09-02 18:58:57 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Osu.UI
2016-09-02 18:58:57 +08:00
{
public class OsuPlayfield : Playfield
2016-09-02 18:58:57 +08:00
{
private readonly Container approachCircles;
private readonly JudgementContainer<DrawableOsuJudgement> judgementLayer;
private readonly ConnectionRenderer<OsuHitObject> connectionLayer;
2016-11-02 13:07:20 +08:00
// Todo: This should not be a thing, but is currently required for the editor
// https://github.com/ppy/osu-framework/issues/1283
protected virtual bool ProxyApproachCircles => true;
2017-04-18 11:19:39 +08:00
public static readonly Vector2 BASE_SIZE = new Vector2(512, 384);
2018-02-19 16:02:27 +08:00
public OsuPlayfield()
: base(BASE_SIZE.X)
2016-09-02 18:58:57 +08:00
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2017-07-11 21:58:06 +08:00
AddRange(new Drawable[]
2016-11-02 13:07:20 +08:00
{
connectionLayer = new FollowPointRenderer
{
RelativeSizeAxes = Axes.Both,
Depth = 2,
},
judgementLayer = new JudgementContainer<DrawableOsuJudgement>
2017-02-10 13:16:23 +08:00
{
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
public override void Add(DrawableHitObject h)
2016-11-02 16:08:34 +08:00
{
h.Depth = (float)h.HitObject.StartTime;
h.OnJudgement += onJudgement;
2017-09-06 17:05:51 +08:00
var c = h as IDrawableHitObjectWithProxiedApproach;
if (c != null && ProxyApproachCircles)
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.Objects
2017-03-07 14:43:44 +08:00
.Select(d => d.HitObject)
.OrderBy(h => h.StartTime).OfType<OsuHitObject>();
2017-02-10 13:16:23 +08:00
}
private void onJudgement(DrawableHitObject judgedObject, Judgement judgement)
{
if (!judgedObject.DisplayJudgement)
return;
DrawableOsuJudgement explosion = new DrawableOsuJudgement(judgement, judgedObject)
{
Origin = Anchor.Centre,
Position = ((OsuHitObject)judgedObject.HitObject).StackedEndPosition + ((OsuJudgement)judgement).PositionOffset
};
judgementLayer.Add(explosion);
}
2016-09-02 18:58:57 +08:00
}
2017-04-18 11:19:39 +08:00
}