3 using System.Collections.Generic;
12 [AddComponentMenu(
"Liberi/Hitter")]
13 [Script(ScriptRole.Logic)]
14 [RequireComponent(typeof(Collider))]
22 get {
return _shooter; }
61 Dictionary<Collider, Vector3> _continuousContacts;
62 float _shooterProtectionTimeLeft;
67 _continuousContacts =
new Dictionary<Collider, Vector3>();
69 HitDetails =
new UJeli();
72 void OnSpawn (
UJeli details)
74 if (details.HasChild(
"HitValue"))
76 HitValue = details[
"HitValue"].FloatValue;
79 if (details.HasChild(
"Shooter"))
81 _shooter = details[
"Shooter"].GameObjectValue;
89 private void ApplyHit (Collider other, Vector3 location)
91 Vitals.
ApplyHit(other, location, HitValue,
this, HitTag, HitDetails);
94 IEnumerator ApplyContinuousHit (Collider other)
96 while (other != null && _continuousContacts.ContainsKey(other))
98 if (!collider.enabled)
100 _continuousContacts.Remove(other);
104 if (other.enabled ==
false)
106 _continuousContacts.Remove(other);
110 ApplyHit(other, _continuousContacts[other]);
112 yield
return new WaitForSeconds(HitInterval);
120 if (_shooterProtectionTimeLeft !=
float.PositiveInfinity && _shooterProtectionTimeLeft > 0f)
121 _shooterProtectionTimeLeft = Mathf.Max(0f, _shooterProtectionTimeLeft - Time.deltaTime);
124 void OnCollisionEnter (Collision collision)
129 if (_shooter != null && collision.collider == _shooter.collider && _shooterProtectionTimeLeft > 0f)
132 var targetVitals = collision.collider.GetComponent<
Vitals>();
134 if (targetVitals == null)
137 if (TargetVitalTags.Count != 0 && !TargetVitalTags.Contains(targetVitals.VitalTag))
142 _continuousContacts.Add(collision.collider, collision.contacts[0].point);
143 StartCoroutine(ApplyContinuousHit(collision.collider));
145 else ApplyHit(collision.collider, collision.contacts[0].point);
148 void OnCollisionStay (Collision collision)
153 if (_shooter != null && collision.collider == _shooter.collider && _shooterProtectionTimeLeft > 0f)
158 if (_continuousContacts.ContainsKey(collision.collider))
159 _continuousContacts[collision.collider] = collision.contacts[0].point;
163 void OnCollisionExit (Collision collision)
169 _continuousContacts.Remove(collision.collider);
172 void OnTriggerEnter (Collider other)
177 if (_shooter != null && other == _shooter.collider && _shooterProtectionTimeLeft > 0f)
180 var targetVitals = other.GetComponent<
Vitals>();
182 if (targetVitals == null)
185 if (TargetVitalTags.Count != 0 && !TargetVitalTags.Contains(targetVitals.VitalTag))
190 _continuousContacts.Add(other, PhysicsUtils.GetTriggerHitLocation(collider, other, TriggerHitLocationMode));
191 StartCoroutine(ApplyContinuousHit(other));
193 else ApplyHit(other, PhysicsUtils.GetTriggerHitLocation(collider, other, TriggerHitLocationMode));
196 void OnTriggerStay (Collider other)
201 if (_shooter != null && other == _shooter.collider && _shooterProtectionTimeLeft > 0f)
206 if (_continuousContacts.ContainsKey(other))
207 _continuousContacts[other] = PhysicsUtils.GetTriggerHitLocation(collider, other, TriggerHitLocationMode);
211 void OnTriggerExit (Collider other)
217 _continuousContacts.Remove(other);
GameObject Shooter
The object which shot this object, if any (as determined by "Shooter" detail node).
float ShooterProtectionDuration
The amount of time the shooter of this object (as determined by "Shooter" detail node). should be protected from this object's hits. 0 means unprotected. Infinity means always protected.
string HitTag
A basic string tag attached to all outgoing hits.
Manages the "vitals" of an object (health, regeneration, damage).
Applies outgoing hits to any object in contact that has a Vitals component.
List< string > TargetVitalTags
An array of vital tags used to filter targets. If non-empty, only objects with one or more of these v...
bool IsContinuous
Whether or not hits are continuously applied to targets.
float HitValue
The base value of outgoing hits.
TriggerHitLocationMode TriggerHitLocationMode
The hit location mode to determine the point of collision if our collider is a trigger.
static bool ApplyHit(Component targetObject, Vector3 location, float value=0f, GameObject sourceObject=null, string hitTag="", UJeli details=null)
Apply a hit to a given object.
UJeli HitDetails
Details attached to all outgoing hits.
Unity version of Jeli markup class.
float HitInterval
The interval at which hits are applied to targets if using continuous hits.