2023-03-15 01:28:03 +00:00
using System.Collections ;
using System.Collections.Generic ;
using UnityEngine ;
using HeavenStudio.Util ;
2023-10-29 19:44:47 +00:00
using HeavenStudio.InputSystem ;
2023-06-10 19:13:29 +00:00
using Jukebox ;
2023-03-15 01:28:03 +00:00
namespace HeavenStudio.Games.Loaders
{
using static Minigames ;
public static class NtrGleeClubLoader
{
public static Minigame AddGame ( EventCaller eventCaller )
{
2023-04-02 02:28:23 +00:00
return new Minigame ( "gleeClub" , "Glee Club" , "cfcecf" , false , false , new List < GameAction > ( )
2023-03-15 01:28:03 +00:00
{
new GameAction ( "intervalStart" , "Start Interval" )
{
defaultLength = 1f ,
resizable = true
} ,
new GameAction ( "sing" , "Sing" )
{
2023-10-29 19:44:47 +00:00
function = delegate { var e = eventCaller . currentEntity ; GleeClub . instance . Sing ( e . beat , e . length , e [ "semiTones" ] , e [ "semiTones1" ] , e [ "semiTonesPlayer" ] ,
2023-03-15 01:28:03 +00:00
e [ "close" ] , e [ "repeat" ] , e [ "semiTonesLeft2" ] , e [ "semiTonesLeft3" ] , e [ "semiTonesMiddle2" ] ) ; } ,
resizable = true ,
parameters = new List < Param > ( )
{
2024-03-22 01:37:41 +00:00
new Param ( "semiTones" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , - 5 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones" , "Set the number of semitones up or down this note should be pitched." ) ,
new Param ( "semiTones1" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , - 1 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones (Next)" , "Set the number of semitones up or down this note should be pitched." ) ,
new Param ( "semiTonesPlayer" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , 2 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones (Player)" , "Set the number of semitones up or down this note should be pitched." ) ,
2024-01-15 02:04:10 +00:00
new Param ( "close" , GleeClub . MouthOpenClose . Both , "Close/Open Mouth" , "Choose if the chorus kids should close or open their mouth." ) ,
new Param ( "repeat" , false , "Repeating" , "Toggle if the left and middle chorus kid should repeat this singing cue." , new List < Param . CollapseParam > ( )
2023-09-08 14:27:07 +00:00
{
2023-10-27 20:19:11 +00:00
new Param . CollapseParam ( ( x , _ ) = > ( bool ) x , new string [ ] { "semiTonesLeft2" , "semiTonesLeft3" , "semiTonesMiddle2" } )
2023-09-08 14:27:07 +00:00
} ) ,
2024-03-22 01:37:41 +00:00
new Param ( "semiTonesLeft2" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , 0 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones (Repeat Left First)" , "Set the number of semitones up or down this note should be pitched." ) ,
new Param ( "semiTonesLeft3" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , 0 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones (Repeat Left Last)" , "Set the number of semitones up or down this note should be pitched." ) ,
new Param ( "semiTonesMiddle2" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , 0 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones (Repeat Middle)" , "Set the number of semitones up or down this note should be pitched." ) ,
2023-03-15 01:28:03 +00:00
}
} ,
new GameAction ( "baton" , "Baton" )
{
preFunction = delegate { var e = eventCaller . currentEntity ; GleeClub . PreBaton ( e . beat ) ; } ,
defaultLength = 2f
} ,
new GameAction ( "togetherNow" , "Together Now!" )
{
function = delegate { var e = eventCaller . currentEntity ; GleeClub . instance . TogetherNow ( e . beat , e [ "semiTones" ] , e [ "semiTones1" ] , e [ "semiTonesPlayer" ] , e [ "pitch" ] ) ; } ,
defaultLength = 4f ,
parameters = new List < Param > ( )
{
2024-03-22 01:37:41 +00:00
new Param ( "semiTones" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , - 1 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones" , "Set the number of semitones up or down this note should be pitched." ) ,
new Param ( "semiTones1" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , 4 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones (Next)" , "Set the number of semitones up or down this note should be pitched." ) ,
new Param ( "semiTonesPlayer" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , 10 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones (Player)" , "Set the number of semitones up or down this note should be pitched." ) ,
2024-01-15 02:04:10 +00:00
new Param ( "pitch" , new EntityTypes . Float ( 0f , 5f , 1f ) , "Conductor Voice Pitch" , "Choose the pitch of the conductor's voice. 1 is normal pitch." )
2023-03-15 01:28:03 +00:00
}
} ,
new GameAction ( "forceSing" , "Force Sing" )
{
function = delegate { var e = eventCaller . currentEntity ; GleeClub . instance . ForceSing ( e [ "semiTones" ] , e [ "semiTones1" ] , e [ "semiTonesPlayer" ] ) ; } ,
defaultLength = 0.5f ,
parameters = new List < Param > ( )
{
2024-03-22 01:37:41 +00:00
new Param ( "semiTones" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , 0 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones" , "Set the number of semitones up or down this note should be pitched." ) ,
new Param ( "semiTones1" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , 0 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones (Next)" , "Set the number of semitones up or down this note should be pitched." ) ,
new Param ( "semiTonesPlayer" , new EntityTypes . Note ( - EntityTypes . Note . maxSemitones , EntityTypes . Note . maxSemitones , 0 , 4 , 5 , "gleeClub/WailPreview" ) , "Semitones (Player)" , "Set the number of semitones up or down this note should be pitched." ) ,
2023-03-15 01:28:03 +00:00
}
} ,
2024-01-15 02:04:10 +00:00
new GameAction ( "presence" , "Toggle Chorus Kids" )
2023-03-15 01:28:03 +00:00
{
function = delegate { var e = eventCaller . currentEntity ; GleeClub . instance . ToggleKidsPresence ( ! e [ "left" ] , ! e [ "middle" ] , ! e [ "player" ] ) ; } ,
defaultLength = 0.5f ,
parameters = new List < Param > ( )
{
2024-01-15 02:04:10 +00:00
new Param ( "left" , false , "Left Kid Present" , "Toggle if this chorus kid should be present." ) ,
new Param ( "middle" , false , "Middle Kid Present" , "Toggle if this chorus kid should be present." ) ,
new Param ( "player" , false , "Player Kid Present" , "Toggle if this chorus kid should be present." ) ,
2023-03-15 01:28:03 +00:00
}
} ,
new GameAction ( "fadeOutTime" , "Set Sing Game-Switch Fade Out Time" )
{
function = delegate { var e = eventCaller . currentEntity ; GleeClub . instance . SetGameSwitchFadeOutTime ( e [ "fade" ] , e [ "fade1" ] , e [ "fadeP" ] ) ; } ,
defaultLength = 0.5f ,
parameters = new List < Param > ( )
{
2024-01-15 02:04:10 +00:00
new Param ( "fade" , new EntityTypes . Float ( 0 , 20f , 0f ) , "Left Chorus Kid" , "Set how long (in seconds) this chorus kid's singing should take to fade out if it is interrupted by a game switch." ) ,
new Param ( "fade1" , new EntityTypes . Float ( 0 , 20f , 0f ) , "Middle Chorus Kid" , "Set how long (in seconds) this chorus kid's singing should take to fade out if it is interrupted by a game switch." ) ,
new Param ( "fadeP" , new EntityTypes . Float ( 0 , 20f , 0f ) , "Player Chorus Kid" , "Set how long (in seconds) this chorus kid's singing should take to fade out if it is interrupted by a game switch." ) ,
2023-03-15 01:28:03 +00:00
}
} ,
new GameAction ( "passTurn" , "Pass Turn" )
{
function = delegate { var e = eventCaller . currentEntity ; GleeClub . instance . PassTurn ( e . beat , e . length ) ; } ,
resizable = true ,
defaultLength = 0.5f ,
hidden = true
} ,
2023-05-28 17:34:44 +00:00
} ,
2023-10-29 19:44:47 +00:00
new List < string > ( ) { "ntr" , "repeat" } ,
2023-05-28 17:34:44 +00:00
"ntrchorus" , "en" ,
2024-03-29 02:35:07 +00:00
new List < string > ( ) { "en" } ,
2024-04-05 01:28:09 +00:00
chronologicalSortKey : 2
2023-05-28 17:34:44 +00:00
) ;
2023-03-15 01:28:03 +00:00
}
}
}
namespace HeavenStudio.Games
{
using Scripts_GleeClub ;
public class GleeClub : Minigame
{
public enum MouthOpenClose
{
Both ,
OnlyOpen ,
OnlyClose
}
public struct QueuedSinging
{
2023-06-10 19:13:29 +00:00
public double startBeat ;
2023-03-15 01:28:03 +00:00
public float length ;
public int semiTones ;
public int semiTonesPlayer ;
public int closeMouth ;
public bool repeating ;
public int semiTonesLeft2 ;
public int semiTonesLeft3 ;
public int semiTonesMiddle2 ;
}
[Header("Prefabs")]
[SerializeField] GleeClubSingInput singInputPrefab ;
[Header("Components")]
[SerializeField] Animator heartAnim ;
[SerializeField] Animator condAnim ;
public ChorusKid leftChorusKid ;
public ChorusKid middleChorusKid ;
public ChorusKid playerChorusKid ;
[Header("Variables")]
static List < QueuedSinging > queuedSingings = new List < QueuedSinging > ( ) ;
2023-06-10 19:13:29 +00:00
static List < double > queuedBatons = new ( ) ;
2023-03-15 01:28:03 +00:00
bool intervalStarted ;
2023-06-10 19:13:29 +00:00
double intervalStartBeat ;
2023-03-15 01:28:03 +00:00
float beatInterval = 4f ;
public bool missed ;
public static GleeClub instance ;
float currentYellPitch = 1f ;
2023-03-15 19:11:31 +00:00
int startIntervalIndex ;
2023-06-10 19:13:29 +00:00
private List < RiqEntity > allIntervalEvents = new List < RiqEntity > ( ) ;
2023-03-15 19:11:31 +00:00
2023-03-15 01:28:03 +00:00
void Awake ( )
{
instance = this ;
2023-03-15 19:11:31 +00:00
var camEvents = EventCaller . GetAllInGameManagerList ( "gleeClub" , new string [ ] { "intervalStart" } ) ;
2023-06-10 19:13:29 +00:00
List < RiqEntity > tempEvents = new List < RiqEntity > ( ) ;
2023-03-15 19:11:31 +00:00
for ( int i = 0 ; i < camEvents . Count ; i + + )
{
2023-06-10 19:13:29 +00:00
if ( camEvents [ i ] . beat + camEvents [ i ] . beat > = Conductor . instance . songPositionInBeatsAsDouble )
2023-03-15 19:11:31 +00:00
{
tempEvents . Add ( camEvents [ i ] ) ;
}
}
allIntervalEvents = tempEvents ;
2023-03-15 01:28:03 +00:00
}
void Start ( )
{
2023-10-29 19:44:47 +00:00
if ( ! PlayerInput . GetIsAction ( InputAction_BasicPressing ) & & Conductor . instance . isPlaying & & ! GameManager . instance . autoplay )
2023-03-15 01:28:03 +00:00
{
playerChorusKid . StartSinging ( ) ;
leftChorusKid . MissPose ( ) ;
middleChorusKid . MissPose ( ) ;
}
}
void OnDestroy ( )
{
if ( ! Conductor . instance . isPlaying | | Conductor . instance . isPaused )
{
if ( queuedSingings . Count > 0 ) queuedSingings . Clear ( ) ;
if ( queuedBatons . Count > 0 ) queuedBatons . Clear ( ) ;
}
2023-06-03 23:30:17 +00:00
foreach ( var evt in scheduledInputs )
{
evt . Disable ( ) ;
}
2023-03-15 01:28:03 +00:00
}
void Update ( )
{
2023-03-15 19:11:31 +00:00
if ( ! playerChorusKid . disappeared )
2023-03-15 01:28:03 +00:00
{
2023-10-29 19:44:47 +00:00
if ( PlayerInput . GetIsAction ( InputAction_BasicPress ) & & ! IsExpectingInputNow ( InputAction_BasicPress ) )
2023-03-15 19:11:31 +00:00
{
playerChorusKid . StopSinging ( ) ;
leftChorusKid . MissPose ( ) ;
middleChorusKid . MissPose ( ) ;
ScoreMiss ( ) ;
}
2023-10-29 19:44:47 +00:00
if ( PlayerInput . GetIsAction ( InputAction_BasicRelease ) & & ! IsExpectingInputNow ( InputAction_BasicRelease ) )
2023-03-15 19:11:31 +00:00
{
playerChorusKid . StartSinging ( ) ;
leftChorusKid . MissPose ( ) ;
middleChorusKid . MissPose ( ) ;
ScoreMiss ( ) ;
}
2023-10-29 19:44:47 +00:00
if ( PlayerInput . GetIsAction ( InputAction_FlickRelease ) & & ! IsExpectingInputNow ( InputAction_FlickRelease ) )
{
if ( PlayerInput . CurrentControlStyle = = InputController . ControlStyles . Touch )
{
playerChorusKid . StartYell ( ) ;
leftChorusKid . MissPose ( ) ;
middleChorusKid . MissPose ( ) ;
ScoreMiss ( ) ;
}
}
2023-03-15 01:28:03 +00:00
}
2023-03-15 19:11:31 +00:00
2023-03-15 01:28:03 +00:00
if ( Conductor . instance . isPlaying & & ! Conductor . instance . isPaused )
{
if ( queuedBatons . Count > 0 )
{
foreach ( var baton in queuedBatons )
{
Baton ( baton ) ;
}
queuedBatons . Clear ( ) ;
}
float normalizedBeat = Conductor . instance . GetPositionFromBeat ( intervalStartBeat , beatInterval ) ;
if ( normalizedBeat > = 1f & & intervalStarted )
{
PassTurn ( intervalStartBeat + beatInterval , 0f ) ;
}
2023-03-15 19:11:31 +00:00
if ( allIntervalEvents . Count > 0 )
{
if ( startIntervalIndex < allIntervalEvents . Count & & startIntervalIndex > = 0 )
{
2023-06-10 19:13:29 +00:00
if ( Conductor . instance . songPositionInBeatsAsDouble > = allIntervalEvents [ startIntervalIndex ] . beat )
2023-03-15 19:11:31 +00:00
{
2023-06-10 19:13:29 +00:00
StartInterval ( ( float ) allIntervalEvents [ startIntervalIndex ] . beat , allIntervalEvents [ startIntervalIndex ] . length ) ;
2023-03-15 19:11:31 +00:00
startIntervalIndex + + ;
}
}
}
2023-03-15 01:28:03 +00:00
}
if ( ! Conductor . instance . isPlaying | | Conductor . instance . isPaused )
{
if ( queuedSingings . Count > 0 ) queuedSingings . Clear ( ) ;
if ( queuedBatons . Count > 0 ) queuedBatons . Clear ( ) ;
}
}
public void ToggleKidsPresence ( bool left , bool middle , bool player )
{
leftChorusKid . TogglePresence ( left ) ;
middleChorusKid . TogglePresence ( middle ) ;
playerChorusKid . TogglePresence ( player ) ;
}
public void SetGameSwitchFadeOutTime ( float fadeOut , float fadeOut1 , float fadeOutPlayer )
{
leftChorusKid . gameSwitchFadeOutTime = fadeOut ;
middleChorusKid . gameSwitchFadeOutTime = fadeOut1 ;
playerChorusKid . gameSwitchFadeOutTime = fadeOutPlayer ;
}
public void ForceSing ( int semiTones , int semiTones1 , int semiTonesPlayer )
{
2023-06-10 19:13:29 +00:00
leftChorusKid . currentPitch = SoundByte . GetPitchFromSemiTones ( semiTones , true ) ;
middleChorusKid . currentPitch = SoundByte . GetPitchFromSemiTones ( semiTones1 , true ) ;
playerChorusKid . currentPitch = SoundByte . GetPitchFromSemiTones ( semiTonesPlayer , true ) ;
2023-03-15 01:28:03 +00:00
leftChorusKid . StartSinging ( true ) ;
middleChorusKid . StartSinging ( true ) ;
2023-10-29 19:44:47 +00:00
if ( ! PlayerInput . GetIsAction ( InputAction_BasicPressing ) | | GameManager . instance . autoplay ) playerChorusKid . StartSinging ( true ) ;
2023-03-15 01:28:03 +00:00
else missed = true ;
}
2023-06-10 19:13:29 +00:00
public void TogetherNow ( double beat , int semiTones , int semiTones1 , int semiTonesPlayer , float conductorPitch )
2023-03-15 01:28:03 +00:00
{
2023-10-29 19:44:47 +00:00
if ( ! playerChorusKid . disappeared ) ScheduleInput ( beat , 2.5f , InputAction_FlickRelease , JustTogetherNow , Out , Out ) ;
if ( ! playerChorusKid . disappeared ) ScheduleInput ( beat , 3.5f , InputAction_BasicPress , JustTogetherNowClose , MissBaton , Out ) ;
2023-06-10 19:13:29 +00:00
float pitch = SoundByte . GetPitchFromSemiTones ( semiTones , true ) ;
float pitch1 = SoundByte . GetPitchFromSemiTones ( semiTones1 , true ) ;
currentYellPitch = SoundByte . GetPitchFromSemiTones ( semiTonesPlayer , true ) ;
2023-03-15 01:28:03 +00:00
MultiSound . Play ( new MultiSound . Sound [ ]
{
new MultiSound . Sound ( "gleeClub/togetherEN-01" , beat + 0.5f , conductorPitch ) ,
new MultiSound . Sound ( "gleeClub/togetherEN-02" , beat + 1f , conductorPitch ) ,
new MultiSound . Sound ( "gleeClub/togetherEN-03" , beat + 1.5f , conductorPitch ) ,
new MultiSound . Sound ( "gleeClub/togetherEN-04" , beat + 2f , conductorPitch , 1 , false , 0.02f ) ,
} ) ;
2023-09-11 22:28:04 +00:00
BeatAction . New ( instance , new List < BeatAction . Action > ( )
2023-03-15 01:28:03 +00:00
{
new BeatAction . Action ( beat + 1.5f , delegate
{
leftChorusKid . StartCrouch ( ) ;
middleChorusKid . StartCrouch ( ) ;
playerChorusKid . StartCrouch ( ) ;
} ) ,
new BeatAction . Action ( beat + 2.5f , delegate
{
leftChorusKid . currentPitch = pitch ;
middleChorusKid . currentPitch = pitch1 ;
leftChorusKid . StartYell ( ) ;
middleChorusKid . StartYell ( ) ;
} ) ,
new BeatAction . Action ( beat + 3.5f , delegate
{
leftChorusKid . StopSinging ( true ) ;
middleChorusKid . StopSinging ( true ) ;
} ) ,
new BeatAction . Action ( beat + 6f , delegate
{
2023-03-15 19:11:31 +00:00
if ( ! playerChorusKid . disappeared ) ShowHeart ( beat + 6f ) ;
2023-03-15 01:28:03 +00:00
} )
} ) ;
}
void JustTogetherNow ( PlayerActionEvent caller , float state )
{
playerChorusKid . currentPitch = currentYellPitch ;
playerChorusKid . StartYell ( ) ;
}
void JustTogetherNowClose ( PlayerActionEvent caller , float state )
{
playerChorusKid . StopSinging ( true ) ;
}
2023-06-10 19:13:29 +00:00
public void StartInterval ( double beat , float length )
2023-03-15 01:28:03 +00:00
{
intervalStartBeat = beat ;
beatInterval = length ;
intervalStarted = true ;
}
2023-06-10 19:13:29 +00:00
public void Sing ( double beat , float length , int semiTones , int semiTones1 , int semiTonesPlayer , int closeMouth , bool repeating , int semiTonesLeft2 , int semiTonesLeft3 , int semiTonesMiddle2 )
2023-03-15 01:28:03 +00:00
{
2023-06-10 19:13:29 +00:00
float pitch = SoundByte . GetPitchFromSemiTones ( semiTones , true ) ;
2023-03-15 01:28:03 +00:00
if ( ! intervalStarted )
{
StartInterval ( beat , length ) ;
}
2023-09-11 22:28:04 +00:00
BeatAction . New ( instance , new List < BeatAction . Action > ( )
2023-03-15 01:28:03 +00:00
{
new BeatAction . Action ( beat , delegate { if ( closeMouth ! = ( int ) MouthOpenClose . OnlyClose ) leftChorusKid . currentPitch = pitch ; leftChorusKid . StartSinging ( ) ; } ) ,
new BeatAction . Action ( beat + length , delegate { if ( closeMouth ! = ( int ) MouthOpenClose . OnlyOpen ) leftChorusKid . StopSinging ( ) ; } ) ,
} ) ;
queuedSingings . Add ( new QueuedSinging
{
startBeat = beat - intervalStartBeat ,
length = length ,
semiTones = semiTones1 ,
closeMouth = closeMouth ,
semiTonesPlayer = semiTonesPlayer ,
repeating = repeating ,
semiTonesLeft2 = semiTonesLeft2 ,
semiTonesLeft3 = semiTonesLeft3 ,
semiTonesMiddle2 = semiTonesMiddle2
} ) ;
}
2023-06-10 19:13:29 +00:00
public void PassTurn ( double beat , float length )
2023-03-15 01:28:03 +00:00
{
if ( queuedSingings . Count = = 0 ) return ;
intervalStarted = false ;
missed = false ;
2023-03-15 19:11:31 +00:00
if ( ! playerChorusKid . disappeared ) ShowHeart ( beat + length + beatInterval * 2 + 1 ) ;
2023-03-15 01:28:03 +00:00
foreach ( var sing in queuedSingings )
{
2023-06-10 19:13:29 +00:00
float playerPitch = SoundByte . GetPitchFromSemiTones ( sing . semiTonesPlayer , true ) ;
2023-03-15 19:11:31 +00:00
if ( ! playerChorusKid . disappeared )
{
GleeClubSingInput spawnedInput = Instantiate ( singInputPrefab , transform ) ;
spawnedInput . pitch = playerPitch ;
spawnedInput . Init ( beat + length + sing . startBeat + beatInterval , sing . length , sing . closeMouth ) ;
}
2023-06-10 19:13:29 +00:00
float pitch = SoundByte . GetPitchFromSemiTones ( sing . semiTones , true ) ;
float pitchLeft2 = SoundByte . GetPitchFromSemiTones ( sing . semiTonesLeft2 , true ) ;
float pitchLeft3 = SoundByte . GetPitchFromSemiTones ( sing . semiTonesLeft3 , true ) ;
float pitchMiddle2 = SoundByte . GetPitchFromSemiTones ( sing . semiTonesMiddle2 , true ) ;
2023-09-11 22:28:04 +00:00
BeatAction . New ( instance , new List < BeatAction . Action > ( )
2023-03-15 01:28:03 +00:00
{
new BeatAction . Action ( beat + length + sing . startBeat , delegate
{
2023-10-29 19:44:47 +00:00
if ( sing . closeMouth ! = ( int ) MouthOpenClose . OnlyClose )
2023-03-15 01:28:03 +00:00
{
middleChorusKid . currentPitch = pitch ;
middleChorusKid . StartSinging ( ) ;
if ( sing . repeating )
{
leftChorusKid . currentPitch = pitchLeft2 ;
leftChorusKid . StartSinging ( ) ;
}
2023-10-29 19:44:47 +00:00
}
2023-03-15 01:28:03 +00:00
} ) ,
new BeatAction . Action ( beat + length + sing . startBeat + sing . length , delegate
{
2023-10-29 19:44:47 +00:00
if ( sing . closeMouth ! = ( int ) MouthOpenClose . OnlyOpen )
2023-03-15 01:28:03 +00:00
{
middleChorusKid . StopSinging ( ) ;
if ( sing . repeating ) leftChorusKid . StopSinging ( ) ;
2023-10-29 19:44:47 +00:00
}
2023-03-15 01:28:03 +00:00
} ) ,
new BeatAction . Action ( beat + length + sing . startBeat + beatInterval , delegate
{
if ( sing . closeMouth ! = ( int ) MouthOpenClose . OnlyClose & & sing . repeating )
{
middleChorusKid . currentPitch = pitchMiddle2 ;
leftChorusKid . currentPitch = pitchLeft3 ;
middleChorusKid . StartSinging ( ) ;
leftChorusKid . StartSinging ( ) ;
}
} ) ,
new BeatAction . Action ( beat + length + sing . startBeat + sing . length + beatInterval , delegate
{
if ( sing . closeMouth ! = ( int ) MouthOpenClose . OnlyOpen & & sing . repeating )
{
middleChorusKid . StopSinging ( ) ;
leftChorusKid . StopSinging ( ) ;
}
} ) ,
} ) ;
}
queuedSingings . Clear ( ) ;
}
2023-06-10 19:13:29 +00:00
public static void PreBaton ( double beat )
2023-03-15 01:28:03 +00:00
{
MultiSound . Play ( new MultiSound . Sound [ ]
{
new MultiSound . Sound ( "gleeClub/BatonUp" , beat ) ,
new MultiSound . Sound ( "gleeClub/BatonDown" , beat + 1 ) ,
} , forcePlay : true ) ;
if ( GameManager . instance . currentGame = = "gleeClub" )
{
instance . Baton ( beat ) ;
}
else
{
queuedBatons . Add ( beat ) ;
}
}
2023-06-10 19:13:29 +00:00
public void Baton ( double beat )
2023-03-15 01:28:03 +00:00
{
missed = false ;
2023-10-29 19:44:47 +00:00
if ( ! playerChorusKid . disappeared ) ScheduleInput ( beat , 1 , InputAction_BasicPress , JustBaton , MissBaton , Out ) ;
2023-09-11 22:28:04 +00:00
BeatAction . New ( instance , new List < BeatAction . Action > ( )
2023-03-15 01:28:03 +00:00
{
new BeatAction . Action ( beat , delegate
{
condAnim . DoScaledAnimationAsync ( "ConductorBatonUp" , 0.5f ) ;
} ) ,
new BeatAction . Action ( beat + 1 , delegate
{
condAnim . DoScaledAnimationAsync ( "ConductorBatonDown" , 0.5f ) ;
leftChorusKid . StopSinging ( ) ;
middleChorusKid . StopSinging ( ) ;
} ) ,
new BeatAction . Action ( beat + 2 , delegate
{
condAnim . DoUnscaledAnimation ( "ConductorIdle" , 0 , - 1 ) ;
} ) ,
} ) ;
}
void JustBaton ( PlayerActionEvent caller , float state )
{
playerChorusKid . StopSinging ( ) ;
ShowHeart ( caller . timer + caller . startBeat + 1f ) ;
}
void MissBaton ( PlayerActionEvent caller )
{
missed = true ;
}
void Out ( PlayerActionEvent caller ) { }
2023-06-10 19:13:29 +00:00
public void ShowHeart ( double beat )
2023-03-15 01:28:03 +00:00
{
2023-09-11 22:28:04 +00:00
BeatAction . New ( instance , new List < BeatAction . Action > ( )
2023-03-15 01:28:03 +00:00
{
new BeatAction . Action ( beat , delegate
{
if ( missed )
{
leftChorusKid . MissPose ( ) ;
middleChorusKid . MissPose ( ) ;
return ;
}
heartAnim . Play ( "HeartIdle" , 0 , 0 ) ;
} ) ,
new BeatAction . Action ( beat + 2 , delegate
{
heartAnim . Play ( "HeartNothing" , 0 , 0 ) ;
} )
} ) ;
}
}
}