Liberi
An exergame built for kids with CP!
Zone.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 using LiberiNet;
7 using Janus;
8 
12 [SerializeField]
13 public class ZonePlayer
14 {
15  public int PeerIndex;
16  public string PlayerID;
18  public GameObject Avatar;
19 
20  public bool IsLocal
21  {
22  get { return Sync.IsLocalPeerIndex(PeerIndex); }
23  }
24 }
25 
29 [RequireComponent(typeof(Sync))]
30 public class Zone : MonoBehaviour
31 {
35  public const float MusicFadeLength = 1f;
36 
40  public static Zone Instance
41  {
42  get { return _instance; }
43  }
44 
48  public ZonePlayer[] Players
49  {
50  get { return _players.ToArray(); }
51  }
52 
56  public ZonePlayer LocalPlayer
57  {
58  get { return _localPlayer; }
59  }
60 
64  public GameObject[] Avatars
65  {
66  get { return _players.Select(p => p.Avatar).ToArray(); }
67  }
68 
72  public GameObject LocalAvatar
73  {
74  get
75  {
76  if (_localPlayer != null)
77  return _localPlayer.Avatar;
78 
79  return null;
80  }
81  }
82 
86  public int[] PlayerPeerIndices
87  {
88  get { return _players.Select(p => p.PeerIndex).ToArray(); }
89  }
90 
94  public string[] PlayerIDs
95  {
96  get { return _players.Select(p => p.PlayerID).ToArray(); }
97  }
98 
103  {
104  get { return _players.Select(p => p.PlayerProfile).ToArray(); }
105  }
106 
110  public string[] PlayerNicknames
111  {
112  get { return _players.Select(p => p.PlayerProfile.Basic.Nickname).ToArray(); }
113  }
114 
118  public int NumPlayers
119  {
120  get { return _players.Count; }
121  }
122 
123  static Zone _instance;
124 
128  public GameObject PlayerAvatarPrefab;
136  public AudioClip ZoneBGM;
137 
138  List<ZonePlayer> _players;
139  ZonePlayer _localPlayer;
140 
141  public string ServerTime
142  {
143  get
144  {
145  if (!_serverStartTime.IsEmpty)
146  return DateTime.ParseExact(_serverStartTime.LastValue, "yyyy-MM-dd HH:mm:ss", System.Globalization.CultureInfo.InvariantCulture).AddSeconds(_serverStartTime.Now).ToString("HH:mm:ss");
147  else
148  return "";
149  }
150  }
151 
152  Timeline<string> _serverStartTime;
153 
154  enum ZoneOperationType : byte
155  {
156  AddPlayer,
157  RemovePlayer,
158  Shutdown
159  }
160 
161  Timeline<GameMessage> _summaries;
162  Timeline<GameMessage> _operations;
163 
164  void Awake ()
165  {
166  _instance = this;
167 
168  _players = new List<ZonePlayer>();
169 
170  _summaries = Sync.CreateEvent<GameMessage>();
171  _operations = Sync.CreateEvent<GameMessage>();
172  _serverStartTime = Sync.CreateDiscreteState<string>();
173  }
174 
175  void OnSpawn ()
176  {
177  if (Game.IsServer)
178  {
179  GameServer.Instance.PlayerSynced += OnPlayerSynced;
180  GameServer.Instance.PlayerLeftServer += OnPlayerLeftServer;
181 
182  _serverStartTime[0] = System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
183  }
184  else if (Game.IsClient)
185  {
186  _summaries.EntryPassed += OnSummaryMessage;
187  MusicPlayer.CrossFade(ZoneBGM);
188  }
189  }
190 
191  void OnDespawn ()
192  {
193  if (Game.IsServer)
194  {
195  GameServer.Instance.PlayerSynced -= OnPlayerSynced;
196  GameServer.Instance.PlayerLeftServer -= OnPlayerLeftServer;
197  }
198  }
199 
200  void OnSummaryMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
201  {
202  var msg = entry.Value;
203 
204  int numPlayers = msg.ReadInt32();
205 
206  for (int i = 0; i < numPlayers; i++)
207  {
208  int peerIndex = msg.ReadInt32();
209  string playerID = msg.ReadString();
210  GameObject avatar = msg.ReadGameObject();
211 
212  var player = new ZonePlayer()
213  {
214  PeerIndex = peerIndex,
215  PlayerID = playerID,
216  Avatar = avatar
217  };
218 
219  if (Sync.IsClientPeerIndex(peerIndex))
220  player.PlayerProfile = Game.GetPlayerProfile(peerIndex);
221 
222  _players.Add(player);
223  }
224 
225  msg.FinishReading();
226 
227  // We only need to ever receive one summary message at the beginning, so unsubscribe from future summaries.
228  // As well, subscribe to operations to allow future incoming updates to the teams and players.
229  _summaries.EntryPassed -= OnSummaryMessage;
230  _operations.EntryPassed += OnOperationMessage;
231  }
232 
233  void OnOperationMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
234  {
235  var msg = entry.Value;
236 
237  var opType = (ZoneOperationType)msg.ReadByte();
238 
239  if (opType == ZoneOperationType.AddPlayer)
240  {
241  int peerIndex = msg.ReadInt32();
242  string playerID = msg.ReadString();
243  GameObject avatar = msg.ReadGameObject();
244 
245  var player = new ZonePlayer()
246  {
247  PeerIndex = peerIndex,
248  PlayerID = playerID,
249  Avatar = avatar
250  };
251 
252  if (Sync.IsClientPeerIndex(peerIndex))
253  player.PlayerProfile = Game.GetPlayerProfile(peerIndex);
254 
255  _players.Add(player);
256 
257  if (player.IsLocal)
258  _localPlayer = player;
259  }
260  else if (opType == ZoneOperationType.RemovePlayer)
261  {
262  int playerIndex = msg.ReadInt32();
263 
264  _players.RemoveAll(i => i.PeerIndex == playerIndex);
265  }
266  else if (opType == ZoneOperationType.Shutdown)
267  {
268  //TODO: Shutdown client, fade out and stuff
269  }
270 
271  msg.FinishReading();
272  }
273 
277  public ZonePlayer GetPlayer (int peerIndex)
278  {
279  var matchingPlayers = _players.Where(p => p.PeerIndex == peerIndex).ToArray();
280 
281  if (matchingPlayers.Length != 0)
282  return matchingPlayers[0];
283 
284  return null;
285  }
286 
290  public ZonePlayer GetPlayer (string playerId)
291  {
292  var matchingPlayers = _players.Where(p => p.PlayerID == playerId).ToArray();
293 
294  if (matchingPlayers.Length != 0)
295  return matchingPlayers[0];
296 
297  return null;
298  }
299 
303  public ZonePlayer GetPlayer (GameObject avatar)
304  {
305  var matchingPlayers = _players.Where(p => p.Avatar == avatar).ToArray();
306 
307  if (matchingPlayers.Length != 0)
308  return matchingPlayers[0];
309 
310  return null;
311  }
312 
316  public void Shutdown ()
317  {
318  if (!Game.IsServer)
319  return;
320 
321  // TODO: Shutdown zone.
322  }
323 
324  void OnPlayerSynced (int peerIndex, string playerId, PlayerProfile playerProfile)
325  {
326  if (playerProfile.Basic.IsMonitor)
327  {
328  var monitorSpawnPos = Camera.main.transform.position;
329  monitorSpawnPos.z = 0f;
330 
331  Sync.Spawn("monitor", monitorSpawnPos, Vector3.zero, peerIndex);
332 
333  return;
334  }
335 
336  var summaryMsg = new GameMessage();
337  summaryMsg.Write(_players.Count);
338 
339  foreach (var existingPlayer in _players)
340  {
341  summaryMsg.Write(existingPlayer.PeerIndex);
342  summaryMsg.Write(existingPlayer.PlayerID);
343  summaryMsg.WriteGameObject(existingPlayer.Avatar);
344  }
345 
346  _summaries[0] = summaryMsg;
347 
348  var player = new ZonePlayer()
349  {
350  PeerIndex = peerIndex,
351  PlayerID = playerProfile.PlayerID,
352  PlayerProfile = playerProfile
353  };
354 
355  _players.Add(player);
356 
357  ZoneCheckpoint checkpoint = null;
358 
359  if (!string.IsNullOrEmpty(playerProfile.Location.LastCheckpointID))
360  {
361  checkpoint = ZoneCheckpoint.Find(playerProfile.Location.LastCheckpointID) ??
363  }
364  else checkpoint = Zone.Instance.DefaultCheckpoint;
365 
366  if (checkpoint == null)
367  return;
368 
369  var prefabSync = PlayerAvatarPrefab.GetComponent<Sync>();
370  Vector3 spawnDirection = Vector3.zero;
371 
372  if (prefabSync.DirectionMode == DirectionMode.Flip)
373  spawnDirection = new Vector3(Mathf.Sign(checkpoint.transform.localScale.x), 0f, 0f);
374  else if (prefabSync.DirectionMode == DirectionMode.Radial)
375  spawnDirection = checkpoint.transform.up;
376 
377  var avatar = Sync.Spawn(PlayerAvatarPrefab, checkpoint.transform.position, spawnDirection, peerIndex);
378  player.Avatar = avatar;
379 
380  GameMessage opMessage = new GameMessage();
381 
382  opMessage.Write((byte)ZoneOperationType.AddPlayer);
383  opMessage.Write(player.PeerIndex);
384  opMessage.Write(player.PlayerID);
385  opMessage.WriteGameObject(player.Avatar);
386 
387  _operations[0] = opMessage;
388  }
389 
390  void OnPlayerLeftServer (int peerIndex, string playerId, PlayerProfile playerProfile)
391  {
392  if (playerProfile.Basic.IsMonitor)
393  {
394  Sync.DespawnPeerObjects(peerIndex);
395  return;
396  }
397 
398  var player = GetPlayer(peerIndex);
399 
400  if (player == null)
401  return;
402 
403  _players.Remove(player);
404 
405  if (player == _localPlayer)
406  _localPlayer = null;
407  }
408 }
Tracks all information for a player in a zone.
Definition: Zone.cs:13
static GameServer Instance
Gets the sole instance of this game server.
Definition: GameServer.cs:95
static void DespawnPeerObjects(int peerIndex)
Despawn all objects owned by the peer with the given peer index.
Definition: Sync.Static.cs:854
static Zone Instance
Gets the sole instance of the zone.
Definition: Zone.cs:41
GameObject[] Avatars
Gets an array containing the avatars of all players in the zone.
Definition: Zone.cs:65
PlayerProfile[] PlayerProfiles
Gets an array containing the profiles of all players in the zone.
Definition: Zone.cs:103
Main game server class.
Definition: GameServer.cs:19
const float MusicFadeLength
The amount of time it takes music to fade in and out.
Definition: Zone.cs:35
A Singleton Class that manages the music playing. Presists across scenes and provides various methods...
Definition: MusicPlayer.cs:9
static ZoneCheckpoint Find(string checkpointId)
Find the zone checkpoint with the given ID.
int[] PlayerPeerIndices
Gets an array containing the peer indices of all players in the zone.
Definition: Zone.cs:87
static GameObject Spawn(string prefabId, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
Definition: Sync.Static.cs:499
ZonePlayer GetPlayer(GameObject avatar)
Gets the player with the given avatar.
Definition: Zone.cs:303
string[] PlayerNicknames
Gets an array containing the nicknames of all players in the zone.
Definition: Zone.cs:111
static void CrossFade(string trackName, float fadeTime=1.0f)
Given a string name of a music track, load that track and crossfade from the current track to it...
Definition: MusicPlayer.cs:82
GameObject LocalAvatar
Gets the avatar of the local player.
Definition: Zone.cs:73
static bool IsLocalPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the local peer.
Definition: Sync.Static.cs:319
ZonePlayer LocalPlayer
Gets the local player.
Definition: Zone.cs:57
GameObject PlayerAvatarPrefab
The avatar prefab to spawn for all players.
Definition: Zone.cs:128
int NumPlayers
Gets the number of players in the zone.
Definition: Zone.cs:119
ZonePlayer[] Players
Gets an array of all players in this zone.
Definition: Zone.cs:49
PlayerSyncedHandler PlayerSynced
Event fired when a player is fully synchronized with this server.
Definition: GameServer.cs:64
static bool IsClientPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of a client.
Definition: Sync.Static.cs:335
Zone manager.
Definition: Zone.cs:30
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
ZonePlayer GetPlayer(string playerId)
Gets the player with the given player ID.
Definition: Zone.cs:290
A class for serializing game data into a stream for propagation between objects and peers...
Definition: GameMessage.cs:14
ZoneCheckpoint DefaultCheckpoint
The default checkpoint of this zone.
Definition: Zone.cs:132
PlayerLeftServerHandler PlayerLeftServer
Event fired when a player leaves this server.
Definition: GameServer.cs:68
ZonePlayer GetPlayer(int peerIndex)
Gets the player with the given peer index.
Definition: Zone.cs:277
string[] PlayerIDs
Gets an array containing the player IDs of all players in the zone.
Definition: Zone.cs:95
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13
AudioClip ZoneBGM
The default checkpoint of this zone.
Definition: Zone.cs:136
Zone checkpoint.
void Shutdown()
Shutdown this zone server.
Definition: Zone.cs:316