2023-03-15 01:28:03 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using HeavenStudio.Util;
|
|
|
|
|
|
|
|
namespace HeavenStudio.Games.Scripts_GleeClub
|
|
|
|
{
|
|
|
|
public class ChorusKid : MonoBehaviour
|
|
|
|
{
|
|
|
|
[SerializeField] Animator anim;
|
|
|
|
[SerializeField] SpriteRenderer sr;
|
|
|
|
[SerializeField] bool player;
|
|
|
|
Sound currentSound;
|
|
|
|
|
|
|
|
public float currentPitch = 1f;
|
|
|
|
|
|
|
|
public float gameSwitchFadeOutTime = 0f;
|
|
|
|
|
|
|
|
public bool singing;
|
|
|
|
|
2023-03-15 19:11:31 +00:00
|
|
|
public bool disappeared = false;
|
|
|
|
|
|
|
|
public bool shouldMegaClose;
|
2023-03-15 01:28:03 +00:00
|
|
|
|
|
|
|
private GleeClub game;
|
|
|
|
|
|
|
|
void Awake()
|
|
|
|
{
|
|
|
|
game = GleeClub.instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnDestroy()
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
if (currentSound != null) SoundByte.KillLoop(currentSound, gameSwitchFadeOutTime);
|
2023-03-15 01:28:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void TogglePresence(bool disappear)
|
|
|
|
{
|
|
|
|
if (disappear)
|
|
|
|
{
|
|
|
|
sr.color = new Color(1, 1, 1, 0);
|
|
|
|
StopSinging(false, false);
|
|
|
|
anim.Play("Idle", 0, 0);
|
|
|
|
disappeared = disappear;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
disappeared = disappear;
|
|
|
|
sr.color = new Color(1, 1, 1, 1);
|
|
|
|
if (player && !PlayerInput.Pressing() && !GameManager.instance.autoplay)
|
|
|
|
{
|
|
|
|
StartSinging();
|
|
|
|
game.leftChorusKid.MissPose();
|
|
|
|
game.middleChorusKid.MissPose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void MissPose()
|
|
|
|
{
|
|
|
|
if (!singing && anim.GetCurrentAnimatorStateInfo(0).IsName("Idle") && !anim.IsPlayingAnimationName("MissIdle")) anim.Play("MissIdle", 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void StartCrouch()
|
|
|
|
{
|
|
|
|
if (singing || disappeared) return;
|
|
|
|
anim.Play("CrouchStart", 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void StartYell()
|
|
|
|
{
|
|
|
|
if (singing || disappeared) return;
|
|
|
|
singing = true;
|
|
|
|
anim.SetBool("Mega", true);
|
|
|
|
anim.Play("OpenMouth", 0, 0);
|
2023-03-15 19:11:31 +00:00
|
|
|
shouldMegaClose = true;
|
2023-06-10 19:13:29 +00:00
|
|
|
if (currentSound != null) SoundByte.KillLoop(currentSound, 0f);
|
|
|
|
SoundByte.PlayOneShotGame("gleeClub/LoudWailStart");
|
|
|
|
currentSound = SoundByte.PlayOneShotGame("gleeClub/LoudWailLoop", -1, currentPitch, 1f, true);
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(game, new List<BeatAction.Action>()
|
2023-03-15 19:11:31 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
new BeatAction.Action(Conductor.instance.songPositionInBeatsAsDouble + 1f, delegate { UnYell(); })
|
2023-03-15 19:11:31 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnYell()
|
|
|
|
{
|
|
|
|
if (singing && !anim.GetCurrentAnimatorStateInfo(0).IsName("YellIdle")) anim.Play("YellIdle", 0, 0);
|
2023-03-15 01:28:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void StartSinging(bool forced = false)
|
|
|
|
{
|
|
|
|
if ((singing && !forced) || disappeared) return;
|
|
|
|
singing = true;
|
|
|
|
anim.SetBool("Mega", false);
|
2023-03-15 19:11:31 +00:00
|
|
|
shouldMegaClose = false;
|
2023-03-15 01:28:03 +00:00
|
|
|
anim.Play("OpenMouth", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
if (currentSound != null) SoundByte.KillLoop(currentSound, 0f);
|
|
|
|
currentSound = SoundByte.PlayOneShotGame("gleeClub/WailLoop", -1, currentPitch, 1f, true);
|
2023-03-15 01:28:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void StopSinging(bool mega = false, bool playSound = true)
|
|
|
|
{
|
|
|
|
if (!singing || disappeared) return;
|
|
|
|
singing = false;
|
|
|
|
anim.Play(mega ? "MegaCloseMouth" : "CloseMouth", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
if (currentSound != null) SoundByte.KillLoop(currentSound, 0f);
|
|
|
|
if (playSound) SoundByte.PlayOneShotGame("gleeClub/StopWail");
|
2023-03-15 01:28:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|