Unity 机器学习代理工具包 (ML-Agents) 是一个开源项目,它使游戏和模拟能够作为训练智能代理的环境。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

213 行
5.9 KiB

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Cinemachine;
[RequireComponent(typeof(AudioSource))]
public class GunController : MonoBehaviour
{
public bool AllowKeyboardInput = true; //this mode ignores player input
public bool initialized; //has this robot been initialized
public KeyCode shootKey = KeyCode.J;
[Header("AUTOSHOOT")] public bool autoShootEnabled;
//SHOOTING RATE
[Header("SHOOTING RATE")]
public float shootingRate = .02f; //can shoot every shootingRate seconds. ex: .5 can shoot every .5 seconds
private float shootTimer;
public bool coolDownWait;
//PROJECTILES
[Header("PROJECTILE")]
public GameObject projectilePrefab;
public int numberOfProjectilesToPool = 25;
public Transform projectileOrigin; //the transform the projectile will originate from
// public List<Projectile> projectilePoolList = new List<Projectile>(); //projectiles to shoot
public List<Rigidbody> projectilePoolList = new List<Rigidbody>(); //projectiles to shoot
//FORCES
[Header("FORCES")]
public float forceToUse;
[Header("MUZZLE FLASH")]
public bool UseMuzzleFlash;
[Header("SOUND")]
public bool PlaySound;
public ForceMode forceMode;
public GunSFX GunSFX;
private AudioSource m_AudioSource;
[Header("SCREEN SHAKE")]
public bool UseScreenShake;
[Header("TRANSFORM SHAKE")] public bool ShakeTransform;
public float ShakeDuration = .1f;
public float ShakeAmount = .1f;
private Vector3 startPos;
private bool m_TransformIsShaking;
CinemachineImpulseSource impulseSource;
public GameObject MuzzleFlashObject;
// Start is called before the first frame update
void Awake()
{
if (!initialized)
{
Initialize();
}
}
void OnEnable()
{
if (!initialized)
{
Initialize();
}
}
void Initialize()
{
projectilePoolList.Clear(); //clear list in case it's not empty
for (var i = 0; i < numberOfProjectilesToPool; i++)
{
impulseSource = GetComponent<CinemachineImpulseSource>();
GameObject obj = Instantiate(projectilePrefab, transform.position, Quaternion.identity);
Rigidbody p = obj.GetComponent<Rigidbody>();
projectilePoolList.Add(p);
p.transform.position = projectileOrigin.position;
// p.projectileController = this;
p.gameObject.SetActive(false);
}
if (MuzzleFlashObject)
{
MuzzleFlashObject.SetActive(false);
}
m_AudioSource = GetComponent<AudioSource>();
initialized = true;
}
void Update()
{
if (!AllowKeyboardInput)
{
return;
}
if (Input.GetKeyDown(shootKey))
{
Shoot();
// ShootQuantity(1);
}
}
void FixedUpdate()
{
coolDownWait = shootTimer > shootingRate ? false : true;
shootTimer += Time.fixedDeltaTime;
if (autoShootEnabled)
{
Shoot();
}
}
// public void ShootQuantity(int num)
// {
// var i = 0;
// while (i < num)
// {
// //shoot first available projectile in the pool
// foreach (var item in projectilePoolList)
// {
// if (!item.gameObject.activeInHierarchy)
// {
// FireProjectile(item.rb);
// impulseSource.GenerateImpulse();
// break;
// }
// }
//
// i++;
// }
// }
public void Shoot()
{
if (coolDownWait || !gameObject.activeSelf)
{
return;
}
shootTimer = 0; //reset timer
//shoot first available projectile in the pool
foreach (var item in projectilePoolList)
{
if (!item.gameObject.activeInHierarchy)
{
FireProjectile(item);
// FireProjectile(item.rb);
break;
}
}
}
public void FireProjectile(Rigidbody rb)
{
rb.transform.position = projectileOrigin.position;
rb.transform.rotation = projectileOrigin.rotation;
// rb.position = projectileOrigin.position;
// rb.rotation = projectileOrigin.rotation;
rb.velocity = Vector3.zero;
rb.angularVelocity = Vector3.zero;
rb.gameObject.SetActive(true);
rb.AddForce(projectileOrigin.forward * forceToUse, forceMode);
if (UseScreenShake && impulseSource)
{
impulseSource.GenerateImpulse();
}
if (ShakeTransform && !m_TransformIsShaking)
{
StartCoroutine(I_ShakeTransform());
}
if (PlaySound)
{
m_AudioSource.PlayOneShot(m_AudioSource.clip);
// GunSFX.PlayAudio();
}
}
IEnumerator I_ShakeTransform()
{
m_TransformIsShaking = true;
WaitForFixedUpdate wait = new WaitForFixedUpdate();
if (UseMuzzleFlash && MuzzleFlashObject)
{
MuzzleFlashObject.transform.localScale = Random.Range(.5f, 1.5f) * Vector3.one;
MuzzleFlashObject.SetActive(true);
}
float timer = 0;
startPos = transform.localPosition;
while (timer < ShakeDuration)
{
var pos = startPos + (Random.insideUnitSphere * ShakeAmount);
transform.localPosition = pos;
timer += Time.fixedDeltaTime;
yield return wait;
}
transform.localPosition = startPos;
if (UseMuzzleFlash && MuzzleFlashObject)
{
MuzzleFlashObject.SetActive(false);
}
m_TransformIsShaking = false;
}
}