HeavenStudio/Assets/Scripts/Games/ClappyTrio/ClappyTrioPlayer.cs

121 lines
3.6 KiB
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
namespace RhythmHeavenMania.Games.ClappyTrio
{
public class ClappyTrioPlayer : PlayerActionObject
{
private float lastClapBeat;
2021-12-25 02:37:03 +00:00
private float lastClapLength;
[SerializeField] private bool clapVacant;
private int lastIndex;
private bool hit;
2021-12-24 03:36:16 +00:00
public bool clapStarted = false;
public bool canHit;
private GameObject clapEffect;
int aceTimes = 0;
2021-12-24 03:36:16 +00:00
private void Start()
{
clapEffect = transform.GetChild(4).GetChild(3).gameObject;
}
public override void OnAce()
{
Clap(true);
}
private void Update()
{
if (PlayerInput.Pressed())
{
Clap(false);
}
2021-12-25 02:37:03 +00:00
if (clapVacant == true)
{
2021-12-25 02:37:03 +00:00
float normalizedBeat = (Conductor.instance.GetLoopPositionFromBeat(lastClapBeat, lastClapLength));
/*if (normalizedBeat > Minigame.EarlyTime() && normalizedBeat < Minigame.PerfectTime() && lastIndex == 0)
{
SetEligibility(true, false, false);
lastIndex++;
}
2021-12-25 02:37:03 +00:00
else if (normalizedBeat > Minigame.PerfectTime() && normalizedBeat < Minigame.LateTime() && lastIndex == 1)
{
SetEligibility(false, true, false);
// Clap();
lastIndex++;
}
2021-12-25 02:37:03 +00:00
else if (normalizedBeat > Minigame.LateTime() && lastIndex == 2)
{
SetEligibility(false, false, true);
clapVacant = false;
lastIndex = 0;
2021-12-25 02:37:03 +00:00
lastClapLength = 0;
lastClapBeat = 0;
hit = false;
}*/
StateCheck(normalizedBeat);
if (normalizedBeat > Minigame.LateTime())
{
clapVacant = false;
lastIndex = 0;
lastClapLength = 0;
lastClapBeat = 0;
}
}
}
/*public void ClearLog()
2021-12-25 02:37:03 +00:00
{
var assembly = System.Reflection.Assembly.GetAssembly(typeof(UnityEditor.Editor));
var type = assembly.GetType("UnityEditor.LogEntries");
var method = type.GetMethod("Clear");
method.Invoke(new object(), null);
}*/
2021-12-25 02:37:03 +00:00
public void SetClapAvailability(float startBeat, float length)
{
ResetAce();
lastClapBeat = startBeat;
clapVacant = true;
2021-12-25 02:37:03 +00:00
lastClapLength = length;
}
private void Clap(bool overrideCanHit)
{
bool canHit = state.early != true && state.late != true && state.perfect == true && hit == false;
if (canHit || overrideCanHit)
{
2021-12-24 03:36:16 +00:00
clapEffect.SetActive(true);
Jukebox.PlayOneShotGame("clappyTrio/rightClap");
2021-12-24 03:36:16 +00:00
if (this.canHit)
ClappyTrio.instance.playerHitLast = true;
}
else
{
2021-12-24 03:36:16 +00:00
clapEffect.SetActive(false);
Jukebox.PlayOneShot("miss");
ClappyTrio.instance.playerHitLast = false;
2021-12-24 03:36:16 +00:00
if (clapStarted)
this.canHit = false;
}
ClappyTrio.instance.SetFace(ClappyTrio.instance.Lion.Count - 1, 4);
this.GetComponent<Animator>().Play("Clap", 0, 0);
}
}
}