2020-02-19 22:32:56 +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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
2020-12-07 11:35:24 +08:00
|
|
|
namespace osu.Game.Rulesets.Catch.Skinning.Default
|
2020-02-19 22:32:56 +08:00
|
|
|
{
|
|
|
|
public abstract class PulpFormation : CompositeDrawable
|
|
|
|
{
|
2020-12-07 12:56:22 +08:00
|
|
|
public readonly Bindable<Color4> AccentColour = new Bindable<Color4>();
|
2020-02-19 22:32:56 +08:00
|
|
|
|
|
|
|
protected const float LARGE_PULP_3 = 16f * FruitPiece.RADIUS_ADJUST;
|
|
|
|
protected const float DISTANCE_FROM_CENTRE_3 = 0.15f;
|
|
|
|
|
|
|
|
protected const float LARGE_PULP_4 = LARGE_PULP_3 * 0.925f;
|
|
|
|
protected const float DISTANCE_FROM_CENTRE_4 = DISTANCE_FROM_CENTRE_3 / 0.925f;
|
|
|
|
|
|
|
|
protected const float SMALL_PULP = LARGE_PULP_3 / 2;
|
|
|
|
|
2020-12-07 12:56:22 +08:00
|
|
|
private int numPulps;
|
|
|
|
|
2020-02-19 22:32:56 +08:00
|
|
|
protected PulpFormation()
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static Vector2 PositionAt(float angle, float distance) => new Vector2(
|
|
|
|
distance * MathF.Sin(angle * MathF.PI / 180),
|
|
|
|
distance * MathF.Cos(angle * MathF.PI / 180));
|
|
|
|
|
2020-12-07 12:56:22 +08:00
|
|
|
protected void Clear()
|
|
|
|
{
|
|
|
|
for (; numPulps > 0; numPulps--)
|
|
|
|
InternalChildren[numPulps - 1].Alpha = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void Add(Vector2 position, Vector2 size)
|
2020-02-19 22:32:56 +08:00
|
|
|
{
|
2020-12-07 12:56:22 +08:00
|
|
|
if (numPulps == InternalChildren.Count)
|
|
|
|
AddInternal(new Pulp { AccentColour = { BindTarget = AccentColour } });
|
|
|
|
|
|
|
|
var pulp = InternalChildren[numPulps];
|
|
|
|
pulp.Position = position;
|
|
|
|
pulp.Size = size;
|
|
|
|
pulp.Alpha = 1;
|
|
|
|
|
|
|
|
numPulps++;
|
2020-02-19 22:32:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|