4 using System.Collections.Generic;
16 public string PlayerID;
18 public GameObject Avatar;
29 [RequireComponent(typeof(
Sync))]
30 public class Zone : MonoBehaviour
42 get {
return _instance; }
50 get {
return _players.ToArray(); }
58 get {
return _localPlayer; }
66 get {
return _players.Select(p => p.Avatar).ToArray(); }
76 if (_localPlayer != null)
77 return _localPlayer.Avatar;
88 get {
return _players.Select(p => p.PeerIndex).ToArray(); }
96 get {
return _players.Select(p => p.PlayerID).ToArray(); }
104 get {
return _players.Select(p => p.PlayerProfile).ToArray(); }
112 get {
return _players.Select(p => p.PlayerProfile.Basic.Nickname).ToArray(); }
120 get {
return _players.Count; }
123 static Zone _instance;
138 List<ZonePlayer> _players;
141 public string ServerTime
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");
152 Timeline<string> _serverStartTime;
154 enum ZoneOperationType : byte
161 Timeline<GameMessage> _summaries;
162 Timeline<GameMessage> _operations;
168 _players =
new List<ZonePlayer>();
172 _serverStartTime =
Sync.CreateDiscreteState<
string>();
182 _serverStartTime[0] =
System.DateTime.Now.ToString(
"yyyy-MM-dd HH:mm:ss");
184 else if (Game.IsClient)
186 _summaries.EntryPassed += OnSummaryMessage;
200 void OnSummaryMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
202 var msg = entry.Value;
204 int numPlayers = msg.ReadInt32();
206 for (
int i = 0; i < numPlayers; i++)
208 int peerIndex = msg.ReadInt32();
209 string playerID = msg.ReadString();
210 GameObject avatar = msg.ReadGameObject();
214 PeerIndex = peerIndex,
220 player.PlayerProfile = Game.GetPlayerProfile(peerIndex);
222 _players.Add(player);
229 _summaries.EntryPassed -= OnSummaryMessage;
230 _operations.EntryPassed += OnOperationMessage;
233 void OnOperationMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
235 var msg = entry.Value;
237 var opType = (ZoneOperationType)msg.ReadByte();
239 if (opType == ZoneOperationType.AddPlayer)
241 int peerIndex = msg.ReadInt32();
242 string playerID = msg.ReadString();
243 GameObject avatar = msg.ReadGameObject();
247 PeerIndex = peerIndex,
253 player.PlayerProfile = Game.GetPlayerProfile(peerIndex);
255 _players.Add(player);
258 _localPlayer = player;
260 else if (opType == ZoneOperationType.RemovePlayer)
262 int playerIndex = msg.ReadInt32();
264 _players.RemoveAll(i => i.PeerIndex == playerIndex);
266 else if (opType == ZoneOperationType.Shutdown)
279 var matchingPlayers = _players.Where(p => p.PeerIndex == peerIndex).ToArray();
281 if (matchingPlayers.Length != 0)
282 return matchingPlayers[0];
292 var matchingPlayers = _players.Where(p => p.PlayerID == playerId).ToArray();
294 if (matchingPlayers.Length != 0)
295 return matchingPlayers[0];
305 var matchingPlayers = _players.Where(p => p.Avatar == avatar).ToArray();
307 if (matchingPlayers.Length != 0)
308 return matchingPlayers[0];
324 void OnPlayerSynced (
int peerIndex,
string playerId,
PlayerProfile playerProfile)
326 if (playerProfile.Basic.IsMonitor)
328 var monitorSpawnPos = Camera.main.transform.position;
329 monitorSpawnPos.z = 0f;
331 Sync.
Spawn(
"monitor", monitorSpawnPos, Vector3.zero, peerIndex);
337 summaryMsg.Write(_players.Count);
339 foreach (var existingPlayer
in _players)
341 summaryMsg.Write(existingPlayer.PeerIndex);
342 summaryMsg.Write(existingPlayer.PlayerID);
343 summaryMsg.WriteGameObject(existingPlayer.Avatar);
346 _summaries[0] = summaryMsg;
350 PeerIndex = peerIndex,
351 PlayerID = playerProfile.PlayerID,
355 _players.Add(player);
359 if (!
string.IsNullOrEmpty(playerProfile.Location.LastCheckpointID))
366 if (checkpoint == null)
369 var prefabSync = PlayerAvatarPrefab.GetComponent<
Sync>();
370 Vector3 spawnDirection = Vector3.zero;
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;
377 var avatar =
Sync.
Spawn(PlayerAvatarPrefab, checkpoint.transform.position, spawnDirection, peerIndex);
378 player.Avatar = avatar;
382 opMessage.Write((byte)ZoneOperationType.AddPlayer);
383 opMessage.Write(player.PeerIndex);
384 opMessage.Write(player.PlayerID);
385 opMessage.WriteGameObject(player.Avatar);
387 _operations[0] = opMessage;
390 void OnPlayerLeftServer (
int peerIndex,
string playerId,
PlayerProfile playerProfile)
392 if (playerProfile.Basic.IsMonitor)
403 _players.Remove(player);
405 if (player == _localPlayer)
Tracks all information for a player in a zone.
static GameServer Instance
Gets the sole instance of this game server.
static void DespawnPeerObjects(int peerIndex)
Despawn all objects owned by the peer with the given peer index.
static Zone Instance
Gets the sole instance of the zone.
GameObject[] Avatars
Gets an array containing the avatars of all players in the zone.
PlayerProfile[] PlayerProfiles
Gets an array containing the profiles of all players in the zone.
const float MusicFadeLength
The amount of time it takes music to fade in and out.
A Singleton Class that manages the music playing. Presists across scenes and provides various methods...
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.
static GameObject Spawn(string prefabId, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
ZonePlayer GetPlayer(GameObject avatar)
Gets the player with the given avatar.
string[] PlayerNicknames
Gets an array containing the nicknames of all players in the zone.
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...
GameObject LocalAvatar
Gets the avatar of the local player.
static bool IsLocalPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the local peer.
ZonePlayer LocalPlayer
Gets the local player.
GameObject PlayerAvatarPrefab
The avatar prefab to spawn for all players.
int NumPlayers
Gets the number of players in the zone.
ZonePlayer[] Players
Gets an array of all players in this zone.
PlayerSyncedHandler PlayerSynced
Event fired when a player is fully synchronized with this server.
static bool IsClientPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of a client.
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.
A class for serializing game data into a stream for propagation between objects and peers...
ZoneCheckpoint DefaultCheckpoint
The default checkpoint of this zone.
PlayerLeftServerHandler PlayerLeftServer
Event fired when a player leaves this server.
ZonePlayer GetPlayer(int peerIndex)
Gets the player with the given peer index.
string[] PlayerIDs
Gets an array containing the player IDs of all players in the zone.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
AudioClip ZoneBGM
The default checkpoint of this zone.
void Shutdown()
Shutdown this zone server.