2018-04-13 17:19:50 +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
|
|
|
|
|
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
|
|
|
|
{
|
|
|
|
|
public class OsuPlayfield : Playfield
|
|
|
|
|
{
|
|
|
|
|
private readonly Container approachCircles;
|
|
|
|
|
private readonly JudgementContainer<DrawableOsuJudgement> judgementLayer;
|
|
|
|
|
private readonly ConnectionRenderer<OsuHitObject> connectionLayer;
|
|
|
|
|
|
|
|
|
|
public static readonly Vector2 BASE_SIZE = new Vector2(512, 384);
|
|
|
|
|
|
|
|
|
|
public OsuPlayfield()
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
2018-09-21 14:08:43 +08:00
|
|
|
|
Size = new Vector2(0.75f);
|
|
|
|
|
|
2018-09-21 13:43:17 +08:00
|
|
|
|
InternalChild = new PlayfieldLayer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-21 13:02:32 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-09-21 13:43:17 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-21 13:43:17 +08:00
|
|
|
|
connectionLayer = new FollowPointRenderer
|
2018-09-21 13:02:32 +08:00
|
|
|
|
{
|
2018-09-21 13:43:17 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Depth = 2,
|
|
|
|
|
},
|
|
|
|
|
judgementLayer = new JudgementContainer<DrawableOsuJudgement>
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Depth = 1,
|
|
|
|
|
},
|
|
|
|
|
HitObjectContainer,
|
|
|
|
|
approachCircles = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Depth = -1,
|
|
|
|
|
},
|
2018-09-21 13:02:32 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Add(DrawableHitObject h)
|
|
|
|
|
{
|
2018-08-06 09:54:16 +08:00
|
|
|
|
h.OnNewResult += onNewResult;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
var c = h as IDrawableHitObjectWithProxiedApproach;
|
2018-04-20 17:04:43 +08:00
|
|
|
|
if (c != null)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
approachCircles.Add(c.ProxiedLayer.CreateProxy());
|
|
|
|
|
|
|
|
|
|
base.Add(h);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void PostProcess()
|
|
|
|
|
{
|
2018-08-30 12:30:23 +08:00
|
|
|
|
connectionLayer.HitObjects = HitObjectContainer.Objects.Select(d => d.HitObject).OfType<OsuHitObject>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 09:54:16 +08:00
|
|
|
|
private void onNewResult(DrawableHitObject judgedObject, JudgementResult result)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-08-06 10:31:46 +08:00
|
|
|
|
if (!judgedObject.DisplayResult || !DisplayJudgements)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2018-08-02 19:36:38 +08:00
|
|
|
|
DrawableOsuJudgement explosion = new DrawableOsuJudgement(result, judgedObject)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
2018-06-29 16:00:41 +08:00
|
|
|
|
Position = ((OsuHitObject)judgedObject.HitObject).StackedEndPosition
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
judgementLayer.Add(explosion);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|