HeavenStudioPlus/Assets/Scripts/Games/SpaceSoccer/Ball.cs

284 lines
14 KiB
C#
Raw Normal View History

using System;
2022-01-24 02:15:23 +00:00
using UnityEngine;
2022-03-14 14:21:05 +00:00
using HeavenStudio.Util;
2022-01-24 02:15:23 +00:00
2022-03-14 14:21:05 +00:00
namespace HeavenStudio.Games.Scripts_SpaceSoccer
2022-01-24 02:15:23 +00:00
{
public class Ball : SuperCurveObject
2022-01-24 02:15:23 +00:00
{
public enum State { None, Dispensing, Kicked, HighKicked, Toe };
2022-01-24 02:15:23 +00:00
[Header("Components")]
[HideInInspector] public Kicker kicker;
2022-01-24 02:15:23 +00:00
[SerializeField] private GameObject holder;
[SerializeField] private GameObject spriteHolder;
[Space(10)]
//[SerializeField] private BezierCurve3D dispenseCurve;
//[SerializeField] private BezierCurve3D kickCurve;
//[SerializeField] private BezierCurve3D highKickCurve;
//[SerializeField] private BezierCurve3D toeCurve;
2022-01-24 02:15:23 +00:00
[Header("Properties")]
public double startBeat;
public State state;
public double nextAnimBeat;
public float highKickSwing = 0f;
2022-01-24 02:15:23 +00:00
private float lastSpriteRot;
public bool canKick;
public bool waitKickRelease;
private bool lastKickLeft;
private SuperCurveObject.Path kickPath;
private SuperCurveObject.Path dispensePath;
private SuperCurveObject.Path highKickPath;
private SuperCurveObject.Path toePath;
//private float currentKickPathScale = 1;
2022-01-24 02:15:23 +00:00
protected override void UpdateLastRealPos()
{
lastRealPos = transform.localPosition;
}
public void Init(Kicker kicker, double dispensedBeat)
2022-01-24 02:15:23 +00:00
{
Conductor conductor = Conductor.instance;
this.kicker = kicker;
kicker.ball = this;
kicker.dispenserBeat = dispensedBeat;
double currentBeat = conductor.unswungSongPositionInBeatsAsDouble;
kickPath = SpaceSoccer.instance.GetPath("Kick");
dispensePath = SpaceSoccer.instance.GetPath("Dispense");
highKickPath = SpaceSoccer.instance.GetPath("HighKick");
toePath = SpaceSoccer.instance.GetPath("Toe");
//holder.transform.localPosition = kicker.transform.GetChild(0).position;
if (currentBeat - dispensedBeat < 2f) //check if ball is currently being dispensed (should only be false if starting in the middle of the remix)
{
2022-02-26 23:38:27 +00:00
//Debug.Log("Dispensing");
state = State.Dispensing;
startBeat = conductor.GetUnSwungBeat(dispensedBeat);
nextAnimBeat = startBeat + GetAnimLength(State.Dispensing);
kicker.kickTimes = 0;
return;
}
var highKicks = GameManager.instance.Beatmap.Entities.FindAll(c => c.datamodel == "spaceSoccer/high kick-toe!");
int numHighKicks = 0;
//determine what state the ball was in for the previous kick.
for(int i = 0; i < highKicks.Count; i++)
{
if (highKicks[i].beat + highKicks[i].length <= currentBeat)
{
numHighKicks++;
continue;
}
if (highKicks[i].beat > currentBeat)
{
2022-02-26 23:38:27 +00:00
//Debug.Log("Setting state to kicked");
state = State.Kicked;
double relativeBeat = currentBeat - dispensedBeat;
startBeat = conductor.GetUnSwungBeat(dispensedBeat) + (int)(relativeBeat - 0.1); //this makes the startBeat be for the kick that is currently in progress, but it won't play the kicker's animation for that kick. the -0.1 makes it so that if playback is started right when the kicker kicks, it still plays the kicker's animation.
nextAnimBeat = startBeat + GetAnimLength(State.Kicked);
kicker.kickTimes = (int)(relativeBeat - 0.1) - numHighKicks - 1; //every high kick has 2 kicks in the same time a regular keep-up does 3 kicks.
break;
}
else
{
if (highKicks[i].beat + GetAnimLength(State.HighKicked) > currentBeat)
{
highKickSwing = conductor.GetSwingRatioAtBeat(highKicks[i].beat, out _);
2022-02-26 23:38:27 +00:00
//Debug.Log("Setting state to high kick");
state = State.HighKicked;
double relativeBeat = highKicks[i].beat - dispensedBeat;
startBeat = conductor.GetUnSwungBeat(dispensedBeat) + Math.Ceiling(relativeBeat); //there is a chance this makes startBeat later than the current beat, but it shouldn't matter too much. It would only happen if the user places the high kicks incorrectly.
nextAnimBeat = startBeat + GetAnimLength(State.HighKicked);
kicker.kickTimes = (int)Math.Ceiling(relativeBeat) - numHighKicks - 1;
break;
}
else
{
highKickSwing = conductor.GetSwingRatioAtBeat(highKicks[i].beat + GetAnimLength(State.HighKicked), out _);
2022-02-26 23:38:27 +00:00
//Debug.Log("Setting state to toe");
state = State.Toe;
double relativeBeat = Math.Ceiling(highKicks[i].beat - dispensedBeat) + GetAnimLength(State.HighKicked); //there is a chance this makes startBeat later than the current beat, but it shouldn't matter too much. It would only happen if the user places the high kicks incorrectly.
startBeat = conductor.GetUnSwungBeat(dispensedBeat) + relativeBeat;
nextAnimBeat = startBeat + GetAnimLength(State.Toe);
kicker.kickTimes = (int)(relativeBeat - GetAnimLength(State.HighKicked)) - numHighKicks;
break;
}
}
}
if(state == 0) //if the for loop didn't set the state, i.e. all the high kicks happen before the point we start at.
{
2022-02-26 23:38:27 +00:00
//Debug.Log("Defaulting to kicked state");
state = State.Kicked;
double relativeBeat = currentBeat - dispensedBeat;
startBeat = conductor.GetUnSwungBeat(dispensedBeat) + (int)(relativeBeat - 0.1); //this makes the startBeat be for the kick that is currently in progress, but it won't play the kicker's animation for that kick. the -0.1 makes it so that if playback is started right when the kicker kicks, it still plays the kicker's animation.
nextAnimBeat = startBeat + GetAnimLength(State.Kicked);
kicker.kickTimes = (int)(relativeBeat - 0.1) - numHighKicks - 1;
}
2022-02-26 23:38:27 +00:00
Update(); //make sure the ball is in the right place
}
public void Kick(bool player)
{
if (player)
SoundByte.PlayOneShotGame("spaceSoccer/ballHit", -1, SoundByte.GetPitchFromCents(UnityEngine.Random.Range(-38, 39), false));
lastSpriteRot = spriteHolder.transform.eulerAngles.z;
2022-01-24 02:15:23 +00:00
SetState(State.Kicked);
2022-01-24 02:15:23 +00:00
lastKickLeft = kicker.kickLeft;
/*if (kicker.kickLeft)
2022-01-24 02:15:23 +00:00
{
kickCurve.transform.localScale = new Vector3(-1, 1);
currentKickPathScale = -1;
2022-01-24 02:15:23 +00:00
}
else
{
kickCurve.transform.localScale = new Vector3(1, 1);
currentKickPathScale = 1;
}*/
//kickCurve.KeyPoints[0].transform.position = holder.transform.position;
//kickPath.positions[0].pos = holder.transform.position;
UpdateLastRealPos();
2022-01-24 02:15:23 +00:00
}
public void HighKick()
{
2022-01-24 10:13:46 +00:00
lastSpriteRot = spriteHolder.transform.eulerAngles.z;
SetState(State.HighKicked);
2022-01-24 02:15:23 +00:00
//highKickCurve.KeyPoints[0].transform.position = holder.transform.position;
//highKickPath.positions[0].pos = holder.transform.position;
UpdateLastRealPos();
2022-01-24 02:15:23 +00:00
}
public void Toe()
{
2022-01-24 10:13:46 +00:00
lastSpriteRot = spriteHolder.transform.eulerAngles.z;
SetState(State.Toe);
//toeCurve.KeyPoints[0].transform.position = holder.transform.position;
//toePath.positions[0].pos = holder.transform.position;
UpdateLastRealPos();
if (lastKickLeft)
{
//toeCurve.KeyPoints[1].transform.localPosition = new Vector3(5.39f, 0);
toePath.positions[1].pos = new Vector3(5.39f, 0);
}
else
{
//toeCurve.KeyPoints[1].transform.localPosition = new Vector3(6.49f, 0);
toePath.positions[1].pos = new Vector3(6.49f, 0);
}
2022-01-24 02:15:23 +00:00
}
private void Update()
{
double beat = Conductor.instance.unswungSongPositionInBeatsAsDouble;
2022-02-26 23:38:27 +00:00
switch (state) //handle animations
2022-01-24 02:15:23 +00:00
{
case State.None: //the only time any ball should ever have this state is if it's the unused offscreen ball (which is the only reason this state exists)
{
gameObject.SetActive(false);
break;
}
case State.Dispensing:
2022-01-24 02:15:23 +00:00
{
float normalizedBeatAnim = Conductor.instance.GetPositionFromBeat(startBeat, 2.35f);
//dispenseCurve.KeyPoints[0].transform.position = new Vector3(kicker.transform.GetChild(0).position.x - 6f, kicker.transform.GetChild(0).position.y - 6f);
//dispenseCurve.KeyPoints[1].transform.position = new Vector3(kicker.transform.GetChild(0).position.x - 1f, kicker.transform.GetChild(0).position.y - 6f);
//holder.transform.localPosition = dispenseCurve.GetPoint(normalizedBeatAnim);
holder.transform.localPosition = GetPathPositionFromBeat(dispensePath, Math.Max(beat, startBeat), out double height, startBeat);
spriteHolder.transform.eulerAngles = new Vector3(0, 0, Mathf.Lerp(0f, -1440f, normalizedBeatAnim));
break;
}
case State.Kicked:
2022-01-24 02:15:23 +00:00
{
float normalizedBeatAnim = Conductor.instance.GetPositionFromBeat(startBeat, 1.5f);
if (!lastKickLeft)
2022-01-24 10:13:46 +00:00
{
//kickCurve.KeyPoints[1].transform.position = new Vector3(kicker.transform.GetChild(0).position.x + 0.5f, kicker.transform.GetChild(0).position.y - 6f);
kickPath.positions[1].pos = new Vector3(0, -6f);
spriteHolder.transform.eulerAngles = new Vector3(0, 0, Mathf.Lerp(lastSpriteRot, lastSpriteRot - 360f, normalizedBeatAnim));
2022-01-24 10:13:46 +00:00
}
else
2022-01-24 10:13:46 +00:00
{
//kickCurve.KeyPoints[1].transform.position = new Vector3(kicker.transform.GetChild(0).position.x - 2.5f, kicker.transform.GetChild(0).position.y - 6f);
kickPath.positions[1].pos = new Vector3(-2.5f, -6f);
spriteHolder.transform.eulerAngles = new Vector3(0, 0, Mathf.Lerp(lastSpriteRot, lastSpriteRot + 360f, normalizedBeatAnim));
2022-01-24 10:13:46 +00:00
}
//holder.transform.localPosition = kickCurve.GetPoint(normalizedBeatAnim);
holder.transform.localPosition = GetPathPositionFromBeat(kickPath, Math.Max(beat, startBeat), out double height, startBeat);
break;
2022-01-24 02:15:23 +00:00
}
case State.HighKicked:
{
float normalizedBeatAnim = Conductor.instance.GetPositionFromBeat(startBeat, GetAnimLength(State.HighKicked) + 0.3f);
highKickPath.positions[0].duration = GetAnimLength(State.HighKicked) + 0.3f;
//highKickCurve.KeyPoints[1].transform.position = new Vector3(kicker.transform.GetChild(0).position.x - 3.5f, kicker.transform.GetChild(0).position.y - 6f);
//holder.transform.localPosition = highKickCurve.GetPoint(normalizedBeatAnim);
holder.transform.localPosition = GetPathPositionFromBeat(highKickPath, Math.Max(beat, startBeat), out double height, startBeat);
spriteHolder.transform.eulerAngles = new Vector3(0, 0, Mathf.Lerp(lastSpriteRot, lastSpriteRot + 360f, normalizedBeatAnim));
break;
2022-01-24 02:15:23 +00:00
}
case State.Toe:
{
2023-05-18 20:12:06 +00:00
//float normalizedBeatAnim = Conductor.instance.GetPositionFromBeat(startBeat, GetAnimLength(State.Toe) + 0.35f);
toePath.positions[0].duration = GetAnimLength(State.Toe) + 0.35f;
if (!lastKickLeft)
{
//toeCurve.KeyPoints[1].transform.position = new Vector3(kicker.transform.GetChild(0).position.x + 0.5f, kicker.transform.GetChild(0).position.y - 6f);
toePath.positions[1].pos = new Vector3(-1.5f, -6f);
}
else
{
//toeCurve.KeyPoints[1].transform.position = new Vector3(kicker.transform.GetChild(0).position.x - 1.0f, kicker.transform.GetChild(0).position.y - 6f);
toePath.positions[1].pos = new Vector3(-0.5f, -6f);
}
//holder.transform.localPosition = toeCurve.GetPoint(normalizedBeatAnim);
holder.transform.localPosition = GetPathPositionFromBeat(toePath, Math.Max(beat, startBeat), out double height, startBeat);
break;
}
2022-01-24 02:15:23 +00:00
}
holder.transform.position = new Vector3(holder.transform.position.x, holder.transform.position.y, kicker.transform.GetChild(0).position.z);
}
private void SetState(State newState)
{
state = newState;
startBeat = nextAnimBeat;
nextAnimBeat += GetAnimLength(newState);
}
public float GetAnimLength(State anim)
{
switch(anim)
{
case State.Dispensing:
return 2f;
case State.Kicked:
return 1f;
case State.HighKicked:
return 1f + highKickSwing;
case State.Toe:
return 2f - (1f - highKickSwing);
default:
Debug.LogError("Ball has invalid state. State number: " + (int)anim);
return 0f;
}
}
2022-01-24 02:15:23 +00:00
}
}