2022-02-28 08:33:11 +00:00
|
|
|
using DG.Tweening;
|
2022-03-08 04:46:49 +00:00
|
|
|
using NaughtyBezierCurves;
|
2022-02-27 23:26:03 +00:00
|
|
|
using RhythmHeavenMania.Util;
|
2022-03-08 04:46:49 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
2022-02-27 23:26:03 +00:00
|
|
|
|
2022-03-12 04:10:13 +00:00
|
|
|
namespace RhythmHeavenMania.Games
|
2022-02-27 23:26:03 +00:00
|
|
|
{
|
2022-03-12 04:10:13 +00:00
|
|
|
using Scripts_CropStomp;
|
|
|
|
|
2022-02-27 23:26:03 +00:00
|
|
|
public class CropStomp : Minigame
|
|
|
|
{
|
2022-02-28 05:11:18 +00:00
|
|
|
const float stepDistance = 2.115f;
|
2022-03-03 10:43:01 +00:00
|
|
|
public static float[] moleSoundOffsets = new float[]{ 0.134f, 0.05f, 0.061f };
|
2022-02-28 05:11:18 +00:00
|
|
|
|
|
|
|
float scrollRate => stepDistance / (Conductor.instance.secPerBeat * 2f / Conductor.instance.musicSource.pitch);
|
|
|
|
float grassWidth;
|
2022-03-03 11:18:16 +00:00
|
|
|
float dotsWidth = 19.2f;
|
2022-02-28 05:11:18 +00:00
|
|
|
|
|
|
|
private float newBeat = -1f; // So that marching can happen on beat 0.
|
|
|
|
private float marchStartBeat = -1f;
|
|
|
|
private float marchOffset;
|
|
|
|
private int currentMarchBeat;
|
|
|
|
private int stepCount;
|
2022-02-28 08:33:11 +00:00
|
|
|
private bool isStepping;
|
2022-03-13 10:25:41 +00:00
|
|
|
|
2022-03-08 04:46:49 +00:00
|
|
|
private static float inactiveStart = -1f;
|
2022-02-28 05:11:18 +00:00
|
|
|
|
2022-03-03 10:43:01 +00:00
|
|
|
public bool isMarching => marchStartBeat != -1f;
|
2022-02-28 05:11:18 +00:00
|
|
|
|
2022-03-01 06:38:38 +00:00
|
|
|
[NonSerialized] public bool isFlicking;
|
|
|
|
|
|
|
|
public GameObject baseVeggie;
|
2022-03-03 02:50:08 +00:00
|
|
|
public GameObject baseMole;
|
2022-02-28 05:11:18 +00:00
|
|
|
public Animator legsAnim;
|
2022-03-01 06:38:38 +00:00
|
|
|
public Animator bodyAnim;
|
2022-02-28 05:11:18 +00:00
|
|
|
public Transform farmerTrans;
|
|
|
|
public SpriteRenderer grass;
|
|
|
|
public Transform grassTrans;
|
2022-03-03 11:18:16 +00:00
|
|
|
public Transform dotsTrans;
|
2022-02-28 05:11:18 +00:00
|
|
|
public Transform scrollingHolder;
|
2022-03-01 06:38:38 +00:00
|
|
|
public Transform veggieHolder;
|
2022-02-28 08:33:11 +00:00
|
|
|
public Farmer farmer;
|
2022-03-01 20:57:37 +00:00
|
|
|
public BezierCurve3D pickCurve;
|
2022-03-03 02:50:08 +00:00
|
|
|
public BezierCurve3D moleCurve;
|
2022-02-28 08:33:11 +00:00
|
|
|
|
|
|
|
private Tween shakeTween;
|
2022-02-28 05:11:18 +00:00
|
|
|
|
|
|
|
public static CropStomp instance;
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
{
|
|
|
|
instance = this;
|
|
|
|
}
|
|
|
|
|
2022-03-03 10:43:01 +00:00
|
|
|
private void Start()
|
2022-02-28 05:11:18 +00:00
|
|
|
{
|
|
|
|
// Finding grass sprite width for grass scrolling.
|
|
|
|
var grassSprite = grass.sprite;
|
|
|
|
var borderLeft = grassSprite.rect.xMin + grassSprite.border.x;
|
|
|
|
var borderRight = grassSprite.rect.xMax - grassSprite.border.z;
|
|
|
|
var borderWidthPixels = borderRight - borderLeft;
|
|
|
|
grassWidth = borderWidthPixels / grassSprite.pixelsPerUnit;
|
2022-03-01 06:38:38 +00:00
|
|
|
|
|
|
|
// Initialize vegetables.
|
|
|
|
var cond = Conductor.instance;
|
|
|
|
var entities = GameManager.instance.Beatmap.entities;
|
|
|
|
|
|
|
|
float startBeat = cond.songPositionInBeats;
|
|
|
|
|
2022-03-13 10:25:41 +00:00
|
|
|
if (inactiveStart == -1f)
|
2022-03-01 06:38:38 +00:00
|
|
|
{
|
2022-03-13 10:25:41 +00:00
|
|
|
// Find the beat of the closest "start marching" event.
|
|
|
|
var marchStarts = entities.FindAll(m => m.datamodel == "cropStomp/start marching");
|
|
|
|
for (int i = 0; i < marchStarts.Count; i++)
|
2022-03-01 06:38:38 +00:00
|
|
|
{
|
2022-03-13 10:25:41 +00:00
|
|
|
var sampleBeat = marchStarts[i].beat;
|
|
|
|
if (cond.songPositionInBeats <= sampleBeat + 0.25f) // 0.25-beat buffer in case the start marching event is directly next to the game switch event.
|
|
|
|
{
|
|
|
|
startBeat = sampleBeat;
|
|
|
|
break;
|
|
|
|
}
|
2022-03-01 06:38:38 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-13 10:25:41 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Find the beat of the next step, assuming marching started at inactiveStart.
|
|
|
|
int stepsPassed = 0;
|
|
|
|
|
|
|
|
while (inactiveStart + (stepsPassed * 2f) < cond.songPositionInBeats)
|
|
|
|
{
|
|
|
|
stepsPassed++;
|
|
|
|
|
|
|
|
if (stepsPassed > 1000)
|
|
|
|
{
|
|
|
|
Debug.Log("Loop broke!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
startBeat = inactiveStart + (stepsPassed * 2f);
|
|
|
|
|
|
|
|
// Cue the marching proper to begin when applicable.
|
|
|
|
BeatAction.New(gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(startBeat, delegate { StartMarching(startBeat); })
|
|
|
|
});
|
|
|
|
|
|
|
|
inactiveStart = -1f;
|
|
|
|
}
|
2022-03-01 06:38:38 +00:00
|
|
|
|
2022-03-03 02:50:08 +00:00
|
|
|
// Veggie and mole events.
|
2022-03-01 06:38:38 +00:00
|
|
|
var vegEvents = entities.FindAll(v => v.datamodel == "cropStomp/veggies");
|
2022-03-03 02:50:08 +00:00
|
|
|
var moleEvents = entities.FindAll(m => m.datamodel == "cropStomp/mole");
|
2022-03-01 06:38:38 +00:00
|
|
|
|
2022-03-03 02:50:08 +00:00
|
|
|
// Spawn veggies.
|
2022-03-01 06:38:38 +00:00
|
|
|
for (int i = 0; i < vegEvents.Count; i++)
|
|
|
|
{
|
|
|
|
var vegBeat = vegEvents[i].beat;
|
|
|
|
var vegLength = vegEvents[i].length;
|
|
|
|
|
|
|
|
// Only consider veggie events that aren't past the start point.
|
2022-03-13 10:25:41 +00:00
|
|
|
if (startBeat <= vegBeat + vegLength)
|
2022-03-01 06:38:38 +00:00
|
|
|
{
|
|
|
|
int veggiesInEvent = Mathf.CeilToInt(vegLength + 1) / 2;
|
|
|
|
|
|
|
|
for (int b = 0; b < veggiesInEvent; b++)
|
|
|
|
{
|
|
|
|
var targetVeggieBeat = vegBeat + 2f * b;
|
2022-03-13 10:25:41 +00:00
|
|
|
if (startBeat <= targetVeggieBeat)
|
2022-03-01 06:38:38 +00:00
|
|
|
{
|
2022-03-03 02:50:08 +00:00
|
|
|
SpawnVeggie(targetVeggieBeat, startBeat, false);
|
2022-03-01 06:38:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-03 02:50:08 +00:00
|
|
|
|
|
|
|
// Spawn moles.
|
|
|
|
for (int i = 0; i < moleEvents.Count; i++)
|
|
|
|
{
|
|
|
|
var moleBeat = moleEvents[i].beat;
|
|
|
|
|
2022-03-13 10:25:41 +00:00
|
|
|
if (startBeat <= moleBeat)
|
2022-03-03 02:50:08 +00:00
|
|
|
{
|
|
|
|
SpawnVeggie(moleBeat, startBeat, true);
|
|
|
|
}
|
|
|
|
}
|
2022-02-28 05:11:18 +00:00
|
|
|
}
|
|
|
|
|
2022-03-03 10:43:01 +00:00
|
|
|
List<Beatmap.Entity> cuedMoleSounds = new List<Beatmap.Entity>();
|
2022-02-28 05:11:18 +00:00
|
|
|
private void Update()
|
2022-02-27 23:26:03 +00:00
|
|
|
{
|
2022-03-03 10:43:01 +00:00
|
|
|
var cond = Conductor.instance;
|
|
|
|
|
|
|
|
if (!cond.isPlaying)
|
2022-02-28 05:11:18 +00:00
|
|
|
return;
|
|
|
|
|
2022-03-03 10:43:01 +00:00
|
|
|
// Mole sounds.
|
|
|
|
var moleEvents = GameManager.instance.Beatmap.entities.FindAll(m => m.datamodel == "cropStomp/mole");
|
|
|
|
for (int i = 0; i < moleEvents.Count; i++)
|
|
|
|
{
|
|
|
|
var moleEvent = moleEvents[i];
|
|
|
|
var timeToEvent = moleEvent.beat - cond.songPositionInBeats;
|
2022-03-13 10:25:41 +00:00
|
|
|
if (timeToEvent <= 4f && timeToEvent > 2f && !cuedMoleSounds.Contains(moleEvent))
|
2022-03-03 10:43:01 +00:00
|
|
|
{
|
|
|
|
cuedMoleSounds.Add(moleEvent);
|
|
|
|
MultiSound.Play(new MultiSound.Sound[] { new MultiSound.Sound("cropStomp/moleNyeh", (moleEvent.beat - 2f) - moleSoundOffsets[0] * Conductor.instance.songBpm / 60f),
|
|
|
|
new MultiSound.Sound("cropStomp/moleHeh1", (moleEvent.beat - 1.5f) - moleSoundOffsets[1] * Conductor.instance.songBpm / 60f),
|
|
|
|
new MultiSound.Sound("cropStomp/moleHeh2", (moleEvent.beat - 1f) - moleSoundOffsets[2] * Conductor.instance.songBpm / 60f) });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isMarching)
|
|
|
|
return;
|
2022-03-11 10:52:11 +00:00
|
|
|
// Debug.Log(newBeat);
|
2022-02-28 05:11:18 +00:00
|
|
|
|
|
|
|
if (cond.ReportBeat(ref newBeat, marchOffset, true))
|
|
|
|
{
|
|
|
|
currentMarchBeat += 1;
|
|
|
|
|
2022-03-08 04:46:49 +00:00
|
|
|
PlayAnims();
|
|
|
|
if (currentMarchBeat % 2 != 0) //step sound
|
2022-02-28 05:11:18 +00:00
|
|
|
{
|
2022-02-28 08:33:11 +00:00
|
|
|
Jukebox.PlayOneShotGame("cropStomp/hmm");
|
2022-02-28 05:11:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Object scroll.
|
|
|
|
var scrollPos = scrollingHolder.localPosition;
|
|
|
|
var newScrollX = scrollPos.x + (scrollRate * Time.deltaTime);
|
|
|
|
scrollingHolder.localPosition = new Vector3(newScrollX, scrollPos.y, scrollPos.z);
|
|
|
|
|
|
|
|
// Grass scroll.
|
|
|
|
var grassPos = grassTrans.localPosition;
|
|
|
|
|
|
|
|
var newGrassX = grassPos.x + (scrollRate * Time.deltaTime);
|
|
|
|
newGrassX = (newGrassX % (grassWidth * 4.5f));
|
|
|
|
|
|
|
|
grassTrans.localPosition = new Vector3(newGrassX, grassPos.y, grassPos.z);
|
2022-03-03 11:18:16 +00:00
|
|
|
|
|
|
|
// Dots scroll
|
|
|
|
var dotsPos = dotsTrans.localPosition;
|
|
|
|
|
|
|
|
var newDotsX = dotsPos.x + (scrollRate * Time.deltaTime);
|
|
|
|
newDotsX = (newDotsX % dotsWidth);
|
|
|
|
|
|
|
|
dotsTrans.localPosition = new Vector3(newDotsX, dotsPos.y, dotsPos.z);
|
2022-02-27 23:26:03 +00:00
|
|
|
}
|
|
|
|
|
2022-03-01 06:38:38 +00:00
|
|
|
private void LateUpdate()
|
|
|
|
{
|
|
|
|
if (!isMarching)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (PlayerInput.PressedUp())
|
|
|
|
{
|
|
|
|
// Don't play raise animation if successfully flicked.
|
|
|
|
if (!isFlicking)
|
|
|
|
bodyAnim.Play("Raise");
|
|
|
|
}
|
|
|
|
|
|
|
|
isFlicking = false;
|
|
|
|
}
|
|
|
|
|
2022-03-08 04:46:49 +00:00
|
|
|
private void PlayAnims()
|
|
|
|
{
|
|
|
|
// Step.
|
|
|
|
if (currentMarchBeat % 2 != 0)
|
|
|
|
{
|
|
|
|
// Don't step if already stomped.
|
|
|
|
if (!isStepping)
|
|
|
|
{
|
|
|
|
stepCount += 1;
|
|
|
|
var stepAnim = (stepCount % 2 != 0 ? "StepFront" : "StepBack");
|
|
|
|
|
|
|
|
legsAnim.Play(stepAnim, 0, 0);
|
|
|
|
|
|
|
|
isStepping = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
// Lift.
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var liftAnim = (stepCount % 2 != 0 ? "LiftBack" : "LiftFront");
|
|
|
|
legsAnim.Play(liftAnim, 0, 0);
|
|
|
|
|
|
|
|
var farmerPos = farmerTrans.localPosition;
|
|
|
|
farmerTrans.localPosition = new Vector3(farmerPos.x - stepDistance, farmerPos.y, farmerPos.z);
|
|
|
|
|
|
|
|
isStepping = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-28 05:11:18 +00:00
|
|
|
public void StartMarching(float beat)
|
2022-02-27 23:26:03 +00:00
|
|
|
{
|
2022-02-28 05:11:18 +00:00
|
|
|
marchStartBeat = beat;
|
|
|
|
marchOffset = (marchStartBeat % 1) * Conductor.instance.secPerBeat / Conductor.instance.musicSource.pitch;
|
|
|
|
currentMarchBeat = 0;
|
|
|
|
stepCount = 0;
|
2022-02-28 08:33:11 +00:00
|
|
|
|
|
|
|
farmer.nextStompBeat = beat;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Stomp()
|
|
|
|
{
|
|
|
|
// Don't increment step counter if autostep stepped already.
|
|
|
|
if (!isStepping)
|
|
|
|
stepCount += 1;
|
|
|
|
|
|
|
|
var stompAnim = (stepCount % 2 != 0 ? "StompFront" : "StompBack");
|
|
|
|
|
|
|
|
legsAnim.Play(stompAnim, 0, 0);
|
|
|
|
|
|
|
|
Jukebox.PlayOneShotGame("cropStomp/stomp");
|
|
|
|
|
|
|
|
if (shakeTween != null)
|
|
|
|
shakeTween.Kill(true);
|
|
|
|
|
|
|
|
var camTrans = GameCamera.instance.transform;
|
|
|
|
camTrans.localPosition = new Vector3(camTrans.localPosition.x, 0.75f, camTrans.localPosition.z);
|
|
|
|
camTrans.DOLocalMoveY(0f, 0.5f).SetEase(Ease.OutElastic, 1f);
|
|
|
|
|
|
|
|
isStepping = true;
|
2022-02-27 23:26:03 +00:00
|
|
|
}
|
2022-03-01 06:38:38 +00:00
|
|
|
|
2022-03-03 02:50:08 +00:00
|
|
|
private void SpawnVeggie(float beat, float startBeat, bool isMole)
|
2022-03-01 06:38:38 +00:00
|
|
|
{
|
2022-03-03 02:50:08 +00:00
|
|
|
var newVeggie = GameObject.Instantiate(isMole ? baseMole : baseVeggie, veggieHolder).GetComponent<Veggie>();
|
2022-03-01 06:38:38 +00:00
|
|
|
|
|
|
|
newVeggie.targetBeat = beat;
|
|
|
|
|
|
|
|
var veggieX = (beat - startBeat) * -stepDistance / 2f;
|
|
|
|
newVeggie.transform.localPosition = new Vector3(veggieX, 0f, 0f);
|
|
|
|
|
|
|
|
newVeggie.gameObject.SetActive(true);
|
|
|
|
}
|
2022-03-08 04:46:49 +00:00
|
|
|
|
|
|
|
public static void MarchInactive(float beat)
|
|
|
|
{
|
|
|
|
if (GameManager.instance.currentGame == "cropStomp") //this function is only meant for making march sounds while the game is inactive
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
inactiveStart = beat;
|
|
|
|
Beatmap.Entity gameSwitch = GameManager.instance.Beatmap.entities.Find(c => c.beat >= beat && c.datamodel == "gameManager/switchGame/cropStomp");
|
|
|
|
if (gameSwitch == null)
|
|
|
|
return;
|
|
|
|
int length = Mathf.CeilToInt((gameSwitch.beat - beat)/2);
|
|
|
|
MultiSound.Sound[] sounds = new MultiSound.Sound[length];
|
|
|
|
for(int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
sounds[i] = new MultiSound.Sound("cropStomp/hmm", beat + i*2);
|
|
|
|
}
|
|
|
|
MultiSound.Play(sounds, forcePlay:true);
|
|
|
|
}
|
2022-02-27 23:26:03 +00:00
|
|
|
}
|
|
|
|
}
|