mirror of
https://github.com/Steffo99/beat-td.git
synced 2024-11-22 15:24:18 +00:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class SnareTower : MonoBehaviour {
|
|
|
|
private AudioSource snareSource;
|
|
private SongData songData;
|
|
private float cooldown;
|
|
private float cooldownRemaining = 0;
|
|
|
|
void Start()
|
|
{
|
|
snareSource = gameObject.GetComponent<AudioSource>();
|
|
songData = GameObject.FindGameObjectWithTag("GameController").GetComponent<SongData>();
|
|
//The period is 120 / bpm
|
|
cooldown = 44 / songData.bpm;
|
|
}
|
|
|
|
void Update () {
|
|
cooldownRemaining -= Time.deltaTime;
|
|
if (cooldownRemaining <= 0)
|
|
{
|
|
cooldownRemaining = 0;
|
|
if (Input.GetKeyDown(KeyCode.C))
|
|
{
|
|
//Calculate the power of the
|
|
//power = Sqrt(Cos(pi * t))
|
|
float power = Mathf.Pow(Mathf.Abs(Mathf.Sin(songData.songTime * Mathf.PI * songData.bpm / 120)), 2);
|
|
//Play the sound
|
|
snareSource.Play();
|
|
//Log the power to console
|
|
Debug.Log(power.ToString("0.00"));
|
|
//Start the cooldown
|
|
cooldownRemaining = cooldown;
|
|
}
|
|
}
|
|
}
|
|
}
|