2022-08-26 08:29:26 +00:00
//notes:
2023-02-07 17:17:40 +00:00
// BEFORE NEW PROPS
// - minenice will also use this to test out randomly named parameters so coding has to rest until the new props update [DONE]
// - see fan club for separate prefabs (cadets) [DONE]
// - temporarily take sounds from rhre, wait until someone records the full code, including misses, or record it myself (unlikely) [IN PROGRESS]
// AFTER NEW PROPS
// - testmod marching orders using speed
2022-09-06 06:41:13 +00:00
// - see space soccer, mr upbeat, tunnel for keep-the-beat codes
// - figure how to do custom bg changes when the upscaled textures are finished (see karate man, launch party once it releases)
// - will use a textbox without going through the visual options but i wonder how..?? (see first contact if ever textboxes are implemented in said minigame)
2022-08-27 04:40:49 +00:00
// AFTER FEATURE COMPLETION
2022-09-06 06:41:13 +00:00
// - delete all notes once the minigame is considered feature-complete
2022-08-26 08:29:26 +00:00
2023-06-04 04:30:42 +00:00
using HeavenStudio.Common ;
2022-08-24 02:22:20 +00:00
using HeavenStudio.Util ;
using System ;
using System.Collections.Generic ;
2023-02-07 17:17:40 +00:00
using UnityEditor ;
2022-08-24 02:22:20 +00:00
using UnityEngine ;
namespace HeavenStudio.Games.Loaders
{
using static Minigames ;
2022-08-27 04:40:49 +00:00
public static class AgbMarcherLoader
2022-08-24 02:22:20 +00:00
{
public static Minigame AddGame ( EventCaller eventCaller ) {
2023-04-02 02:28:23 +00:00
return new Minigame ( "marchingOrders" , "Marching Orders" , "ffb108" , false , false , new List < GameAction > ( )
2022-08-24 02:22:20 +00:00
{
2022-09-04 05:55:12 +00:00
new GameAction ( "bop" , "Bop" )
2022-09-10 12:56:26 +00:00
{
2023-06-04 04:30:42 +00:00
function = delegate { var e = eventCaller . currentEntity ; MarchingOrders . instance . BopAction ( e . beat , e . length , e [ "bop" ] , e [ "autoBop" ] , e [ "clap" ] ) ; } ,
2022-09-04 05:55:12 +00:00
defaultLength = 1f ,
2023-03-07 17:22:32 +00:00
resizable = true ,
parameters = new List < Param > ( )
{
new Param ( "bop" , true , "Bop" , "Should the cadets bop?" ) ,
2023-06-04 04:30:42 +00:00
new Param ( "autoBop" , false , "Bop (Auto)" , "Should the cadets auto bop?" ) ,
new Param ( "clap" , false , "Clap" , "Should the cadets clap instead of bop?" ) ,
2023-03-07 17:22:32 +00:00
}
2022-09-10 12:56:26 +00:00
} ,
2022-09-04 05:55:12 +00:00
new GameAction ( "attention" , "Attention..." )
2022-09-10 12:56:26 +00:00
{
function = delegate { var e = eventCaller . currentEntity ; MarchingOrders . instance . SargeAttention ( e . beat ) ; } ,
2023-02-07 17:17:40 +00:00
defaultLength = 2f ,
preFunction = delegate { var e = eventCaller . currentEntity ; MarchingOrders . AttentionSound ( e . beat ) ; }
2022-09-04 05:55:12 +00:00
} ,
2022-09-10 12:56:26 +00:00
new GameAction ( "march" , "March!" )
{
2023-06-04 04:30:42 +00:00
function = delegate { var e = eventCaller . currentEntity ; MarchingOrders . SargeMarch ( e . beat , e [ "disableVoice" ] ) ; } ,
inactiveFunction = delegate { var e = eventCaller . currentEntity ; MarchingOrders . SargeMarch ( e . beat , e [ "disableVoice" ] ) ; } ,
2022-09-10 12:56:26 +00:00
defaultLength = 2f ,
2023-02-07 17:17:40 +00:00
parameters = new List < Param >
{
2023-06-04 04:30:42 +00:00
new Param ( "disableVoice" , false , "Disable Voice" , "Disable the Drill Sergeant's call" )
2023-02-07 17:17:40 +00:00
} ,
2023-06-04 04:30:42 +00:00
priority = 5 ,
} ,
new GameAction ( "faceTurn" , "Face Turn" )
{
function = delegate {
var e = eventCaller . currentEntity ;
MarchingOrders . instance . FaceTurn ( e . beat , e [ "direction" ] , false , e [ "point" ] ) ;
} ,
defaultLength = 4f ,
parameters = new List < Param > ( )
{
new Param ( "direction" , MarchingOrders . Direction . Right , "Direction" , "The direction for the cadets to face." ) ,
new Param ( "point" , false , "Point" , "Point and face a direction instead of just facing a direction." ) ,
}
} ,
new GameAction ( "faceTurnFast" , "Fast Face Turn" )
{
function = delegate {
var e = eventCaller . currentEntity ;
MarchingOrders . instance . FaceTurn ( e . beat , e [ "direction" ] , true , e [ "point" ] ) ;
} ,
defaultLength = 3f ,
parameters = new List < Param > ( )
{
new Param ( "direction" , MarchingOrders . Direction . Right , "Direction" , "The direction for the cadets to face." ) ,
new Param ( "point" , false , "Point" , "Point and face a direction instead of just facing a direction." ) ,
}
2022-09-10 12:56:26 +00:00
} ,
new GameAction ( "halt" , "Halt!" )
{
2023-06-04 04:30:42 +00:00
function = delegate { MarchingOrders . instance . Halt ( eventCaller . currentEntity . beat ) ; } ,
2022-09-10 12:56:26 +00:00
defaultLength = 2f ,
2023-06-04 04:30:42 +00:00
inactiveFunction = delegate { MarchingOrders . HaltSound ( eventCaller . currentEntity . beat ) ; }
2022-09-04 05:55:12 +00:00
} ,
2023-06-04 04:30:42 +00:00
new GameAction ( "go" , "Go!" )
2022-09-08 12:38:45 +00:00
{
2023-06-04 04:30:42 +00:00
function = delegate {
var e = eventCaller . currentEntity ;
MarchingOrders . instance . MoveConveyor ( e . length , e [ "start" ] , e [ "direction" ] ) ;
} ,
2022-09-10 12:56:26 +00:00
parameters = new List < Param > ( )
2022-09-08 12:38:45 +00:00
{
2023-06-04 04:30:42 +00:00
new Param ( "start" , true , "Start Moving" , "Start moving the conveyor" ) ,
new Param ( "direction" , MarchingOrders . Direction . Right , "Direction" , "Direction" ) ,
} ,
defaultLength = 7f ,
resizable = true ,
2022-09-08 12:38:45 +00:00
} ,
2023-06-04 04:30:42 +00:00
new GameAction ( "background" , "Background Colors" )
2023-02-07 17:17:40 +00:00
{
2023-06-04 04:30:42 +00:00
function = delegate {
var e = eventCaller . currentEntity ;
MarchingOrders . instance . BackgroundColorSet ( e [ "preset" ] , e [ "colorFill" ] , e [ "colorTiles1" ] , e [ "colorTiles2" ] , e [ "colorTiles3" ] , e [ "colorPipes1" ] , e [ "colorPipes2" ] , e [ "colorPipes3" ] , e [ "colorConveyor1" ] , e [ "colorConveyor2" ] ) ;
} ,
2023-02-07 17:17:40 +00:00
defaultLength = 0.5f ,
parameters = new List < Param > ( )
{
2023-06-04 04:30:42 +00:00
new Param ( "preset" , MarchingOrders . BackgroundColor . Yellow , "Color" , "Choose from a preset, or choose custom and set colors below" ) ,
new Param ( "colorFill" , new Color ( 0.259f , 0.353f , 0.404f ) , "Wall Color" , "Sets the color of the wall" ) ,
new Param ( "colorTiles1" , new Color ( 1f , 0.76f , 0.52f ) , "Tile Outline Color" , "Sets the color of the tile outline" ) ,
new Param ( "colorTiles2" , new Color ( 1f , 0.6f , 0.2f ) , "Tile Shading Color" , "Sets the color of the tile shading" ) ,
new Param ( "colorTiles3" , new Color ( 1f , 0.675f , 0f ) , "Tile Fill Color" , "Sets the color of the tile's main color" ) ,
new Param ( "colorPipes1" , new Color ( 0.41f , 0.54f , 0.34f ) , "Pipe Outline Color" , "Sets the color of the pipes' outline" ) ,
new Param ( "colorPipes2" , new Color ( 0.43f , 0.8f , 0.45f ) , "Pipe Shading Color" , "Sets the color of the pipes' shading" ) ,
new Param ( "colorPipes3" , new Color ( 0.48f , 0.89f , 0.54f ) , "Pipe Fill Color" , "Sets the color of the pipes" ) ,
new Param ( "colorConveyor1" , new Color ( 0.157f , 0.25f , 0.3f ) , "Conveyor Fill Color" , "Sets the color of the conveyer belt" ) ,
new Param ( "colorConveyor2" , new Color ( 0.55f , 0.57f , 0.04f ) , "Conveyor Trim Color" , "Sets the conveyor's trim color" ) ,
}
} ,
new GameAction ( "forceMarching" , "Force Marching" )
{
preFunction = delegate {
var e = eventCaller . currentEntity ;
MarchingOrders . instance . ForceMarching ( e . beat , e . length ) ;
} ,
preFunctionLength = 1 ,
resizable = true ,
} ,
// hidden in the editor but here cuz backwards compatibility
new GameAction ( "marching" , "Start Marching (old)" )
{
2023-06-04 17:17:40 +00:00
hidden = true ,
2023-06-04 04:30:42 +00:00
preFunction = delegate {
var e = eventCaller . currentEntity ;
MarchingOrders . instance . ForceMarching ( e . beat , e . length ) ;
} ,
preFunctionLength = 1 ,
resizable = true ,
} ,
new GameAction ( "face turn" , "Direction to Turn (old)" )
{
hidden = true ,
function = delegate {
var e = eventCaller . currentEntity ;
MarchingOrders . instance . FaceTurn ( e . beat , e [ "type" ] , e [ "type2" ] , false ) ;
} ,
defaultLength = 4f ,
parameters = new List < Param > ( )
{
new Param ( "type" , MarchingOrders . Direction . Right , "Direction" , "The direction the sergeant wants the cadets to face" ) ,
new Param ( "type2" , MarchingOrders . FaceTurnLength . Normal , "Length" , "The duration of the turning event" ) ,
2023-02-07 17:17:40 +00:00
}
2023-06-04 04:30:42 +00:00
} ,
} ,
2023-02-07 17:17:40 +00:00
new List < string > ( ) { "agb" , "normal" } ,
"agbmarcher" , "en" ,
new List < string > ( ) { "en" , "jp" }
) ;
2022-08-24 02:22:20 +00:00
}
}
}
namespace HeavenStudio.Games
{
2023-02-07 17:17:40 +00:00
using Scripts_MarchingOrders ;
2022-08-24 02:22:20 +00:00
public class MarchingOrders : Minigame
{
2023-02-07 17:17:40 +00:00
public static MarchingOrders instance ;
2023-06-04 04:30:42 +00:00
static List < float > queuedMarches = new List < float > ( ) ;
[Header("Animators")]
[SerializeField] Animator Sarge ;
[SerializeField] Animator Steam ;
[SerializeField] Animator [ ] Cadets = new Animator [ 3 ] ;
[SerializeField] Animator [ ] CadetHeads = new Animator [ 3 ] ;
[SerializeField] Animator CadetPlayer ;
[SerializeField] Animator CadetHeadPlayer ;
[Header("Colorable")]
[SerializeField] Material [ ] RecolorMats ;
[SerializeField] SpriteRenderer [ ] BackgroundRecolorable ;
static Color BGColor1 = new Color ( 0.26f , 0.35f , 0.4f ) , BGColor2 = new Color ( 0.16f , 0.25f , 0.29f ) ;
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
[Header("Objects")]
[SerializeField] ScrollObject [ ] ConveyorGo ;
[Header("Variables")]
bool goBop ;
bool shouldClap ;
bool keepMarching ;
2022-09-10 12:56:26 +00:00
private int marchOtherCount ;
private int marchPlayerCount ;
2023-06-04 04:30:42 +00:00
private float lastMissBeat ;
private float lastReportedBeat ;
public static float wantMarch = float . MinValue ;
2022-08-27 04:40:49 +00:00
2023-06-04 04:30:42 +00:00
public enum Direction
2022-09-10 12:56:26 +00:00
{
2022-08-24 12:47:41 +00:00
Right ,
Left ,
2022-08-27 04:40:49 +00:00
}
2023-06-04 04:30:42 +00:00
2022-08-27 04:40:49 +00:00
public enum FaceTurnLength
2022-09-10 12:56:26 +00:00
{
2022-08-24 12:47:41 +00:00
Normal ,
Fast ,
2022-08-27 04:40:49 +00:00
}
2023-06-04 04:30:42 +00:00
2023-02-07 17:17:40 +00:00
public enum BackgroundColor
{
Yellow ,
2023-06-04 04:30:42 +00:00
Blue ,
2023-02-07 17:17:40 +00:00
Custom ,
}
2023-06-04 04:30:42 +00:00
2022-08-24 02:22:20 +00:00
void Awake ( )
{
2022-08-26 08:29:26 +00:00
instance = this ;
2023-06-04 04:30:42 +00:00
for ( int i = 0 ; i < BackgroundRecolorable . Length ; i + + ) BackgroundRecolorable [ i ] . color = i = = 0 ? BGColor1 : BGColor2 ;
2022-08-24 02:22:20 +00:00
}
2023-06-04 04:30:42 +00:00
void Update ( )
2023-02-07 17:17:40 +00:00
{
2023-06-04 04:30:42 +00:00
for ( int i = 0 ; i < BackgroundRecolorable . Length ; i + + ) BackgroundRecolorable [ i ] . color = i = = 0 ? BGColor1 : BGColor2 ;
if ( wantMarch ! = float . MinValue ) {
queuedMarches . Add ( wantMarch ) ;
marchOtherCount =
marchPlayerCount = 0 ;
keepMarching = true ;
wantMarch = float . MinValue ;
2023-02-07 17:17:40 +00:00
}
2023-06-04 04:30:42 +00:00
if ( goBop & & Conductor . instance . ReportBeat ( ref lastReportedBeat ) ) {
foreach ( var cadet in Cadets ) cadet . DoScaledAnimationAsync ( shouldClap ? "Clap" : "Bop" , 0.5f ) ;
CadetPlayer . DoScaledAnimationAsync ( shouldClap ? "Clap" : "Bop" , 0.5f ) ;
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
if ( Conductor . instance . isPlaying & & ! Conductor . instance . isPaused ) {
if ( queuedMarches . Count > 0 ) {
foreach ( var march in queuedMarches ) {
BeatAction . New ( instance . gameObject , new List < BeatAction . Action > ( ) {
new BeatAction . Action ( march , delegate {
ScheduleInput ( march , 1f , InputType . STANDARD_DOWN , MarchHit , GenericMiss , Empty ) ;
} ) ,
new BeatAction . Action ( march + 1 , delegate {
marchOtherCount + + ;
foreach ( var cadet in Cadets ) cadet . DoScaledAnimationAsync ( marchOtherCount % 2 ! = 0 ? "MarchR" : "MarchL" , 0.5f ) ;
Jukebox . PlayOneShotGame ( "marchingOrders/stepOther" ) ;
if ( keepMarching ) queuedMarches . Add ( march + 1 ) ;
} ) ,
} ) ;
}
queuedMarches . Clear ( ) ;
}
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
if ( ConveyorGo [ 0 ] . AutoScroll & & ( ConveyorGo [ 1 ] . gameObject . transform . position . x < 0 ) ) {
foreach ( var scroll in ConveyorGo ) scroll . AutoScroll = false ;
ConveyorGo [ 0 ] . gameObject . transform . position = new Vector3 ( 0 , 0 ) ;
ConveyorGo [ 1 ] . gameObject . transform . position = new Vector3 ( 6.181f , - 3.37f ) ;
2023-02-07 17:17:40 +00:00
}
2023-06-04 04:30:42 +00:00
// input stuff below
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
if ( PlayerInput . Pressed ( ) & & ! IsExpectingInputNow ( InputType . STANDARD_DOWN ) ) {
Miss ( ) ;
marchPlayerCount + + ;
CadetPlayer . DoScaledAnimationAsync ( ( marchPlayerCount % 2 ! = 0 ? "MarchR" : "MarchL" ) , 0.5f ) ;
2023-02-07 17:17:40 +00:00
}
2023-06-04 04:30:42 +00:00
if ( PlayerInput . AltPressed ( ) & & ! IsExpectingInputNow ( InputType . STANDARD_ALT_DOWN ) ) {
Miss ( ) ;
CadetPlayer . DoScaledAnimationAsync ( "Halt" , 0.5f ) ;
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
if ( PlayerInput . Pressed ( true ) & & PlayerInput . GetSpecificDirection ( PlayerInput . LEFT ) & & ! IsExpectingInputNow ( InputType . DIRECTION_LEFT_DOWN ) ) {
Miss ( ) ;
CadetHeadPlayer . DoScaledAnimationAsync ( "FaceL" , 0.5f ) ;
}
if ( PlayerInput . Pressed ( true ) & & PlayerInput . GetSpecificDirection ( PlayerInput . RIGHT ) & & ! IsExpectingInputNow ( InputType . DIRECTION_RIGHT_DOWN ) ) {
Miss ( ) ;
CadetHeadPlayer . DoScaledAnimationAsync ( "FaceR" , 0.5f ) ;
2023-02-07 17:17:40 +00:00
}
}
2023-06-04 04:30:42 +00:00
public void LeftSuccess ( PlayerActionEvent caller , float state )
{
TurnSuccess ( state , "L" ) ;
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
public void RightSuccess ( PlayerActionEvent caller , float state )
2022-08-24 02:22:20 +00:00
{
2023-06-04 04:30:42 +00:00
TurnSuccess ( state , "R" ) ;
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
public void LeftPointSuccess ( PlayerActionEvent caller , float state )
{
TurnSuccess ( state , "L" , true ) ;
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
public void RightPointSuccess ( PlayerActionEvent caller , float state )
{
TurnSuccess ( state , "R" , true ) ;
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
void TurnSuccess ( float state , string dir , bool shouldPoint = false )
{
if ( state < = - 1f | | state > = 1f ) Jukebox . PlayOneShot ( "nearMiss" ) ;
else Jukebox . PlayOneShotGame ( "marchingOrders/turnActionPlayer" ) ;
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
CadetHeadPlayer . DoScaledAnimationAsync ( "Face" + dir , 0.5f ) ;
if ( shouldPoint ) CadetPlayer . DoScaledAnimationAsync ( "Point" + dir , 0.5f ) ;
}
2022-09-08 09:13:21 +00:00
2023-06-04 04:30:42 +00:00
public void GenericMiss ( PlayerActionEvent caller )
{
if ( Conductor . instance . songPositionInBeats - lastMissBeat < = 1.1f ) return ;
Miss ( ) ;
}
2022-09-12 15:25:57 +00:00
2023-06-04 04:30:42 +00:00
public void Miss ( )
{
lastMissBeat = Conductor . instance . songPositionInBeats ;
Jukebox . PlayOneShot ( "miss" ) ;
Sarge . DoScaledAnimationAsync ( "Anger" , 0.5f ) ;
Steam . DoScaledAnimationAsync ( "Steam" , 0.5f ) ;
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
public void MarchHit ( PlayerActionEvent caller , float state )
{
if ( state < = - 1f | | state > = 1f ) Jukebox . PlayOneShot ( "nearMiss" ) ;
else Jukebox . PlayOneShotGame ( "marchingOrders/stepPlayer" , volume : 0.25f ) ;
marchPlayerCount + + ;
CadetPlayer . DoScaledAnimationAsync ( marchPlayerCount % 2 ! = 0 ? "MarchR" : "MarchL" , 0.5f ) ;
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
public void HaltHit ( PlayerActionEvent caller , float state )
{
if ( state < = - 1f | | state > = 1f ) Jukebox . PlayOneShot ( "nearMiss" ) ;
else Jukebox . PlayOneShotGame ( "marchingOrders/stepPlayer" , volume : 0.25f ) ;
CadetPlayer . DoScaledAnimationAsync ( "Halt" , 0.5f ) ;
2022-08-24 02:22:20 +00:00
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
public void BopAction ( float beat , float length , bool shouldBop , bool autoBop , bool clap )
2022-08-28 05:38:49 +00:00
{
2023-03-07 17:22:32 +00:00
goBop = autoBop ;
2023-06-04 04:30:42 +00:00
shouldClap = clap ;
if ( shouldBop ) {
for ( int i = 0 ; i < length ; i + + ) {
BeatAction . New ( instance . gameObject , new List < BeatAction . Action > ( ) {
new BeatAction . Action ( beat + i , delegate {
foreach ( var cadet in Cadets ) cadet . DoScaledAnimationAsync ( shouldClap ? "Clap" : "Bop" , 0.5f ) ;
CadetPlayer . DoScaledAnimationAsync ( shouldClap ? "Clap" : "Bop" , 0.5f ) ;
2023-03-07 17:22:32 +00:00
} )
} ) ;
}
}
2022-08-28 05:38:49 +00:00
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
public void SargeAttention ( float beat )
2022-08-27 04:40:49 +00:00
{
2023-06-04 04:30:42 +00:00
BeatAction . New ( gameObject , new List < BeatAction . Action > ( ) {
new BeatAction . Action ( beat + 0.25f , delegate { Sarge . DoScaledAnimationAsync ( "Talk" , 0.5f ) ; } ) ,
} ) ;
2022-08-27 04:40:49 +00:00
}
2023-06-04 04:30:42 +00:00
public static void SargeMarch ( float beat , bool noVoice )
2022-08-27 04:40:49 +00:00
{
2023-06-04 04:30:42 +00:00
if ( MarchingOrders . wantMarch ! = float . MinValue ) return ;
MarchingOrders . wantMarch = beat + 1 ;
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
if ( ! noVoice ) PlaySoundSequence ( "marchingOrders" , "susume" , beat ) ;
if ( GameManager . instance . currentGame = = "marchingOrders" ) {
MarchingOrders . instance . PreMarch ( beat ) ;
if ( ! noVoice ) MarchingOrders . instance . Sarge . DoScaledAnimationAsync ( "Talk" , 0.5f ) ;
2023-02-07 17:17:40 +00:00
}
2023-06-04 04:30:42 +00:00
}
2023-02-07 17:17:40 +00:00
2023-06-04 04:30:42 +00:00
public void ForceMarching ( float beat , float length )
{
for ( int i = 0 ; i < length ; i + + ) {
ScheduleInput ( beat + i - 1 , 1f , InputType . STANDARD_DOWN , MarchHit , GenericMiss , Empty ) ;
BeatAction . New ( instance . gameObject , new List < BeatAction . Action > ( ) {
new BeatAction . Action ( beat + i , delegate {
marchOtherCount + + ;
foreach ( var cadet in Cadets ) cadet . DoScaledAnimationAsync ( marchOtherCount % 2 ! = 0 ? "MarchR" : "MarchL" , 0.5f ) ;
Jukebox . PlayOneShotGame ( "marchingOrders/stepOther" ) ;
2023-02-07 17:17:40 +00:00
} ) ,
2022-08-28 00:45:55 +00:00
} ) ;
2023-02-07 17:17:40 +00:00
}
}
2023-06-04 04:30:42 +00:00
public void PreMarch ( float beat )
2022-08-28 00:45:55 +00:00
{
2023-02-07 17:17:40 +00:00
BeatAction . New ( gameObject , new List < BeatAction . Action > ( )
{
2023-06-04 04:30:42 +00:00
new BeatAction . Action ( beat + 1f , delegate {
foreach ( var cadet in Cadets ) cadet . DoScaledAnimationAsync ( "MarchL" , 0.5f ) ;
CadetPlayer . DoScaledAnimationAsync ( "MarchL" , 0.5f ) ;
} ) ,
2023-02-07 17:17:40 +00:00
} ) ;
2022-08-28 00:45:55 +00:00
}
2023-06-04 04:30:42 +00:00
public void Halt ( float beat )
2022-08-29 14:07:32 +00:00
{
2023-06-04 04:30:42 +00:00
keepMarching = false ;
2023-02-07 17:17:40 +00:00
HaltSound ( beat ) ;
2023-06-04 04:30:42 +00:00
ScheduleInput ( beat , 1f , InputType . STANDARD_ALT_DOWN , HaltHit , GenericMiss , Empty ) ;
2023-02-07 17:17:40 +00:00
BeatAction . New ( gameObject , new List < BeatAction . Action > ( )
{
2023-06-04 04:30:42 +00:00
new BeatAction . Action ( beat , delegate { Sarge . DoScaledAnimationAsync ( "Talk" , 0.5f ) ; } ) ,
new BeatAction . Action ( beat + 1f , delegate { foreach ( var cadet in Cadets ) cadet . DoScaledAnimationAsync ( "Halt" , 0.5f ) ; } ) ,
2023-02-07 17:17:40 +00:00
} ) ;
2022-09-03 06:09:23 +00:00
}
2022-09-10 12:56:26 +00:00
2023-06-04 04:30:42 +00:00
public void FaceTurn ( float beat , int direction , bool isFast , bool shouldPoint )
2022-09-08 12:38:45 +00:00
{
2023-06-04 04:30:42 +00:00
// x is true if the direction is right
bool x = ( direction = = 0 ) ;
int turnLength = ( isFast ? 0 : 1 ) ;
ScheduleInput ( beat , turnLength + 2f , x ? InputType . DIRECTION_RIGHT_DOWN : InputType . DIRECTION_LEFT_DOWN , x ? ( shouldPoint ? RightPointSuccess : RightSuccess ) : ( shouldPoint ? LeftPointSuccess : LeftSuccess ) , GenericMiss , Empty ) ;
MultiSound . Play ( new MultiSound . Sound [ ] {
new MultiSound . Sound ( $"marchingOrders/{(x ? " right " : " left ")}FaceTurn1{(isFast ? " fast " : " ")}" , beat ) ,
new MultiSound . Sound ( $"marchingOrders/{(x ? " right " : " left ")}FaceTurn2{(isFast ? " fast " : " ")}" , beat + 0.5f ) ,
new MultiSound . Sound ( $"marchingOrders/{(x ? " right " : " left ")}FaceTurn3" , beat + turnLength + 1f ) ,
new MultiSound . Sound ( "marchingOrders/turnAction" , beat + turnLength + 2f ) ,
} , forcePlay : true ) ;
2022-09-10 12:56:26 +00:00
2023-06-04 04:30:42 +00:00
BeatAction . New ( gameObject , new List < BeatAction . Action > ( ) {
new BeatAction . Action ( beat + turnLength + 2f , delegate {
if ( shouldPoint ) foreach ( var cadet in Cadets ) cadet . DoScaledAnimationAsync ( $"Point{(x ? " R " : " L ")}" , 0.5f ) ;
foreach ( var head in CadetHeads ) head . DoScaledAnimationAsync ( $"Face{(x ? " R " : " L ")}" , 0.5f ) ;
} )
} ) ;
2022-09-10 12:56:26 +00:00
2023-02-07 17:17:40 +00:00
BeatAction . New ( gameObject , new List < BeatAction . Action > ( )
{
2023-06-04 04:30:42 +00:00
new BeatAction . Action ( beat , delegate { Sarge . DoScaledAnimationAsync ( "Talk" , 0.5f ) ; } ) ,
new BeatAction . Action ( beat + turnLength + 1f , delegate { Sarge . DoScaledAnimationAsync ( "Talk" , 0.5f ) ; } ) ,
2023-02-07 17:17:40 +00:00
} ) ;
2022-09-10 12:56:26 +00:00
}
2023-06-04 04:30:42 +00:00
public void BackgroundColorSet ( int preset , Color fill , Color tiles1 , Color tiles2 , Color tiles3 , Color pipes1 , Color pipes2 , Color pipes3 , Color conveyor1 , Color conveyor2 )
2023-02-07 17:17:40 +00:00
{
2023-06-04 04:30:42 +00:00
if ( preset = = 2 ) UpdateMaterialColor ( fill , tiles1 , tiles2 , tiles3 , pipes1 , pipes2 , pipes3 , conveyor1 , conveyor2 ) ;
else {
bool x = preset = = 0 ;
UpdateMaterialColor (
x ? new Color ( 0.26f , 0.36f , 0.39f ) : new Color ( 0.25f , 0.45f , 0.52f ) ,
x ? new Color ( 1f , 0.76f , 0.52f ) : new Color ( 0.45f , 0.71f , 0.81f ) ,
x ? new Color ( 1f , 0.6f , 0.2f ) : new Color ( 0.65f , 0.87f , 0.94f ) ,
x ? new Color ( 1f , 0.68f , 0f ) : new Color ( 0.65f , 0.87f , 0.94f ) ,
x ? new Color ( 0.41f , 0.54f , 0.34f ) : new Color ( 0.36f , 0.58f , 0.64f ) ,
x ? new Color ( 0.43f , 0.8f , 0.45f ) : new Color ( 0.48f , 0.65f , 0.71f ) ,
x ? new Color ( 0.48f , 0.89f , 0.54f ) : new Color ( 0.48f , 0.65f , 0.71f ) ,
x ? new Color ( 0.16f , 0.25f , 0.3f ) : new Color ( 0.32f , 0.55f , 0.62f ) ,
x ? new Color ( 0.55f , 0.57f , 0.04f ) : new Color ( 0.17f , 0.31f , 0.35f )
) ;
2023-02-07 17:17:40 +00:00
}
}
2023-06-04 04:30:42 +00:00
public void UpdateMaterialColor ( Color fill , Color tiles1 , Color tiles2 , Color tiles3 , Color pipes1 , Color pipes2 , Color pipes3 , Color conveyor1 , Color conveyor2 )
2023-02-07 17:17:40 +00:00
{
2023-06-04 04:30:42 +00:00
BGColor1 = fill ;
BGColor2 = conveyor1 ;
Recolor ( 0 , tiles3 , tiles2 , tiles1 ) ;
Recolor ( 1 , pipes2 , pipes1 , pipes3 ) ;
Recolor ( 2 , new Color ( 0 , 0 , 0 ) , conveyor1 , conveyor2 ) ;
void Recolor ( int i , Color color1 , Color color2 , Color color3 ) {
RecolorMats [ i ] . SetColor ( "_ColorAlpha" , color1 ) ;
RecolorMats [ i ] . SetColor ( "_ColorBravo" , color2 ) ;
RecolorMats [ i ] . SetColor ( "_ColorDelta" , color3 ) ;
}
}
2023-02-07 17:17:40 +00:00
2022-09-10 12:56:26 +00:00
public static void AttentionSound ( float beat )
2022-09-03 06:09:23 +00:00
{
2023-02-07 17:17:40 +00:00
PlaySoundSequence ( "marchingOrders" , "zentai" , beat - 1 ) ;
2022-09-03 06:09:23 +00:00
}
2022-09-10 12:56:26 +00:00
public static void HaltSound ( float beat )
2022-09-06 06:41:13 +00:00
{
2023-02-07 17:17:40 +00:00
PlaySoundSequence ( "marchingOrders" , "tomare" , beat ) ;
2022-08-29 14:07:32 +00:00
}
2023-06-04 04:30:42 +00:00
public void MoveConveyor ( float length , bool go , int direction )
{
foreach ( var scroll in ConveyorGo ) {
scroll . SpeedMod = ( ( direction = = 0 ? 20 : - 20 ) / length ) * ( Conductor . instance . songBpm / 100 ) ;
scroll . AutoScroll = go ;
}
}
static void Empty ( PlayerActionEvent caller ) { }
2022-08-24 02:22:20 +00:00
}
}