i3e-asg2/Assets/Scripts/enemyGun.cs

107 lines
2.2 KiB
C#
Raw Normal View History

2024-07-02 02:42:09 +00:00
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
public class enemyGun : 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]
Transform fpsCam;
public Transform bulletSpawn;
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");
readyToShot=false;
GameObject currentBullet = Instantiate(
bullet,
bulletSpawn.position,
Quaternion.identity
);
currentBullet.GetComponent<BulletCollider>().damage=damage;
currentBullet
.GetComponent<Rigidbody>()
.AddForce(transform.forward * range, ForceMode.Impulse);
bulletsLeft--;
if (allowInvoke)
{
Invoke("ResetShot", timeBtwShots);
allowInvoke = false;
}
}
}
void Update()
{
if(bulletsLeft == 0)
{
Reload();
}
}
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);
}
}