2020-02-17 19:06:08 +09: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.
|
|
|
|
|
2021-06-07 13:59:17 +09:00
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
2023-09-19 03:17:07 +03:00
|
|
|
using osu.Game.Skinning;
|
2023-09-03 02:22:41 +03:00
|
|
|
using osuTK;
|
2020-02-17 19:06:08 +09:00
|
|
|
|
2020-12-07 12:35:24 +09:00
|
|
|
namespace osu.Game.Rulesets.Catch.Skinning.Legacy
|
2020-02-17 19:06:08 +09:00
|
|
|
{
|
2020-12-07 12:57:24 +09:00
|
|
|
internal partial class LegacyFruitPiece : LegacyCatchHitObjectPiece
|
2020-02-17 19:06:08 +09:00
|
|
|
{
|
2023-10-05 20:37:10 +02:00
|
|
|
private static readonly Vector2 fruit_max_size = new Vector2(160);
|
2023-09-03 02:22:41 +03:00
|
|
|
|
2020-12-07 12:57:24 +09:00
|
|
|
protected override void LoadComplete()
|
2020-02-17 19:06:08 +09:00
|
|
|
{
|
2020-12-07 12:57:24 +09:00
|
|
|
base.LoadComplete();
|
2020-02-17 19:06:08 +09:00
|
|
|
|
2021-06-07 14:49:37 +09:00
|
|
|
IndexInBeatmap.BindValueChanged(index =>
|
|
|
|
{
|
|
|
|
setTexture(Fruit.GetVisualRepresentation(index.NewValue));
|
|
|
|
}, true);
|
2020-02-17 19:06:08 +09:00
|
|
|
}
|
2020-02-19 11:23:45 +09:00
|
|
|
|
2020-12-07 12:57:24 +09:00
|
|
|
private void setTexture(FruitVisualRepresentation visualRepresentation)
|
2020-02-19 11:23:45 +09:00
|
|
|
{
|
2020-12-08 16:59:06 +09:00
|
|
|
switch (visualRepresentation)
|
|
|
|
{
|
|
|
|
case FruitVisualRepresentation.Pear:
|
2023-09-20 12:48:15 +09:00
|
|
|
setTextures("pear");
|
2020-12-08 16:59:06 +09:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FruitVisualRepresentation.Grape:
|
2023-09-20 12:48:15 +09:00
|
|
|
setTextures("grapes");
|
2020-12-08 16:59:06 +09:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FruitVisualRepresentation.Pineapple:
|
2023-09-20 12:48:15 +09:00
|
|
|
setTextures("apple");
|
2020-12-08 16:59:06 +09:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FruitVisualRepresentation.Raspberry:
|
2023-09-20 12:48:15 +09:00
|
|
|
setTextures("orange");
|
2020-12-08 16:59:06 +09:00
|
|
|
break;
|
|
|
|
}
|
2023-09-20 12:48:15 +09:00
|
|
|
|
|
|
|
void setTextures(string fruitName) => SetTexture(
|
|
|
|
Skin.GetTexture($"fruit-{fruitName}")?.WithMaximumSize(fruit_max_size),
|
|
|
|
Skin.GetTexture($"fruit-{fruitName}-overlay")?.WithMaximumSize(fruit_max_size)
|
|
|
|
);
|
2020-02-19 11:23:45 +09:00
|
|
|
}
|
2020-02-17 19:06:08 +09:00
|
|
|
}
|
|
|
|
}
|