Liberi
An exergame built for kids with CP!
Sync.Static.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Diagnostics;
7 using System.Reflection;
8 using Janus;
9 
15 public partial class Sync : MonoBehaviour
16 {
20  public static TimelineManager TimelineManager
21  {
22  get { return _timelineManager; }
23  }
24 
29  {
30  get { return _timelineSyncer; }
31  }
32 
36  public static int LocalPeerIndex
37  {
38  get { return _localPeerIndex; }
39  }
40 
44  public static int ServerPeerIndex
45  {
46  get { return 0; }
47  }
48 
52  public static bool IsServer
53  {
54  get { return _isServer; }
55  }
56 
60  public static bool IsClient
61  {
62  get { return _isClient; }
63  }
64 
69  public static bool IsMapSynced
70  {
71  get { return _isMapSynced; }
72  }
73 
77  public static int[] ObjectIndices
78  {
79  get { return _syncedObjects.Keys.ToArray(); }
80  }
81 
85  public static GameObject[] Objects
86  {
87  get { return (from sync in _syncedObjects.Values select sync.gameObject).ToArray(); }
88  }
89 
93  public static string[] SpawnablePrefabIDs
94  {
95  get { return _spawnablePrefabs.Keys.ToArray(); }
96  }
97 
101  public static GameObject[] SpawnablePrefabs
102  {
103  get { return _spawnablePrefabs.Values.ToArray(); }
104  }
105 
110  public static float MaxSmoothDistance = 5f;
115  public static float MinSmoothDistance = .01f;
122  public static float ErrorDistance = 1f;
126  public static float MaxErrorTime = 2f;
127 
133  public static GameObject GetSpawnablePrefab (string prefabId)
134  {
135  GameObject prefab = null;
136  _spawnablePrefabs.TryGetValue(prefabId, out prefab);
137  return prefab;
138  }
139 
143  public static GameObject GetObject (int objectIndex)
144  {
145  Sync sync = null;
146 
147  if (_syncedObjects.TryGetValue(objectIndex, out sync))
148  {
149  if (sync != null)
150  return sync.gameObject;
151  }
152 
153  if (_syncingObjects.TryGetValue(objectIndex, out sync))
154  {
155  if (sync != null)
156  return sync.gameObject;
157  }
158 
159  return null;
160  }
161 
165  public static bool ObjectExists (int objectIndex)
166  {
167  return _syncedObjects.ContainsKey(objectIndex) ||
168  _syncingObjects.ContainsKey(objectIndex);
169  }
170 
174  public static bool ObjectExists (GameObject go)
175  {
176  if (go == null)
177  return false;
178 
179  var sync = go.GetComponent<Sync>();
180 
181  if (sync != null)
182  return ObjectExists(sync._objectIndex);
183 
184  return false;
185  }
186 
190  public static int GetObjectIndex (GameObject go)
191  {
192  if (go == null)
193  return -1;
194 
195  Sync sync = go.GetComponent<Sync>();
196 
197  if (sync != null)
198  return sync.ObjectIndex;
199 
200  return -1;
201  }
202 
206  public static int GetObjectIndex (Component component)
207  {
208  return GetObjectIndex(component.gameObject);
209  }
210 
215  public static SpawnInfo GetSpawnInfo (GameObject go)
216  {
217  if (go == null)
218  return null;
219 
220  Sync sync = go.GetComponent<Sync>();
221 
222  if (sync != null)
223  return sync.SpawnInfo;
224 
225  return null;
226  }
227 
232  public static SpawnInfo GetSpawnInfo (Component component)
233  {
234  return GetSpawnInfo(component.gameObject);
235  }
236 
241  public static UJeli GetSpawnDetails (GameObject go)
242  {
243  var spawnInfo = GetSpawnInfo(go);
244 
245  if (spawnInfo != null)
246  return spawnInfo.Details;
247 
248  return null;
249  }
250 
255  public static UJeli GetSpawnDetails (Component component)
256  {
257  return GetSpawnDetails(component.gameObject);
258  }
259 
263  public static int GetOwner (GameObject go)
264  {
265  if (go == null)
266  return -1;
267 
268  Sync sync = go.GetComponent<Sync>();
269 
270  if (sync != null)
271  return sync.OwnerPeerIndex;
272 
273  return _localPeerIndex;
274  }
275 
279  public static int GetOwner (Component component)
280  {
281  if (component == null)
282  return -1;
283 
284  return GetOwner(component.gameObject);
285  }
286 
290  public static bool IsLocal (GameObject go)
291  {
292  return GetOwner(go) == _localPeerIndex;
293  }
294 
298  public static bool IsLocal (Component component)
299  {
300  return IsLocal(component.gameObject);
301  }
302 
306  public static bool IsLocal (int objectIndex)
307  {
308  var go = GetObject(objectIndex);
309 
310  if (go == null)
311  return false;
312 
313  return IsLocal(go);
314  }
315 
319  public static bool IsLocalPeerIndex (int peerIndex)
320  {
321  return peerIndex == _localPeerIndex;
322  }
323 
327  public static bool IsServerPeerIndex (int peerIndex)
328  {
329  return peerIndex == ServerPeerIndex;
330  }
331 
335  public static bool IsClientPeerIndex (int peerIndex)
336  {
337  return peerIndex != ServerPeerIndex;
338  }
339 
343  public static bool IsServerOwned (GameObject go)
344  {
345  return GetOwner(go) == Sync.ServerPeerIndex;
346  }
347 
351  public static bool IsServerOwned (Component component)
352  {
353  return IsServerOwned(component.gameObject);
354  }
355 
359  public static bool IsClientOwned (GameObject go)
360  {
361  return !IsServerOwned(go);
362  }
363 
367  public static bool IsClientOwned (Component component)
368  {
369  return IsClientOwned(component.gameObject);
370  }
371 
375  public static GameObject[] GetPeerObjects (int peerIndex)
376  {
377  var gos = new List<GameObject>();
378 
379  foreach (var sync in _syncedObjects.Values)
380  {
381  if (sync == null)
382  continue;
383 
384  if (sync._ownerPeerIndex == peerIndex)
385  gos.Add(sync.gameObject);
386  }
387 
388  return gos.ToArray();
389  }
390 
394  public static GameObject[] GetLocalObjects ()
395  {
396  return GetPeerObjects(_localPeerIndex);
397  }
398 
402  public static GameObject GetPeerObject (int peerIndex)
403  {
404  foreach (var sync in _syncedObjects.Values)
405  {
406  if (sync == null)
407  continue;
408 
409  if (sync._ownerPeerIndex == peerIndex)
410  return sync.gameObject;
411  }
412 
413  return null;
414  }
415 
419  public static GameObject GetLocalObject ()
420  {
421  return GetPeerObject(_localPeerIndex);
422  }
423 
428  public static T[] GetPeerObjects<T> (int peerIndex) where T : Component
429  {
430  var components = new List<T>();
431 
432  foreach (var sync in _syncedObjects.Values)
433  {
434  if (sync == null)
435  continue;
436 
437  if (sync._ownerPeerIndex == peerIndex)
438  {
439  T component = sync.GetComponent<T>();
440 
441  if (component != null)
442  components.Add(component);
443  }
444  }
445 
446  return components.ToArray();
447  }
448 
455  public static T[] GetLocalObjects<T> () where T : Component
456  {
457  return GetPeerObjects<T>(_localPeerIndex);
458  }
459 
464  public static T GetPeerObject<T> (int peerIndex) where T : Component
465  {
466  foreach (var sync in _syncedObjects.Values)
467  {
468  if (sync == null)
469  continue;
470 
471  if (sync._ownerPeerIndex == peerIndex)
472  {
473  T component = sync.GetComponent<T>();
474 
475  if (component != null)
476  return component;
477  }
478  }
479 
480  return null;
481  }
482 
486  public static T GetLocalObject<T> () where T : Component
487  {
488  return GetPeerObject<T>(_localPeerIndex);
489  }
490 
499  public static GameObject Spawn (string prefabId, Vector3 position,
500  int ownerPeerIndex = 0, UJeli details = null)
501  {
502  var prefab = Resources.Load<GameObject>(prefabId);
503 
504  if (prefab == null)
505  return null;
506 
507  return Spawn(prefab, position, ownerPeerIndex, details);
508  }
509 
518  public static GameObject Spawn (GameObject prefab, Vector3 position,
519  int ownerPeerIndex = 0, UJeli details = null)
520  {
521  return Spawn(prefab, position, Vector3.zero, ownerPeerIndex, details);
522  }
523 
533  public static GameObject Spawn (string prefabId, Vector3 position, Vector3 direction,
534  int ownerPeerIndex = 0, UJeli details = null)
535  {
536  var prefab = Resources.Load<GameObject>(prefabId);
537 
538  if (prefab == null)
539  return null;
540 
541  return Spawn(prefab, position, direction, ownerPeerIndex, details);
542  }
543 
553  public static GameObject Spawn (GameObject prefab, Vector3 position, Vector3 direction,
554  int ownerPeerIndex = 0, UJeli details = null)
555  {
556  if (_isMapUnsyncing)
557  return null;
558 
559  if (prefab.GetComponent<Sync>() == null)
560  return null;
561 
562  if (details == null)
563  details = new UJeli();
564 
565  UJeli detailsTemplate = null;
566 
567  if (_spawnDetailsTemplates.TryGetValue(prefab.name, out detailsTemplate))
568  {
569  foreach (var detailsTemplateNode in detailsTemplate.Children)
570  {
571  if (!details.HasChild(detailsTemplateNode.Name))
572  details.AddChild(detailsTemplateNode.Clone());
573  }
574  }
575 
576  var spawnInfo = new SpawnInfo()
577  {
578  Prefab = prefab,
579  Position = position,
580  Direction = direction,
581  OwnerPeerIndex = ownerPeerIndex,
582  Details = details
583  };
584 
585  var go = SpawnShell(prefab, position);
586  var sync = go.GetComponent<Sync>();
587  sync._spawnInfo = spawnInfo;
588 
589  if (direction != Vector3.zero)
590  go.transform.SetDirection(direction);
591 
592  SetObjectOwner(sync, ownerPeerIndex);
593 
594  if (_isServer)
595  {
596  _nextObjectIndex++;
597  SyncObject(sync, _nextObjectIndex, true);
598 
599  if (PropagateSpawnDown != null)
600  PropagateSpawnDown(0, 0, sync._objectIndex, spawnInfo);
601  }
602  else if (_isClient)
603  {
604  if (PropagateSpawnUp != null)
605  PropagateSpawnUp(_nextSpawnRequestIndex, spawnInfo);
606 
607  _requestedObjects.Add(_nextSpawnRequestIndex, sync);
608 
609  _nextSpawnRequestIndex++;
610  }
611 
612  return go;
613  }
614 
623  public static GameObject SpawnLocal (string prefabId, Vector3 position, UJeli details = null)
624  {
625  var prefab = Resources.Load<GameObject>(prefabId);
626 
627  if (prefab == null)
628  return null;
629 
630  return SpawnLocal(prefab, position, details);
631  }
632 
641  public static GameObject SpawnLocal (GameObject prefab, Vector3 position, UJeli details = null)
642  {
643  return SpawnLocal(prefab, position, Vector3.zero, details);
644  }
645 
655  public static GameObject SpawnLocal (string prefabId, Vector3 position, Vector3 direction, UJeli details = null)
656  {
657  var prefab = Resources.Load<GameObject>(prefabId);
658 
659  if (prefab == null)
660  return null;
661 
662  return SpawnLocal(prefab, position, direction, details);
663  }
664 
674  public static GameObject SpawnLocal (GameObject prefab, Vector3 position, Vector3 direction, UJeli details = null)
675  {
676  if (_isMapUnsyncing)
677  return null;
678 
679  var go = SpawnShell(prefab, position);
680 
681  if (direction != Vector3.zero)
682  go.transform.SetDirection(direction);
683 
684  if (go.rigidbody != null && !go.rigidbody.isKinematic && details.HasChild("Velocity"))
685  {
686  go.rigidbody.velocity = details["Velocity"].Vector3Value;
687  }
688 
689  PreAssignValues(go, details);
690  NotifySpawn(go, details, true);
691 
692  return go;
693  }
694 
701  public static void Teleport (GameObject go, Vector3 target)
702  {
703  Sync sync = go.GetComponent<Sync>();
704 
705  if (sync != null)
706  {
707  if (!sync.SyncPosition)
708  return;
709 
710  // Teleportation may only be performed by the object's owner or the server.
711  if (!_isServer && sync._ownerPeerIndex != _localPeerIndex)
712  return;
713 
714  var requestMsg = new GameMessage();
715  requestMsg.Write(false);
716  requestMsg.Write(target);
717 
718  sync._teleports[0] = requestMsg;
719  }
720  else go.transform.position = target;
721  }
722 
729  public static void Teleport (Component component, Vector3 target)
730  {
731  Teleport(component.gameObject, target);
732  }
733 
740  public static void SendEnabledMessage (GameObject go, string message, params object[] args)
741  {
742  foreach (var mb in go.GetComponentsInChildren<MonoBehaviour>())
743  {
744  if (!mb.enabled)
745  continue;
746 
747  var mbType = mb.GetType();
748 
749  var msgHandler = mbType.GetMethod(message,
750  BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
751 
752  if (msgHandler != null)
753  {
754  var numParams = msgHandler.GetParameters().Length;
755 
756  if (args.Length > numParams)
757  msgHandler.Invoke(mb, args.Take(numParams).ToArray());
758  else if (args.Length == numParams)
759  msgHandler.Invoke(mb, args);
760  }
761  }
762  }
763 
770  public static void SendEnabledMessage (Component component, string message, params object[] args)
771  {
772  SendEnabledMessage(component.gameObject, message, args);
773  }
774 
779  public static void Despawn (GameObject go)
780  {
781  if (go == null)
782  return;
783 
784  var sync = go.GetComponent<Sync>();
785 
786  if (sync == null)
787  {
788  NotifyDespawn(go);
789  Destroy(go);
790  return;
791  }
792 
793  if (_isServer)
794  {
795  if (PropagateDespawnDown != null)
796  PropagateDespawnDown(0, sync._objectIndex);
797  }
798  else if (_isClient)
799  {
800  if (sync._objectIndex != -1)
801  {
802  if (PropagateDespawnUp != null)
803  PropagateDespawnUp(sync._objectIndex);
804  }
805  else
806  {
807  foreach (int spawnRequestIndex in _requestedObjects.Keys.ToArray())
808  {
809  if (_requestedObjects[spawnRequestIndex] == go)
810  _requestedObjects.Remove(spawnRequestIndex);
811  }
812  }
813  }
814 
815  NotifyDespawn(go);
816  UnsyncObject(sync);
817  Destroy(go);
818  }
819 
824  public static void Despawn (Component component)
825  {
826  Despawn(component.gameObject);
827  }
828 
832  public static void DespawnAll ()
833  {
834  foreach (var sync in _syncedObjects.Values.ToArray())
835  {
836  if (sync == null)
837  continue;
838 
839  Despawn(sync.gameObject);
840  }
841 
842  foreach (var sync in _syncingObjects.Values.ToArray())
843  {
844  if (sync == null)
845  continue;
846 
847  Despawn(sync.gameObject);
848  }
849  }
850 
854  public static void DespawnPeerObjects (int peerIndex)
855  {
856  foreach (var sync in _syncedObjects.Values.ToArray())
857  {
858  if (sync == null)
859  continue;
860 
861  if (sync._ownerPeerIndex == peerIndex)
862  Despawn(sync.gameObject);
863  }
864 
865  foreach (var sync in _syncingObjects.Values.ToArray())
866  {
867  if (sync == null)
868  continue;
869 
870  if (sync._ownerPeerIndex == peerIndex)
871  Despawn(sync.gameObject);
872  }
873  }
874 
878  public static Timeline<T> CreateDiscreteState<T> ()
879  {
880  var timeline = new Timeline<T>();
881  timeline.CacheSize = 1;
882  timeline.MaxEntries = 3;
883  timeline.IgnoreCachedEvents = false;
884  timeline.DeliveryMode = DeliveryMode.ReliableOrdered;
885 
886  SetEnumTimelineEncoding<T>(timeline);
887 
888  return timeline;
889  }
890 
894  public static Timeline<T> CreateContinuousState<T> (float sendRate = 10f)
895  {
896  return CreateContinuousState<T>(TimelineUtils.BuildRateFilter<T>(() => sendRate));
897  }
898 
902  public static Timeline<T> CreateContinuousState<T> (TimelineSendFilter<T> sendFilter)
903  {
904  var timeline = new Timeline<T>()
905  {
906  CacheSize = 3,
907  MaxEntries = 3,
908  IgnoreCachedEvents = false,
909  DeliveryMode = DeliveryMode.Unreliable
910  };
911 
912  if (sendFilter != null)
913  timeline.AddSendFilter(sendFilter);
914 
915  SetEnumTimelineEncoding<T>(timeline);
916 
917  return timeline;
918  }
919 
923  public static Timeline<T> CreateEvent<T> ()
924  {
925  var timeline = new Timeline<T>();
926  timeline.CacheSize = 0;
927  timeline.MaxEntries = 3;
928  timeline.IgnoreCachedEvents = true;
929  timeline.DeliveryMode = DeliveryMode.ReliableOrdered;
930 
931  SetEnumTimelineEncoding<T>(timeline);
932 
933  return timeline;
934  }
935 
939  public static void SetEnumTimelineEncoding<T> (Timeline<T> timeline)
940  {
941  var timelineValueType = typeof(T);
942 
943  if (timelineValueType.IsEnum)
944  {
945  var underlyingType = Enum.GetUnderlyingType(timelineValueType);
946 
947  if (underlyingType == typeof(byte))
948  {
949  timeline.Encode = UTimelineUtils.EncodeByteEnum<T>;
950  timeline.Decode = UTimelineUtils.DecodeByteEnum<T>;
951  }
952  else if (underlyingType == typeof(short))
953  {
954  timeline.Encode = UTimelineUtils.EncodeShortEnum<T>;
955  timeline.Decode = UTimelineUtils.DecodeShortEnum<T>;
956  }
957  else if (underlyingType == typeof(int))
958  {
959  timeline.Encode = UTimelineUtils.EncodeIntEnum<T>;
960  timeline.Decode = UTimelineUtils.DecodeIntEnum<T>;
961  }
962  else
963  {
964  timeline.Encode = UTimelineUtils.EncodeEnumByName<T>;
965  timeline.Decode = UTimelineUtils.DecodeEnumByName<T>;
966  }
967  }
968  }
969 }
static int[] ObjectIndices
Gets an array containing the object indices of every synchronized object.
Definition: Sync.Static.cs:78
static T GetPeerObject< T >(int peerIndex)
Gets the first component of type T attached to an object that is owned by the peer with the given pee...
Definition: Sync.Static.cs:464
static bool IsClient
Gets whether or not this peer is a client.
Definition: Sync.Static.cs:61
static void Despawn(GameObject go)
Despawn the given object.
Definition: Sync.Static.cs:779
static bool IsClientOwned(GameObject go)
Gets whether or not the given object is owned by a client.
Definition: Sync.Static.cs:359
static void DespawnPeerObjects(int peerIndex)
Despawn all objects owned by the peer with the given peer index.
Definition: Sync.Static.cs:854
static GameObject Spawn(string prefabId, Vector3 position, Vector3 direction, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
Definition: Sync.Static.cs:533
static bool IsServerOwned(GameObject go)
Gets whether or not the given object is owned by the server.
Definition: Sync.Static.cs:343
static GameObject GetLocalObject()
Gets the first object that is owned by the local peer.
Definition: Sync.Static.cs:419
static T[] GetLocalObjects< T >()
Gets an array containing all components of type T attached to objects that are owned by the local pee...
Definition: Sync.Static.cs:455
static bool ObjectExists(GameObject go)
Checks whether or not the given object exists on the network.
Definition: Sync.Static.cs:174
static SpawnInfo GetSpawnInfo(GameObject go)
Gets the spawn-time information of a given object.
Definition: Sync.Static.cs:215
static void DespawnAll()
Despawn everything! BAHAHAHAHA!
Definition: Sync.Static.cs:832
static bool IsLocal(Component component)
Gets whether or not the GameObject of the given component is owned by the local peer.
Definition: Sync.Static.cs:298
static GameObject[] GetLocalObjects()
Gets an array containing all the objects owned by the local peer.
Definition: Sync.Static.cs:394
static UJeli GetSpawnDetails(GameObject go)
Gets the spawn details of a given object.
Definition: Sync.Static.cs:241
static int ServerPeerIndex
Gets the peer index of the server. This is always 0.
Definition: Sync.Static.cs:45
static bool IsServer
Gets whether or not this peer is the server.
Definition: Sync.Static.cs:53
static int GetOwner(Component component)
Gets the owner peer index of the GameObject of a given component.
Definition: Sync.Static.cs:279
static void SetEnumTimelineEncoding< T >(Timeline< T > timeline)
Automatically set the most efficient encoder and decoder for a timeline with Enum values...
Definition: Sync.Static.cs:939
static bool IsMapSynced
Gets whether or not the map on this peer is synced to the canonical version on the network...
Definition: Sync.Static.cs:70
static void Despawn(Component component)
Despawn the GameObject of the given component.
Definition: Sync.Static.cs:824
static GameObject Spawn(string prefabId, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
Definition: Sync.Static.cs:499
static float MaxSmoothDistance
This is the distance between the current and correct positions of an object beyond which smooth corre...
Definition: Sync.Static.cs:110
static void SendEnabledMessage(GameObject go, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject.
Definition: Sync.Static.cs:740
static GameObject Spawn(GameObject prefab, Vector3 position, Vector3 direction, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
Definition: Sync.Static.cs:553
static bool IsLocal(GameObject go)
Gets whether or not the given object is owned by the local peer.
Definition: Sync.Static.cs:290
static GameObject SpawnLocal(GameObject prefab, Vector3 position, Vector3 direction, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:674
static void Teleport(GameObject go, Vector3 target)
Teleport an object to a target position.
Definition: Sync.Static.cs:701
static T[] GetPeerObjects< T >(int peerIndex)
Gets an array containing all components of type T attached to objects that are owned by the peer with...
Definition: Sync.Static.cs:428
static float MaxErrorTime
This is the length of time an object must be in the error state before a positional snap happens...
Definition: Sync.Static.cs:126
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
Definition: Sync.Static.cs:263
static bool IsLocalPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the local peer.
Definition: Sync.Static.cs:319
static GameObject GetPeerObject(int peerIndex)
Gets the first object that is owned by the peer with the given peer index.
Definition: Sync.Static.cs:402
static bool IsServerPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the server.
Definition: Sync.Static.cs:327
static TimelineSynchronizer TimelineSynchronizer
Gets the Janus timeline synchronizer if this is the server.
Definition: Sync.Static.cs:29
static SpawnInfo GetSpawnInfo(Component component)
Gets the spawn-time information of the GameObject of a given component.
Definition: Sync.Static.cs:232
static bool IsClientOwned(Component component)
Gets whether or not the GameObject of the given component is owned by a client.
Definition: Sync.Static.cs:367
static GameObject SpawnLocal(string prefabId, Vector3 position, Vector3 direction, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:655
static GameObject[] Objects
Gets an array containing all synchronized objects.
Definition: Sync.Static.cs:86
static float ErrorDistance
This is the distance between the current and correct positions of an object beyond which the position...
Definition: Sync.Static.cs:122
static string[] SpawnablePrefabIDs
Gets an array containing the IDs of all available spawnable prefabs.
Definition: Sync.Static.cs:94
static GameObject Spawn(GameObject prefab, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
Definition: Sync.Static.cs:518
static Timeline< T > CreateContinuousState< T >(float sendRate=10f)
Utility method for creating a Janus timeline with preset properties suitable for synchronizing contin...
Definition: Sync.Static.cs:894
static int GetObjectIndex(GameObject go)
Gets the object index of a given object.
Definition: Sync.Static.cs:190
static void SendEnabledMessage(Component component, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject of the given component. ...
Definition: Sync.Static.cs:770
static GameObject[] GetPeerObjects(int peerIndex)
Gets an array containing all the objects owned by the peer with the given peer index.
Definition: Sync.Static.cs:375
static bool IsClientPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of a client.
Definition: Sync.Static.cs:335
static bool IsServerOwned(Component component)
Gets whether or not the GameObject of the given component is owned by the server. ...
Definition: Sync.Static.cs:351
A class for serializing game data into a stream for propagation between objects and peers...
Definition: GameMessage.cs:14
static float MinSmoothDistance
This is the distance between the current and correct positions of an object below which smooth correc...
Definition: Sync.Static.cs:115
static bool ObjectExists(int objectIndex)
Checks whether or not the object with the given object index exists on the network.
Definition: Sync.Static.cs:165
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
static GameObject GetObject(int objectIndex)
Get an object by its object index.
Definition: Sync.Static.cs:143
static UJeli GetSpawnDetails(Component component)
Gets the spawn details of the GameObject of a given component.
Definition: Sync.Static.cs:255
static bool IsLocal(int objectIndex)
Gets whether or not the object with the given object index is owned by the local peer.
Definition: Sync.Static.cs:306
static Timeline< T > CreateDiscreteState< T >()
Utility method for creating a Janus timeline with preset properties suitable for synchronizing discre...
Definition: Sync.Static.cs:878
static void Teleport(Component component, Vector3 target)
Teleport the GameObject of a given component to a target position.
Definition: Sync.Static.cs:729
static Timeline< T > CreateEvent< T >()
Utility method for creating a Janus timeline with preset properties suitable for broadcasting events...
Definition: Sync.Static.cs:923
static int LocalPeerIndex
Gets the peer index of this peer.
Definition: Sync.Static.cs:37
Unity version of Jeli markup class.
Definition: UJeli.cs:10
static TimelineManager TimelineManager
Gets the Janus timeline manager on this peer.
Definition: Sync.Static.cs:21
static int GetObjectIndex(Component component)
Gets the object index of the GameObject of a given component.
Definition: Sync.Static.cs:206
static GameObject[] SpawnablePrefabs
Gets an array containing all available spawnable prefabs.
Definition: Sync.Static.cs:102
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13
static T GetLocalObject< T >()
Gets the first component of type T attached to an object that is owned by the local peer...
Definition: Sync.Static.cs:486
static GameObject SpawnLocal(GameObject prefab, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:641
static GameObject GetSpawnablePrefab(string prefabId)
Get a spawnable prefab by ID.
Definition: Sync.Static.cs:133
The spawn-time information of a spawned object.
Definition: SpawnInfo.cs:13