osu/osu.Game/Graphics/Cursor/GameplayCursor.cs

148 lines
5.8 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 OpenTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Configuration;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Shapes;
2017-03-16 13:41:07 +00:00
using osu.Framework.Input;
2017-05-15 03:54:56 +00:00
using osu.Game.Beatmaps;
2017-03-16 13:41:07 +00:00
using osu.Game.Configuration;
namespace osu.Game.Graphics.Cursor
{
public class GameplayCursor : CursorContainer
{
protected override Drawable CreateCursor() => new OsuCursor();
public GameplayCursor()
{
Add(new CursorTrail { Depth = 1 });
}
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args)
{
ActiveCursor.Scale = new Vector2(1);
2017-07-22 18:50:25 +00:00
ActiveCursor.ScaleTo(1.2f, 100, Easing.OutQuad);
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)
2017-07-22 18:50:25 +00:00
ActiveCursor.ScaleTo(1, 200, Easing.OutQuad);
2017-03-16 13:41:07 +00:00
return base.OnMouseUp(state, args);
}
public class OsuCursor : Container
{
private Container cursorContainer;
2017-05-15 03:54:56 +00:00
2017-03-16 13:41:07 +00:00
private Bindable<double> cursorScale;
2017-05-13 00:46:37 +00:00
private Bindable<bool> autoCursorScale;
2017-05-15 03:54:56 +00:00
private Bindable<WorkingBeatmap> beatmap;
2017-03-16 13:41:07 +00:00
public OsuCursor()
{
Origin = Anchor.Centre;
Size = new Vector2(42);
}
2017-05-14 07:26:52 +00:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config, OsuGameBase game)
2017-03-16 13:41:07 +00:00
{
Children = new Drawable[]
{
cursorContainer = new CircularContainer
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Masking = true,
BorderThickness = Size.X / 6,
BorderColour = Color4.White,
2017-06-12 03:48:47 +00:00
EdgeEffect = new EdgeEffectParameters
2017-03-17 17:03:44 +00:00
{
2017-03-16 13:41:07 +00:00
Type = EdgeEffectType.Shadow,
Colour = Color4.Pink.Opacity(0.5f),
Radius = 5,
},
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
AlwaysPresent = true,
},
new CircularContainer
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Masking = true,
BorderThickness = Size.X / 3,
BorderColour = Color4.White.Opacity(0.5f),
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
AlwaysPresent = true,
},
},
},
new CircularContainer
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Scale = new Vector2(0.1f),
Masking = true,
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.White,
},
},
},
}
},
};
2017-03-17 17:03:44 +00:00
2017-05-15 03:54:56 +00:00
beatmap = game.Beatmap.GetBoundCopy();
beatmap.ValueChanged += v => calculateScale();
2017-05-14 04:28:12 +00:00
2017-05-15 01:56:27 +00:00
cursorScale = config.GetBindable<double>(OsuSetting.GameplayCursorSize);
2017-05-15 03:54:56 +00:00
cursorScale.ValueChanged += v => calculateScale();
autoCursorScale = config.GetBindable<bool>(OsuSetting.AutoCursorSize);
2017-05-15 03:54:56 +00:00
autoCursorScale.ValueChanged += v => calculateScale();
2017-05-14 04:28:12 +00:00
2017-05-15 03:54:56 +00:00
calculateScale();
2017-05-14 04:28:12 +00:00
}
2017-05-13 00:46:37 +00:00
2017-05-14 04:28:12 +00:00
private void calculateScale()
{
2017-05-15 03:54:56 +00:00
float scale = (float)cursorScale.Value;
if (autoCursorScale && beatmap.Value != null)
{
// if we have a beatmap available, let's get its circle size to figure out an automatic cursor scale modifier.
scale *= (float)(1 - 0.7 * (1 + beatmap.Value.BeatmapInfo.Difficulty.CircleSize - BeatmapDifficulty.DEFAULT_DIFFICULTY) / BeatmapDifficulty.DEFAULT_DIFFICULTY);
}
cursorContainer.Scale = new Vector2(scale);
2017-03-16 13:41:07 +00:00
}
}
}
}