Liberi
An exergame built for kids with CP!
CollisionEffects.cs
1 using UnityEngine;
2 using System;
3 using System.Linq;
4 using System.Collections;
5 using System.Collections.Generic;
6 using Janus;
7 
11 [Serializable]
13 {
17  public PhysicMaterial OtherMaterial;
21  public bool IsContinuous;
25  public float EffectInterval = .5f;
29  public AudioClip SoundEffect;
33  public GameObject VisualEffectPrefab;
37  public TriggerHitLocationMode TriggerHitLocationMode;
38 }
39 
43 [AddComponentMenu("Liberi/Collision Effects")]
44 [Script(ScriptRole.View)]
45 public class CollisionEffects : MonoBehaviour
46 {
51 
52  Dictionary<PhysicMaterial, CollisionEffectRelationship> _relationshipsByMaterial;
53  Dictionary<Collider, Vector3> _continuousContacts;
54 
55  void Awake ()
56  {
57  _relationshipsByMaterial = new Dictionary<PhysicMaterial, CollisionEffectRelationship>();
58 
59  foreach (var relationship in Relationships)
60  {
61  _relationshipsByMaterial.Add(relationship.OtherMaterial, relationship);
62  }
63 
64  _continuousContacts = new Dictionary<Collider, Vector3>();
65  }
66 
67  private void ApplyEffect (CollisionEffectRelationship relationship, Vector3 location)
68  {
69  if (relationship.SoundEffect != null)
70  SoundPool.Play(relationship.SoundEffect, location);
71 
72  if (relationship.VisualEffectPrefab != null)
73  Sync.SpawnLocal(relationship.VisualEffectPrefab, location);
74  }
75 
76  IEnumerator ApplyContinuousEffect (CollisionEffectRelationship relationship, Collider other)
77  {
78  while (other != null && _continuousContacts.ContainsKey(other))
79  {
80  ApplyEffect(relationship, _continuousContacts[other]);
81 
82  yield return new WaitForSeconds(relationship.EffectInterval);
83  }
84 
85  yield break;
86  }
87 
88  void OnCollisionEnter (Collision collision)
89  {
90  if (!enabled)
91  return;
92 
93  if (collision.collider == null)
94  return;
95 
96  var otherMat = collision.collider.sharedMaterial;
97 
98  if (otherMat == null)
99  return;
100 
101  CollisionEffectRelationship relationship = null;
102 
103  if (!_relationshipsByMaterial.TryGetValue(otherMat, out relationship))
104  return;
105 
106  if (relationship.IsContinuous)
107  {
108  _continuousContacts.Add(collision.collider, collision.contacts[0].point);
109  StartCoroutine(ApplyContinuousEffect(relationship, collision.collider));
110  }
111  else ApplyEffect(relationship, collision.contacts[0].point);
112  }
113 
114  void OnCollisionStay (Collision collision)
115  {
116  if (!enabled)
117  return;
118 
119  if (_continuousContacts.ContainsKey(collision.collider))
120  _continuousContacts[collision.collider] = collision.contacts[0].point;
121  }
122 
123  void OnCollisionExit (Collision collision)
124  {
125  if (!enabled)
126  return;
127 
128  if (collision.collider == null)
129  return;
130 
131  var otherMat = collision.collider.sharedMaterial;
132 
133  if (otherMat == null)
134  return;
135 
136  CollisionEffectRelationship relationship = null;
137 
138  if (!_relationshipsByMaterial.TryGetValue(otherMat, out relationship))
139  return;
140 
141  if (relationship.IsContinuous)
142  {
143  _continuousContacts.Remove(collision.collider);
144  }
145  }
146 
147  void OnTriggerEnter (Collider other)
148  {
149  if (!enabled)
150  return;
151 
152  if (other.sharedMaterial == null)
153  return;
154 
155  CollisionEffectRelationship relationship = null;
156 
157  if (!_relationshipsByMaterial.TryGetValue(other.sharedMaterial, out relationship))
158  return;
159 
160  if (relationship.IsContinuous)
161  {
162  _continuousContacts.Add(other, PhysicsUtils.GetTriggerHitLocation(collider, other, relationship.TriggerHitLocationMode));
163  StartCoroutine(ApplyContinuousEffect(relationship, other));
164  }
165  else ApplyEffect(relationship, PhysicsUtils.GetTriggerHitLocation(collider, other, relationship.TriggerHitLocationMode));
166  }
167 
168  void OnTriggerStay (Collider other)
169  {
170  if (!enabled)
171  return;
172 
173  if (!_continuousContacts.ContainsKey(other))
174  return;
175 
176  CollisionEffectRelationship relationship = null;
177 
178  if (!_relationshipsByMaterial.TryGetValue(other.sharedMaterial, out relationship))
179  return;
180 
181  _continuousContacts[other] = PhysicsUtils.GetTriggerHitLocation(collider, other, relationship.TriggerHitLocationMode);
182  }
183 
184  void OnTriggerExit (Collider other)
185  {
186  if (!enabled)
187  return;
188 
189  if (other.sharedMaterial == null)
190  return;
191 
192  CollisionEffectRelationship relationship = null;
193 
194  if (!_relationshipsByMaterial.TryGetValue(other.sharedMaterial, out relationship))
195  return;
196 
197  if (relationship.IsContinuous)
198  {
199  _continuousContacts.Remove(other);
200  }
201  }
202 }
TriggerHitLocationMode TriggerHitLocationMode
The hit location mode to determine the point of collision if our collider is a trigger.
PhysicMaterial OtherMaterial
The incoming physic material.
CollisionEffectRelationship[] Relationships
An array of different effect relationships this object has with various incoming physic materials...
float EffectInterval
The interval at which to apply the effect if it is continuous.
GameObject VisualEffectPrefab
A visual effect to spawn on collision.
Manages client-side collision effects for this object.
AudioClip SoundEffect
A sound effect to play on collision.
Sound pool. Allows on-demand playing of 3D sounds, with sound properties based on prefab...
Definition: SoundPool.cs:11
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
bool IsContinuous
Whether or not the effect is continuously applied.
Describes an effect relationship between a collider and an incoming physic material.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13