2020-04-03 17:23: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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
using osu.Game.Rulesets.Taiko.Audio;
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Skinning
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A component of the playfield that captures input and displays input as a drum.
|
|
|
|
/// </summary>
|
|
|
|
internal class LegacyInputDrum : Container
|
|
|
|
{
|
2020-04-07 18:14:31 +08:00
|
|
|
private LegacyHalfDrum left;
|
|
|
|
private LegacyHalfDrum right;
|
2020-04-23 12:07:30 +08:00
|
|
|
private Container content;
|
2020-04-07 18:14:31 +08:00
|
|
|
|
2020-04-03 17:23:03 +08:00
|
|
|
public LegacyInputDrum()
|
|
|
|
{
|
2020-04-23 12:07:30 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
2020-04-03 17:23:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(ISkinSource skin)
|
|
|
|
{
|
2020-04-23 12:07:30 +08:00
|
|
|
Child = content = new Container
|
2020-04-03 17:23:03 +08:00
|
|
|
{
|
2020-04-23 12:07:30 +08:00
|
|
|
Size = new Vector2(180, 200),
|
|
|
|
Children = new Drawable[]
|
2020-04-03 17:23:03 +08:00
|
|
|
{
|
2020-04-23 12:07:30 +08:00
|
|
|
new Sprite
|
|
|
|
{
|
|
|
|
Texture = skin.GetTexture("taiko-bar-left")
|
|
|
|
},
|
|
|
|
left = new LegacyHalfDrum(false)
|
|
|
|
{
|
|
|
|
Name = "Left Half",
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
RimAction = TaikoAction.LeftRim,
|
|
|
|
CentreAction = TaikoAction.LeftCentre
|
|
|
|
},
|
|
|
|
right = new LegacyHalfDrum(true)
|
|
|
|
{
|
|
|
|
Name = "Right Half",
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
Scale = new Vector2(-1, 1),
|
|
|
|
RimAction = TaikoAction.RightRim,
|
|
|
|
CentreAction = TaikoAction.RightCentre
|
|
|
|
}
|
2020-04-03 17:23:03 +08:00
|
|
|
}
|
|
|
|
};
|
2020-04-07 18:14:31 +08:00
|
|
|
|
|
|
|
// this will be used in the future for stable skin alignment. keeping here for reference.
|
|
|
|
const float taiko_bar_y = 0;
|
|
|
|
|
|
|
|
// stable things
|
|
|
|
const float ratio = 1.6f;
|
|
|
|
|
|
|
|
// because the right half is flipped, we need to position using width - position to get the true "topleft" origin position
|
2020-04-23 12:48:08 +08:00
|
|
|
float negativeScaleAdjust = content.Width / ratio;
|
2020-04-07 18:14:31 +08:00
|
|
|
|
|
|
|
if (skin.GetConfig<LegacySkinConfiguration.LegacySetting, decimal>(LegacySkinConfiguration.LegacySetting.Version)?.Value >= 2.1m)
|
|
|
|
{
|
|
|
|
left.Centre.Position = new Vector2(0, taiko_bar_y) * ratio;
|
|
|
|
right.Centre.Position = new Vector2(negativeScaleAdjust - 56, taiko_bar_y) * ratio;
|
|
|
|
left.Rim.Position = new Vector2(0, taiko_bar_y) * ratio;
|
|
|
|
right.Rim.Position = new Vector2(negativeScaleAdjust - 56, taiko_bar_y) * ratio;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
left.Centre.Position = new Vector2(18, taiko_bar_y + 31) * ratio;
|
|
|
|
right.Centre.Position = new Vector2(negativeScaleAdjust - 54, taiko_bar_y + 31) * ratio;
|
|
|
|
left.Rim.Position = new Vector2(8, taiko_bar_y + 23) * ratio;
|
|
|
|
right.Rim.Position = new Vector2(negativeScaleAdjust - 53, taiko_bar_y + 23) * ratio;
|
|
|
|
}
|
2020-04-03 17:23:03 +08:00
|
|
|
}
|
|
|
|
|
2020-04-23 11:19:30 +08:00
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
// Relying on RelativeSizeAxes.Both + FillMode.Fit doesn't work due to the precise pixel layout requirements.
|
|
|
|
// This is a bit ugly but makes the non-legacy implementations a lot cleaner to implement.
|
2020-04-23 12:07:30 +08:00
|
|
|
content.Scale = new Vector2(DrawHeight / content.Size.Y);
|
2020-04-23 11:19:30 +08:00
|
|
|
}
|
|
|
|
|
2020-04-03 17:23:03 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A half-drum. Contains one centre and one rim hit.
|
|
|
|
/// </summary>
|
|
|
|
private class LegacyHalfDrum : Container, IKeyBindingHandler<TaikoAction>
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The key to be used for the rim of the half-drum.
|
|
|
|
/// </summary>
|
|
|
|
public TaikoAction RimAction;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The key to be used for the centre of the half-drum.
|
|
|
|
/// </summary>
|
|
|
|
public TaikoAction CentreAction;
|
|
|
|
|
2020-04-07 18:14:31 +08:00
|
|
|
public readonly Sprite Rim;
|
|
|
|
public readonly Sprite Centre;
|
2020-04-03 17:23:03 +08:00
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private DrumSampleMapping sampleMappings { get; set; }
|
|
|
|
|
|
|
|
public LegacyHalfDrum(bool flipped)
|
|
|
|
{
|
|
|
|
Masking = true;
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2020-04-07 18:14:31 +08:00
|
|
|
Rim = new Sprite
|
2020-04-03 17:23:03 +08:00
|
|
|
{
|
|
|
|
Scale = new Vector2(-1, 1),
|
2020-04-07 18:14:31 +08:00
|
|
|
Origin = flipped ? Anchor.TopLeft : Anchor.TopRight,
|
2020-04-03 17:23:03 +08:00
|
|
|
Alpha = 0,
|
|
|
|
},
|
2020-04-07 18:14:31 +08:00
|
|
|
Centre = new Sprite
|
2020-04-03 17:23:03 +08:00
|
|
|
{
|
|
|
|
Alpha = 0,
|
2020-04-07 18:14:31 +08:00
|
|
|
Origin = flipped ? Anchor.TopRight : Anchor.TopLeft,
|
2020-04-03 17:23:03 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(ISkinSource skin)
|
|
|
|
{
|
2020-04-07 18:14:31 +08:00
|
|
|
Rim.Texture = skin.GetTexture(@"taiko-drum-outer");
|
|
|
|
Centre.Texture = skin.GetTexture(@"taiko-drum-inner");
|
2020-04-03 17:23:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool OnPressed(TaikoAction action)
|
|
|
|
{
|
|
|
|
Drawable target = null;
|
|
|
|
var drumSample = sampleMappings.SampleAt(Time.Current);
|
|
|
|
|
|
|
|
if (action == CentreAction)
|
|
|
|
{
|
2020-04-07 18:14:31 +08:00
|
|
|
target = Centre;
|
2020-04-03 17:23:03 +08:00
|
|
|
drumSample.Centre?.Play();
|
|
|
|
}
|
|
|
|
else if (action == RimAction)
|
|
|
|
{
|
2020-04-07 18:14:31 +08:00
|
|
|
target = Rim;
|
2020-04-03 17:23:03 +08:00
|
|
|
drumSample.Rim?.Play();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target != null)
|
|
|
|
{
|
|
|
|
const float alpha_amount = 1;
|
|
|
|
|
|
|
|
const float down_time = 80;
|
|
|
|
const float up_time = 50;
|
|
|
|
|
|
|
|
target.Animate(
|
|
|
|
t => t.FadeTo(Math.Min(target.Alpha + alpha_amount, 1), down_time)
|
|
|
|
).Then(
|
|
|
|
t => t.FadeOut(up_time)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void OnReleased(TaikoAction action)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|