Liberi
An exergame built for kids with CP!
Minigame.cs
1 using UnityEngine;
2 using System;
3 using System.Linq;
4 using System.Collections;
5 using System.Collections.Generic;
6 using LiberiNet;
7 using Janus;
8 
12 public class Minigame : MonoBehaviour
13 {
14  enum MinigameOperationType : byte
15  {
16  AddPlayer,
17  RemovePlayer,
20  Shutdown
21  }
22 
23  public delegate void LocalPlayerAssignedHandler (MinigamePlayer localPlayer);
24  public event LocalPlayerAssignedHandler LocalPlayerAssigned = delegate {};
25 
29  public static Minigame Instance
30  {
31  get
32  {
33  _instance = _instance ?? FindObjectOfType<Minigame>();
34  return _instance;
35  }
36  }
37 
42  {
43  get
44  {
45  if (Teams.Length > 0)
46  return Teams[0];
47  else return null;
48  }
49  }
50 
54  public MinigamePlayer[] Players
55  {
56  get { return _players.ToArray(); }
57  }
58 
63  {
64  get { return _humanPlayers.ToArray(); }
65  }
66 
70  public MinigamePlayer[] BotPlayers
71  {
72  get { return _botPlayers.ToArray(); }
73  }
74 
78  public GameObject[] PlayerAvatars
79  {
80  get { return (from player in Players where player.Avatar != null select player.Avatar).ToArray(); }
81  }
82 
86  public GameObject[] HumanAvatars
87  {
88  get { return (from player in HumanPlayers where player.Avatar != null select player.Avatar).ToArray(); }
89  }
90 
94  public GameObject[] BotAvatars
95  {
96  get { return (from player in BotPlayers where player.Avatar != null select player.Avatar).ToArray(); }
97  }
98 
102  public int NumPlayers
103  {
104  get { return _players.Count; }
105  }
106 
110  public int NumHumanPlayers
111  {
112  get { return _humanPlayers.Count; }
113  }
114 
118  public int NumBotPlayers
119  {
120  get { return _botPlayers.Count; }
121  }
122 
126  public int[] HumanPlayerPeerIndices
127  {
128  get { return _humanPlayers.Select(player => player.PeerIndex).ToArray(); }
129  }
130 
134  public string[] HumanPlayerIDs
135  {
136  get { return _humanPlayers.Select(player => player.PlayerID).ToArray(); }
137  }
138 
143  {
144  get { return _humanPlayers.Select(player => player.PlayerProfile).ToArray(); }
145  }
146 
150  public string[] HumanPlayerNicknames
151  {
152  get { return _humanPlayers.Select(player => player.PlayerProfile.Basic.Nickname).ToArray(); }
153  }
154 
158  public int MaxPlayers
159  {
160  get { return _maxPlayers; }
161  }
162 
166  public bool IsFull
167  {
168  get { return NumPlayers >= _maxPlayers; }
169  }
170 
174  public bool IsFullOfHumans
175  {
176  get { return NumHumanPlayers >= _maxPlayers; }
177  }
178 
183  {
184  get { return _localPlayer; }
185  }
186 
190  public GameObject LocalAvatar
191  {
192  get
193  {
194  if (_localPlayer == null)
195  return null;
196 
197  return _localPlayer.Avatar;
198  }
199  }
200 
204  public static float ShutdownDelay = 2f;
205 
206  static Minigame _instance;
207 
211  public MinigameTeam[] Teams = new MinigameTeam[]
212  {
213  new MinigameTeam()
214  };
215 
216  public String ServerTime
217  {
218  get
219  {
220  if (!_serverStartTime.IsEmpty)
221  return DateTime.ParseExact(_serverStartTime.LastValue, "yyyy-MM-dd HH:mm:ss", System.Globalization.CultureInfo.InvariantCulture).AddSeconds(_serverStartTime.Now).ToString("HH:mm:ss");
222  else
223  return "";
224  }
225  }
226 
227  int _maxPlayers;
228  List<MinigamePlayer> _players;
229  List<MinigamePlayer> _humanPlayers;
230  List<MinigamePlayer> _botPlayers;
231  MinigamePlayer _localPlayer;
232  Timeline<GameMessage> _teamRequests;
233  Timeline<GameMessage> _summaries;
234  Timeline<GameMessage> _operations;
235  Timeline<string> _serverStartTime;
236 
237  void Awake ()
238  {
239  _instance = _instance ?? this;
240 
241  _players = new List<MinigamePlayer>();
242  _humanPlayers = new List<MinigamePlayer>();
243  _botPlayers = new List<MinigamePlayer>();
244 
245  foreach (var team in Teams)
246  {
247  team.Initialize();
248  _maxPlayers += team.MaxPlayers;
249  }
250 
251  _teamRequests = Sync.CreateEvent<GameMessage>();
252  _summaries = Sync.CreateEvent<GameMessage>();
253  _operations = Sync.CreateEvent<GameMessage>();
254  _serverStartTime = Sync.CreateDiscreteState<string>();
255  }
256 
257  void OnSpawn ()
258  {
259  if (Game.IsServer)
260  {
261  GameServer.Instance.PlayerSynced += OnPlayerSynced;
262  GameServer.Instance.PlayerLeftServer += OnPlayerLeftServer;
263 
264  _teamRequests.EntryPassed += OnTeamRequestMessage;
265  _serverStartTime[0] = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
266  }
267  else if (Game.IsClient)
268  {
269  _summaries.EntryPassed += OnSummaryMessage;
270  }
271  }
272 
277  public MinigamePlayer GetPlayer (string playerId)
278  {
279  var matchingPlayers = _humanPlayers.Where(player => player.PlayerID == playerId).ToArray();
280 
281  if (matchingPlayers.Length > 0)
282  return matchingPlayers[0];
283 
284  return null;
285  }
286 
291  public MinigamePlayer GetPlayer (int peerIndex)
292  {
293  var matchingPlayers = _humanPlayers.Where(player => player.PeerIndex == peerIndex).ToArray();
294 
295  if (matchingPlayers.Length > 0)
296  return matchingPlayers[0];
297 
298  return null;
299  }
300 
304  public MinigamePlayer GetPlayer (GameObject avatar)
305  {
306  foreach (var team in Teams)
307  {
308  foreach (var player in team.Players)
309  {
310  if (player.Avatar == avatar)
311  return player;
312  }
313  }
314 
315  return null;
316  }
317 
321  public MinigamePlayer GetPlayer (Component component)
322  {
323  foreach (var team in Teams)
324  {
325  foreach (var player in team.Players)
326  {
327  if (player.Avatar == component.gameObject)
328  return player;
329  }
330  }
331 
332  return null;
333  }
334 
338  public T[] GetPlayerAvatarComponents<T> () where T : Component
339  {
340  return PlayerAvatars.Select(a => a.GetComponent<T>()).ToArray();
341  }
342 
346  public T[] GetHumanAvatarComponents<T> () where T : Component
347  {
348  return HumanAvatars.Select(a => a.GetComponent<T>()).ToArray();
349  }
350 
354  public T[] GetBotAvatarComponents<T> () where T : Component
355  {
356  return BotAvatars.Select(a => a.GetComponent<T>()).ToArray();
357  }
358 
362  public MinigameTeam GetTeam (string teamId)
363  {
364  var matchingTeams = Teams.Where(team => team.ID == teamId).ToArray();
365 
366  if (matchingTeams.Length > 0)
367  return matchingTeams[0];
368 
369  return null;
370  }
371 
377  public void RequestPlayerAssign (string teamId)
378  {
379  if (!Game.IsClient)
380  return;
381 
382  var requestMsg = new GameMessage();
383  requestMsg.Write(Game.LocalPeerIndex);
384  requestMsg.Write(teamId);
385 
386  _teamRequests[0] = requestMsg;
387  }
388 
393  public void RequestPlayerUnassign ()
394  {
396  }
397 
405  public GameObject AssignPlayer (MinigamePlayer player, string teamId)
406  {
407  if (!Game.IsServer)
408  return null;
409 
410  if (player == null)
411  return null;
412 
413  var team = GetTeam(teamId);
414 
415  if (team == null)
416  return null;
417 
418  if (player.IsBot)
419  {
420  if (team.IsFull)
421  return null;
422  }
423  else if (player.IsHuman)
424  {
425  if (team.IsFull)
426  {
427  if (team.IsFullOfHumans)
428  return null;
429 
430  RemoveBotPlayer(_botPlayers[0]);
431  }
432  }
433 
434  AssignPlayerLocally(player, team.TeamIndex, delayNotification: true);
435 
436  var spawnPoint = team.GetSpawnPoint(player.SlotIndex);
437 
438  Vector3 spawnDirection = Vector3.zero;
439 
440  var avatarDirectionMode = team.AvatarPrefab.GetComponent<Sync>().DirectionMode;
441 
442  if (avatarDirectionMode == DirectionMode.Radial)
443  spawnDirection = spawnPoint.up;
444  else if (avatarDirectionMode == DirectionMode.Flip)
445  spawnDirection = new Vector3(Mathf.Sign(spawnPoint.localScale.x), 0f, 0f);
446 
447  var avatarDetails = new UJeli();
448 
449  Sync.SendEnabledMessage(this, "SetMinigameAvatarDetails", player, avatarDetails);
450 
451  var avatar = Sync.Spawn(team.AvatarPrefab, spawnPoint.position, spawnDirection, player.PeerIndex, avatarDetails);
452  player.Avatar = avatar;
453 
454  var opMsg = new GameMessage();
455  opMsg.Write((byte)MinigameOperationType.AssignPlayer);
456  opMsg.Write(_players.IndexOf(player));
457  opMsg.Write(team.TeamIndex);
458  opMsg.Write(player.SlotIndex);
459  opMsg.WriteGameObject(avatar);
460 
461  _operations[0] = opMsg;
462 
463  Sync.SendEnabledMessage(this, "OnMinigamePlayerAssigned", player);
464 
465  return avatar;
466  }
467 
471  public void UnassignPlayer (MinigamePlayer player)
472  {
473  if (!Game.IsServer)
474  return;
475 
476  if (player == null)
477  return;
478 
479  UnassignPlayerLocally(player);
480 
481  var opMsg = new GameMessage();
482  opMsg.Write((byte)MinigameOperationType.UnassignPlayer);
483  opMsg.Write(_players.IndexOf(player));
484 
485  _operations[0] = opMsg;
486 
487  if (player.Avatar != null)
488  Sync.Despawn(player.Avatar);
489  }
490 
496  public MinigamePlayer AddBotPlayer (string teamId = null)
497  {
498  if (!Game.IsServer)
499  return null;
500 
501  var player = new MinigamePlayer();
502 
503  AddPlayerLocally(player);
504 
505  var opMsg = new GameMessage();
506  opMsg.Write((byte)MinigameOperationType.AddPlayer);
507  opMsg.Write(0);
508 
509  _operations[0] = opMsg;
510 
511  if (teamId != null)
512  {
513  AssignPlayer(player, teamId);
514  }
515  else
516  {
517  if (DefaultTeam != null)
518  AssignPlayer(player, DefaultTeam.ID);
519  }
520 
521  return player;
522  }
523 
527  public void RemoveBotPlayer (MinigamePlayer player)
528  {
529  if (!Game.IsServer)
530  return;
531 
532  if (player == null)
533  return;
534 
535  if (!player.IsBot)
536  return;
537 
538  UnassignPlayer(player);
539 
540  var opMsg = new GameMessage();
541  opMsg.Write((byte)MinigameOperationType.RemovePlayer);
542  opMsg.Write(_players.IndexOf(player));
543 
544  _operations[0] = opMsg;
545 
546  RemovePlayerLocally(player);
547  }
548 
552  public void Shutdown ()
553  {
554  if (!Game.IsServer)
555  return;
556 
557  var opMsg = new GameMessage();
558  opMsg.Write((byte)MinigameOperationType.Shutdown);
559 
560  _operations[0] = opMsg;
561 
562  StartCoroutine(ShutdownAsync());
563  }
564 
569  IEnumerator ShutdownAsync ()
570  {
571  yield return new WaitForSeconds(ShutdownDelay);
572 
573 #if UNITY_EDITOR
574  UnityEditor.EditorApplication.isPlaying = false;
575 #else
576  Application.Quit();
577 #endif
578  }
579 
580  private void AddPlayerLocally (MinigamePlayer player)
581  {
582  if (player == null)
583  return;
584 
585  _players.Add(player);
586 
587  if (player.IsHuman)
588  {
589  _humanPlayers.Add(player);
590 
591  if (player.IsLocal)
592  _localPlayer = player;
593  }
594  else if (player.IsBot)
595  {
596  _botPlayers.Add(player);
597  }
598  }
599 
600  private void RemovePlayerLocally (int playerIndex)
601  {
602  if (playerIndex < 0 || _players.Count <= playerIndex)
603  return;
604 
605  RemovePlayerLocally(_players[playerIndex]);
606  }
607 
608  private void RemovePlayerLocally (MinigamePlayer player)
609  {
610  if (player == null)
611  return;
612 
613  if (player.Team != null)
614  UnassignPlayerLocally(player);
615 
616  _players.Remove(player);
617  _humanPlayers.Remove(player);
618  _botPlayers.Remove(player);
619 
620  if (player == _localPlayer)
621  _localPlayer = null;
622  }
623 
624  private void AssignPlayerLocally (MinigamePlayer player, int teamIndex, int slotIndex = -1,
625  GameObject avatar = null, bool delayNotification = false)
626  {
627  if (player == null)
628  return;
629 
630  if (teamIndex == -1)
631  return;
632 
633  var team = Teams[teamIndex];
634 
635  if (team == null)
636  return;
637 
638  if (player.Team != null)
639  UnassignPlayerLocally(player);
640 
641  if (slotIndex == -1)
642  slotIndex = team.FirstEmptySlotIndex;
643 
644  team.InsertPlayer(slotIndex, player);
645 
646  if (avatar != null)
647  player.Avatar = avatar;
648 
649  if (!delayNotification)
650  Sync.SendEnabledMessage(this, "OnMinigamePlayerAssigned", player);
651 
652  if (player.IsLocal)
653  LocalPlayerAssigned(player);
654  }
655 
656  private void UnassignPlayerLocally (MinigamePlayer player)
657  {
658  if (player == null)
659  return;
660 
661  if (player.Team == null)
662  return;
663 
664  player.Team.RemovePlayer(player);
665 
666  Sync.SendEnabledMessage(this, "OnMinigamePlayerUnassigned", player);
667  }
668 
669  void OnTeamRequestMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
670  {
671  var msg = entry.Value;
672 
673  int peerIndex = msg.ReadInt32();
674  string teamId = msg.ReadString();
675  msg.FinishReading();
676 
677  var player = GetPlayer(peerIndex);
678 
679  if (player == null)
680  return;
681 
682  AssignPlayer(player, teamId);
683  }
684 
685  void OnPlayerSynced (int peerIndex, string playerId, PlayerProfile playerProfile)
686  {
687  if (playerProfile.Basic.IsMonitor)
688  {
689  var monitorSpawnPos = Camera.main.transform.position;
690  monitorSpawnPos.z = 0f;
691 
692  Sync.Spawn("monitor", monitorSpawnPos, Vector3.zero, peerIndex);
693 
694  return;
695  }
696 
697  var summaryMsg = new GameMessage();
698  summaryMsg.Write(_players.Count);
699 
700  foreach (var existingPlayer in _players)
701  {
702  int teamIndex = -1;
703 
704  if (existingPlayer.Team != null)
705  teamIndex = existingPlayer.Team.TeamIndex;
706 
707  summaryMsg.Write(existingPlayer.PeerIndex);
708  summaryMsg.Write(teamIndex);
709 
710  if (teamIndex != -1)
711  {
712  summaryMsg.Write(existingPlayer.SlotIndex);
713  summaryMsg.WriteGameObject(existingPlayer.Avatar);
714  }
715  }
716 
717  _summaries[0] = summaryMsg;
718 
719  var player = new MinigamePlayer()
720  {
721  PeerIndex = peerIndex,
722  PlayerProfile = playerProfile
723  };
724 
725  AddPlayerLocally(player);
726 
727  var opMsg = new GameMessage();
728  opMsg.Write((byte)MinigameOperationType.AddPlayer);
729  opMsg.Write(peerIndex);
730 
731  _operations[0] = opMsg;
732 
733  if (DefaultTeam != null)
734  AssignPlayer(player, DefaultTeam.ID);
735  }
736 
737  void OnPlayerLeftServer (int peerIndex, string playerId, PlayerProfile playerProfile)
738  {
739  if (playerProfile.Basic.IsMonitor)
740  return;
741 
742  var player = GetPlayer(peerIndex);
743 
744  if (player == null)
745  return;
746 
747  UnassignPlayer(player);
748 
749  RemovePlayerLocally(player);
750 
751  var opMsg = new GameMessage();
752  opMsg.Write((byte)MinigameOperationType.RemovePlayer);
753  opMsg.Write(_players.IndexOf(player));
754 
755  if (_humanPlayers.Count == 0)
756  Shutdown();
757  }
758 
759  void OnSummaryMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
760  {
761  var msg = entry.Value;
762 
763  int numPlayers = msg.ReadInt32();
764 
765  for (int i = 0; i < numPlayers; i++)
766  {
767  int peerIndex = msg.ReadInt32();
768  int teamIndex = msg.ReadInt32();
769 
770  var player = new MinigamePlayer()
771  {
772  PeerIndex = peerIndex
773  };
774 
775  if (Sync.IsClientPeerIndex(peerIndex))
776  player.PlayerProfile = Game.GetPlayerProfile(peerIndex);
777 
778  AddPlayerLocally(player);
779 
780  if (teamIndex != -1)
781  {
782  int slotIndex = msg.ReadInt32();
783  var avatar = msg.ReadGameObject();
784 
785  AssignPlayerLocally(player, teamIndex, slotIndex, avatar);
786  }
787  }
788 
789  msg.FinishReading();
790 
791  // We only need to ever receive one summary message at the beginning, so unsubscribe from future summaries.
792  // As well, subscribe to operations to allow future incoming updates to the teams and players.
793  _summaries.EntryPassed -= OnSummaryMessage;
794  _operations.EntryPassed += OnOperationMessage;
795  }
796 
797  void OnOperationMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
798  {
799  var msg = entry.Value;
800 
801  var opType = (MinigameOperationType)msg.ReadByte();
802 
803  if (opType == MinigameOperationType.AddPlayer)
804  {
805  int peerIndex = msg.ReadInt32();
806  msg.FinishReading();
807 
808  var player = new MinigamePlayer()
809  {
810  PeerIndex = peerIndex,
811  };
812 
813  AddPlayerLocally(player);
814  }
815  else if (opType == MinigameOperationType.RemovePlayer)
816  {
817  int playerIndex = msg.ReadInt32();
818 
819  RemovePlayerLocally(playerIndex);
820  }
821  else if (opType == MinigameOperationType.AssignPlayer)
822  {
823  int playerIndex = msg.ReadInt32();
824  int teamIndex = msg.ReadInt32();
825  int slotIndex = msg.ReadInt32();
826  var avatar = msg.ReadGameObject();
827  msg.FinishReading();
828 
829  if (playerIndex == -1 || _players.Count <= playerIndex)
830  return;
831 
832  var player = _players[playerIndex];
833 
834  if (player == null)
835  return;
836 
837  AssignPlayerLocally(player, teamIndex, slotIndex, avatar);
838  }
839  else if (opType == MinigameOperationType.UnassignPlayer)
840  {
841  int playerIndex = msg.ReadInt32();
842  msg.FinishReading();
843 
844  if (playerIndex == -1 || _players.Count <= playerIndex)
845  return;
846 
847  var player = _players[playerIndex];
848 
849  if (player == null)
850  return;
851 
852  UnassignPlayerLocally(player);
853  }
854  else if (opType == MinigameOperationType.Shutdown)
855  {
856  //TODO: Shutdown client, fade out and stuff
857  }
858  }
859 
860  void OnDespawn ()
861  {
862  if (Game.IsServer)
863  {
864  GameServer.Instance.PlayerSynced -= OnPlayerSynced;
865  GameServer.Instance.PlayerLeftServer -= OnPlayerLeftServer;
866  }
867  }
868 
869  void OnDestroy ()
870  {
871  if (this == _instance)
872  _instance = null;
873  }
874 }
string[] HumanPlayerNicknames
Gets an array containing the nicknames of all human players in this minigame.
Definition: Minigame.cs:151
static void Despawn(GameObject go)
Despawn the given object.
Definition: Sync.Static.cs:779
PlayerProfile PlayerProfile
The profile of this player. Null if the player is a bot.
void RemoveBotPlayer(MinigamePlayer player)
Removes a bot player from the minigame. This will unassign the bot first.
Definition: Minigame.cs:527
static GameServer Instance
Gets the sole instance of this game server.
Definition: GameServer.cs:95
bool IsFull
Gets whether or not this minigame is full of players (humans and bots).
Definition: Minigame.cs:167
void RequestPlayerUnassign()
Requests a team unassignment for the local player.
Definition: Minigame.cs:393
void UnassignPlayer(MinigamePlayer player)
Unassigns a minigame player from its current team. This will also despawn its avatar.
Definition: Minigame.cs:471
static Minigame Instance
Gets the sole instance of this minigame.
Definition: Minigame.cs:30
T[] GetHumanAvatarComponents< T >()
Gets an array containing the components of type T on all human player avatars.
Definition: Minigame.cs:346
MinigamePlayer GetPlayer(GameObject avatar)
Get the minigame player with the given avatar.
Definition: Minigame.cs:304
int SlotIndex
Gets the slot index of this player within its team. Returns -1 if the player is not assigned to any t...
MinigamePlayer[] Players
Gets an array containing all players in this minigame (humans and bots).
Definition: Minigame.cs:55
Main game server class.
Definition: GameServer.cs:19
int NumBotPlayers
Gets the number of bot players in this minigame.
Definition: Minigame.cs:119
void RequestPlayerAssign(string teamId)
Requests a team assignment for the local player.
Definition: Minigame.cs:377
MinigameTeam Team
The team to which this player is assigned, if any.
int[] HumanPlayerPeerIndices
Gets an array containing the peer indices of all human players in this minigame.
Definition: Minigame.cs:127
GameObject LocalAvatar
If this is a game client, returns the avatar of the local player.
Definition: Minigame.cs:191
Tracks all information for a player in a minigame.
int PeerIndex
The peer index of this player. 0 if the player is a bot.
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 void SendEnabledMessage(GameObject go, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject.
Definition: Sync.Static.cs:740
MinigameTeam GetTeam(string teamId)
Get the minigame team with the given ID.
Definition: Minigame.cs:362
string[] HumanPlayerIDs
Gets an array containing the player IDs of all human players in this minigame.
Definition: Minigame.cs:135
GameObject[] HumanAvatars
Gets an array containing the avatars for all human players in this minigame.
Definition: Minigame.cs:87
T[] GetBotAvatarComponents< T >()
Gets an array containing the components of type T on all bot player avatars.
Definition: Minigame.cs:354
MinigamePlayer AddBotPlayer(string teamId=null)
Adds a new bot player to the minigame.
Definition: Minigame.cs:496
MinigameTeam DefaultTeam
Gets the default team of this minigame. This is simply the first available team.
Definition: Minigame.cs:42
Information about a minigame team.
Definition: MinigameTeam.cs:13
T[] GetPlayerAvatarComponents< T >()
Gets an array containing the components of type T on all player avatars (humans and bots)...
Definition: Minigame.cs:338
MinigamePlayer[] BotPlayers
Gets an array containing all bot players in this minigame.
Definition: Minigame.cs:71
void Shutdown()
Begin the minigame shutdown sequence. See ShutdownAsync.
Definition: Minigame.cs:552
int NumHumanPlayers
Gets the number of human players in this minigame.
Definition: Minigame.cs:111
GameObject[] BotAvatars
Gets an array containing the avatars for all bot players in this minigame.
Definition: Minigame.cs:95
bool IsLocal
Whether or not this player is locally controlled.
int MaxPlayers
Gets the maximum player capacity of this minigame.
Definition: Minigame.cs:159
MinigamePlayer GetPlayer(int peerIndex)
Get the minigame player with the given peer index.
Definition: Minigame.cs:291
GameObject[] PlayerAvatars
Gets an array containing the avatars for all players in this minigame (humans and bots)...
Definition: Minigame.cs:79
MinigamePlayer[] HumanPlayers
Gets an array containing all human players in this minigame.
Definition: Minigame.cs:63
int NumPlayers
Gets the number of players in this minigame (humans and bots).
Definition: Minigame.cs:103
PlayerSyncedHandler PlayerSynced
Event fired when a player is fully synchronized with this server.
Definition: GameServer.cs:64
static float ShutdownDelay
The amount of delay between initiating a server shutdown operation and the server process actually te...
Definition: Minigame.cs:204
static bool IsClientPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of a client.
Definition: Sync.Static.cs:335
bool IsHuman
Whether or not this player is a human.
MinigamePlayer GetPlayer(Component component)
Get the minigame player with the given avatar.
Definition: Minigame.cs:321
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
A class for serializing game data into a stream for propagation between objects and peers...
Definition: GameMessage.cs:14
string ID
The ID of this team.
GameObject Avatar
The avatar of this player. Null if the player is not assigned to a team.
bool IsFullOfHumans
Gets whether or not this minigame is full of human players.
Definition: Minigame.cs:175
Class for general minigame management.
Definition: Minigame.cs:12
bool IsBot
Whether or not this player is a bot.
GameObject AssignPlayer(MinigamePlayer player, string teamId)
Assign a player's team.
Definition: Minigame.cs:405
MinigamePlayer LocalPlayer
If this is a game client, returns the local player.
Definition: Minigame.cs:183
PlayerLeftServerHandler PlayerLeftServer
Event fired when a player leaves this server.
Definition: GameServer.cs:68
Unity version of Jeli markup class.
Definition: UJeli.cs:10
MinigameTeam[] Teams
All available teams in this minigame.
Definition: Minigame.cs:211
MinigamePlayer GetPlayer(string playerId)
Get the minigame player with the given player index.
Definition: Minigame.cs:277
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13
PlayerProfile[] HumanPlayerProfiles
Gets an array containing the profiles of all human players in this minigame.
Definition: Minigame.cs:143