SanAndreasUnity/Assets/Scripts/Behaviours/Vehicles/Vehicle_Damage.cs

239 lines
8.1 KiB
C#
Raw Normal View History

using System.Linq;
using SanAndreasUnity.Utilities;
2020-06-09 16:34:15 +00:00
using UnityEngine;
namespace SanAndreasUnity.Behaviours.Vehicles
{
public partial class Vehicle
{
public Damageable Damageable { get; private set; }
2020-06-09 17:45:25 +00:00
public float Health { get; set; } = 1000;
2020-06-09 16:34:15 +00:00
public float MaxHealth { get; set; } = 1000;
public bool IsUnderFlame { get; private set; } = false;
public bool IsUnderSmoke { get; private set; } = false;
2020-06-09 17:45:25 +00:00
bool m_alreadyExploded = false;
2020-06-09 16:34:15 +00:00
public float TimeWhenBecameUnderFlame { get; private set; } = float.NegativeInfinity;
2020-06-21 14:35:39 +00:00
public float TimeSinceBecameUnderFlame => Time.time - this.TimeWhenBecameUnderFlame;
2020-06-09 16:34:15 +00:00
2020-06-20 22:33:55 +00:00
GameObject m_smokeGameObject;
2020-06-20 23:24:19 +00:00
GameObject m_flameGameObject;
2020-06-20 22:33:55 +00:00
2020-06-09 16:34:15 +00:00
void Awake_Damage()
{
2020-06-09 17:45:25 +00:00
}
void SetupDamagable()
{
this.Damageable = this.HighDetailMeshesParent.gameObject.AddComponent<Damageable>();
2020-06-09 16:34:15 +00:00
this.Damageable.OnDamageEvent.AddListener(() => this.OnDamaged());
}
void OnDamaged()
{
var damageInfo = this.Damageable.LastDamageInfo;
if (this.Health <= 0)
return;
this.Health -= damageInfo.amount;
if (this.Health <= 0)
{
this.Explode();
}
}
void Update_Damage()
{
bool shouldBeUnderSmoke = this.MaxHealth * 0.33f >= this.Health;
if (shouldBeUnderSmoke != this.IsUnderSmoke)
{
// smoke status changed
this.IsUnderSmoke = shouldBeUnderSmoke;
// update vfx
2020-06-20 22:33:55 +00:00
this.UpdateSmokeVfx();
2020-06-09 16:34:15 +00:00
}
bool shouldBeUnderFlame = this.MaxHealth * 0.1f >= this.Health;
if (shouldBeUnderFlame != this.IsUnderFlame)
{
// flame status changed
this.IsUnderFlame = shouldBeUnderFlame;
if (this.IsUnderFlame)
this.TimeWhenBecameUnderFlame = Time.time;
// update vfx
2020-06-20 23:24:19 +00:00
this.UpdateFlameVfx();
2020-06-09 16:34:15 +00:00
}
if (this.IsUnderFlame && Time.time - this.TimeWhenBecameUnderFlame >= 5)
{
// enough time passed since vehicle flamed - explode it
this.Explode();
}
}
2020-06-20 22:33:55 +00:00
void UpdateSmokeVfx()
{
if (this.IsUnderSmoke)
{
if (null == m_smokeGameObject)
{
Transform parent = this.EngineTransform != null ? this.EngineTransform : this.transform;
m_smokeGameObject = Object.Instantiate(
VehicleManager.Instance.smokePrefab, parent.position, parent.rotation, parent);
}
}
else
{
if (null != m_smokeGameObject)
{
Object.Destroy(m_smokeGameObject);
m_smokeGameObject = null;
}
}
}
2020-06-20 23:24:19 +00:00
void UpdateFlameVfx()
{
if (this.IsUnderFlame)
{
if (null == m_flameGameObject)
{
Transform parent = this.EngineTransform != null ? this.EngineTransform : this.transform;
m_flameGameObject = Object.Instantiate(
VehicleManager.Instance.flamePrefab, parent.position, parent.rotation, parent);
}
}
else
{
if (null != m_flameGameObject)
{
Object.Destroy(m_flameGameObject);
m_flameGameObject = null;
}
}
}
2020-06-09 16:34:15 +00:00
public void Explode()
2020-06-20 18:17:22 +00:00
{
F.RunExceptionSafe(() => this.ExplodeInternal());
}
private void ExplodeInternal()
2020-06-09 16:34:15 +00:00
{
2020-06-09 17:45:25 +00:00
if (m_alreadyExploded)
return;
m_alreadyExploded = true;
2020-06-20 15:56:17 +00:00
// destroy this game object before doing anything else
2020-06-09 17:45:25 +00:00
Object.Destroy(this.gameObject);
2020-06-09 16:34:15 +00:00
2020-06-20 18:15:29 +00:00
// detach vehicle parts and apply explosion force on them
string[] startingNames = new string[] { "door_", "wheel_", "bonnet_", "boot_", "windscreen_", "exhaust_" };
Vector3 explosionCenter = this.transform.position;
float explosionForce = Mathf.Sqrt(this.HandlingData.Mass) * VehicleManager.Instance.explosionForceMultiplier;
float explosionRadius = 10f;
foreach (var frame in _frames)
{
if (!frame.gameObject.activeInHierarchy)
continue;
if (!startingNames.Any(n => frame.gameObject.name.StartsWith(n)))
continue;
2020-06-20 16:05:12 +00:00
DetachFrameDuringExplosion(
frame, explosionCenter, explosionForce, explosionRadius, VehicleManager.Instance.explosionLeftoverPartsMass);
2020-06-20 15:56:17 +00:00
}
2020-06-20 15:56:17 +00:00
// chassis need to be handled after all other objects are detached, because chassis can sometimes
// have other objects as children
2020-06-20 15:56:17 +00:00
Frame chassisFrame = _frames.FirstOrDefault(f => f.Name == "chassis");
2020-06-20 15:56:17 +00:00
if (null == chassisFrame)
{
Debug.LogError($"Chassis object not found on vehicle {this.DescriptionForLogging}");
}
else
{
2020-06-20 16:05:12 +00:00
DetachFrameDuringExplosion(
chassisFrame,
explosionCenter,
Mathf.Sqrt(this.HandlingData.Mass) * VehicleManager.Instance.explosionChassisForceMultiplier,
explosionRadius,
2020-06-21 14:20:16 +00:00
this.HandlingData.Mass * 0.8f);
2020-06-20 15:56:17 +00:00
}
2020-06-21 16:21:15 +00:00
// inflict damage to nearby objects
2020-06-21 21:35:39 +00:00
Damageable.InflictDamageToObjectsInArea(
explosionCenter,
VehicleManager.Instance.explosionDamageRadius,
Mathf.Pow(this.HandlingData.Mass, VehicleManager.Instance.explosionMassToDamageExponent),
VehicleManager.Instance.explosionDamageOverDistanceCurve);
2020-06-21 16:21:15 +00:00
// create explosion effect
GameObject explosionGo = Object.Instantiate(VehicleManager.Instance.explosionPrefab, this.transform.position, this.transform.rotation);
// modify strength of explosion based on vehicle mass
float forceFactor = Mathf.Sqrt(this.HandlingData.Mass) / Mathf.Sqrt(1500f);
var physicsForce = explosionGo.GetComponentOrThrow<ExplosionForce>();
physicsForce.explosionForce *= forceFactor;
physicsForce.upwardsModifier *= forceFactor;
2020-06-09 16:34:15 +00:00
}
2020-06-20 16:05:12 +00:00
void DetachFrameDuringExplosion(
Frame frame, Vector3 explosionCenter, float explosionForce, float explosionRadius, float mass)
2020-06-20 15:56:17 +00:00
{
var meshFilter = frame.GetComponentInChildren<MeshFilter>();
if (null == meshFilter)
return;
if (!meshFilter.gameObject.activeInHierarchy)
return;
meshFilter.transform.SetParent(null, true);
meshFilter.gameObject.name = "vehicle_part_" + meshFilter.gameObject.name;
meshFilter.gameObject.layer = UnityEngine.LayerMask.NameToLayer("Default");
var meshCollider = meshFilter.gameObject.GetOrAddComponent<MeshCollider>();
meshCollider.convex = true;
meshCollider.sharedMesh = meshFilter.sharedMesh;
var rigidBody = meshFilter.gameObject.GetOrAddComponent<Rigidbody>();
2020-06-20 16:05:12 +00:00
rigidBody.mass = mass;
2020-06-20 15:56:17 +00:00
rigidBody.drag = 0.05f;
rigidBody.maxDepenetrationVelocity = VehicleManager.Instance.explosionLeftoverPartsMaxDepenetrationVelocity;
2020-06-21 13:33:19 +00:00
//rigidBody.AddExplosionForce(explosionForce, explosionCenter, explosionRadius);
2020-06-20 15:56:17 +00:00
2020-06-20 16:06:24 +00:00
Object.Destroy(meshFilter.gameObject, VehicleManager.Instance.explosionLeftoverPartsLifetime * Random.Range(0.8f, 1.2f));
2020-06-20 15:56:17 +00:00
}
void OnDrawGizmosSelected()
{
// draw sphere indicating explosion damage radius
Gizmos.color = Color.red;
Gizmos.DrawWireSphere(this.transform.position, VehicleManager.Instance.explosionDamageRadius);
}
2020-06-09 16:34:15 +00:00
}
}