osu/osu.Game/Graphics/Cursor/MenuCursor.cs

161 lines
5.7 KiB
C#
Raw Normal View History

2017-03-16 13:41:07 +00:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Framework.Allocation;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Input;
using osu.Game.Configuration;
using System;
using System.Diagnostics;
2017-03-16 13:41:07 +00:00
using osu.Framework.Graphics.Textures;
namespace osu.Game.Graphics.Cursor
{
public class MenuCursor : CursorContainer
{
protected override Drawable CreateCursor() => new Cursor();
2017-09-16 23:14:33 +00:00
private Bindable<bool> cursorRotate;
private bool dragging;
2017-04-02 16:19:59 +00:00
private bool startRotation;
2017-03-18 11:47:49 +00:00
protected override bool OnMouseMove(InputState state)
{
2017-09-16 23:28:02 +00:00
if (cursorRotate && dragging)
{
Debug.Assert (state.Mouse.PositionMouseDown != null);
// don't start rotating until we're moved a minimum distance away from the mouse down location,
// else it can have an annoying effect.
startRotation |= Vector2Extensions.Distance (state.Mouse.Position, state.Mouse.PositionMouseDown.Value) > 30;
if (startRotation) {
Vector2 offset = state.Mouse.Position - state.Mouse.PositionMouseDown.Value;
float degrees = (float)MathHelper.RadiansToDegrees (Math.Atan2 (-offset.X, offset.Y)) + 24.3f;
// Always rotate in the direction of least distance
float diff = (degrees - ActiveCursor.Rotation) % 360;
if (diff < -180)
diff += 360;
if (diff > 180)
diff -= 360;
degrees = ActiveCursor.Rotation + diff;
ActiveCursor.RotateTo (degrees, 600, Easing.OutQuint);
}
2017-03-18 11:47:49 +00:00
}
return base.OnMouseMove(state);
2017-04-02 16:19:59 +00:00
}
protected override bool OnDragStart(InputState state)
{
dragging = true;
return base.OnDragStart(state);
}
2017-03-16 13:41:07 +00:00
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args)
{
ActiveCursor.Scale = new Vector2(1);
2017-07-22 18:50:25 +00:00
ActiveCursor.ScaleTo(0.90f, 800, Easing.OutQuint);
2017-03-16 13:41:07 +00:00
((Cursor)ActiveCursor).AdditiveLayer.Alpha = 0;
2017-07-22 18:50:25 +00:00
((Cursor)ActiveCursor).AdditiveLayer.FadeInFromZero(800, Easing.OutQuint);
2017-03-16 13:41:07 +00:00
return base.OnMouseDown(state, args);
}
protected override bool OnMouseUp(InputState state, MouseUpEventArgs args)
{
if (!state.Mouse.HasMainButtonPressed)
{
dragging = false;
startRotation = false;
2017-07-22 18:50:25 +00:00
((Cursor)ActiveCursor).AdditiveLayer.FadeOut(500, Easing.OutQuint);
ActiveCursor.RotateTo(0, 600 * (1 + Math.Abs(ActiveCursor.Rotation / 720)), Easing.OutElasticHalf);
ActiveCursor.ScaleTo(1, 500, Easing.OutElastic);
2017-03-16 13:41:07 +00:00
}
return base.OnMouseUp(state, args);
}
protected override bool OnClick(InputState state)
{
2017-07-22 18:50:25 +00:00
((Cursor)ActiveCursor).AdditiveLayer.FadeOutFromOne(500, Easing.OutQuint);
2017-03-16 13:41:07 +00:00
return base.OnClick(state);
}
2017-03-16 14:58:36 +00:00
protected override void PopIn()
{
2017-07-22 18:50:25 +00:00
ActiveCursor.FadeTo(1, 250, Easing.OutQuint);
ActiveCursor.ScaleTo(1, 400, Easing.OutQuint);
2017-03-16 14:58:36 +00:00
}
protected override void PopOut()
{
2017-07-22 18:50:25 +00:00
ActiveCursor.FadeTo(0, 900, Easing.OutQuint);
ActiveCursor.ScaleTo(0, 500, Easing.In);
2017-03-16 14:58:36 +00:00
}
2017-09-16 23:14:33 +00:00
[BackgroundDependencyLoader]
2017-09-16 23:28:02 +00:00
private void load(OsuConfigManager config)
2017-09-16 23:14:33 +00:00
{
cursorRotate = config.GetBindable<bool> (OsuSetting.CursorRotation);
cursorRotate.TriggerChange();
}
2017-03-16 13:41:07 +00:00
public class Cursor : Container
{
private Container cursorContainer;
private Bindable<double> cursorScale;
2017-09-16 22:47:55 +00:00
private const float base_scale = 0.15f;
2017-03-16 13:41:07 +00:00
public Sprite AdditiveLayer;
public Cursor()
{
2017-04-19 22:42:40 +00:00
AutoSizeAxes = Axes.Both;
2017-03-16 13:41:07 +00:00
}
[BackgroundDependencyLoader]
2017-03-17 12:04:46 +00:00
private void load(OsuConfigManager config, TextureStore textures, OsuColour colour)
2017-03-16 13:41:07 +00:00
{
Children = new Drawable[]
{
cursorContainer = new Container
{
AutoSizeAxes = Axes.Both,
2017-03-16 13:41:07 +00:00
Children = new Drawable[]
{
new Sprite
{
Texture = textures.Get(@"Cursor/menu-cursor"),
},
AdditiveLayer = new Sprite
{
2017-09-07 13:46:21 +00:00
Blending = BlendingMode.Additive,
2017-03-17 12:04:46 +00:00
Colour = colour.Pink,
2017-03-16 13:41:07 +00:00
Alpha = 0,
2017-03-17 12:04:46 +00:00
Texture = textures.Get(@"Cursor/menu-cursor-additive"),
2017-03-16 13:41:07 +00:00
},
}
2017-04-17 15:10:55 +00:00
}
2017-03-16 13:41:07 +00:00
};
2017-05-15 01:56:27 +00:00
cursorScale = config.GetBindable<double>(OsuSetting.MenuCursorSize);
cursorScale.ValueChanged += newScale => cursorContainer.Scale = new Vector2((float)newScale * base_scale);
cursorScale.TriggerChange();
2017-03-16 13:41:07 +00:00
}
}
}
}