2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// 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.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2017-08-11 15:11:46 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
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
|
|
|
|
{
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly Sprite disc;
|
2017-02-15 19:39:10 +08:00
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
disc = new Sprite
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre
|
|
|
|
|
},
|
2017-02-15 19:39:10 +08:00
|
|
|
|
new TrianglesPiece
|
2016-11-17 16:20:51 +08:00
|
|
|
|
{
|
2017-02-15 19:39:10 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-09-07 21:46:21 +08:00
|
|
|
|
Blending = BlendingMode.Additive,
|
2017-02-15 19:39:10 +08:00
|
|
|
|
Alpha = 0.5f,
|
2016-11-17 16:20:51 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(TextureStore textures)
|
|
|
|
|
{
|
2017-02-06 21:17:29 +08:00
|
|
|
|
disc.Texture = textures.Get(@"Play/osu/disc");
|
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
|
|
|
|
}
|
|
|
|
|
}
|