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.
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2020-11-27 09:10:05 +08:00
|
|
|
using osu.Framework.Bindables;
|
2020-02-17 17:47:22 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
2020-11-26 13:26:38 +08:00
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawables.Pieces
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
|
|
|
internal class FruitPiece : CompositeDrawable
|
|
|
|
{
|
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>();
|
|
|
|
public readonly Bindable<bool> HyperDash = new Bindable<bool>();
|
|
|
|
|
2020-11-30 12:06:04 +08:00
|
|
|
public BorderPiece Border { get; private set; }
|
2020-02-17 17:47:22 +08:00
|
|
|
|
|
|
|
public FruitPiece()
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-11-27 09:10:05 +08:00
|
|
|
private void load()
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
|
|
|
AddRangeInternal(new[]
|
|
|
|
{
|
2020-11-27 09:10:05 +08:00
|
|
|
getFruitFor(VisualRepresentation.Value),
|
|
|
|
Border = new BorderPiece(),
|
2020-02-17 17:47:22 +08:00
|
|
|
});
|
|
|
|
|
2020-11-27 09:10:05 +08:00
|
|
|
if (HyperDash.Value)
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
2020-11-26 13:36:42 +08:00
|
|
|
AddInternal(new HyperBorderPiece());
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-19 22:32:56 +08:00
|
|
|
private Drawable getFruitFor(FruitVisualRepresentation representation)
|
2020-02-17 17:47:22 +08:00
|
|
|
{
|
|
|
|
switch (representation)
|
|
|
|
{
|
|
|
|
case FruitVisualRepresentation.Pear:
|
2020-02-19 22:32:56 +08:00
|
|
|
return new PearPiece();
|
2020-02-17 17:47:22 +08:00
|
|
|
|
|
|
|
case FruitVisualRepresentation.Grape:
|
2020-02-19 22:32:56 +08:00
|
|
|
return new GrapePiece();
|
|
|
|
|
|
|
|
case FruitVisualRepresentation.Pineapple:
|
|
|
|
return new PineapplePiece();
|
2020-02-17 17:47:22 +08:00
|
|
|
|
|
|
|
case FruitVisualRepresentation.Banana:
|
2020-02-19 22:32:56 +08:00
|
|
|
return new BananaPiece();
|
2020-02-19 09:28:20 +08:00
|
|
|
|
2020-02-19 22:32:56 +08:00
|
|
|
case FruitVisualRepresentation.Raspberry:
|
|
|
|
return new RaspberryPiece();
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
2020-02-19 22:32:56 +08:00
|
|
|
|
|
|
|
return Empty();
|
2020-02-17 17:47:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|