2019-06-24 13:39:20 +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.
|
|
|
|
|
2022-03-25 16:36:02 +08:00
|
|
|
using System;
|
2022-04-05 15:47:15 +08:00
|
|
|
using System.Collections.Generic;
|
2022-03-25 16:31:03 +08:00
|
|
|
using System.Linq;
|
2019-06-24 13:39:20 +08:00
|
|
|
using osu.Framework.Allocation;
|
2022-03-25 16:31:03 +08:00
|
|
|
using osu.Framework.Bindables;
|
2019-07-19 17:38:24 +08:00
|
|
|
using osu.Framework.Graphics;
|
2022-04-04 19:35:48 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-06-24 13:39:20 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2022-03-25 16:31:03 +08:00
|
|
|
using osu.Game.Configuration;
|
2022-04-04 19:35:48 +08:00
|
|
|
using osu.Game.Graphics.Sprites;
|
2022-03-25 16:31:03 +08:00
|
|
|
using osu.Game.Overlays.Settings;
|
2022-04-01 13:46:14 +08:00
|
|
|
using osuTK;
|
2019-06-24 13:39:20 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
2019-06-24 14:25:01 +08:00
|
|
|
/// <summary>
|
2022-04-04 19:27:46 +08:00
|
|
|
/// A skinnable element which uses a single texture backing.
|
2019-06-24 14:25:01 +08:00
|
|
|
/// </summary>
|
2022-03-23 14:11:35 +08:00
|
|
|
public class SkinnableSprite : SkinnableDrawable, ISkinnableDrawable
|
2019-06-24 13:39:20 +08:00
|
|
|
{
|
2019-06-24 14:25:01 +08:00
|
|
|
protected override bool ApplySizeRestrictionsToDefault => true;
|
2019-06-24 13:39:20 +08:00
|
|
|
|
|
|
|
[Resolved]
|
2022-11-09 12:44:59 +08:00
|
|
|
private TextureStore textures { get; set; } = null!;
|
2019-06-24 13:39:20 +08:00
|
|
|
|
2022-03-25 16:31:03 +08:00
|
|
|
[SettingSource("Sprite name", "The filename of the sprite", SettingControlType = typeof(SpriteSelectorControl))]
|
|
|
|
public Bindable<string> SpriteName { get; } = new Bindable<string>(string.Empty);
|
|
|
|
|
|
|
|
[Resolved]
|
2022-11-09 12:44:59 +08:00
|
|
|
private ISkinSource source { get; set; } = null!;
|
2022-03-25 16:31:03 +08:00
|
|
|
|
2021-05-27 13:50:42 +08:00
|
|
|
public SkinnableSprite(string textureName, ConfineMode confineMode = ConfineMode.NoScaling)
|
2022-11-09 13:11:41 +08:00
|
|
|
: base(new SpriteLookup(textureName), confineMode)
|
2019-06-24 13:39:20 +08:00
|
|
|
{
|
2022-03-25 16:31:03 +08:00
|
|
|
SpriteName.Value = textureName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public SkinnableSprite()
|
2022-11-09 13:11:41 +08:00
|
|
|
: base(new SpriteLookup(string.Empty), ConfineMode.NoScaling)
|
2022-03-25 16:31:03 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.None;
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
SpriteName.BindValueChanged(name =>
|
|
|
|
{
|
2022-11-09 13:11:41 +08:00
|
|
|
((SpriteLookup)Lookup).LookupName = name.NewValue ?? string.Empty;
|
2022-03-25 16:31:03 +08:00
|
|
|
if (IsLoaded)
|
|
|
|
SkinChanged(CurrentSkin);
|
|
|
|
});
|
2019-06-24 13:39:20 +08:00
|
|
|
}
|
2019-06-24 14:27:46 +08:00
|
|
|
|
2022-11-09 13:11:41 +08:00
|
|
|
protected override Drawable CreateDefault(ISkinLookup lookup)
|
2020-11-18 15:18:27 +08:00
|
|
|
{
|
2022-11-09 13:11:41 +08:00
|
|
|
var texture = textures.Get(lookup.LookupName);
|
2020-11-18 15:18:27 +08:00
|
|
|
|
|
|
|
if (texture == null)
|
2022-11-09 13:11:41 +08:00
|
|
|
return new SpriteNotFound(lookup.LookupName);
|
2020-11-18 15:18:27 +08:00
|
|
|
|
|
|
|
return new Sprite { Texture = texture };
|
|
|
|
}
|
2019-09-03 13:21:54 +08:00
|
|
|
|
2022-03-25 16:31:03 +08:00
|
|
|
public bool UsesFixedAnchor { get; set; }
|
|
|
|
|
2022-11-09 13:11:41 +08:00
|
|
|
internal class SpriteLookup : ISkinLookup
|
2019-09-03 13:21:54 +08:00
|
|
|
{
|
2022-03-25 16:31:03 +08:00
|
|
|
public string LookupName { get; set; }
|
|
|
|
|
2022-11-09 13:11:41 +08:00
|
|
|
public SpriteLookup(string textureName)
|
2019-09-03 13:21:54 +08:00
|
|
|
{
|
2019-11-12 17:45:42 +08:00
|
|
|
LookupName = textureName;
|
2019-09-03 13:21:54 +08:00
|
|
|
}
|
|
|
|
}
|
2022-03-23 14:11:35 +08:00
|
|
|
|
2022-03-25 16:31:03 +08:00
|
|
|
public class SpriteSelectorControl : SettingsDropdown<string>
|
|
|
|
{
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2022-04-01 14:14:53 +08:00
|
|
|
// Round-about way of getting the user's skin to find available resources.
|
|
|
|
// In the future we'll probably want to allow access to resources from the fallbacks, or potentially other skins
|
|
|
|
// but that requires further thought.
|
2022-04-05 15:47:15 +08:00
|
|
|
var highestPrioritySkin = getHighestPriorityUserSkin(((SkinnableSprite)SettingSourceObject).source.AllSources) as Skin;
|
2022-04-01 14:14:53 +08:00
|
|
|
|
2022-11-09 12:44:59 +08:00
|
|
|
string[]? availableFiles = highestPrioritySkin?.SkinInfo.PerformRead(s => s.Files
|
|
|
|
.Where(f => f.Filename.EndsWith(".png", StringComparison.Ordinal)
|
|
|
|
|| f.Filename.EndsWith(".jpg", StringComparison.Ordinal))
|
|
|
|
.Select(f => f.Filename).Distinct()).ToArray();
|
2022-04-01 14:14:53 +08:00
|
|
|
|
|
|
|
if (availableFiles?.Length > 0)
|
|
|
|
Items = availableFiles;
|
2022-04-05 15:47:15 +08:00
|
|
|
|
2022-11-09 12:44:59 +08:00
|
|
|
static ISkin? getHighestPriorityUserSkin(IEnumerable<ISkin> skins)
|
2022-04-05 15:47:15 +08:00
|
|
|
{
|
|
|
|
foreach (var skin in skins)
|
|
|
|
{
|
2022-09-22 17:43:41 +08:00
|
|
|
if (skin is ISkinTransformer transformer && isUserSkin(transformer.Skin))
|
2022-04-05 15:47:15 +08:00
|
|
|
return transformer.Skin;
|
|
|
|
|
|
|
|
if (isUserSkin(skin))
|
|
|
|
return skin;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Temporarily used to exclude undesirable ISkin implementations
|
|
|
|
static bool isUserSkin(ISkin skin)
|
2022-09-17 23:14:49 +08:00
|
|
|
=> skin.GetType() == typeof(TrianglesSkin)
|
2022-09-15 15:02:57 +08:00
|
|
|
|| skin.GetType() == typeof(ArgonSkin)
|
2022-04-05 15:47:15 +08:00
|
|
|
|| skin.GetType() == typeof(DefaultLegacySkin)
|
|
|
|
|| skin.GetType() == typeof(LegacySkin);
|
2022-03-25 16:31:03 +08:00
|
|
|
}
|
|
|
|
}
|
2022-04-04 19:35:48 +08:00
|
|
|
|
|
|
|
public class SpriteNotFound : CompositeDrawable
|
|
|
|
{
|
|
|
|
public SpriteNotFound(string lookup)
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
|
|
|
new SpriteIcon
|
|
|
|
{
|
|
|
|
Size = new Vector2(50),
|
|
|
|
Icon = FontAwesome.Solid.QuestionCircle
|
|
|
|
},
|
|
|
|
new OsuSpriteText
|
|
|
|
{
|
|
|
|
Position = new Vector2(25, 50),
|
|
|
|
Text = $"missing: {lookup}",
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2019-06-24 13:39:20 +08:00
|
|
|
}
|
|
|
|
}
|