2020-02-17 17:47:22 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2020-11-27 09:10:05 +08:00
|
|
|
using osu.Framework.Bindables;
|
2020-02-17 17:47:22 +08:00
|
|
|
using osu.Framework.Graphics;
|
2020-12-07 11:35:24 +08:00
|
|
|
using osu.Game.Rulesets.Catch.Objects.Drawables;
|
2020-02-17 17:47:22 +08:00
|
|
|
|
2020-12-07 11:35:24 +08:00
|
|
|
namespace osu.Game.Rulesets.Catch.Skinning.Default
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
2020-12-07 12:14:00 +08:00
|
|
|
internal class FruitPiece : CatchHitObjectPiece
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
2020-02-19 08:39:56 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Because we're adding a border around the fruit, we need to scale down some.
|
|
|
|
/// </summary>
|
2020-02-19 22:32:56 +08:00
|
|
|
public const float RADIUS_ADJUST = 1.1f;
|
2020-02-19 08:39:56 +08:00
|
|
|
|
2020-11-27 09:10:05 +08:00
|
|
|
public readonly Bindable<FruitVisualRepresentation> VisualRepresentation = new Bindable<FruitVisualRepresentation>();
|
2020-02-17 17:47:22 +08:00
|
|
|
|
2020-12-08 16:15:40 +08:00
|
|
|
protected override BorderPiece BorderPiece { get; }
|
|
|
|
protected override HyperBorderPiece HyperBorderPiece { get; }
|
|
|
|
|
2020-02-17 17:47:22 +08:00
|
|
|
public FruitPiece()
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2020-12-07 12:56:22 +08:00
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
|
|
|
new FruitPulpFormation
|
|
|
|
{
|
|
|
|
AccentColour = { BindTarget = AccentColour },
|
|
|
|
VisualRepresentation = { BindTarget = VisualRepresentation }
|
|
|
|
},
|
|
|
|
BorderPiece = new BorderPiece(),
|
|
|
|
HyperBorderPiece = new HyperBorderPiece()
|
|
|
|
};
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
|
|
|
|
2020-12-07 12:14:00 +08:00
|
|
|
protected override void LoadComplete()
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
2020-12-07 12:14:00 +08:00
|
|
|
base.LoadComplete();
|
2020-11-30 12:46:02 +08:00
|
|
|
|
2020-12-08 20:29:03 +08:00
|
|
|
var fruitState = (IHasFruitState)ObjectState;
|
|
|
|
VisualRepresentation.BindTo(fruitState.VisualRepresentation);
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|