mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:57:25 +08:00
46 lines
1.7 KiB
C#
46 lines
1.7 KiB
C#
// 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.Bindables;
|
|
using osu.Game.Rulesets.Catch.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Skinning.Legacy
|
|
{
|
|
internal class LegacyFruitPiece : LegacyCatchHitObjectPiece
|
|
{
|
|
public readonly Bindable<FruitVisualRepresentation> VisualRepresentation = new Bindable<FruitVisualRepresentation>();
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
var fruitState = (IHasFruitState)ObjectState;
|
|
VisualRepresentation.BindTo(fruitState.VisualRepresentation);
|
|
|
|
VisualRepresentation.BindValueChanged(visual => setTexture(visual.NewValue), true);
|
|
}
|
|
|
|
private void setTexture(FruitVisualRepresentation visualRepresentation)
|
|
{
|
|
switch (visualRepresentation)
|
|
{
|
|
case FruitVisualRepresentation.Pear:
|
|
SetTexture(Skin.GetTexture("fruit-pear"), Skin.GetTexture("fruit-pear-overlay"));
|
|
break;
|
|
|
|
case FruitVisualRepresentation.Grape:
|
|
SetTexture(Skin.GetTexture("fruit-grapes"), Skin.GetTexture("fruit-grapes-overlay"));
|
|
break;
|
|
|
|
case FruitVisualRepresentation.Pineapple:
|
|
SetTexture(Skin.GetTexture("fruit-apple"), Skin.GetTexture("fruit-apple-overlay"));
|
|
break;
|
|
|
|
case FruitVisualRepresentation.Raspberry:
|
|
SetTexture(Skin.GetTexture("fruit-orange"), Skin.GetTexture("fruit-orange-overlay"));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|