Пример #1
0
 /// <summary>
 /// This is called when the page should be updated.
 /// </summary>
 /// <param name="gameTime">Provides a snapshot of timing values.</param>
 public virtual void Update(GameTime gameTime)
 {
     if (FadeState == FadeStates.Wait)
     {
         fadeStep++;
         if (fadeStep > fadeLength)
         {
             layer.CurrentPage = page;
             Goto();
             fadeStep  = 0;
             FadeState = FadeStates.FadeIn;
         }
     }
     else if (FadeState == FadeStates.FadeIn)
     {
         fadeStep++;
         if (fadeStep > fadeLength)
         {
             fadeStep  = 0;
             FadeState = FadeStates.Visible;
         }
     }
     else if (FadeState == FadeStates.FadeOut)
     {
         fadeStep++;
         if (fadeStep > fadeLength)
         {
             fadeStep = 0;
             Leave();
             FadeState = FadeStates.None;
         }
     }
 }
Пример #2
0
        public void InitiateFadeLevel(string nextLevel)
        {
            currentFadeState = FadeStates.FadeOut;
            currentFadeType  = FadeTypes.FadeLevel;

            sNextLevel = nextLevel;
        }
Пример #3
0
 public void CloseBars(float durationSeconds, AnimationCurve curveToUse = null)
 {
     if (isAnimating) StopAllCoroutines();
     state = FadeStates.Bars;
     AnimationCurve curCurve = (curveToUse != null) ? curveToUse : defaultBarsCloseCurve;
     StartCoroutine(AnimationRoutine(durationSeconds, curCurve));
 }
Пример #4
0
        private void ChangeFadeState(FadeStates fadeState, Color color, int duration, Action trigger)
        {
            this.fadeState = fadeState;

            logoSprite.Color = color;
            text.Color       = color;
            timer            = new Timer(duration, trigger, false);
        }
Пример #5
0
    //--------------------------------------------------------------
    // *** FRAME ***

    public void FixedUpdate()
    {
        // Precaution
        if (_UIPanel != null)
        {
            switch (_FadeState)
            {
            case FadeStates.idle: {
                // Hide panel
                _UIPanel.SetActive(false);
                _Fading = false;
                break;
            }

            case FadeStates.fadeIn: {
                // Show panel
                _UIPanel.SetActive(true);

                // Fade screen into COLOUR
                if (_Image.color.a < 1f)
                {
                    _Image.color = new Color(_Image.color.r, _Image.color.g, _Image.color.b, _Image.color.a + _FadeRate);
                    _Fading      = true;
                }

                // Fade complete
                else
                {
                    _FadeState = FadeStates.idle;
                }
                break;
            }

            case FadeStates.fadeOut: {
                // Show panel
                _UIPanel.SetActive(true);

                // Fade screen from COLOUR
                if (_Image.color.a > 0f)
                {
                    _Image.color = new Color(_Image.color.r, _Image.color.g, _Image.color.b, _Image.color.a - _FadeRate);
                    _Fading      = true;
                }

                // Fade complete
                else
                {
                    _FadeState = FadeStates.idle;
                }
                break;
            }

            default: {
                break;
            }
            }
        }
    }
Пример #6
0
 public void SetBarVal(float newVal)
 {
     if (isAnimating)
     {
         StopAllCoroutines();
     }
     state        = FadeStates.Bars;
     animationVal = Mathf.Clamp01(newVal);
 }
Пример #7
0
    public void CloseBars(float durationSeconds, AnimationCurve curveToUse = null)
    {
        if (isAnimating)
        {
            StopAllCoroutines();
        }
        state = FadeStates.Bars;
        AnimationCurve curCurve = (curveToUse != null) ? curveToUse : defaultBarsCloseCurve;

        StartCoroutine(AnimationRoutine(durationSeconds, curCurve));
    }
Пример #8
0
        internal void FadeOut()
        {
            if (fadeState == FadeStates.FadeOut)
            {
                return;
            }

            FadeOut(FadeOutTime);
            fadeState   = FadeStates.FadeOut;
            IsDisplayed = false;
        }
Пример #9
0
        internal void FadeIn()
        {
            if (fadeState == FadeStates.FadeIn)
            {
                return;
            }

            FadeIn(FadeInTime);
            fadeState   = FadeStates.FadeIn;
            IsDisplayed = true;
        }
Пример #10
0
 /// <summary>
 /// Plays the cue with a fade in effect. If it is pause, it will resume the cue.
 /// </summary>
 public void Play()
 {
     _FadeTimer = 0f;
     _FadeState = FadeStates.FadeIn;
     if (IsPaused)
     {
         Cue.Resume();
     }
     else
     {
         Cue.Play();
     }
 }
Пример #11
0
    public void OpenCircle(float durationSeconds, Vector2 viewportPos, AnimationCurve curveToUse = null)
    {
        if (isAnimating)
        {
            StopAllCoroutines();
        }
        state     = FadeStates.Circle;
        positionX = viewportPos.x;
        positionY = viewportPos.y;
        AnimationCurve curCurve = (curveToUse != null) ? curveToUse : defaultCircleOpenCurve;

        StartCoroutine(AnimationRoutine(durationSeconds, curCurve));
    }
Пример #12
0
        /// <summary>
        /// Ensure we always have an audio preview playing while on song selection.  Silence sucks, after all.
        /// </summary>
        private void UpdateMusic(bool force = false)
        {
            if (audioError)
            {
                return;
            }

            if (GameBase.SixtyFramesPerSecondFrame || force)
            {
                switch (audioState)
                {
                case FadeStates.FadeOut:
                    AudioEngine.SetVolumeMusicFade(AudioEngine.volumeMusicFade - 8);

                    if (AudioEngine.volumeMusicFade <= 10)
                    {
                        try
                        {
                            if (BeatmapManager.Current != null)
                            {
                                AudioEngine.LoadAudioForPreview(BeatmapManager.Current, false, true);
                                audioState = FadeStates.Idle;
                            }
                        }
                        catch (Exception)
                        {
                            NotificationManager.ShowMessage(LocalisationManager.GetString(OsuString.SongSelection_AudioError));
                            audioError = true;
                        }
                    }
                    break;
                }
            }

            try
            {
                if (AudioEngine.AudioState == AudioStates.Stopped && AudioEngine.AllowRandomSong && BeatmapManager.Beatmaps.Count > 0 && GameBase.FadeState == FadeStates.Idle)
                {
                    if (BeatmapManager.Current == null)
                    {
                        BeatmapManager.Current = BeatmapManager.Beatmaps[0];
                    }
                    AudioEngine.LoadAudioForPreview(BeatmapManager.Current, true, true);
                }
            }
            catch
            {
                audioError = true;
            }
        }
Пример #13
0
        /// <summary>
        /// Pauses the player.
        /// </summary>
        /// <param name="Fade">Whether to fade or not.</param>
        /// <returns>Returns true if player pauses playing</returns>
        public bool Pause(bool Fade)
        {
            try
            {
                if (!InFade && !InCrossfade)
                {
                    if (PlayerState == PlayerStates.Playing)
                    {
                        if (Fade)
                        {
                            switch (PlayingPlayer)
                            {
                            case Players.Player1:
                                StoppingPlayer = Players.Player1;
                                PlayingPlayer  = Players.NULL;
                                break;

                            case Players.Player2:
                                StoppingPlayer = Players.Player2;
                                PlayingPlayer  = Players.NULL;
                                break;
                            }
                            FadeState = FadeStates.Out;
                            StartFade();
                        }
                        else
                        {
                            switch (PlayingPlayer)
                            {
                            case Players.Player1:
                                Player1.pause();
                                break;

                            case Players.Player2:
                                Player2.pause();
                                break;
                            }
                        }
                        PlayerState = PlayerStates.Paused;
                        return(true);
                    }
                }
            }
            catch (Exception ex)
            {
                OnError.Invoke(new ErrorEventArgs("Pause : " + ex.Message));
            }
            return(false);
        }
Пример #14
0
        /// <summary>
        /// Starts the player playing the paused file.
        /// </summary>
        /// <param name="Fade">Whether to fade or not.</param>
        /// <returns>Returns true if player starts playing</returns>
        public bool Resume(bool Fade)
        {
            try
            {
                if (PlayerState == PlayerStates.Paused)
                {
                    if (!InFade && !InCrossfade)
                    {
                        if (Fade)
                        {
                            FadeState = FadeStates.In;
                            switch (StoppingPlayer)
                            {
                            case Players.Player1:
                                PlayingPlayer = Players.Player1;
                                break;

                            case Players.Player2:
                                PlayingPlayer = Players.Player2;
                                break;
                            }
                            StartFade();
                        }
                        else
                        {
                            switch (PlayingPlayer)
                            {
                            case Players.Player1:
                                PlayingPlayer = Players.Player1;
                                Player1.play();
                                break;

                            case Players.Player2:
                                PlayingPlayer = Players.Player2;
                                Player2.play();
                                break;
                            }
                        }
                        PlayerState = PlayerStates.Playing;
                    }
                }
            }
            catch
            {
            }
            return(false);
        }
Пример #15
0
 /// <summary>
 /// Fades the player's volume up/down to the specified level.
 /// </summary>
 /// <param name="ANewVolume">The volume to fade to.</param>
 /// <returns>Returns true if fade starts.</returns>
 public bool Fade(int ANewVolume)
 {
     try
     {
         if (!InFade && !InCrossfade && PlayerState == PlayerStates.Playing)
         {
             NewVolume = ANewVolume > 100 ? 100 : ANewVolume < 0 ? 0 : ANewVolume;
             InFade    = true;
             FadeState = NewVolume < Volume ? FadeStates.Down : FadeStates.Up;
             StartFade();
         }
     }
     catch (Exception ex)
     {
         OnError.Invoke(new ErrorEventArgs("Pause : " + ex.Message));
     }
     return(false);
 }
Пример #16
0
        private void BeginAudioTransition(Beatmap beatmap, bool continuePlaying)
        {
            if (continuePlaying)
            {
                if (audioThread != null && audioThreadLoadingMap == BeatmapManager.Current && audioState != FadeStates.Idle)
                {
                    return;
                }

                AudioEngine.LoadAudioForPreview(BeatmapManager.Current, continuePlaying, true);
            }
            else
            {
                audioState = FadeStates.FadeOut;

                //if (audioThread != null)
                //    audioThread.Abort();

                //audioThreadLoadingMap = beatmap;

                //audioThread = GameBase.RunBackgroundThread(delegate
                //{
                //    try
                //    {
                //        while (AudioEngine.volumeMusicFade > 10)
                //        {
                //            audioState = FadeStates.FadeOut;
                //            Thread.Sleep(10);
                //        }
                //        audioState = FadeStates.Idle;
                //        AudioEngine.LoadAudioForPreview(BeatmapManager.Current, continuePlaying, true);
                //    }
                //    catch (Exception) {
                //        NotificationManager.ShowMessage("Error loading audio for this beatmap...");
                //        audioError = true;
                //    }

                //    audioThread = null;
                //});
            }
        }
Пример #17
0
        /// <summary>
        /// Handles the FadeIn/FadeOut states.
        /// </summary>
        private void FadeValue(float elaspedTime)
        {
            _FadeTimer += elaspedTime;
            float musicVolume = MathHelper.Clamp(_FadeTimer / _FadeDuration, 0f, 1f);

            switch (_FadeState)
            {
            case FadeStates.FadeIn:
                SetVariable(MUSIC_VOLUME_VARIABLE, musicVolume);
                if (_FadeTimer >= _FadeDuration)
                {
                    _FadeState = FadeStates.None;
                }
                break;

            case FadeStates.FadeOutPause:
                SetVariable(MUSIC_VOLUME_VARIABLE, 1f - musicVolume);
                if (_FadeTimer >= _FadeDuration)
                {
                    _FadeState = FadeStates.None;
                    Cue.Pause();
                    _IsPausing = false;
                }
                break;

            case FadeStates.FadeOutStop:
                SetVariable(MUSIC_VOLUME_VARIABLE, 1f - musicVolume);
                if (_FadeTimer >= _FadeDuration)
                {
                    Cue.Stop(AudioStopOptions.AsAuthored);
                    _FadeState = FadeStates.None;
                    _IsStopped = true;
                }
                break;

            default:
                break;
            }
        }
Пример #18
0
        public void UpdateFade()
        {
            if (currentFadeState == FadeStates.FadeOut)
            {
                fFadeAlpha += 0.025f;

                if (fFadeAlpha >= 1)
                {
                    currentFadeState = FadeStates.FadeIn;
                    CLoadingScreen.Instance.UnloadLevelData();
                    CLoadingScreen.Instance.PrepareLevelData(sNextLevel);
                    CLoadingScreen.Instance.Load();
                }
            }
            else if (currentFadeState == FadeStates.FadeIn)
            {
                if (fFadeAlpha > 0)
                {
                    fFadeAlpha -= 0.025f;
                }
            }
        }
Пример #19
0
    //--------------------------------------------------------------
    // *** FADE ***

    public void StartFade(FadeStates state, Color colour, float rate)
    {
        // Set fade colour
        _Image.color = colour;

        // Set fading rate
        _FadeRate = rate;

        // Begin fade
        _FadeState = state;

        switch (state)
        {
        case FadeStates.idle: {
            break;
        }

        case FadeStates.fadeIn: {
            _UIPanel.SetActive(true);
            _Fading      = true;
            _Image.color = new Color(_Image.color.r, _Image.color.g, _Image.color.b, 0f);
            break;
        }

        case FadeStates.fadeOut: {
            _UIPanel.SetActive(true);
            _Fading      = true;
            _Image.color = new Color(_Image.color.r, _Image.color.g, _Image.color.b, 1f);
            break;
        }

        default: {
            break;
        }
        }
    }
Пример #20
0
 /// <summary>
 /// Pauses the cue with fade out effect.
 /// </summary>
 public void Pause()
 {
     _IsPausing = true;
     _FadeTimer = 0f;
     _FadeState = FadeStates.FadeOutPause;
 }
Пример #21
0
 /// <summary>
 /// Stops the cue with a fade out and stop effect.
 /// </summary>
 public void Stop()
 {
     _FadeTimer = 0f;
     _FadeState = FadeStates.FadeOutStop;
 }
Пример #22
0
 /// <summary>
 /// Handles the FadeIn/FadeOut states.
 /// </summary>
 private void FadeValue(float elaspedTime)
 {
     _FadeTimer += elaspedTime;
     float musicVolume = MathHelper.Clamp(_FadeTimer / _FadeDuration, 0f, 1f);
     switch (_FadeState)
     {
         case FadeStates.FadeIn:
             SetVariable(MUSIC_VOLUME_VARIABLE, musicVolume);
             if (_FadeTimer >= _FadeDuration)
                 _FadeState = FadeStates.None;
             break;
         case FadeStates.FadeOutPause:
             SetVariable(MUSIC_VOLUME_VARIABLE, 1f - musicVolume);
             if (_FadeTimer >= _FadeDuration)
             {
                 _FadeState = FadeStates.None;
                 Cue.Pause();
                 _IsPausing = false;
             }
             break;
         case FadeStates.FadeOutStop:
             SetVariable(MUSIC_VOLUME_VARIABLE, 1f - musicVolume);
             if (_FadeTimer >= _FadeDuration)
             {
                 Cue.Stop(AudioStopOptions.AsAuthored);
                 _FadeState = FadeStates.None;
                 _IsStopped = true;
             }
             break;
         default:
             break;
     }
 }
Пример #23
0
        /// <summary>
        /// Starts the player playing the specified file.
        /// </summary>
        /// <param name="TheSong">The filename of the song to play.</param>
        /// <param name="Fade">Whether to fade or not.</param>
        /// <returns>Returns true if player starts playing</returns>
        public bool Play(string TheSong, bool Fade)
        {
            try
            {
                if (PlayerState != PlayerStates.Paused)
                {
                    if (PlayingPlayer == Players.NULL)
                    {
                        if (!InCrossfade && !InFade)
                        {
                            if (Fade)
                            {
                                PlayingPlayer = Players.Player1;
                                Player1Song   = TheSong;
                                Player1.URL   = TheSong;

                                FadeState = FadeStates.In;
                                StartFade();
                            }
                            else
                            {
                                PlayingPlayer  = Players.Player1;
                                Player1Song    = TheSong;
                                Player1.URL    = TheSong;
                                Player1.volume = Volume;
                                Player1.play();
                                PlayerState = PlayerStates.Playing;
                                return(true);
                            }
                        }
                    }
                    else if (Crossfade)
                    {
                        if (!InCrossfade && !InFade)
                        {
                            if (PlayingPlayer == Players.Player1)
                            {
                                Player2Song    = TheSong;
                                StoppingPlayer = Players.Player1;
                                StartCrossfade();
                                return(true);
                            }
                            else if (PlayingPlayer == Players.Player2)
                            {
                                Player1Song    = TheSong;
                                StoppingPlayer = Players.Player2;
                                StartCrossfade();
                                return(true);
                            }
                            else
                            {
                                if (Fade)
                                {
                                    PlayingPlayer = Players.Player1;
                                    Player1Song   = TheSong;
                                    Player1.URL   = TheSong;

                                    FadeState = FadeStates.In;
                                    StartFade();
                                }
                                else
                                {
                                    PlayingPlayer  = Players.Player1;
                                    Player1Song    = TheSong;
                                    Player1.URL    = TheSong;
                                    Player1.volume = Volume;
                                    Player1.play();
                                    PlayerState = PlayerStates.Playing;
                                    return(true);
                                }
                            }
                        }
                    }
                    else if (!InFade)
                    {
                        if (Fade)
                        {
                            PlayingPlayer = Players.Player1;
                            Player1Song   = TheSong;
                            Player1.URL   = TheSong;

                            FadeState = FadeStates.In;
                            StartFade();
                        }
                        else
                        {
                            PlayingPlayer  = Players.Player1;
                            Player1Song    = TheSong;
                            Player1.URL    = TheSong;
                            Player1.volume = Volume;
                            Player1.play();
                            PlayerState = PlayerStates.Playing;
                            return(true);
                        }
                    }
                }
                else if (PlayerState == PlayerStates.Paused)
                {
                    Resume(Fade);
                }
            }
            catch (Exception ex)
            {
                OnError.Invoke(new ErrorEventArgs("Play : " + ex.Message));
            }
            return(false);
        }
Пример #24
0
 public void SetBarVal(float newVal)
 {
     if (isAnimating) StopAllCoroutines();
     state = FadeStates.Bars;
     animationVal = Mathf.Clamp01(newVal);
 }
Пример #25
0
 public void CloseCircle(float durationSeconds, Vector2 viewportPos, AnimationCurve curveToUse = null)
 {
     if (isAnimating) StopAllCoroutines();
     state = FadeStates.Circle;
     positionX = viewportPos.x;
     positionY = viewportPos.y;
     AnimationCurve curCurve = (curveToUse != null) ? curveToUse : defaultCircleCloseCurve;
     StartCoroutine(AnimationRoutine(durationSeconds, curCurve));
 }
Пример #26
0
 /// <summary>
 /// Stops the cue with a fade out and stop effect.
 /// </summary>
 public void Stop()
 {
     _FadeTimer = 0f;
     _FadeState = FadeStates.FadeOutStop;
 }
Пример #27
0
 /// <summary>
 /// Pauses the cue with fade out effect.
 /// </summary>
 public void Pause()
 {
     _IsPausing = true;
     _FadeTimer = 0f;
     _FadeState = FadeStates.FadeOutPause;
 }
Пример #28
0
 /// <summary>
 /// This is called when the page should be updated.
 /// </summary>
 /// <param name="gameTime">Provides a snapshot of timing values.</param>
 public virtual void Update(GameTime gameTime)
 {
     if (FadeState == FadeStates.Wait)
     {
         fadeStep++;
         if (fadeStep > fadeLength)
         {
             layer.CurrentPage = page;
             Goto();
             fadeStep = 0;
             FadeState = FadeStates.FadeIn;
         }
     }
     else if (FadeState == FadeStates.FadeIn)
     {
         fadeStep++;
         if (fadeStep > fadeLength)
         {
             fadeStep = 0;
             FadeState = FadeStates.Visible;
         }
     }
     else if (FadeState == FadeStates.FadeOut)
     {
         fadeStep++;
         if (fadeStep > fadeLength)
         {
             fadeStep = 0;
             Leave();
             FadeState = FadeStates.None;
         }
     }
 }
Пример #29
0
 /// <summary>
 /// Plays the cue with a fade in effect. If it is pause, it will resume the cue.
 /// </summary>
 public void Play()
 {
     _FadeTimer = 0f;
     _FadeState = FadeStates.FadeIn;
     if (IsPaused)
         Cue.Resume();
     else
         Cue.Play();
 }