3 using System.Collections.Generic;
9 public delegate
void VitalsHitHandler (
Vitals vitals,
HitInfo hit);
10 public delegate
void VitalsKilledHandler (
Vitals vitals,
HitInfo fatalHit);
11 public delegate
void VitalsRevivedHandler (
Vitals vitals);
16 [AddComponentMenu(
"Liberi/Vitals")]
22 public event VitalsHitHandler
Hit = delegate {};
26 public event VitalsKilledHandler
Killed = delegate {};
30 public event VitalsRevivedHandler
Revived = delegate {};
38 get {
return !_isVulnerable.LastValue; }
39 set { _isVulnerable[0] = !value; }
48 get {
return _isVulnerable.LastValue; }
49 set { _isVulnerable[0] = value; }
138 Timeline<bool> _isVulnerable;
139 Timeline<GameMessage> _hits;
145 _blinker = GetComponent<Blinker>();
147 _isVulnerable =
Sync.CreateDiscreteState<
bool>();
149 Health =
Sync.CreateDiscreteState<
float>();
150 Health.CacheSize = 1;
152 MaxHealth =
Sync.CreateDiscreteState<
float>();
153 MaxHealth.CacheSize = 1;
160 _hits.EntryPassed += OnHitMessage;
161 Health.EntryPassed += OnHealthChange;
165 _isVulnerable[0] =
true;
167 Health[0] = MaxHealth.LastValue;
169 StartCoroutine(RegenHealth());
173 void OnHealthChange (Timeline<float> timeline, TimelineEntry<float> entry)
175 if (entry.Prev != null && entry.Prev.Value <= 0 && entry.Value > 0)
178 if (entry.Value <= 0 && DespawnWhenKilled)
192 public static bool ApplyHit (Component targetObject, Vector3 location,
float value = 0f,
193 GameObject sourceObject = null,
string hitTag =
"",
UJeli details = null)
195 return ApplyHit(targetObject.gameObject, location, value, sourceObject, hitTag, details);
208 public static bool ApplyHit (Component targetObject, Vector3 location,
float value = 0f,
209 Component sourceObject = null,
string hitTag =
"",
UJeli details = null)
211 return ApplyHit(targetObject.gameObject, location, value, sourceObject.gameObject, hitTag, details);
224 public static bool ApplyHit (GameObject targetObject, Vector3 location,
float value = 0f,
225 Component sourceObject = null,
string hitTag =
"",
UJeli details = null)
227 return ApplyHit(targetObject, location, value, sourceObject.gameObject, hitTag, details);
240 public static bool ApplyHit (GameObject targetObject, Vector3 location,
float value = 0f,
241 GameObject sourceObject = null,
string hitTag =
"",
UJeli details = null)
243 var vitals = targetObject.GetComponent<
Vitals>();
247 while (vitals.RedirectHitsTo != null)
252 if (!vitals._isVulnerable.LastValue)
255 vitals.PropagateHit(
false, location, value,
false, sourceObject, hitTag, details);
263 void PropagateHit (
bool isFinal, Vector3 location,
float value,
bool isFatal, GameObject sourceObject,
string hitTag,
UJeli details)
265 int sourceObjectIndex = sourceObject != null ?
Sync.
GetObjectIndex(sourceObject) : -1;
267 string detailsString = details != null ? details.ToString() :
"";
270 hitMsg.Write(isFinal);
271 hitMsg.Write(location);
273 hitMsg.Write(isFatal);
274 hitMsg.Write(sourceObjectIndex);
275 hitMsg.Write(hitTag);
276 hitMsg.Write(detailsString);
283 if (HealthMeter != null)
287 IEnumerator RegenHealth ()
291 if (HealthRegenEnabled && Health.LastValue < MaxHealth.LastValue)
294 yield
return new WaitForSeconds(HealthRegenInterval);
298 void OnHitMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
300 var hitMsg = entry.Value;
302 bool isFinal = hitMsg.ReadBoolean();
303 Vector3 location = hitMsg.ReadVector3();
304 float value = hitMsg.ReadFloat();
305 bool isFatal = hitMsg.ReadBoolean();
306 int sourceObjectIndex = hitMsg.ReadInt32();
307 GameObject sourceObject = sourceObjectIndex != -1 ?
Sync.
GetObject(sourceObjectIndex) : null;
308 string hitTag = hitMsg.ReadString();
309 string detailsString = hitMsg.ReadString();
311 hitMsg.FinishReading();
313 if (sourceObjectIndex != -1 && sourceObject == null)
322 SourceObject = sourceObject,
329 if (_blinker != null)
330 _blinker.
Blink(HitTimeout);
336 if (hit.SourceObject != null)
346 GameObject shooter = null;
348 if (hit.Details.HasChild(
"Shooter"))
349 shooter = hit.Details[
"Shooter"].GameObjectValue;
351 var trueSourceObject = shooter ?? hit.SourceObject;
357 if (trueSourceObject.CompareTag(
"Avatar"))
359 string playerName = Game.GetPlayerNickname(
Sync.
GetOwner(trueSourceObject));
363 Study.
LogEvent(VitalsLogEvent.KilledBy, trueSourceObject.name);
369 if (gameObject.CompareTag(
"Avatar"))
371 string playerName = Game.GetPlayerNickname(
Sync.
GetOwner(
this));
383 if (
Sync.
IsLocal(gameObject) && _isVulnerable.LastValue)
385 if (Time.time - _lastHitTime > HitTimeout)
395 Health[0] = Mathf.Clamp(Health.LastValue - hit.Value, 0, MaxHealth.LastValue);
401 _lastHitTime = Time.time;
403 PropagateHit(
true, location, value, hit.IsFatal, sourceObject, hitTag, details);
bool IsAlive
Whether or not the object's health is currently over zero.
float HitTimeout
The length of time after being hit that this object is invulnerable.
static void Despawn(GameObject go)
Despawn the given object.
VitalsKilledHandler Killed
Event fired whenever this object's health reaches zero.
static bool ApplyHit(Component targetObject, Vector3 location, float value=0f, Component sourceObject=null, string hitTag="", UJeli details=null)
Apply a hit to a given object.
Describes a hit on an object.
Timeline< float > Health
The current health this object has.
Manages the "vitals" of an object (health, regeneration, damage).
string VitalTag
The vital "tag" of this object. Used by Hitter to selectively apply damage.
void Blink(float duration)
Blink the object for the given duration.
float Value
A value between 0 and 1 at which this bar is filled.
float HealthRegen
The rate at which health is regenerated, in health units per second.
static bool ApplyHit(GameObject targetObject, Vector3 location, float value=0f, Component sourceObject=null, string hitTag="", UJeli details=null)
Apply a hit to a given object.
static bool IsServer
Gets whether or not this peer is the server.
float BaseMaxHealth
The base max health this object is allowed to have (before any boosts/penalties are applied)...
static void SendEnabledMessage(GameObject go, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject.
bool IsDead
Whether or not the object's health is currently zero.
static bool IsLocal(GameObject go)
Gets whether or not the given object is owned by the local peer.
bool HealthRegenEnabled
Whether or not health regeneration is enabled.
Vitals RedirectHitsTo
An optional Vitals component to which all incoming hits to this component are redirected.
MeterSticker HealthMeter
An optional health meter to render the health.
static bool ApplyHit(GameObject targetObject, Vector3 location, float value=0f, GameObject sourceObject=null, string hitTag="", UJeli details=null)
Apply a hit to a given object.
float CurrentNormalizedHealth
The current health of the object as a ratio of its maximum health.
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
bool IsInvulnerable
Whether or not the object is currently invulnerable. Note that this is not affected by the hit timeou...
VitalsRevivedHandler Revived
Event fired whenever this object's health changes from zero to non-zero.
static int GetObjectIndex(GameObject go)
Gets the object index of a given object.
bool DespawnWhenKilled
Whether or not to automatically despawn this object when its health reaches zero. ...
A class for serializing game data into a stream for propagation between objects and peers...
float HealthRegenInterval
The interval between each health regeneration tick, i.e. the granularity of regeneration.
VitalsHitHandler Hit
Event fired whenever this object is hit.
Timeline< float > MaxHealth
The maximum health this object is allowed to have.
Class for managing study-related game components.
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.
static GameObject GetObject(int objectIndex)
Get an object by its object index.
A Sticker for showing health bars.
bool IsVulnerable
Whether or not the object is currently vulnerable. Note that this is not affected by the hit timeout...
float CurrentHealth
The current health of the object.
Blinks the renderers in an object on and off. Good for damage effects.
Unity version of Jeli markup class.
static void LogEvent(Enum eventType, params object[] args)
Log a game event.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...