com.unity.uiextensions.nosa.../Scripts/Layout/VerticalScrollSnap.cs

217 lines
8.0 KiB
C#
Raw Normal View History

/// Credit BinaryX, SimonDarksideJ
2015-08-30 18:49:19 +08:00
/// Sourced from - http://forum.unity3d.com/threads/scripts-useful-4-6-scripts-collection.264161/page-2#post-1945602
/// Updated by SimonDarksideJ - removed dependency on a custom ScrollRect script. Now implements drag interfaces and standard Scroll Rect.
/// Updated by SimonDarksideJ - major refactoring on updating current position and scroll management
2015-08-30 18:49:19 +08:00
using System;
using UnityEngine.Events;
2015-08-30 18:49:19 +08:00
using UnityEngine.EventSystems;
namespace UnityEngine.UI.Extensions
{
[RequireComponent(typeof(ScrollRect))]
[AddComponentMenu("Layout/Extensions/Vertical Scroll Snap")]
public class VerticalScrollSnap : ScrollSnapBase, IEndDragHandler
2015-08-30 18:49:19 +08:00
{
// Use this for initialization
void Awake()
2015-08-30 18:49:19 +08:00
{
_scroll_rect = gameObject.GetComponent<ScrollRect>();
if (_scroll_rect.horizontalScrollbar || _scroll_rect.verticalScrollbar)
{
Debug.LogWarning("Warning, using scrollbars with the Scroll Snap controls is not advised as it causes unpredictable results");
}
2015-08-30 18:49:19 +08:00
_screensContainer = _scroll_rect.content;
2015-08-30 18:49:19 +08:00
DistributePages();
if (NextButton)
NextButton.GetComponent<Button>().onClick.AddListener(() => { NextScreen(); });
if (PrevButton)
PrevButton.GetComponent<Button>().onClick.AddListener(() => { PreviousScreen(); });
}
void Start()
{
UpdateChildPositions();
2015-08-30 18:49:19 +08:00
_lerp = false;
_currentScreen = StartingScreen - 1;
2015-08-30 18:49:19 +08:00
_scroll_rect.verticalNormalizedPosition = (float)(_currentScreen) / (float)(_screens - 1);
2015-08-30 18:49:19 +08:00
ChangeBulletsInfo(_currentScreen);
2015-08-30 18:49:19 +08:00
}
void Update()
{
//Three Use cases:
//1: Swipe Next - FastSwipeNextPrev
//2: Swipe next while in motion - FastSwipeNextPrev
//3: Swipe to end - default
//If lerping, NOT swiping and (!fastswipenextprev & velocity < 200)
//Aim is to settle on target "page"
if (!_lerp && _scroll_rect.velocity == Vector2.zero)
{
return;
}
else if (_lerp)
2015-08-30 18:49:19 +08:00
{
_screensContainer.localPosition = Vector3.Lerp(_screensContainer.localPosition, _lerp_target, transitionSpeed * Time.deltaTime);
if (Vector3.Distance(_screensContainer.localPosition, _lerp_target) < 0.1f)
2015-08-30 18:49:19 +08:00
{
_lerp = false;
EndScreenChange();
2015-08-30 18:49:19 +08:00
}
}
//If the container is moving faster than the threshold, then just update the pages as they pass
else if ((_scroll_rect.velocity.y > 0 && _scroll_rect.velocity.y > SwipeVelocityThreshold) ||
_scroll_rect.velocity.y < 0 && _scroll_rect.velocity.y < -SwipeVelocityThreshold)
{
_currentScreen = GetPageforPosition(FindClosestFrom(_screensContainer.localPosition, _visiblePositions));
if (_currentScreen != _previousScreen)
2015-08-30 18:49:19 +08:00
{
_previousScreen = _currentScreen;
ChangeBulletsInfo(_currentScreen);
2015-08-30 18:49:19 +08:00
}
}
else if(!_pointerDown)
2015-08-30 18:49:19 +08:00
{
ScrollToClosestElement();
2015-08-30 18:49:19 +08:00
}
}
//used for changing between screen resolutions
public void DistributePages()
2015-08-30 18:49:19 +08:00
{
float _offset = 0;
float _dimension = 0;
Rect panelDimensions = gameObject.GetComponent<RectTransform>().rect;
2015-08-30 18:49:19 +08:00
float currentYPosition = 0;
var pageStepValue = (int)panelDimensions.height * ((PageStep == 0) ? 3 : PageStep);
2015-08-30 18:49:19 +08:00
for (int i = 0; i < _screensContainer.transform.childCount; i++)
{
RectTransform child = _screensContainer.transform.GetChild(i).gameObject.GetComponent<RectTransform>();
currentYPosition = _offset + i * pageStepValue;
child.sizeDelta = new Vector2(panelDimensions.width, panelDimensions.height);
child.anchoredPosition = new Vector2(0f, currentYPosition);
child.anchorMin = new Vector2(child.anchorMin.x, 0f);
child.anchorMax = new Vector2(child.anchorMax.x, 0f);
child.pivot = new Vector2(child.pivot.x, 0f);
2015-08-30 18:49:19 +08:00
}
_dimension = currentYPosition + _offset * -1;
_screensContainer.GetComponent<RectTransform>().offsetMax = new Vector2(0f, _dimension);
}
void UpdateChildPositions()
{
_screens = _screensContainer.childCount;
_positions = new Vector3[_screens];
if (_screens > 0)
{
for (int i = 0; i < _screens; ++i)
{
_scroll_rect.verticalNormalizedPosition = (float)i / (float)(_screens - 1);
_positions[i] = _screensContainer.localPosition;
}
}
//debug visible
_visiblePositions = _positions;
}
/// <summary>
/// Add a new child to this Scroll Snap and recalculate it's children
/// </summary>
/// <param name="GO">GameObject to add to the ScrollSnap</param>
public void AddChild(GameObject GO)
{
_scroll_rect.verticalNormalizedPosition = 0;
GO.transform.SetParent(_screensContainer);
DistributePages();
UpdateChildPositions();
_scroll_rect.verticalNormalizedPosition = (float)(_currentScreen) / (_screens - 1);
}
/// <summary>
/// Remove a new child to this Scroll Snap and recalculate it's children
/// *Note, this is an index address (0-x)
/// </summary>
/// <param name="index"></param>
/// <param name="ChildRemoved"></param>
public void RemoveChild(int index, out GameObject ChildRemoved)
{
ChildRemoved = null;
if (index < 0 || index > _screensContainer.childCount)
{
return;
}
_scroll_rect.verticalNormalizedPosition = 0;
var children = _screensContainer.transform;
int i = 0;
foreach (Transform child in children)
{
if (i == index)
{
child.SetParent(null);
ChildRemoved = child.gameObject;
break;
}
i++;
}
DistributePages();
UpdateChildPositions();
if (_currentScreen > _screens - 1)
{
_currentScreen = _screens - 1;
}
_scroll_rect.verticalNormalizedPosition = (float)(_currentScreen) / (_screens - 1);
}
2015-08-30 18:49:19 +08:00
#region Interfaces
/// <summary>
/// Release screen to swipe
/// </summary>
/// <param name="eventData"></param>
2015-08-30 18:49:19 +08:00
public void OnEndDrag(PointerEventData eventData)
{
if (_scroll_rect.vertical)
{
if (UseFastSwipe)
{
//If using fastswipe - then a swipe does page next / previous
if (_scroll_rect.velocity.y > SwipeVelocityThreshold)
2015-08-30 18:49:19 +08:00
{
_scroll_rect.velocity = Vector3.zero;
2015-08-30 18:49:19 +08:00
if (_startPosition.y - _screensContainer.localPosition.y > 0)
{
NextScreen();
2015-08-30 18:49:19 +08:00
}
else
{
PreviousScreen();
2015-08-30 18:49:19 +08:00
}
}
else
{
ScrollToClosestElement();
2015-08-30 18:49:19 +08:00
}
}
}
}
#endregion
}
}