mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 01:47:24 +08:00
141 lines
4.8 KiB
C#
141 lines
4.8 KiB
C#
// 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.Shapes;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Screens.Play.HUD;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public partial class ArgonKeyCounter : KeyCounter
|
|
{
|
|
private Circle inputIndicator = null!;
|
|
private OsuSpriteText keyNameText = null!;
|
|
private OsuSpriteText countText = null!;
|
|
|
|
private UprightAspectMaintainingContainer uprightContainer = null!;
|
|
|
|
// These values were taken from Figma
|
|
private const float line_height = 3;
|
|
private const float name_font_size = 10;
|
|
private const float count_font_size = 14;
|
|
|
|
// Make things look bigger without using Scale
|
|
private const float scale_factor = 1.5f;
|
|
|
|
private const float indicator_press_offset = 4;
|
|
|
|
[Resolved]
|
|
private OsuColour colours { get; set; } = null!;
|
|
|
|
public ArgonKeyCounter(InputTrigger trigger)
|
|
: base(trigger)
|
|
{
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
inputIndicator = new Circle
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = line_height * scale_factor,
|
|
Alpha = 0.5f
|
|
},
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Padding = new MarginPadding { Top = line_height * scale_factor + indicator_press_offset },
|
|
Children = new Drawable[]
|
|
{
|
|
uprightContainer = new UprightAspectMaintainingContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Children = new Drawable[]
|
|
{
|
|
keyNameText = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.TopLeft,
|
|
Origin = Anchor.TopLeft,
|
|
Font = OsuFont.Torus.With(size: name_font_size * scale_factor, weight: FontWeight.Bold),
|
|
Colour = colours.Blue0,
|
|
Text = Trigger.Name
|
|
},
|
|
countText = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft,
|
|
Font = OsuFont.Torus.With(size: count_font_size * scale_factor, weight: FontWeight.Bold),
|
|
},
|
|
}
|
|
}
|
|
}
|
|
},
|
|
};
|
|
|
|
// Values from Figma didn't match visually
|
|
// So these were just eyeballed
|
|
Height = 30 * scale_factor;
|
|
Width = 35 * scale_factor;
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
CountPresses.BindValueChanged(e => countText.Text = e.NewValue.ToString(@"#,0"), true);
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
const float allowance = 6;
|
|
float absRotation = Math.Abs(uprightContainer.Rotation) % 180;
|
|
bool isRotated = absRotation > allowance && absRotation < (180 - allowance);
|
|
|
|
keyNameText.Anchor =
|
|
keyNameText.Origin = isRotated ? Anchor.TopCentre : Anchor.TopLeft;
|
|
|
|
countText.Anchor =
|
|
countText.Origin = isRotated ? Anchor.BottomCentre : Anchor.BottomLeft;
|
|
}
|
|
|
|
protected override void Activate(bool forwardPlayback = true)
|
|
{
|
|
base.Activate(forwardPlayback);
|
|
|
|
keyNameText
|
|
.FadeColour(Colour4.White, 10, Easing.OutQuint);
|
|
|
|
inputIndicator
|
|
.FadeIn(10, Easing.OutQuint)
|
|
.MoveToY(0)
|
|
.Then()
|
|
.MoveToY(indicator_press_offset, 60, Easing.OutQuint);
|
|
}
|
|
|
|
protected override void Deactivate(bool forwardPlayback = true)
|
|
{
|
|
base.Deactivate(forwardPlayback);
|
|
|
|
keyNameText
|
|
.FadeColour(colours.Blue0, 200, Easing.OutQuart);
|
|
|
|
inputIndicator
|
|
.MoveToY(0, 250, Easing.OutQuart)
|
|
.FadeTo(0.5f, 250, Easing.OutQuart);
|
|
}
|
|
}
|
|
}
|