1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/Screens/Utility/CircleGameplay.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

239 lines
7.2 KiB
C#
Raw Normal View History

// 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-06-10 16:17:09 +08:00
using System;
using System.Collections.Generic;
using osu.Framework.Allocation;
2022-06-10 16:17:09 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2022-06-10 16:17:09 +08:00
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input.Events;
using osu.Framework.Input.States;
2022-06-10 19:21:03 +08:00
using osu.Game.Beatmaps;
2022-06-10 16:17:09 +08:00
using osu.Game.Graphics;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Scoring;
using osu.Game.Screens.Utility.SampleComponents;
2022-06-10 16:17:09 +08:00
using osuTK;
namespace osu.Game.Screens.Utility
{
public partial class CircleGameplay : LatencySampleComponent
{
2022-06-10 16:17:09 +08:00
private int nextLocation;
private readonly List<HitEvent> hitEvents = new List<HitEvent>();
2022-06-10 17:27:58 +08:00
private double? lastGeneratedBeatTime;
2022-06-10 17:18:24 +08:00
private Container circles = null!;
2022-06-10 17:18:24 +08:00
2022-06-10 16:17:09 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
InternalChildren = new Drawable[]
{
circles = new Container
{
RelativeSizeAxes = Axes.Both,
},
2022-06-10 16:17:09 +08:00
};
SampleBPM.BindValueChanged(_ =>
{
circles.Clear();
lastGeneratedBeatTime = null;
});
2022-06-10 16:17:09 +08:00
}
protected override void UpdateAtLimitedRate(InputState inputState)
2022-06-10 16:17:09 +08:00
{
double beatLength = 60000 / SampleBPM.Value;
2022-06-10 17:27:58 +08:00
int nextBeat = (int)(Clock.CurrentTime / beatLength) + 1;
2022-06-10 17:27:58 +08:00
// We want to generate a few hit objects ahead of the current time (to allow them to animate).
double generateUpTo = (nextBeat + 2) * beatLength;
2022-06-10 17:18:24 +08:00
2022-06-10 17:27:58 +08:00
while (lastGeneratedBeatTime == null || lastGeneratedBeatTime < generateUpTo)
2022-06-10 17:18:24 +08:00
{
double time = ++nextBeat * beatLength;
2022-06-10 17:27:58 +08:00
if (time <= lastGeneratedBeatTime)
continue;
newBeat(time);
lastGeneratedBeatTime = time;
2022-06-10 17:18:24 +08:00
}
}
2022-06-10 16:17:09 +08:00
2022-06-10 17:27:58 +08:00
private void newBeat(double time)
2022-06-10 17:18:24 +08:00
{
2022-06-10 16:17:09 +08:00
nextLocation++;
Vector2 location;
2022-06-10 19:21:03 +08:00
float adjust = SampleVisualSpacing.Value * 0.25f;
float spacingLow = 0.5f - adjust;
float spacingHigh = 0.5f + adjust;
2022-06-10 16:27:06 +08:00
2022-06-10 16:17:09 +08:00
switch (nextLocation % 4)
{
default:
2022-06-10 17:27:58 +08:00
location = new Vector2(spacingLow, spacingLow);
2022-06-10 16:17:09 +08:00
break;
case 1:
2022-06-10 17:27:58 +08:00
location = new Vector2(spacingHigh, spacingHigh);
2022-06-10 16:17:09 +08:00
break;
case 2:
2022-06-10 17:27:58 +08:00
location = new Vector2(spacingHigh, spacingLow);
2022-06-10 16:17:09 +08:00
break;
case 3:
2022-06-10 17:27:58 +08:00
location = new Vector2(spacingLow, spacingHigh);
2022-06-10 16:17:09 +08:00
break;
}
circles.Add(new SampleHitCircle(time)
2022-06-10 16:17:09 +08:00
{
RelativePositionAxes = Axes.Both,
Position = location,
Hit = hit,
});
}
private void hit(HitEvent h)
{
hitEvents.Add(h);
}
public partial class SampleHitCircle : LatencySampleComponent
2022-06-10 16:17:09 +08:00
{
public HitEvent? HitEvent;
public Action<HitEvent>? Hit { get; set; }
public readonly double HitTime;
private CircularContainer approach = null!;
private Circle circle = null!;
2022-06-10 16:17:09 +08:00
private const float size = 100;
2022-06-11 20:50:34 +08:00
private const float duration = 200;
2022-06-10 16:17:09 +08:00
2022-06-10 16:27:06 +08:00
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos)
=> circle.ReceivePositionalInputAt(screenSpacePos);
2022-06-10 16:17:09 +08:00
public SampleHitCircle(double hitTime)
{
HitTime = hitTime;
Origin = Anchor.Centre;
AutoSizeAxes = Axes.Both;
2022-06-10 17:18:24 +08:00
AlwaysPresent = true;
}
2022-06-10 17:18:24 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2022-06-10 16:17:09 +08:00
InternalChildren = new Drawable[]
{
circle = new Circle
{
Colour = OverlayColourProvider.Content1,
2022-06-10 16:17:09 +08:00
Size = new Vector2(size),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
approach = new CircularContainer
{
BorderColour = colours.Blue,
2022-06-10 16:17:09 +08:00
Size = new Vector2(size),
Masking = true,
BorderThickness = 4,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Children = new Drawable[]
{
new Box
{
Alpha = 0,
AlwaysPresent = true,
RelativeSizeAxes = Axes.Both,
},
}
},
};
}
protected override bool OnMouseDown(MouseDownEvent e)
{
if (HitEvent != null)
return false;
2022-06-11 20:50:34 +08:00
if (Math.Abs(Clock.CurrentTime - HitTime) > duration)
return false;
attemptHit();
2022-06-10 16:17:09 +08:00
return true;
}
protected override bool OnKeyDown(KeyDownEvent e)
2022-06-10 16:17:09 +08:00
{
if (!IsActive.Value)
return false;
2022-06-10 16:17:09 +08:00
2022-06-11 20:50:34 +08:00
if (Math.Abs(Clock.CurrentTime - HitTime) > duration)
return false;
if (IsHovered)
attemptHit();
return base.OnKeyDown(e);
}
protected override void UpdateAtLimitedRate(InputState inputState)
{
if (HitEvent == null)
{
2022-06-10 19:21:03 +08:00
double preempt = (float)IBeatmapDifficultyInfo.DifficultyRange(SampleApproachRate.Value, 1800, 1200, 450);
approach.Scale = new Vector2(1 + 4 * (float)MathHelper.Clamp((HitTime - Clock.CurrentTime) / preempt, 0, 100));
Alpha = (float)MathHelper.Clamp((Clock.CurrentTime - HitTime + 600) / 400, 0, 1);
2022-06-10 16:17:09 +08:00
2022-06-11 20:50:34 +08:00
if (Clock.CurrentTime > HitTime + duration)
Expire();
}
2022-06-10 16:17:09 +08:00
}
private void attemptHit() => Schedule(() =>
{
if (HitEvent != null)
return;
// in case it was hit outside of display range, show immediately
// so the user isn't confused.
this.FadeIn();
approach.Expire();
circle
2022-06-11 20:50:34 +08:00
.FadeOut(duration)
.ScaleTo(1.5f, duration);
HitEvent = new HitEvent(Clock.CurrentTime - HitTime, 1.0, HitResult.Good, new HitObject
{
HitWindows = new HitWindows(),
}, null, null);
Hit?.Invoke(HitEvent.Value);
2022-06-11 20:50:34 +08:00
this.Delay(duration).Expire();
});
2022-06-10 16:17:09 +08:00
}
}
}