2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-10-10 15:34:01 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-01-12 20:46:50 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
2017-10-10 15:34:01 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
|
|
|
|
{
|
|
|
|
|
public class DrawableJuiceStream : DrawableCatchHitObject<JuiceStream>
|
|
|
|
|
{
|
|
|
|
|
private readonly Container dropletContainer;
|
|
|
|
|
|
2018-01-12 20:46:50 +08:00
|
|
|
|
public DrawableJuiceStream(JuiceStream s, Func<CatchHitObject, DrawableHitObject<CatchHitObject>> getVisualRepresentation = null)
|
2018-01-10 14:37:55 +08:00
|
|
|
|
: base(s)
|
2017-10-10 15:34:01 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2018-01-11 19:56:09 +08:00
|
|
|
|
Origin = Anchor.BottomLeft;
|
2017-10-11 17:18:06 +08:00
|
|
|
|
X = 0;
|
2017-10-10 15:34:01 +08:00
|
|
|
|
|
2018-03-15 12:41:06 +08:00
|
|
|
|
InternalChild = dropletContainer = new Container { RelativeSizeAxes = Axes.Both, };
|
2017-10-10 15:34:01 +08:00
|
|
|
|
|
2018-01-12 20:46:50 +08:00
|
|
|
|
foreach (var o in s.NestedHitObjects.Cast<CatchHitObject>())
|
|
|
|
|
AddNested(getVisualRepresentation?.Invoke(o));
|
2017-10-10 15:34:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-01 16:48:59 +08:00
|
|
|
|
protected override bool ProvidesJudgement => false;
|
|
|
|
|
|
2018-01-11 14:08:30 +08:00
|
|
|
|
protected override void AddNested(DrawableHitObject h)
|
2017-10-10 15:34:01 +08:00
|
|
|
|
{
|
2018-01-12 18:18:49 +08:00
|
|
|
|
var catchObject = (DrawableCatchHitObject)h;
|
|
|
|
|
|
|
|
|
|
catchObject.CheckPosition = o => CheckPosition?.Invoke(o) ?? false;
|
|
|
|
|
|
2017-10-10 15:34:01 +08:00
|
|
|
|
dropletContainer.Add(h);
|
|
|
|
|
base.AddNested(h);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|