Liberi
An exergame built for kids with CP!
Hitter.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using Janus;
5 using System.Linq;
6 using System.Reflection;
7 using System;
8 
12 [AddComponentMenu("Liberi/Hitter")]
13 [Script(ScriptRole.Logic)]
14 [RequireComponent(typeof(Collider))]
15 public class Hitter : MonoBehaviour
16 {
20  public GameObject Shooter
21  {
22  get { return _shooter; }
23  }
24 
28  public bool IsContinuous;
32  public float HitInterval = .5f;
36  public float HitValue;
41  public List<string> TargetVitalTags;
46  public string HitTag;
50  public TriggerHitLocationMode TriggerHitLocationMode;
59  public UJeli HitDetails;
60 
61  Dictionary<Collider, Vector3> _continuousContacts;
62  float _shooterProtectionTimeLeft;
63  GameObject _shooter;
64 
65  void Awake ()
66  {
67  _continuousContacts = new Dictionary<Collider, Vector3>();
68 
69  HitDetails = new UJeli();
70  }
71 
72  void OnSpawn (UJeli details)
73  {
74  if (details.HasChild("HitValue"))
75  {
76  HitValue = details["HitValue"].FloatValue;
77  }
78 
79  if (details.HasChild("Shooter"))
80  {
81  _shooter = details["Shooter"].GameObjectValue;
82 
83  HitDetails = details;
84 
85  _shooterProtectionTimeLeft = ShooterProtectionDuration;
86  }
87  }
88 
89  private void ApplyHit (Collider other, Vector3 location)
90  {
91  Vitals.ApplyHit(other, location, HitValue, this, HitTag, HitDetails);
92  }
93 
94  IEnumerator ApplyContinuousHit (Collider other)
95  {
96  while (other != null && _continuousContacts.ContainsKey(other))
97  {
98  if (!collider.enabled)
99  {
100  _continuousContacts.Remove(other);
101  break;
102  }
103 
104  if (other.enabled == false)
105  {
106  _continuousContacts.Remove(other);
107  yield break;
108  }
109 
110  ApplyHit(other, _continuousContacts[other]);
111 
112  yield return new WaitForSeconds(HitInterval);
113  }
114 
115  yield break;
116  }
117 
118  void Update ()
119  {
120  if (_shooterProtectionTimeLeft != float.PositiveInfinity && _shooterProtectionTimeLeft > 0f)
121  _shooterProtectionTimeLeft = Mathf.Max(0f, _shooterProtectionTimeLeft - Time.deltaTime);
122  }
123 
124  void OnCollisionEnter (Collision collision)
125  {
126  if (!enabled)
127  return;
128 
129  if (_shooter != null && collision.collider == _shooter.collider && _shooterProtectionTimeLeft > 0f)
130  return;
131 
132  var targetVitals = collision.collider.GetComponent<Vitals>();
133 
134  if (targetVitals == null)
135  return;
136 
137  if (TargetVitalTags.Count != 0 && !TargetVitalTags.Contains(targetVitals.VitalTag))
138  return;
139 
140  if (IsContinuous)
141  {
142  _continuousContacts.Add(collision.collider, collision.contacts[0].point);
143  StartCoroutine(ApplyContinuousHit(collision.collider));
144  }
145  else ApplyHit(collision.collider, collision.contacts[0].point);
146  }
147 
148  void OnCollisionStay (Collision collision)
149  {
150  if (!enabled)
151  return;
152 
153  if (_shooter != null && collision.collider == _shooter.collider && _shooterProtectionTimeLeft > 0f)
154  return;
155 
156  if (IsContinuous)
157  {
158  if (_continuousContacts.ContainsKey(collision.collider))
159  _continuousContacts[collision.collider] = collision.contacts[0].point;
160  }
161  }
162 
163  void OnCollisionExit (Collision collision)
164  {
165  if (!enabled)
166  return;
167 
168  if (IsContinuous)
169  _continuousContacts.Remove(collision.collider);
170  }
171 
172  void OnTriggerEnter (Collider other)
173  {
174  if (!enabled)
175  return;
176 
177  if (_shooter != null && other == _shooter.collider && _shooterProtectionTimeLeft > 0f)
178  return;
179 
180  var targetVitals = other.GetComponent<Vitals>();
181 
182  if (targetVitals == null)
183  return;
184 
185  if (TargetVitalTags.Count != 0 && !TargetVitalTags.Contains(targetVitals.VitalTag))
186  return;
187 
188  if (IsContinuous)
189  {
190  _continuousContacts.Add(other, PhysicsUtils.GetTriggerHitLocation(collider, other, TriggerHitLocationMode));
191  StartCoroutine(ApplyContinuousHit(other));
192  }
193  else ApplyHit(other, PhysicsUtils.GetTriggerHitLocation(collider, other, TriggerHitLocationMode));
194  }
195 
196  void OnTriggerStay (Collider other)
197  {
198  if (!enabled)
199  return;
200 
201  if (_shooter != null && other == _shooter.collider && _shooterProtectionTimeLeft > 0f)
202  return;
203 
204  if (IsContinuous)
205  {
206  if (_continuousContacts.ContainsKey(other))
207  _continuousContacts[other] = PhysicsUtils.GetTriggerHitLocation(collider, other, TriggerHitLocationMode);
208  }
209  }
210 
211  void OnTriggerExit (Collider other)
212  {
213  if (!enabled)
214  return;
215 
216  if (IsContinuous)
217  _continuousContacts.Remove(other);
218  }
219 }
GameObject Shooter
The object which shot this object, if any (as determined by "Shooter" detail node).
Definition: Hitter.cs:21
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.
Definition: Hitter.cs:55
string HitTag
A basic string tag attached to all outgoing hits.
Definition: Hitter.cs:46
Manages the "vitals" of an object (health, regeneration, damage).
Definition: Vitals.cs:17
Applies outgoing hits to any object in contact that has a Vitals component.
Definition: Hitter.cs:15
List< string > TargetVitalTags
An array of vital tags used to filter targets. If non-empty, only objects with one or more of these v...
Definition: Hitter.cs:41
bool IsContinuous
Whether or not hits are continuously applied to targets.
Definition: Hitter.cs:28
float HitValue
The base value of outgoing hits.
Definition: Hitter.cs:36
TriggerHitLocationMode TriggerHitLocationMode
The hit location mode to determine the point of collision if our collider is a trigger.
Definition: Hitter.cs:50
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.
Definition: Vitals.cs:192
UJeli HitDetails
Details attached to all outgoing hits.
Definition: Hitter.cs:59
Unity version of Jeli markup class.
Definition: UJeli.cs:10
float HitInterval
The interval at which hits are applied to targets if using continuous hits.
Definition: Hitter.cs:32