i3e-asg2/Assets/Scripts/Gun.cs
2024-07-03 20:03:50 +08:00

126 lines
2.9 KiB
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using Unity.VisualScripting;
using UnityEngine;
using UnityEngine.PlayerLoop;
public class Gun : MonoBehaviour
{
public GameObject bullet;
/// <summary>
/// gun stats
/// </summary>
public int magSize;
public int damage;
public float timeBtwShots;
public float range;
public float reloadTime;
public int bulletsPerFire;
public bool automaticFire;
/// <summary>
/// gun status
/// </summary>
private bool reloading;
private bool shooting;
private bool readyToShot;
private int bulletsLeft;
/// <summary>
/// Refrencing
/// </summary>
[SerializeField]
Camera fpsCam;
public Transform bulletSpawn;
public TextMeshProUGUI bulletCounter;
public bool allowInvoke = true;
[SerializeField]
private GameObject mag;
void Awake()
{
bulletsLeft = magSize;
readyToShot = true;
}
public void Shoot()
{
if (readyToShot && !reloading && bulletsLeft > 0)
{
Debug.Log("Bang");
Ray ray = fpsCam.ViewportPointToRay(new Vector3(0.5f, 0.5f, 0));
RaycastHit hit;
Vector3 targetPoint;
if (Physics.Raycast(ray, out hit))
{
targetPoint = hit.point;
}
else
{
targetPoint = ray.GetPoint(150);
}
Vector3 direction = targetPoint - bulletSpawn.position;
GameObject currentBullet = Instantiate(
bullet,
bulletSpawn.position,
Quaternion.identity
);
currentBullet.GetComponent<BulletCollider>().damage = damage;
currentBullet.transform.forward = direction.normalized;
currentBullet
.GetComponent<Rigidbody>()
.AddForce(direction.normalized * range, ForceMode.Impulse);
bulletsLeft--;
if (allowInvoke)
{
Invoke("ResetShot", timeBtwShots);
allowInvoke = false;
}
}
}
void Update()
{
if (bulletsLeft == 0)
{
Reload();
}
if(fpsCam==null)
{
fpsCam=GameObject.Find("MainCamera").GetComponent<Camera>();
}
}
private void ResetShot()
{
//Allow shooting and invoking again
readyToShot = true;
allowInvoke = true;
}
public void Reload()
{
if (bulletsLeft < magSize && !reloading)
{
Debug.Log("reload");
reloading = true;
readyToShot = false;
Invoke("Reloaded", reloadTime);
mag.SetActive(false);
}
}
void Reloaded()
{
reloading = false;
readyToShot = true;
bulletsLeft = magSize;
mag.SetActive(true);
}
}