2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-06 17:56:20 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2016-11-17 16:20:51 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-08-11 15:11:46 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2018-02-22 16:33:47 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2016-11-17 16:20:51 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
2016-11-17 16:20:51 +08:00
|
|
|
|
{
|
2017-08-12 18:54:07 +08:00
|
|
|
|
public class CirclePiece : Container, IKeyBindingHandler<OsuAction>
|
2016-11-17 16:20:51 +08:00
|
|
|
|
{
|
|
|
|
|
public Func<bool> Hit;
|
|
|
|
|
|
|
|
|
|
public CirclePiece()
|
|
|
|
|
{
|
2017-03-06 11:58:14 +08:00
|
|
|
|
Size = new Vector2((float)OsuHitObject.OBJECT_RADIUS * 2);
|
2016-11-17 16:20:51 +08:00
|
|
|
|
Masking = true;
|
2017-02-06 21:17:29 +08:00
|
|
|
|
CornerRadius = Size.X / 2;
|
2016-11-17 16:20:51 +08:00
|
|
|
|
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
2018-02-22 16:33:47 +08:00
|
|
|
|
InternalChild = new SkinnableDrawable("Play/osu/hitcircle", _ => new DefaultCirclePiece());
|
2016-11-17 16:20:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-10 18:28:24 +08:00
|
|
|
|
public bool OnPressed(OsuAction action)
|
2016-11-17 16:20:51 +08:00
|
|
|
|
{
|
2017-08-10 18:28:24 +08:00
|
|
|
|
switch (action)
|
2017-08-10 17:28:43 +08:00
|
|
|
|
{
|
2017-08-10 18:28:24 +08:00
|
|
|
|
case OsuAction.LeftButton:
|
|
|
|
|
case OsuAction.RightButton:
|
|
|
|
|
return IsHovered && (Hit?.Invoke() ?? false);
|
2017-08-10 17:28:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
2016-11-17 16:20:51 +08:00
|
|
|
|
}
|
2017-08-10 18:28:24 +08:00
|
|
|
|
|
|
|
|
|
public bool OnReleased(OsuAction action) => false;
|
2016-11-17 16:20:51 +08:00
|
|
|
|
}
|
2018-01-05 19:21:19 +08:00
|
|
|
|
}
|