Liberi
An exergame built for kids with CP!
MinigamePlayer.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 MinigamePlayer
13 {
17  public bool IsHuman
18  {
19  get { return Sync.IsClientPeerIndex(PeerIndex); }
20  }
21 
25  public bool IsBot
26  {
27  get { return Sync.IsServerPeerIndex(PeerIndex); }
28  }
29 
33  public bool IsLocal
34  {
35  get { return Sync.IsLocalPeerIndex(PeerIndex); }
36  }
37 
41  public bool IsAssigned
42  {
43  get { return Team != null; }
44  }
45 
49  public int SlotIndex
50  {
51  get
52  {
53  if (Team == null)
54  return -1;
55 
56  return Team.GetPlayerSlotIndex(this);
57  }
58  }
59 
63  public Color SlotColor
64  {
65  get
66  {
67  if (Team == null)
68  return Color.white;
69 
70  return Team.GetSlotColor(SlotIndex);
71  }
72  }
73 
77  public string PlayerID
78  {
79  get
80  {
81  if (IsBot)
82  return null;
83  return PlayerProfile.PlayerID;
84  }
85  }
86 
90  public string PlayerNickname
91  {
92  get
93  {
94  if (IsBot)
95  return "BOT";
96  return PlayerProfile.Basic.Nickname;
97  }
98  }
99 
103  public int PeerIndex;
111  public GameObject Avatar;
116 }
PlayerProfile PlayerProfile
The profile of this player. Null if the player is a bot.
string PlayerID
Gets the ID of this player. Null if player is a bot.
int SlotIndex
Gets the slot index of this player within its team. Returns -1 if the player is not assigned to any t...
MinigameTeam Team
The team to which this player is assigned, if any.
string PlayerNickname
Gets the nickname of this player. "BOT" if the player is a bot.
Tracks all information for a player in a minigame.
int GetPlayerSlotIndex(MinigamePlayer player)
Gets the slot index of the given player.
int PeerIndex
The peer index of this player. 0 if the player is a bot.
Information about a minigame team.
Definition: MinigameTeam.cs:13
Color GetSlotColor(int slotIndex)
Gets the slot color of the player slot with the given slot index.
static bool IsLocalPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the local peer.
Definition: Sync.Static.cs:319
static bool IsServerPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of the server.
Definition: Sync.Static.cs:327
bool IsLocal
Whether or not this player is locally controlled.
Color SlotColor
Gets the slot color of this player within its team. Returns white if the player is not assigned to an...
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.
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
GameObject Avatar
The avatar of this player. Null if the player is not assigned to a team.
bool IsBot
Whether or not this player is a bot.
bool IsAssigned
Whether or not this player is assigned to a team.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13