2017-02-07 12:59:30 +08:00
|
|
|
|
// 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;
|
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;
|
2017-02-12 14:29:36 +08:00
|
|
|
|
using System.Linq;
|
2017-02-28 19:14:48 +08:00
|
|
|
|
using osu.Game.Graphics.Cursor;
|
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
|
|
|
|
{
|
2017-03-23 18:00:18 +08:00
|
|
|
|
public class OsuPlayfield : Playfield<OsuHitObject, OsuJudgement>
|
2016-09-02 18:58:57 +08:00
|
|
|
|
{
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly Container approachCircles;
|
|
|
|
|
private readonly Container judgementLayer;
|
|
|
|
|
private readonly ConnectionRenderer<OsuHitObject> connectionLayer;
|
2016-11-02 13:07:20 +08:00
|
|
|
|
|
2017-04-05 16:38:13 +08:00
|
|
|
|
public override bool ProvidingUserCursor => true;
|
|
|
|
|
|
2017-04-18 11:19:39 +08:00
|
|
|
|
public static readonly Vector2 BASE_SIZE = new Vector2(512, 384);
|
|
|
|
|
|
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-04-18 11:19:39 +08:00
|
|
|
|
public OsuPlayfield() : base(BASE_SIZE.X)
|
2016-09-02 18:58:57 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
2016-12-06 20:14:38 +08:00
|
|
|
|
Add(new Drawable[]
|
2016-11-02 13:07:20 +08:00
|
|
|
|
{
|
2017-02-12 14:29:36 +08:00
|
|
|
|
connectionLayer = new FollowPointRenderer
|
2016-12-06 20:14:38 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-02-12 14:29:36 +08:00
|
|
|
|
Depth = 2,
|
2016-12-06 20:14:38 +08:00
|
|
|
|
},
|
2017-02-10 13:16:23 +08:00
|
|
|
|
judgementLayer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-02-12 14:29:36 +08:00
|
|
|
|
Depth = 1,
|
2017-02-10 13:16:23 +08:00
|
|
|
|
},
|
2016-11-19 18:07:57 +08:00
|
|
|
|
approachCircles = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2016-12-06 20:14:38 +08:00
|
|
|
|
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
|
|
|
|
|
2017-03-06 14:24:00 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2017-03-16 21:41:07 +08:00
|
|
|
|
AddInternal(new GameplayCursor());
|
2017-03-06 14:24:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 18:00:18 +08:00
|
|
|
|
public override void Add(DrawableHitObject<OsuHitObject, OsuJudgement> h)
|
2016-11-02 16:08:34 +08:00
|
|
|
|
{
|
2016-12-08 20:07:20 +08:00
|
|
|
|
h.Depth = (float)h.HitObject.StartTime;
|
2017-03-15 17:55:38 +08:00
|
|
|
|
|
2017-02-14 09:22:28 +08:00
|
|
|
|
IDrawableHitObjectWithProxiedApproach c = h as IDrawableHitObjectWithProxiedApproach;
|
2016-11-19 18:07:57 +08:00
|
|
|
|
if (c != null)
|
2017-02-14 09:22:28 +08:00
|
|
|
|
approachCircles.Add(c.ProxiedLayer.CreateProxy());
|
2016-12-06 20:14:38 +08:00
|
|
|
|
|
2016-11-19 18:07:57 +08:00
|
|
|
|
base.Add(h);
|
2016-11-02 16:08:34 +08:00
|
|
|
|
}
|
2016-12-06 20:14:38 +08:00
|
|
|
|
|
2017-02-10 13:16:23 +08:00
|
|
|
|
public override void PostProcess()
|
|
|
|
|
{
|
2017-02-12 15:31:43 +08:00
|
|
|
|
connectionLayer.HitObjects = HitObjects.Children
|
2017-03-07 14:43:44 +08:00
|
|
|
|
.Select(d => d.HitObject)
|
2017-02-12 15:31:43 +08:00
|
|
|
|
.OrderBy(h => h.StartTime);
|
2017-02-10 13:16:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 18:00:18 +08:00
|
|
|
|
public override void OnJudgement(DrawableHitObject<OsuHitObject, OsuJudgement> judgedObject)
|
2016-12-06 20:14:38 +08:00
|
|
|
|
{
|
2017-03-23 18:00:18 +08:00
|
|
|
|
DrawableOsuJudgement explosion = new DrawableOsuJudgement(judgedObject.Judgement)
|
2017-03-23 11:49:28 +08:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Position = judgedObject.HitObject.StackedEndPosition + judgedObject.Judgement.PositionOffset
|
|
|
|
|
};
|
2016-12-06 20:14:38 +08:00
|
|
|
|
|
|
|
|
|
judgementLayer.Add(explosion);
|
|
|
|
|
}
|
2016-09-02 18:58:57 +08:00
|
|
|
|
}
|
2017-04-18 11:19:39 +08:00
|
|
|
|
}
|