Liberi
An exergame built for kids with CP!
MinigameTeam.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 [Serializable]
13 public class MinigameTeam
14 {
18  public int TeamIndex
19  {
20  get { return Array.IndexOf(Minigame.Instance.Teams, this); }
21  }
22 
27  {
28  get { return _playerSlots; }
29  }
30 
34  public int NumPlayers
35  {
36  get { return _playerSlots.Count(slot => slot != null); }
37  }
38 
42  public int NumHumanPlayers
43  {
44  get { return _playerSlots.Count(slot => slot != null && slot.IsHuman); }
45  }
46 
50  public int NumBotPlayers
51  {
52  get { return _playerSlots.Count(slot => slot != null && slot.IsBot); }
53  }
54 
58  public int NumEmptySlots
59  {
60  get { return _playerSlots.Count(slot => slot == null); }
61  }
62 
66  public MinigamePlayer[] Players
67  {
68  get { return _playerSlots.Where(slot => slot != null).ToArray(); }
69  }
70 
75  {
76  get { return _playerSlots.Where(slot => slot != null && slot.IsHuman).ToArray(); }
77  }
78 
82  public MinigamePlayer[] BotPlayers
83  {
84  get { return _playerSlots.Where(slot => slot != null && slot.IsBot).ToArray(); }
85  }
86 
90  public MinigamePlayer[] EmptySlots
91  {
92  get { return _playerSlots.Where(slot => slot == null).ToArray(); }
93  }
94 
98  public int[] PlayerSlotIndices
99  {
100  get { return Players.Select<MinigamePlayer, int>(slot => Array.IndexOf(_playerSlots, slot)).ToArray(); }
101  }
102 
106  public int[] HumanPlayerSlotIndices
107  {
108  get { return HumanPlayers.Select<MinigamePlayer, int>(slot => Array.IndexOf(_playerSlots, slot)).ToArray(); }
109  }
110 
114  public int[] BotPlayerSlotIndices
115  {
116  get { return BotPlayers.Select<MinigamePlayer, int>(slot => Array.IndexOf(_playerSlots, slot)).ToArray(); }
117  }
118 
122  public int[] EmptySlotIndices
123  {
124  get
125  {
126  List<int> emptySlotIndices = new List<int>();
127 
128  for (int i = 0; i < _playerSlots.Length; i++)
129  {
130  if (_playerSlots[i] == null)
131  emptySlotIndices.Add(i);
132  }
133 
134  return emptySlotIndices.ToArray();
135  }
136  }
137 
141  public int[] HumanPlayerPeerIndices
142  {
143  get { return HumanPlayers.Select<MinigamePlayer, int>(slot => slot.PeerIndex).ToArray(); }
144  }
145 
149  public GameObject[] PlayerAvatars
150  {
151  get { return (from player in Players where player.Avatar != null select player.Avatar).ToArray(); }
152  }
153 
157  public GameObject[] HumanAvatars
158  {
159  get { return (from player in HumanPlayers where player.Avatar != null select player.Avatar).ToArray(); }
160  }
161 
165  public GameObject[] BotAvatars
166  {
167  get { return (from player in BotPlayers where player.Avatar != null select player.Avatar).ToArray(); }
168  }
169 
173  public string[] HumanPlayerIDs
174  {
175  get { return HumanPlayers.Select<MinigamePlayer, string>(slot => slot.PlayerID).ToArray(); }
176  }
177 
182  {
183  get { return HumanPlayers.Select<MinigamePlayer, PlayerProfile>(slot => slot.PlayerProfile).ToArray(); }
184  }
185 
189  public string[] HumanPlayerNicknames
190  {
191  get { return HumanPlayers.Select<MinigamePlayer, string>(slot => slot.PlayerProfile.Basic.Nickname).ToArray(); }
192  }
193 
197  public bool IsFull
198  {
199  get { return NumPlayers >= MaxPlayers; }
200  }
201 
205  public bool IsFullOfHumans
206  {
207  get { return NumHumanPlayers >= MaxPlayers; }
208  }
209 
213  public int FirstEmptySlotIndex
214  {
215  get
216  {
217  for (int i = 0; i < _playerSlots.Length; i++)
218  {
219  if (_playerSlots[i] == null)
220  return i;
221  }
222 
223  return -1;
224  }
225  }
226 
230  public string ID = "players";
234  public int MaxPlayers = 10;
238  public GameObject AvatarPrefab;
242  public Transform[] SpawnPoints;
246  public Color TeamColor = Color.white;
250  public Color[] SlotColors = new Color[] { Color.white };
251 
252  MinigamePlayer[] _playerSlots;
253 
254  internal void Initialize ()
255  {
256  _playerSlots = new MinigamePlayer[MaxPlayers];
257  }
258 
262  public Color GetSlotColor (int slotIndex)
263  {
264  if (SlotColors.Length == 0)
265  return Color.white;
266 
267  return SlotColors[slotIndex % SlotColors.Length];
268  }
269 
270 
274  public T[] GetPlayerAvatarComponents<T> () where T : Component
275  {
276  return PlayerAvatars.Select(a => a.GetComponent<T>()).ToArray();
277  }
278 
282  public T[] GetHumanAvatarComponents<T> () where T : Component
283  {
284  return HumanAvatars.Select(a => a.GetComponent<T>()).ToArray();
285  }
286 
290  public T[] GetBotAvatarComponents<T> () where T : Component
291  {
292  return BotAvatars.Select(a => a.GetComponent<T>()).ToArray();
293  }
294 
295  internal void InsertPlayer (int slotIndex, MinigamePlayer player)
296  {
297  if (_playerSlots[slotIndex] == null)
298  {
299  _playerSlots[slotIndex] = player;
300  player.Team = this;
301  }
302  }
303 
307  public int GetPlayerSlotIndex (MinigamePlayer player)
308  {
309  return Array.IndexOf(_playerSlots, player);
310  }
311 
315  public MinigamePlayer GetPlayer (int slotIndex)
316  {
317  if (slotIndex >= MaxPlayers)
318  return null;
319 
320  return _playerSlots[slotIndex];
321  }
322 
323  internal void RemovePlayer (MinigamePlayer player)
324  {
325  if (player.Team != this)
326  return;
327 
328  _playerSlots[player.SlotIndex] = null;
329  player.Team = null;
330  }
331 
332  internal void ClearPlayers ()
333  {
334  for (int i = 0; i < _playerSlots.Length; i++)
335  {
336  var playerSlot = _playerSlots[i];
337 
338  if (playerSlot != null)
339  {
340  if (playerSlot.Avatar != null)
341  Sync.Despawn(playerSlot.Avatar);
342 
343  playerSlot.Team = null;
344  }
345 
346  _playerSlots[i] = null;
347  }
348  }
349 
353  public Transform GetSpawnPoint (int slotIndex)
354  {
355  if (SpawnPoints.Length == 0)
356  return Minigame.Instance.transform;
357 
358  return SpawnPoints[slotIndex % SpawnPoints.Length];
359  }
360 }
PlayerProfile[] HumanPlayerProfiles
Gets an array containing the profiles of all human players in this team.
static void Despawn(GameObject go)
Despawn the given object.
Definition: Sync.Static.cs:779
T[] GetBotAvatarComponents< T >()
Gets an array containing the components of type T on all bot player avatars.
static Minigame Instance
Gets the sole instance of this minigame.
Definition: Minigame.cs:30
GameObject[] BotAvatars
Gets an array containing the avatars of all bot players in this team.
MinigamePlayer[] BotPlayers
Gets an array containing all bot players in this team.
Definition: MinigameTeam.cs:83
int SlotIndex
Gets the slot index of this player within its team. Returns -1 if the player is not assigned to any t...
int TeamIndex
Gets the index of this team within all available teams in this minigame.
Definition: MinigameTeam.cs:19
MinigameTeam Team
The team to which this player is assigned, if any.
T[] GetHumanAvatarComponents< T >()
Gets an array containing the components of type T on all human player avatars.
int FirstEmptySlotIndex
Gets the slot index of the first unoccupied player slot.
int NumBotPlayers
Gets the number of bot players in this team.
Definition: MinigameTeam.cs:51
Tracks all information for a player in a minigame.
int GetPlayerSlotIndex(MinigamePlayer player)
Gets the slot index of the given player.
int NumHumanPlayers
Gets the number of human players in this team.
Definition: MinigameTeam.cs:43
GameObject[] PlayerAvatars
Gets an array containing the avatars of all players in this team (humans and bots).
GameObject AvatarPrefab
The prefab to use for player avatars on this team.
Color TeamColor
The official color of this team. Usage depends on interpretation.
int[] PlayerSlotIndices
Gets an array containing the indices of all occupied player slots (whether by humans or bots) in this...
Definition: MinigameTeam.cs:99
MinigamePlayer[] EmptySlots
Gets an array containing all unoccupied player slots in this team.
Definition: MinigameTeam.cs:91
Information about a minigame team.
Definition: MinigameTeam.cs:13
MinigamePlayer[] Players
Gets an array containing all players in this team (humans and bots).
Definition: MinigameTeam.cs:67
Color GetSlotColor(int slotIndex)
Gets the slot color of the player slot with the given slot index.
MinigamePlayer[] PlayerSlots
Gets all player slots of this team. Null elements represent unoccupied slots.
Definition: MinigameTeam.cs:27
int MaxPlayers
The maximum player capacity of this team (humans and bots).
MinigamePlayer GetPlayer(int slotIndex)
Gets the player in the player slot with the given slot index.
bool IsFullOfHumans
Gets whether or not this team is full of human players.
T[] GetPlayerAvatarComponents< T >()
Gets an array containing the components of type T on all player avatars (humans and bots)...
GameObject[] HumanAvatars
Gets an array containing the avatars of all human players in this team.
int[] HumanPlayerSlotIndices
Gets an array containing the indices of all player slots occupied by human players in this team...
string[] HumanPlayerIDs
Gets an array containing the player IDs of all human players in this team.
Transform[] SpawnPoints
The array of spawn points to use for player avatars on this team.
int[] HumanPlayerPeerIndices
Gets an array containing the peer indices of all human players in this team.
bool IsFull
Gets whether or not this team is full of players (humans and bots).
int[] BotPlayerSlotIndices
Gets an array containing the indices of all player slots occupied by bot players in this team...
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
MinigamePlayer[] HumanPlayers
Gets an array containing all human players in this team.
Definition: MinigameTeam.cs:75
string ID
The ID of this team.
GameObject Avatar
The avatar of this player. Null if the player is not assigned to a team.
int NumEmptySlots
Gets the number of unoccupied player slots in this team.
Definition: MinigameTeam.cs:59
Class for general minigame management.
Definition: Minigame.cs:12
string[] HumanPlayerNicknames
Gets an array containing the nicknames of all human players in this team.
int NumPlayers
Gets the number of players in this team (humans and bots).
Definition: MinigameTeam.cs:35
Color[] SlotColors
The player slot colors of this team. Usage depends on interpretation.
Transform GetSpawnPoint(int slotIndex)
Gets the spawn point for the player slot at the given slot index.
int[] EmptySlotIndices
Gets an array containing the indices of all unoccupied player slots in this team. ...
MinigameTeam[] Teams
All available teams in this minigame.
Definition: Minigame.cs:211
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13