using UnityEngine; using System.Collections; namespace MoreMountains.Tools { /// /// The Fader class can be put on an Image, and it'll intercept MMFadeEvents and turn itself on or off accordingly. /// This specific fader will move from left to right, right to left, top to bottom or bottom to top /// [RequireComponent(typeof(CanvasGroup))] [AddComponentMenu("More Mountains/Tools/GUI/MMFaderDirectional")] public class MMFaderDirectional : MMMonoBehaviour, MMEventListener, MMEventListener, MMEventListener, MMEventListener { /// the possible directions this fader can move in public enum Directions { TopToBottom, LeftToRight, RightToLeft, BottomToTop } [MMInspectorGroup("Identification", true, 122)] /// the ID for this fader (0 is default), set more IDs if you need more than one fader [Tooltip("the ID for this fader (0 is default), set more IDs if you need more than one fader")] public int ID; [MMInspectorGroup("Directional Fader", true, 123)] /// the direction this fader should move in when fading in [Tooltip("the direction this fader should move in when fading in")] public Directions FadeInDirection = Directions.LeftToRight; /// the direction this fader should move in when fading out [Tooltip("the direction this fader should move in when fading out")] public Directions FadeOutDirection = Directions.LeftToRight; [MMInspectorGroup("Timing", true, 124)] /// the default duration of the fade in/out [Tooltip("the default duration of the fade in/out")] public float DefaultDuration = 0.2f; /// the default curve to use for this fader [Tooltip("the default curve to use for this fader")] public MMTweenType DefaultTween = new MMTweenType(MMTween.MMTweenCurve.LinearTween); /// whether or not the fade should happen in unscaled time [Tooltip("whether or not the fade should happen in unscaled time")] public bool IgnoreTimescale = true; /// whether or not to automatically disable this fader on init [Tooltip("whether or not to automatically disable this fader on init")] public bool DisableOnInit = true; [MMInspectorGroup("Delay", true, 127)] /// a delay (in seconds) to apply before playing this fade [Tooltip("a delay (in seconds) to apply before playing this fade")] public float InitialDelay = 0f; [MMInspectorGroup("Interaction", true, 125)] /// whether or not the fader should block raycasts when visible [Tooltip("whether or not the fader should block raycasts when visible")] public bool ShouldBlockRaycasts = false; /// the width of the fader public virtual float Width { get { return _rectTransform.rect.width; } } /// the height of the fader public virtual float Height { get { return _rectTransform.rect.height; } } [MMInspectorGroup("Debug", true, 126)] [MMInspectorButtonBar(new string[] { "FadeIn1Second", "FadeOut1Second", "DefaultFade", "ResetFader" }, new string[] { "FadeIn1Second", "FadeOut1Second", "DefaultFade", "ResetFader" }, new bool[] { true, true, true, true }, new string[] { "main-call-to-action", "", "", "" })] public bool DebugToolbar; protected RectTransform _rectTransform; protected CanvasGroup _canvasGroup; protected float _currentDuration; protected MMTweenType _currentCurve; protected bool _fading = false; protected float _fadeStartedAt; protected Vector2 _initialPosition; protected Vector2 _fromPosition; protected Vector2 _toPosition; protected Vector2 _newPosition; protected bool _active; protected bool _initialized = false; /// /// Test method triggered by an inspector button /// protected virtual void ResetFader() { _rectTransform.anchoredPosition = _initialPosition; } /// /// Test method triggered by an inspector button /// protected virtual void DefaultFade() { MMFadeEvent.Trigger(DefaultDuration, 1f, DefaultTween, ID, IgnoreTimescale, this.transform.position); } /// /// Test method triggered by an inspector button /// protected virtual void FadeIn1Second() { MMFadeInEvent.Trigger(1f, DefaultTween, ID, IgnoreTimescale, this.transform.position); } /// /// Test method triggered by an inspector button /// protected virtual void FadeOut1Second() { MMFadeOutEvent.Trigger(1f, DefaultTween, ID, IgnoreTimescale, this.transform.position); } /// /// On Start, we initialize our fader /// protected virtual void Start() { Initialization(); } /// /// On init, we grab our components, and disable/hide everything /// //protected virtual IEnumerator Initialization() protected virtual void Initialization() { _canvasGroup = this.gameObject.GetComponent(); _rectTransform = this.gameObject.GetComponent(); _initialPosition = _rectTransform.anchoredPosition; if (DisableOnInit) { DisableFader(); } _initialized = true; } /// /// On Update, we update our alpha /// protected virtual void Update() { if (_canvasGroup == null) { return; } if (_fading) { Fade(); } } /// /// Fades the canvasgroup towards its target alpha /// protected virtual void Fade() { float currentTime = IgnoreTimescale ? Time.unscaledTime : Time.time; float endTime = _fadeStartedAt + _currentDuration; if (currentTime - _fadeStartedAt < _currentDuration) { _newPosition = MMTween.Tween(currentTime, _fadeStartedAt, endTime, _fromPosition, _toPosition, _currentCurve); _rectTransform.anchoredPosition = _newPosition; } else { StopFading(); } } /// /// Stops the fading. /// protected virtual void StopFading() { _rectTransform.anchoredPosition = _toPosition; _fading = false; if (_initialPosition != _toPosition) { DisableFader(); } } /// /// Starts a fade /// /// /// /// /// /// /// protected virtual IEnumerator StartFading(bool fadingIn, float duration, MMTweenType curve, int id, bool ignoreTimeScale, Vector3 worldPosition) { if (id != ID) { yield break; } if (InitialDelay > 0f) { yield return MMCoroutine.WaitFor(InitialDelay); } if (!_initialized) { Initialization(); } if (curve == null) { curve = DefaultTween; } IgnoreTimescale = ignoreTimeScale; EnableFader(); _fading = true; _fadeStartedAt = IgnoreTimescale ? Time.unscaledTime : Time.time; _currentCurve = curve; _currentDuration = duration; _fromPosition = _rectTransform.anchoredPosition; _toPosition = fadingIn ? _initialPosition : ExitPosition(); _newPosition = MMTween.Tween(0f, 0f, duration, _fromPosition, _toPosition, _currentCurve); _rectTransform.anchoredPosition = _newPosition; } /// /// Determines the position of the fader before entry /// /// protected virtual Vector2 BeforeEntryPosition() { switch (FadeInDirection) { case Directions.BottomToTop: return _initialPosition + Vector2.down * Height; case Directions.LeftToRight: return _initialPosition + Vector2.left * Width; case Directions.RightToLeft: return _initialPosition + Vector2.right * Width; case Directions.TopToBottom: return _initialPosition + Vector2.up * Height; } return Vector2.zero; } /// /// Determines the exit position of the fader /// /// protected virtual Vector2 ExitPosition() { switch (FadeOutDirection) { case Directions.BottomToTop: return _initialPosition + Vector2.up * Height; case Directions.LeftToRight: return _initialPosition + Vector2.right * Width; case Directions.RightToLeft: return _initialPosition + Vector2.left * Width; case Directions.TopToBottom: return _initialPosition + Vector2.down * Height; } return Vector2.zero; } /// /// Disables the fader. /// protected virtual void DisableFader() { if (ShouldBlockRaycasts) { _canvasGroup.blocksRaycasts = false; } _active = false; _canvasGroup.alpha = 0; _rectTransform.anchoredPosition = BeforeEntryPosition(); this.enabled = false; } /// /// Enables the fader. /// protected virtual void EnableFader() { this.enabled = true; if (ShouldBlockRaycasts) { _canvasGroup.blocksRaycasts = true; } _active = true; _canvasGroup.alpha = 1; } /// /// When catching a fade event, we fade our image in or out /// /// Fade event. public virtual void OnMMEvent(MMFadeEvent fadeEvent) { bool status = _active ? false : true; StartCoroutine(StartFading(status, fadeEvent.Duration, fadeEvent.Curve, fadeEvent.ID, fadeEvent.IgnoreTimeScale, fadeEvent.WorldPosition)); } /// /// When catching an MMFadeInEvent, we fade our image in /// /// Fade event. public virtual void OnMMEvent(MMFadeInEvent fadeEvent) { StartCoroutine(StartFading(true, fadeEvent.Duration, fadeEvent.Curve, fadeEvent.ID, fadeEvent.IgnoreTimeScale, fadeEvent.WorldPosition)); } /// /// When catching an MMFadeOutEvent, we fade our image out /// /// Fade event. public virtual void OnMMEvent(MMFadeOutEvent fadeEvent) { StartCoroutine(StartFading(false, fadeEvent.Duration, fadeEvent.Curve, fadeEvent.ID, fadeEvent.IgnoreTimeScale, fadeEvent.WorldPosition)); } /// /// When catching an MMFadeStopEvent, we stop our fade /// /// Fade event. public virtual void OnMMEvent(MMFadeStopEvent fadeStopEvent) { if (fadeStopEvent.ID == ID) { _fading = false; if (fadeStopEvent.Restore) { _rectTransform.anchoredPosition = _initialPosition; } } } /// /// On enable, we start listening to events /// protected virtual void OnEnable() { this.MMEventStartListening(); this.MMEventStartListening(); this.MMEventStartListening(); this.MMEventStartListening(); } /// /// On disable, we stop listening to events /// protected virtual void OnDestroy() { this.MMEventStopListening(); this.MMEventStopListening(); this.MMEventStopListening(); this.MMEventStopListening(); } } }