Liberi
An exergame built for kids with CP!
ObjectSpawner.cs
1 using UnityEngine;
2 using Janus;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 
10 [AddComponentMenu("Liberi/Object Spawner")]
11 [RequireComponent(typeof(AudioSource))]
12 public class ObjectSpawner : MonoBehaviour
13 {
14  public GameObject[] SpawnedObjects
15  {
16  get { return _spawnedObjects.Where(obj => obj != null).ToArray(); }
17  }
18 
19  public GameObject ObjectPrefab;
20  public GameObject AlternatePrefab;
21  [Range (0, 1)] public float AlternatePrefabChance;
22  public GameObject SpawnEffectPrefab;
23  public AudioClip SpawnSound;
24  public UJeli ObjectSpawnDetails;
25  public Texture2D GizmoTexture;
26  public bool SpawnImmediately;
27 
28  Timeline<bool> _spawnEvents;
29  List<GameObject> _spawnedObjects;
30 
31  void Awake ()
32  {
33  _spawnEvents = Sync.CreateEvent<bool>();
34  _spawnedObjects = new List<GameObject>();
35  }
36 
37  void OnDrawGizmos ()
38  {
39  if (GizmoTexture != null)
40  Gizmos.DrawIcon(transform.position, GizmoTexture.name, true);
41  }
42 
43  void OnSpawn ()
44  {
45  if (Game.IsClient)
46  _spawnEvents.EntryPassed += OnSpawnEvent;
47 
48  if (Game.IsServer && SpawnImmediately)
49  SpawnObject();
50  }
51 
52  public GameObject SpawnObject ()
53  {
54  if (Sync.IsServer && ObjectPrefab != null)
55  {
56  GameObject prefab = ObjectPrefab;
57 
58  if (AlternatePrefab != null)
59  prefab = Random.Range(0.0f, 1.0f) > AlternatePrefabChance ? ObjectPrefab : AlternatePrefab;
60 
61  GameObject go = Sync.Spawn(prefab, transform.position, 0, ObjectSpawnDetails);
62  go.transform.rotation = transform.rotation;
63 
64  if (go != null)
65  {
66  go.GetComponent<Sync>().Despawned += OnObjectDespawned;
67  _spawnedObjects.Add(go);
68  _spawnEvents[0] = true;
69  }
70 
71  return go;
72  }
73  else return null;
74  }
75 
76  public void DespawnAllObjects ()
77  {
78  foreach (var mob in _spawnedObjects.ToArray())
79  {
80  if (mob != null)
81  Sync.Despawn(mob);
82  }
83  }
84 
85  void OnObjectDespawned (GameObject go)
86  {
87  _spawnedObjects.Remove(go);
88  }
89 
90  void OnSpawnEvent (Timeline<bool> timeline, TimelineEntry<bool> entry)
91  {
92  if (Sync.IsClient)
93  {
94  if (SpawnEffectPrefab != null)
95  Sync.SpawnLocal(SpawnEffectPrefab, transform.position);
96 
97  if (SpawnSound != null)
98  this.PlayPooledSound(SpawnSound);
99  }
100  }
101 }
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 IsServer
Gets whether or not this peer is the server.
Definition: Sync.Static.cs:53
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 GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
Object spawner.
Unity version of Jeli markup class.
Definition: UJeli.cs:10
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13