2021-12-21 01:10:49 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
using DG.Tweening;
|
|
|
|
|
|
|
|
using RhythmHeavenMania.Util;
|
|
|
|
|
2022-03-12 04:10:13 +00:00
|
|
|
namespace RhythmHeavenMania.Games.Scripts_ForkLifter
|
2021-12-21 01:10:49 +00:00
|
|
|
{
|
|
|
|
public class ForkLifterPlayer : MonoBehaviour
|
|
|
|
{
|
2021-12-23 00:08:35 +00:00
|
|
|
public static ForkLifterPlayer instance { get; set; }
|
|
|
|
|
2021-12-21 01:10:49 +00:00
|
|
|
[Header("Objects")]
|
|
|
|
public GameObject fork;
|
|
|
|
public Sprite peaSprite;
|
|
|
|
public Sprite hitFX;
|
|
|
|
public Sprite hitFXG;
|
|
|
|
public Sprite hitFXMiss;
|
|
|
|
public Sprite hitFX2;
|
|
|
|
public Transform early, perfect, late;
|
|
|
|
|
|
|
|
[SerializeField]
|
|
|
|
private BoxCollider2D col;
|
|
|
|
|
|
|
|
private Animator anim;
|
|
|
|
|
|
|
|
private int currentHitInList = 0;
|
|
|
|
|
2022-01-23 07:01:59 +00:00
|
|
|
public int currentEarlyPeasOnFork;
|
|
|
|
public int currentPerfectPeasOnFork;
|
|
|
|
public int currentLatePeasOnFork;
|
2021-12-21 01:10:49 +00:00
|
|
|
|
|
|
|
private bool isEating = false;
|
|
|
|
|
2022-02-06 04:03:31 +00:00
|
|
|
public int hitOnFrame;
|
|
|
|
|
2021-12-21 01:10:49 +00:00
|
|
|
// Burger shit
|
|
|
|
|
2022-01-23 07:01:59 +00:00
|
|
|
public bool topbun, middleburger, bottombun;
|
2021-12-21 01:10:49 +00:00
|
|
|
|
|
|
|
// -----------
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
{
|
|
|
|
instance = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void Start()
|
|
|
|
{
|
|
|
|
anim = GetComponent<Animator>();
|
|
|
|
}
|
|
|
|
|
2022-02-06 04:03:31 +00:00
|
|
|
private void LateUpdate()
|
2021-12-21 01:10:49 +00:00
|
|
|
{
|
2021-12-24 23:41:35 +00:00
|
|
|
if (PlayerInput.Pressed())
|
2021-12-21 01:10:49 +00:00
|
|
|
{
|
2022-02-06 04:03:31 +00:00
|
|
|
hitOnFrame = 0;
|
2022-01-23 07:01:59 +00:00
|
|
|
Stab(null);
|
2021-12-21 01:10:49 +00:00
|
|
|
}
|
|
|
|
|
2022-02-23 03:28:27 +00:00
|
|
|
// print(hitOnFrame);
|
2022-02-06 04:03:31 +00:00
|
|
|
|
2022-01-17 05:00:26 +00:00
|
|
|
if (ForkLifter.instance.EligibleHits.Count == 0)
|
2021-12-21 01:10:49 +00:00
|
|
|
{
|
|
|
|
currentHitInList = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Eat()
|
|
|
|
{
|
|
|
|
if (currentEarlyPeasOnFork != 0 || currentPerfectPeasOnFork != 0 || currentLatePeasOnFork != 0)
|
|
|
|
{
|
|
|
|
anim.Play("Player_Eat", 0, 0);
|
|
|
|
isEating = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void EatConfirm()
|
|
|
|
{
|
|
|
|
if (topbun && middleburger && bottombun)
|
|
|
|
{
|
2021-12-23 22:39:03 +00:00
|
|
|
Jukebox.PlayOneShotGame("forkLifter/burger");
|
2021-12-21 01:10:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (currentEarlyPeasOnFork > 0 || currentLatePeasOnFork > 0)
|
|
|
|
{
|
2021-12-23 22:39:03 +00:00
|
|
|
Jukebox.PlayOneShotGame($"forkLifter/cough_{Random.Range(1, 3)}");
|
2021-12-21 01:10:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-23 22:39:03 +00:00
|
|
|
Jukebox.PlayOneShotGame("forkLifter/gulp");
|
2021-12-21 01:10:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-24 03:36:16 +00:00
|
|
|
RemoveObjFromFork();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void RemoveObjFromFork()
|
|
|
|
{
|
2021-12-21 01:10:49 +00:00
|
|
|
for (int i = 0; i < early.transform.childCount; i++)
|
|
|
|
{
|
|
|
|
Destroy(early.transform.GetChild(i).gameObject);
|
|
|
|
}
|
|
|
|
for (int i = 0; i < perfect.transform.childCount; i++)
|
|
|
|
{
|
|
|
|
Destroy(perfect.transform.GetChild(i).gameObject);
|
|
|
|
}
|
|
|
|
for (int i = 0; i < late.transform.childCount; i++)
|
|
|
|
{
|
|
|
|
Destroy(late.transform.GetChild(i).gameObject);
|
|
|
|
}
|
|
|
|
currentEarlyPeasOnFork = 0;
|
|
|
|
currentPerfectPeasOnFork = 0;
|
|
|
|
currentLatePeasOnFork = 0;
|
|
|
|
|
|
|
|
isEating = false;
|
|
|
|
|
|
|
|
topbun = false; middleburger = false; bottombun = false;
|
|
|
|
}
|
|
|
|
|
2022-01-23 07:01:59 +00:00
|
|
|
public void Stab(Pea p)
|
2021-12-21 01:10:49 +00:00
|
|
|
{
|
2022-02-06 04:03:31 +00:00
|
|
|
if (isEating || hitOnFrame > 0) return;
|
2021-12-21 01:10:49 +00:00
|
|
|
|
2022-01-23 07:01:59 +00:00
|
|
|
if (p == null)
|
|
|
|
{
|
2022-01-21 01:24:30 +00:00
|
|
|
Jukebox.PlayOneShotGame("forkLifter/stabnohit");
|
2022-01-23 07:01:59 +00:00
|
|
|
}
|
2022-01-17 19:23:18 +00:00
|
|
|
|
2021-12-21 01:10:49 +00:00
|
|
|
anim.Play("Player_Stab", 0, 0);
|
|
|
|
}
|
|
|
|
|
2022-01-23 07:01:59 +00:00
|
|
|
public void FastEffectHit(int type)
|
2021-12-21 01:10:49 +00:00
|
|
|
{
|
|
|
|
GameObject hitFX2o = new GameObject();
|
|
|
|
hitFX2o.transform.localPosition = new Vector3(0.11f, -2.15f);
|
|
|
|
hitFX2o.transform.localScale = new Vector3(5.401058f, 1.742697f);
|
|
|
|
hitFX2o.transform.localRotation = Quaternion.Euler(0, 0, -38.402f);
|
|
|
|
SpriteRenderer hfx2s = hitFX2o.AddComponent<SpriteRenderer>();
|
|
|
|
if (type == 2)
|
|
|
|
hfx2s.sprite = hitFXG;
|
|
|
|
else
|
|
|
|
hfx2s.sprite = hitFX2;
|
|
|
|
hfx2s.sortingOrder = -5;
|
|
|
|
hfx2s.DOColor(new Color(1, 1, 1, 0), 0.07f).OnComplete(delegate { Destroy(hitFX2o); });
|
|
|
|
}
|
|
|
|
|
2022-01-23 07:01:59 +00:00
|
|
|
public void HitFXMiss(Vector2 pos, Vector2 size)
|
2021-12-21 01:10:49 +00:00
|
|
|
{
|
|
|
|
GameObject hitFXo = new GameObject();
|
|
|
|
hitFXo.transform.localPosition = new Vector3(pos.x, pos.y);
|
|
|
|
hitFXo.transform.localScale = new Vector3(size.x, size.y);
|
|
|
|
SpriteRenderer hfxs = hitFXo.AddComponent<SpriteRenderer>();
|
|
|
|
hfxs.sprite = hitFXMiss;
|
|
|
|
hfxs.sortingOrder = 100;
|
|
|
|
hfxs.DOColor(new Color(1, 1, 1, 0), 0.05f).OnComplete(delegate { Destroy(hitFXo); });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|