mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
77 lines
1.9 KiB
C#
77 lines
1.9 KiB
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
using RhythmHeavenMania.Util;
|
||
|
|
||
|
namespace RhythmHeavenMania.Games.DrummingPractice
|
||
|
{
|
||
|
public class DrummerHit : PlayerActionObject
|
||
|
{
|
||
|
public float startBeat;
|
||
|
private bool hit = false;
|
||
|
private bool hasHit = false;
|
||
|
|
||
|
// Start is called before the first frame update
|
||
|
void Start()
|
||
|
{
|
||
|
PlayerActionInit(gameObject, startBeat);
|
||
|
}
|
||
|
|
||
|
public override void OnAce()
|
||
|
{
|
||
|
Hit(true);
|
||
|
}
|
||
|
|
||
|
// Update is called once per frame
|
||
|
void Update()
|
||
|
{
|
||
|
if (Conductor.instance.GetPositionFromBeat(startBeat, 2) >= 1)
|
||
|
{
|
||
|
DrummingPractice.instance.SetFaces(0);
|
||
|
CleanUp();
|
||
|
}
|
||
|
|
||
|
if (!hit && Conductor.instance.GetPositionFromBeat(startBeat, 1) >= 1)
|
||
|
{
|
||
|
Jukebox.PlayOneShotGame("drummingPractice/drum");
|
||
|
DrummingPractice.instance.leftDrummer.Hit(true);
|
||
|
DrummingPractice.instance.rightDrummer.Hit(true);
|
||
|
hit = true;
|
||
|
if (hasHit) CleanUp();
|
||
|
}
|
||
|
|
||
|
float normalizedBeat = Conductor.instance.GetPositionFromBeat(startBeat, 1f);
|
||
|
StateCheck(normalizedBeat);
|
||
|
|
||
|
if (PlayerInput.Pressed())
|
||
|
{
|
||
|
if (state.perfect)
|
||
|
{
|
||
|
Hit(true);
|
||
|
} else if (state.notPerfect())
|
||
|
{
|
||
|
Hit(false);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void Hit(bool _hit)
|
||
|
{
|
||
|
if (!hasHit)
|
||
|
{
|
||
|
DrummingPractice.instance.player.Hit(_hit);
|
||
|
DrummingPractice.instance.SetFaces(_hit ? 1 : 2);
|
||
|
|
||
|
hasHit = true;
|
||
|
|
||
|
if (hit) CleanUp();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void CleanUp()
|
||
|
{
|
||
|
Destroy(gameObject);
|
||
|
}
|
||
|
}
|
||
|
}
|