4 using System.Collections.Generic;
15 public partial class Sync : MonoBehaviour
22 get {
return _timelineManager; }
30 get {
return _timelineSyncer; }
38 get {
return _localPeerIndex; }
54 get {
return _isServer; }
62 get {
return _isClient; }
71 get {
return _isMapSynced; }
79 get {
return _syncedObjects.Keys.ToArray(); }
85 public static GameObject[]
Objects
87 get {
return (from sync in _syncedObjects.Values select sync.gameObject).ToArray(); }
95 get {
return _spawnablePrefabs.Keys.ToArray(); }
103 get {
return _spawnablePrefabs.Values.ToArray(); }
135 GameObject prefab = null;
136 _spawnablePrefabs.TryGetValue(prefabId, out prefab);
147 if (_syncedObjects.TryGetValue(objectIndex, out sync))
150 return sync.gameObject;
153 if (_syncingObjects.TryGetValue(objectIndex, out sync))
156 return sync.gameObject;
167 return _syncedObjects.ContainsKey(objectIndex) ||
168 _syncingObjects.ContainsKey(objectIndex);
179 var sync = go.GetComponent<
Sync>();
195 Sync sync = go.GetComponent<
Sync>();
198 return sync.ObjectIndex;
220 Sync sync = go.GetComponent<
Sync>();
223 return sync.SpawnInfo;
245 if (spawnInfo != null)
246 return spawnInfo.Details;
268 Sync sync = go.GetComponent<
Sync>();
271 return sync.OwnerPeerIndex;
273 return _localPeerIndex;
281 if (component == null)
284 return GetOwner(component.gameObject);
292 return GetOwner(go) == _localPeerIndex;
298 public static bool IsLocal (Component component)
300 return IsLocal(component.gameObject);
321 return peerIndex == _localPeerIndex;
377 var gos =
new List<GameObject>();
379 foreach (var sync
in _syncedObjects.Values)
384 if (sync._ownerPeerIndex == peerIndex)
385 gos.Add(sync.gameObject);
388 return gos.ToArray();
404 foreach (var sync
in _syncedObjects.Values)
409 if (sync._ownerPeerIndex == peerIndex)
410 return sync.gameObject;
430 var components =
new List<T>();
432 foreach (var sync
in _syncedObjects.Values)
437 if (sync._ownerPeerIndex == peerIndex)
439 T component = sync.GetComponent<T>();
441 if (component != null)
442 components.Add(component);
446 return components.ToArray();
466 foreach (var sync
in _syncedObjects.Values)
471 if (sync._ownerPeerIndex == peerIndex)
473 T component = sync.GetComponent<T>();
475 if (component != null)
499 public static GameObject
Spawn (
string prefabId, Vector3 position,
500 int ownerPeerIndex = 0,
UJeli details = null)
502 var prefab = Resources.Load<GameObject>(prefabId);
507 return Spawn(prefab, position, ownerPeerIndex, details);
518 public static GameObject
Spawn (GameObject prefab, Vector3 position,
519 int ownerPeerIndex = 0,
UJeli details = null)
521 return Spawn(prefab, position, Vector3.zero, ownerPeerIndex, details);
533 public static GameObject
Spawn (
string prefabId, Vector3 position, Vector3 direction,
534 int ownerPeerIndex = 0,
UJeli details = null)
536 var prefab = Resources.Load<GameObject>(prefabId);
541 return Spawn(prefab, position, direction, ownerPeerIndex, details);
553 public static GameObject
Spawn (GameObject prefab, Vector3 position, Vector3 direction,
554 int ownerPeerIndex = 0,
UJeli details = null)
559 if (prefab.GetComponent<
Sync>() == null)
563 details =
new UJeli();
565 UJeli detailsTemplate = null;
567 if (_spawnDetailsTemplates.TryGetValue(prefab.name, out detailsTemplate))
569 foreach (var detailsTemplateNode
in detailsTemplate.Children)
571 if (!details.HasChild(detailsTemplateNode.Name))
572 details.AddChild(detailsTemplateNode.Clone());
580 Direction = direction,
581 OwnerPeerIndex = ownerPeerIndex,
585 var go = SpawnShell(prefab, position);
586 var sync = go.GetComponent<
Sync>();
587 sync._spawnInfo = spawnInfo;
589 if (direction != Vector3.zero)
590 go.transform.SetDirection(direction);
592 SetObjectOwner(sync, ownerPeerIndex);
597 SyncObject(sync, _nextObjectIndex,
true);
599 if (PropagateSpawnDown != null)
600 PropagateSpawnDown(0, 0, sync._objectIndex, spawnInfo);
604 if (PropagateSpawnUp != null)
605 PropagateSpawnUp(_nextSpawnRequestIndex, spawnInfo);
607 _requestedObjects.Add(_nextSpawnRequestIndex, sync);
609 _nextSpawnRequestIndex++;
623 public static GameObject
SpawnLocal (
string prefabId, Vector3 position,
UJeli details = null)
625 var prefab = Resources.Load<GameObject>(prefabId);
641 public static GameObject
SpawnLocal (GameObject prefab, Vector3 position,
UJeli details = null)
643 return SpawnLocal(prefab, position, Vector3.zero, details);
655 public static GameObject
SpawnLocal (
string prefabId, Vector3 position, Vector3 direction,
UJeli details = null)
657 var prefab = Resources.Load<GameObject>(prefabId);
662 return SpawnLocal(prefab, position, direction, details);
674 public static GameObject
SpawnLocal (GameObject prefab, Vector3 position, Vector3 direction,
UJeli details = null)
679 var go = SpawnShell(prefab, position);
681 if (direction != Vector3.zero)
682 go.transform.SetDirection(direction);
684 if (go.rigidbody != null && !go.rigidbody.isKinematic && details.HasChild(
"Velocity"))
686 go.rigidbody.velocity = details[
"Velocity"].Vector3Value;
689 PreAssignValues(go, details);
690 NotifySpawn(go, details,
true);
701 public static void Teleport (GameObject go, Vector3 target)
703 Sync sync = go.GetComponent<
Sync>();
707 if (!sync.SyncPosition)
711 if (!_isServer && sync._ownerPeerIndex != _localPeerIndex)
715 requestMsg.Write(
false);
716 requestMsg.Write(target);
718 sync._teleports[0] = requestMsg;
720 else go.transform.position = target;
729 public static void Teleport (Component component, Vector3 target)
731 Teleport(component.gameObject, target);
742 foreach (var mb
in go.GetComponentsInChildren<MonoBehaviour>())
747 var mbType = mb.GetType();
749 var msgHandler = mbType.GetMethod(message,
750 BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
752 if (msgHandler != null)
754 var numParams = msgHandler.GetParameters().Length;
756 if (args.Length > numParams)
757 msgHandler.Invoke(mb, args.Take(numParams).ToArray());
758 else if (args.Length == numParams)
759 msgHandler.Invoke(mb, args);
784 var sync = go.GetComponent<
Sync>();
795 if (PropagateDespawnDown != null)
796 PropagateDespawnDown(0, sync._objectIndex);
800 if (sync._objectIndex != -1)
802 if (PropagateDespawnUp != null)
803 PropagateDespawnUp(sync._objectIndex);
807 foreach (
int spawnRequestIndex
in _requestedObjects.Keys.ToArray())
809 if (_requestedObjects[spawnRequestIndex] == go)
810 _requestedObjects.Remove(spawnRequestIndex);
824 public static void Despawn (Component component)
834 foreach (var sync
in _syncedObjects.Values.ToArray())
842 foreach (var sync
in _syncingObjects.Values.ToArray())
856 foreach (var sync
in _syncedObjects.Values.ToArray())
861 if (sync._ownerPeerIndex == peerIndex)
865 foreach (var sync
in _syncingObjects.Values.ToArray())
870 if (sync._ownerPeerIndex == peerIndex)
880 var timeline =
new Timeline<T>();
881 timeline.CacheSize = 1;
882 timeline.MaxEntries = 3;
883 timeline.IgnoreCachedEvents =
false;
884 timeline.DeliveryMode = DeliveryMode.ReliableOrdered;
904 var timeline =
new Timeline<T>()
908 IgnoreCachedEvents =
false,
909 DeliveryMode = DeliveryMode.Unreliable
912 if (sendFilter != null)
913 timeline.AddSendFilter(sendFilter);
925 var timeline =
new Timeline<T>();
926 timeline.CacheSize = 0;
927 timeline.MaxEntries = 3;
928 timeline.IgnoreCachedEvents =
true;
929 timeline.DeliveryMode = DeliveryMode.ReliableOrdered;
941 var timelineValueType = typeof(T);
943 if (timelineValueType.IsEnum)
945 var underlyingType = Enum.GetUnderlyingType(timelineValueType);
947 if (underlyingType == typeof(byte))
949 timeline.Encode = UTimelineUtils.EncodeByteEnum<T>;
950 timeline.Decode = UTimelineUtils.DecodeByteEnum<T>;
952 else if (underlyingType == typeof(
short))
954 timeline.Encode = UTimelineUtils.EncodeShortEnum<T>;
955 timeline.Decode = UTimelineUtils.DecodeShortEnum<T>;
957 else if (underlyingType == typeof(
int))
959 timeline.Encode = UTimelineUtils.EncodeIntEnum<T>;
960 timeline.Decode = UTimelineUtils.DecodeIntEnum<T>;
964 timeline.Encode = UTimelineUtils.EncodeEnumByName<T>;
965 timeline.Decode = UTimelineUtils.DecodeEnumByName<T>;
static int[] ObjectIndices
Gets an array containing the object indices of every synchronized object.
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...
static bool IsClient
Gets whether or not this peer is a client.
static void Despawn(GameObject go)
Despawn the given object.
static bool IsClientOwned(GameObject go)
Gets whether or not the given object is owned by a client.
static void DespawnPeerObjects(int peerIndex)
Despawn all objects owned by the peer with the given peer index.
static GameObject Spawn(string prefabId, Vector3 position, Vector3 direction, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
static bool IsServerOwned(GameObject go)
Gets whether or not the given object is owned by the server.
static GameObject GetLocalObject()
Gets the first object that is owned by the local peer.
static T[] GetLocalObjects< T >()
Gets an array containing all components of type T attached to objects that are owned by the local pee...
static bool ObjectExists(GameObject go)
Checks whether or not the given object exists on the network.
static SpawnInfo GetSpawnInfo(GameObject go)
Gets the spawn-time information of a given object.
static void DespawnAll()
Despawn everything! BAHAHAHAHA!
static bool IsLocal(Component component)
Gets whether or not the GameObject of the given component is owned by the local peer.
static GameObject[] GetLocalObjects()
Gets an array containing all the objects owned by the local peer.
static UJeli GetSpawnDetails(GameObject go)
Gets the spawn details of a given object.
static int ServerPeerIndex
Gets the peer index of the server. This is always 0.
static bool IsServer
Gets whether or not this peer is the server.
static int GetOwner(Component component)
Gets the owner peer index of the GameObject of a given component.
static void SetEnumTimelineEncoding< T >(Timeline< T > timeline)
Automatically set the most efficient encoder and decoder for a timeline with Enum values...
static bool IsMapSynced
Gets whether or not the map on this peer is synced to the canonical version on the network...
static void Despawn(Component component)
Despawn the GameObject of the given component.
static GameObject Spawn(string prefabId, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
static float MaxSmoothDistance
This is the distance between the current and correct positions of an object beyond which smooth corre...
static void SendEnabledMessage(GameObject go, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject.
static GameObject Spawn(GameObject prefab, Vector3 position, Vector3 direction, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
static bool IsLocal(GameObject go)
Gets whether or not the given object is owned by the local peer.
static GameObject SpawnLocal(GameObject prefab, Vector3 position, Vector3 direction, UJeli details=null)
Spawn an object locally without propagating onto the network.
static void Teleport(GameObject go, Vector3 target)
Teleport an object to a target position.
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...
static float MaxErrorTime
This is the length of time an object must be in the error state before a positional snap happens...
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
static bool IsLocalPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the local peer.
static GameObject GetPeerObject(int peerIndex)
Gets the first object that is owned by the peer with the given peer index.
static bool IsServerPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the server.
static TimelineSynchronizer TimelineSynchronizer
Gets the Janus timeline synchronizer if this is the server.
static SpawnInfo GetSpawnInfo(Component component)
Gets the spawn-time information of the GameObject of a given component.
static bool IsClientOwned(Component component)
Gets whether or not the GameObject of the given component is owned by a client.
static GameObject SpawnLocal(string prefabId, Vector3 position, Vector3 direction, UJeli details=null)
Spawn an object locally without propagating onto the network.
static GameObject[] Objects
Gets an array containing all synchronized objects.
static float ErrorDistance
This is the distance between the current and correct positions of an object beyond which the position...
static string[] SpawnablePrefabIDs
Gets an array containing the IDs of all available spawnable prefabs.
static GameObject Spawn(GameObject prefab, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
static Timeline< T > CreateContinuousState< T >(float sendRate=10f)
Utility method for creating a Janus timeline with preset properties suitable for synchronizing contin...
static int GetObjectIndex(GameObject go)
Gets the object index of a given object.
static void SendEnabledMessage(Component component, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject of the given component. ...
static GameObject[] GetPeerObjects(int peerIndex)
Gets an array containing all the objects owned by the peer with the given peer index.
static bool IsClientPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of a client.
static bool IsServerOwned(Component component)
Gets whether or not the GameObject of the given component is owned by the server. ...
A class for serializing game data into a stream for propagation between objects and peers...
static float MinSmoothDistance
This is the distance between the current and correct positions of an object below which smooth correc...
static bool ObjectExists(int objectIndex)
Checks whether or not the object with the given object index exists on the network.
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
static GameObject GetObject(int objectIndex)
Get an object by its object index.
static UJeli GetSpawnDetails(Component component)
Gets the spawn details of the GameObject of a given component.
static bool IsLocal(int objectIndex)
Gets whether or not the object with the given object index is owned by the local peer.
static Timeline< T > CreateDiscreteState< T >()
Utility method for creating a Janus timeline with preset properties suitable for synchronizing discre...
static void Teleport(Component component, Vector3 target)
Teleport the GameObject of a given component to a target position.
static Timeline< T > CreateEvent< T >()
Utility method for creating a Janus timeline with preset properties suitable for broadcasting events...
static int LocalPeerIndex
Gets the peer index of this peer.
Unity version of Jeli markup class.
static TimelineManager TimelineManager
Gets the Janus timeline manager on this peer.
static int GetObjectIndex(Component component)
Gets the object index of the GameObject of a given component.
static GameObject[] SpawnablePrefabs
Gets an array containing all available spawnable prefabs.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
static T GetLocalObject< T >()
Gets the first component of type T attached to an object that is owned by the local peer...
static GameObject SpawnLocal(GameObject prefab, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
static GameObject GetSpawnablePrefab(string prefabId)
Get a spawnable prefab by ID.
The spawn-time information of a spawned object.