1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:07:25 +08:00
osu-lazer/osu.Game.Tournament/Screens/Ladder/LadderDragContainer.cs

46 lines
1.4 KiB
C#
Raw Normal View History

2019-03-04 12:24:19 +08:00
// 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.
2018-09-24 23:57:44 +08:00
using System;
2018-09-25 03:51:40 +08:00
using osu.Framework.Graphics;
2018-09-24 23:57:44 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
using osu.Framework.Input.Events;
using osuTK;
2018-09-24 23:57:44 +08:00
namespace osu.Game.Tournament.Screens.Ladder
{
2019-06-13 15:11:15 +08:00
public class LadderDragContainer : Container
2018-09-24 23:57:44 +08:00
{
protected override bool OnDragStart(DragStartEvent e) => true;
2018-09-24 23:57:44 +08:00
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
2018-09-24 23:57:44 +08:00
2018-09-25 03:51:40 +08:00
private Vector2 target;
private float scale = 1;
protected override bool ComputeIsMaskedAway(RectangleF maskingBounds) => false;
public override bool UpdateSubTreeMasking(Drawable source, RectangleF maskingBounds) => false;
protected override void OnDrag(DragEvent e)
2018-09-24 23:57:44 +08:00
{
this.MoveTo(target += e.Delta, 1000, Easing.OutQuint);
2018-09-24 23:57:44 +08:00
}
2018-09-25 03:51:40 +08:00
2019-06-13 15:11:15 +08:00
private const float min_scale = 0.6f;
private const float max_scale = 1.4f;
protected override bool OnScroll(ScrollEvent e)
2018-09-25 03:51:40 +08:00
{
var newScale = Math.Clamp(scale + e.ScrollDelta.Y / 15 * scale, min_scale, max_scale);
2018-09-25 09:46:09 +08:00
2019-11-12 17:56:38 +08:00
this.MoveTo(target -= e.MousePosition * (newScale - scale), 2000, Easing.OutQuint);
2019-06-13 15:11:15 +08:00
this.ScaleTo(scale = newScale, 2000, Easing.OutQuint);
2018-09-25 03:51:40 +08:00
2018-09-25 09:46:09 +08:00
return true;
2018-09-25 03:51:40 +08:00
}
2018-09-24 23:57:44 +08:00
}
}