2023-01-19 17:18:55 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using NaughtyBezierCurves;
|
|
|
|
using HeavenStudio.Util;
|
|
|
|
|
|
|
|
namespace HeavenStudio.Games.Scripts_WorkingDough
|
|
|
|
{
|
2023-06-13 22:47:52 +00:00
|
|
|
public class PlayerEnterDoughBall : SuperCurveObject
|
2023-01-19 17:18:55 +00:00
|
|
|
{
|
2023-06-13 22:47:52 +00:00
|
|
|
private enum State
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Entering,
|
|
|
|
Hit,
|
|
|
|
Barely,
|
|
|
|
Miss,
|
|
|
|
Weak
|
|
|
|
}
|
|
|
|
private State currentState;
|
|
|
|
|
2023-06-15 18:13:11 +00:00
|
|
|
private double startBeat = double.MinValue;
|
2023-06-13 22:47:52 +00:00
|
|
|
|
|
|
|
private bool big;
|
|
|
|
|
|
|
|
private Path enterPath;
|
|
|
|
private Path hitPath;
|
|
|
|
private Path barelyPath;
|
|
|
|
private Path missPath;
|
|
|
|
private Path weakPath;
|
|
|
|
|
|
|
|
private WorkingDough game;
|
|
|
|
|
|
|
|
private PlayerActionEvent wrongInput;
|
|
|
|
private PlayerActionEvent rightInput;
|
|
|
|
|
|
|
|
[SerializeField] private GameObject gandw;
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
{
|
|
|
|
game = WorkingDough.instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Init(double beat, bool isBig, bool hasGandw)
|
|
|
|
{
|
|
|
|
startBeat = beat;
|
|
|
|
big = isBig;
|
|
|
|
enterPath = game.GetPath("PlayerEnter");
|
|
|
|
hitPath = game.GetPath("PlayerHit");
|
|
|
|
barelyPath = game.GetPath("PlayerBarely");
|
|
|
|
missPath = game.GetPath("PlayerMiss");
|
|
|
|
weakPath = game.GetPath("PlayerWeak");
|
|
|
|
rightInput = game.ScheduleInput(beat, 1, isBig ? InputType.STANDARD_ALT_DOWN : InputType.STANDARD_DOWN, Just, Miss, Empty);
|
|
|
|
wrongInput = game.ScheduleUserInput(beat, 1, isBig ? InputType.STANDARD_DOWN : InputType.STANDARD_ALT_DOWN, WrongInput, Empty, Empty);
|
|
|
|
currentState = State.Entering;
|
|
|
|
if (gandw != null) gandw.SetActive(hasGandw);
|
|
|
|
Update();
|
|
|
|
}
|
2023-01-19 17:18:55 +00:00
|
|
|
|
|
|
|
private void Update()
|
|
|
|
{
|
|
|
|
var cond = Conductor.instance;
|
|
|
|
|
2023-06-13 22:47:52 +00:00
|
|
|
if (cond.isPlaying && !cond.isPaused)
|
|
|
|
{
|
2023-06-15 18:13:11 +00:00
|
|
|
if (startBeat > double.MinValue)
|
2023-06-13 22:47:52 +00:00
|
|
|
{
|
2023-06-15 18:13:11 +00:00
|
|
|
Vector3 pos = new Vector3();
|
|
|
|
double beat = cond.songPositionInBeats;
|
|
|
|
switch (currentState)
|
|
|
|
{
|
|
|
|
case State.None:
|
|
|
|
break;
|
|
|
|
case State.Entering:
|
|
|
|
pos = GetPathPositionFromBeat(enterPath, Math.Max(beat, startBeat), startBeat);
|
|
|
|
break;
|
|
|
|
case State.Hit:
|
|
|
|
pos = GetPathPositionFromBeat(hitPath, Math.Max(beat, startBeat), startBeat);
|
|
|
|
if (beat >= startBeat + 1)
|
|
|
|
{
|
|
|
|
Destroy(gameObject);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case State.Miss:
|
|
|
|
pos = GetPathPositionFromBeat(missPath, Math.Max(beat, startBeat), startBeat);
|
|
|
|
if (beat >= startBeat + 1)
|
|
|
|
{
|
|
|
|
Destroy(gameObject);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case State.Weak:
|
|
|
|
pos = GetPathPositionFromBeat(weakPath, Math.Max(beat, startBeat), startBeat);
|
|
|
|
if (beat >= startBeat + 1)
|
|
|
|
{
|
|
|
|
Destroy(gameObject);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case State.Barely:
|
|
|
|
pos = GetPathPositionFromBeat(barelyPath, Math.Max(beat, startBeat), startBeat);
|
|
|
|
if (beat >= startBeat + 2)
|
|
|
|
{
|
|
|
|
Destroy(gameObject);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (startBeat <= beat) transform.position = pos;
|
|
|
|
else transform.position = new Vector3(-80, -80);
|
2023-06-13 22:47:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-19 17:18:55 +00:00
|
|
|
|
2023-06-13 22:47:52 +00:00
|
|
|
private void Just(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
wrongInput.Disable();
|
|
|
|
double beat = Conductor.instance.songPositionInBeats;
|
|
|
|
startBeat = beat;
|
|
|
|
game.playerImpact.SetActive(true);
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(game, new List<BeatAction.Action>()
|
2023-01-19 17:18:55 +00:00
|
|
|
{
|
2023-06-13 22:47:52 +00:00
|
|
|
new BeatAction.Action(beat + 0.1f, delegate { game.playerImpact.SetActive(false); }),
|
|
|
|
});
|
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
|
|
|
currentState = State.Barely;
|
|
|
|
SoundByte.PlayOneShot("miss");
|
|
|
|
if (big)
|
|
|
|
{
|
|
|
|
SoundByte.PlayOneShotGame("workingDough/bigPlayer");
|
2023-06-15 18:13:11 +00:00
|
|
|
game.doughDudesPlayer.GetComponent<Animator>().DoScaledAnimationAsync("BigDoughJump", 0.5f);
|
2023-06-13 22:47:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SoundByte.PlayOneShotGame("workingDough/smallPlayer");
|
2023-06-15 18:13:11 +00:00
|
|
|
game.doughDudesPlayer.GetComponent<Animator>().DoScaledAnimationAsync("SmallDoughJump", 0.5f);
|
2023-06-13 22:47:52 +00:00
|
|
|
}
|
|
|
|
Update();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
currentState = State.Hit;
|
|
|
|
if (big)
|
|
|
|
{
|
|
|
|
SoundByte.PlayOneShotGame("workingDough/bigPlayer");
|
|
|
|
SoundByte.PlayOneShotGame("workingDough/hitBigPlayer");
|
2023-06-15 18:13:11 +00:00
|
|
|
game.doughDudesPlayer.GetComponent<Animator>().DoScaledAnimationAsync("BigDoughJump", 0.5f);
|
2023-06-13 22:47:52 +00:00
|
|
|
game.backgroundAnimator.Play("BackgroundFlash", 0, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SoundByte.PlayOneShotGame("workingDough/smallPlayer");
|
|
|
|
SoundByte.PlayOneShotGame("workingDough/hitSmallPlayer");
|
2023-06-15 18:13:11 +00:00
|
|
|
game.doughDudesPlayer.GetComponent<Animator>().DoScaledAnimationAsync("SmallDoughJump", 0.5f);
|
2023-06-13 22:47:52 +00:00
|
|
|
}
|
|
|
|
bool hasGandw = false;
|
|
|
|
if (gandw != null) hasGandw = gandw.activeSelf;
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(game, new List<BeatAction.Action>()
|
2023-06-13 22:47:52 +00:00
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 0.9f, delegate { game.arrowSRRightPlayer.sprite = game.redArrowSprite; }),
|
|
|
|
new BeatAction.Action(beat + 1f, delegate { game.arrowSRRightPlayer.sprite = game.whiteArrowSprite; }),
|
|
|
|
new BeatAction.Action(beat + 2f, delegate { game.SpawnBGBall(beat + 2f, big, hasGandw); }),
|
|
|
|
});
|
|
|
|
Update();
|
|
|
|
}
|
2023-01-19 17:18:55 +00:00
|
|
|
|
2023-06-13 22:47:52 +00:00
|
|
|
private void WrongInput(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
double beat = Conductor.instance.songPositionInBeats;
|
|
|
|
rightInput.Disable();
|
|
|
|
game.playerImpact.SetActive(true);
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(game, new List<BeatAction.Action>()
|
2023-06-13 22:47:52 +00:00
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 0.1f, delegate { game.playerImpact.SetActive(false); }),
|
|
|
|
});
|
|
|
|
if (big)
|
|
|
|
{
|
|
|
|
currentState = State.Weak;
|
|
|
|
startBeat = beat;
|
2023-06-15 18:13:11 +00:00
|
|
|
game.doughDudesPlayer.GetComponent<Animator>().DoScaledAnimationAsync("SmallDoughJump", 0.5f);
|
2023-06-13 22:47:52 +00:00
|
|
|
SoundByte.PlayOneShotGame("workingDough/smallPlayer");
|
|
|
|
SoundByte.PlayOneShotGame("workingDough/tooBig");
|
|
|
|
Update();
|
2023-01-19 17:18:55 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-06-13 22:47:52 +00:00
|
|
|
GameObject.Instantiate(game.breakParticleEffect, game.breakParticleHolder);
|
2023-06-15 18:13:11 +00:00
|
|
|
game.doughDudesPlayer.GetComponent<Animator>().DoScaledAnimationAsync("BigDoughJump", 0.5f);
|
2023-06-13 22:47:52 +00:00
|
|
|
SoundByte.PlayOneShotGame("workingDough/bigPlayer");
|
|
|
|
SoundByte.PlayOneShotGame("workingDough/tooSmall");
|
|
|
|
Destroy(gameObject);
|
2023-01-19 17:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-13 22:47:52 +00:00
|
|
|
|
|
|
|
private void Miss(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
double beat = caller.timer + caller.startBeat;
|
|
|
|
currentState = State.Miss;
|
|
|
|
startBeat = beat;
|
|
|
|
Update();
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(game, new List<BeatAction.Action>()
|
2023-06-13 22:47:52 +00:00
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 0.25f, delegate { game.missImpact.SetActive(true); }),
|
|
|
|
new BeatAction.Action(beat + 0.25f, delegate { SoundByte.PlayOneShotGame("workingDough/BallMiss"); }),
|
|
|
|
new BeatAction.Action(beat + 0.35f, delegate { game.missImpact.SetActive(false); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void Empty(PlayerActionEvent caller) { }
|
2023-01-19 17:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|