2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-21 14:09:54 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2022-11-02 16:00:39 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Default;
|
2020-04-03 17:23:03 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.UI
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2017-03-21 17:16:14 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A component of the playfield that captures input and displays input as a drum.
|
|
|
|
|
/// </summary>
|
2017-03-21 14:09:54 +08:00
|
|
|
|
internal partial class InputDrum : Container
|
|
|
|
|
{
|
2022-03-10 21:09:07 +08:00
|
|
|
|
public InputDrum()
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2022-04-08 02:39:53 +08:00
|
|
|
|
AutoSizeAxes = Axes.X;
|
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
2017-12-26 13:18:23 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-12-26 13:18:23 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2018-02-23 19:34:08 +08:00
|
|
|
|
private void load()
|
2017-12-26 13:18:23 +08:00
|
|
|
|
{
|
2020-07-26 21:15:01 +08:00
|
|
|
|
Children = new Drawable[]
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2022-11-09 15:04:56 +08:00
|
|
|
|
new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.InputDrum), _ => new DefaultInputDrum())
|
2022-04-08 02:39:53 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-03-21 14:09:54 +08:00
|
|
|
|
}
|
|
|
|
|
}
|