2020-03-31 14:10:15 +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-03-31 17:08:05 +08:00
|
|
|
using osu.Framework.Bindables;
|
2020-03-31 14:10:15 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-03-31 22:58:04 +08:00
|
|
|
using osu.Game.Rulesets.Mania.Beatmaps;
|
2020-03-31 14:10:15 +08:00
|
|
|
using osu.Game.Rulesets.Mania.UI;
|
2020-03-31 17:08:05 +08:00
|
|
|
using osu.Game.Skinning;
|
2020-03-31 14:10:15 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Skinning
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A <see cref="CompositeDrawable"/> which is placed somewhere within a <see cref="Column"/>.
|
|
|
|
/// </summary>
|
2020-06-13 23:06:25 +08:00
|
|
|
public class LegacyManiaColumnElement : CompositeDrawable
|
2020-03-31 14:10:15 +08:00
|
|
|
{
|
|
|
|
[Resolved]
|
|
|
|
protected Column Column { get; private set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-03-31 22:58:04 +08:00
|
|
|
/// The column type identifier to use for texture lookups, in the case of no user-provided configuration.
|
2020-03-31 14:10:15 +08:00
|
|
|
/// </summary>
|
2020-03-31 22:58:04 +08:00
|
|
|
protected string FallbackColumnIndex { get; private set; }
|
2020-03-31 14:10:15 +08:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2020-04-01 10:59:34 +08:00
|
|
|
switch (Column.ColumnType)
|
|
|
|
{
|
|
|
|
case ColumnType.Special:
|
|
|
|
FallbackColumnIndex = "S";
|
|
|
|
break;
|
2020-03-31 22:58:04 +08:00
|
|
|
|
2020-04-01 10:59:34 +08:00
|
|
|
case ColumnType.Odd:
|
|
|
|
FallbackColumnIndex = "1";
|
|
|
|
break;
|
2020-03-31 22:58:04 +08:00
|
|
|
|
2020-04-01 10:59:34 +08:00
|
|
|
case ColumnType.Even:
|
|
|
|
FallbackColumnIndex = "2";
|
|
|
|
break;
|
|
|
|
}
|
2020-03-31 14:10:15 +08:00
|
|
|
}
|
2020-03-31 17:08:05 +08:00
|
|
|
|
2020-06-20 14:56:39 +08:00
|
|
|
protected IBindable<T> GetColumnSkinConfig<T>(ISkin skin, LegacyManiaSkinConfigurationLookups lookup)
|
|
|
|
=> skin.GetManiaSkinConfig<T>(lookup, Column.Index);
|
2020-03-31 14:10:15 +08:00
|
|
|
}
|
|
|
|
}
|