BGJ-2022.1/Assets/Scripts/AI/ShootingEnemyAI.cs

116 lines
3.8 KiB
C#
Raw Normal View History

using System.Collections;
using Movement;
2022-02-22 11:25:25 +03:00
using Pausable;
using UnityEngine;
using UnityEngine.Events;
namespace AI
{
public class ShootingEnemyAI : MonoBehaviour, IPausable
{
[SerializeField] protected float focusingTime = .5f;
2022-02-22 11:25:25 +03:00
[SerializeField] protected float attacksPerSecond = 1f;
[SerializeField] protected float attackRange = 5f;
[SerializeField] protected float timeForProjectileToHit = .25f;
protected float cooldownPerShoot = 0f;
protected float remainingCooldown = 0f;
protected float attackRangeSquared = 5f;
protected Transform target = null;
protected bool isShooting = false;
protected IMovement movement = null;
2022-02-25 23:36:20 +03:00
protected Animator animator = null;
protected int layerMask = ~(1 << 9);
2022-02-22 11:25:25 +03:00
protected bool canShoot => target != null && (target.transform.position - transform.position).sqrMagnitude < attackRangeSquared;
2022-02-22 11:25:25 +03:00
public UnityEvent OnShoot { get; protected set; } = null;
#region IPausable
public bool IsPaused { get; protected set; } = false;
public virtual void Pause() => IsPaused = true;
public virtual void Resume() => IsPaused = false;
#endregion
protected virtual void Awake()
2022-02-22 11:25:25 +03:00
{
cooldownPerShoot = 1f / attacksPerSecond;
attackRangeSquared = attackRange * attackRange;
OnShoot = new UnityEvent();
}
protected virtual void Start()
{
movement = transform.GetComponentInParent<IMovement>();
2022-02-25 23:36:20 +03:00
animator = transform.GetComponentInParent<Animator>();
UpdateTarget(FindObjectOfType<Player.PlayerController>()?.transform);
}
protected virtual void Update()
2022-02-22 11:25:25 +03:00
{
remainingCooldown -= Time.deltaTime;
if (canShoot && !isShooting)
StartCoroutine(ShootCoroutine());
2022-02-22 11:25:25 +03:00
}
protected IEnumerator ShootCoroutine()
2022-02-22 11:25:25 +03:00
{
isShooting = true;
float movementBaseSpeed = movement.BaseSpeed;
movement.BaseSpeed = 0f;
2022-02-25 23:36:20 +03:00
animator.SetBool("isAttacking", true);
yield return new WaitForSeconds(focusingTime);
while (canShoot)
{
if (remainingCooldown <= 0f)
Shoot();
yield return null;
}
movement.BaseSpeed = movementBaseSpeed;
2022-02-25 23:36:20 +03:00
animator.SetBool("isAttacking", false);
2022-02-26 00:01:18 +03:00
remainingCooldown = 0f;
isShooting = false;
}
2022-02-22 11:25:25 +03:00
protected virtual void Shoot()
{
2022-02-22 11:25:25 +03:00
Projectile projectile = ProjectilePool.Instance.Get();
projectile.transform.position = transform.position;
Vector3 velocity = GetVelocityForProjectile(timeForProjectileToHit);
2022-02-25 23:36:20 +03:00
RaycastHit2D raycastHit2D = Physics2D.Raycast(transform.position, target.position - transform.position, attackRange, layerMask);
2022-02-22 11:25:25 +03:00
if (raycastHit2D.transform != target)
velocity = GetVelocityForProjectile(timeForProjectileToHit * 2);
projectile.SetVelocity(velocity);
remainingCooldown = cooldownPerShoot;
OnShoot?.Invoke();
}
protected Vector3 GetVelocityForProjectile(float time)
2022-02-22 11:25:25 +03:00
{
Vector3 vector3 = target.position - transform.position;
vector3.z = 0f;
vector3.y -= (Physics2D.gravity.y / 2) * (time * time);
vector3 /= time;
return vector3;
}
public virtual void UpdateTarget(Transform transform) => target = transform;
2022-02-22 11:25:25 +03:00
protected virtual void OnDrawGizmosSelected()
2022-02-22 11:25:25 +03:00
{
Gizmos.color = Color.yellow;
Gizmos.DrawWireSphere(transform.position, 0.125f);
Gizmos.color = Color.red;
Gizmos.DrawWireSphere(transform.position, attackRange);
}
}
}