Liberi
An exergame built for kids with CP!
Game.cs
1 using UnityEngine;
2 
6 public static class Game
7 {
8  public delegate void WorldDataReceivedHandler (UJeli worldDataPage);
9 
13  public static bool IsServer
14  {
15  get { return GameServer.Instance != null; }
16  }
17 
21  public static bool IsClient
22  {
23  get { return GameClient.Instance != null; }
24  }
25 
29  public static int NumPlayers
30  {
31  get { return IsClient ? GameClient.Instance.NumPlayers : GameServer.Instance.NumPlayers; }
32  }
33 
37  public static string[] PlayerIDs
38  {
39  get { return IsClient ? GameClient.Instance.PlayerIDs : GameServer.Instance.PlayerIDs; }
40  }
41 
45  public static int[] PlayerPeerIndices
46  {
48  }
49 
53  public static PlayerProfile[] PlayerProfiles
54  {
56  }
57 
61  public static string[] PlayerNicknames
62  {
64  }
65 
69  public static string LocalPlayerID
70  {
71  get { return IsClient ? GameClient.Instance.LocalPlayerID : null; }
72  }
73 
77  public static PlayerProfile LocalPlayerProfile
78  {
79  get { return IsClient ? GameClient.Instance.LocalPlayerProfile : null; }
80  }
81 
82  public static GameObject LocalAvatar
83  {
84  get
85  {
86  if (Zone.Instance != null)
87  return Zone.Instance.LocalAvatar;
88  else if (Minigame.Instance != null)
90  else return null;
91  }
92  }
93 
97  public static GameServerType ServerType
98  {
99  get { return IsClient ? GameClient.Instance.ServerType : GameServer.Instance.ServerType; }
100  }
101 
105  public static string MapID
106  {
107  get { return IsClient ? GameClient.Instance.MapID : GameServer.Instance.MapID; }
108  }
109 
113  public static bool IsConnectedToWorldServer
114  {
115  get
116  {
119  }
120  }
121 
125  public static bool IsConnectedToServer
126  {
127  get { return IsClient ? GameClient.Instance.IsConnectedToServer : true; }
128  }
129 
133  public static int LocalPeerIndex
134  {
135  get { return Sync.LocalPeerIndex; }
136  }
137 
141  public static int ServerPeerIndex
142  {
143  get { return 0; }
144  }
145 
149  public static UJeli MapSettings
150  {
151  get
152  {
153  return IsClient ? GameClient.Instance.MapSettings
155  }
156  }
157 
161  public static int GetPlayerPeerIndex (string playerId)
162  {
163  return IsClient ? GameClient.Instance.GetPlayerPeerIndex(playerId)
165  }
166 
170  public static string GetPlayerID (int peerIndex)
171  {
172  return IsClient ? GameClient.Instance.GetPlayerID(peerIndex)
173  : GameServer.Instance.GetPlayerID(peerIndex);
174  }
175 
179  public static PlayerProfile GetPlayerProfile (string playerId)
180  {
181  return IsClient ? GameClient.Instance.GetPlayerProfile(playerId)
183  }
184 
188  public static PlayerProfile GetPlayerProfile (int peerIndex)
189  {
190  return IsClient ? GameClient.Instance.GetPlayerProfile(peerIndex)
191  : GameServer.Instance.GetPlayerProfile(peerIndex);
192  }
193 
194 
195  public static string GetPlayerNickname (string playerId)
196  {
197  int peerIndex = Game.GetPlayerPeerIndex(playerId);
198 
199  if (peerIndex == 0)
200  return "Bot";
201  else
202  {
203  return IsClient ? GameClient.Instance.GetPlayerProfile(peerIndex).Basic.Nickname
204  : GameServer.Instance.GetPlayerProfile(peerIndex).Basic.Nickname;
205  }
206  }
207 
208  public static string GetPlayerNickname (int peerIndex)
209  {
210  if (peerIndex == Game.ServerPeerIndex)
211  return "Bot";
212  else
213  {
214  return IsClient ? GameClient.Instance.GetPlayerProfile(peerIndex).Basic.Nickname
215  : GameServer.Instance.GetPlayerProfile(peerIndex).Basic.Nickname;
216  }
217  }
218 
225  public static void PullWorldData (string pageName, WorldDataReceivedHandler callback, bool useCache = false)
226  {
227  if (IsClient)
228  GameClient.Instance.PullWorldData(pageName, new GameClient.WorldDataReceivedHandler(callback), useCache);
229  else GameServer.Instance.PullWorldData(pageName, new GameServer.WorldDataReceivedHandler(callback), useCache);
230  }
231 
236  public static UJeli GetCachedWorldData (string pageName)
237  {
238  return IsClient ? GameClient.Instance.GetCachedWorldData(pageName)
240  }
241 
246  public static void Log (string line)
247  {
248  if (IsClient)
249  GameClient.Instance.Log(line);
250  else GameServer.Instance.Log(line);
251  }
252 }
PlayerProfile[] PlayerProfiles
Gets an array containing the profiles of all players connected to the current server.
Definition: GameClient.cs:258
PlayerProfile GetPlayerProfile(string playerId)
Get the profile of the player with the given ID.
Definition: GameClient.cs:478
UJeli GetCachedWorldData(string pageName)
Returns a cached copy of a previously fetched world data page.
Definition: GameServer.cs:628
static GameServer Instance
Gets the sole instance of this game server.
Definition: GameServer.cs:95
void PullWorldData(string pageName, WorldDataReceivedHandler callback, bool useCache=false)
Requests a specific page of world data from the world server.
Definition: GameServer.cs:592
void PullWorldData(string pageName, WorldDataReceivedHandler callback, bool useCache=false)
Requests a specific page of world data from the world server.
Definition: GameClient.cs:726
bool IsConnectedToWorldServer
Gets whether or not this client is connected to the world server.
Definition: GameClient.cs:184
string[] PlayerNicknames
Gets an array containing the nicknames of all connected players.
Definition: GameClient.cs:272
static Zone Instance
Gets the sole instance of the zone.
Definition: Zone.cs:41
static Minigame Instance
Gets the sole instance of this minigame.
Definition: Minigame.cs:30
string[] PlayerIDs
Gets an array containing the IDs of all players connected to the current server.
Definition: GameClient.cs:242
Main game server class.
Definition: GameServer.cs:19
GameServerType ServerType
Gets the type of server we are connected to, if any.
Definition: GameClient.cs:200
void Log(string line)
Write one line to the server log. Log entries are automatically timestamped.
Definition: GameServer.cs:394
bool IsConnectedToWorldServer
Whether or not this server is connected to the world server.
Definition: GameServer.cs:179
int NumPlayers
Gets the number of players connected to the current server.
Definition: GameClient.cs:234
UJeli GetCachedWorldData(string pageName)
Returns a cached copy of a previously fetched world data page.
Definition: GameClient.cs:795
GameObject LocalAvatar
If this is a game client, returns the avatar of the local player.
Definition: Minigame.cs:191
int[] PlayerPeerIndices
Gets an array containing the peer indices of all players connected to the current server...
Definition: GameClient.cs:250
void Log(string line)
Write one line to the client log. Log entries are automatically timestamped.
Definition: GameClient.cs:431
string LocalPlayerID
Gets the player ID of the local client.
Definition: GameClient.cs:286
string GetPlayerID(int peerIndex)
Get the ID of the player with the given peer index.
Definition: GameServer.cs:429
bool IsConnectedToServer
Gets whether or not this client is connected to a server.
Definition: GameClient.cs:192
GameObject LocalAvatar
Gets the avatar of the local player.
Definition: Zone.cs:73
string[] PlayerNicknames
Gets an array containing the nicknames of all connected players.
Definition: GameServer.cs:165
int[] PlayerPeerIndices
Gets an array containing the peer indices of all connected players.
Definition: GameServer.cs:143
int GetPlayerPeerIndex(string playerId)
Get the peer index of the player with the given ID.
Definition: GameClient.cs:454
PlayerProfile[] PlayerProfiles
Gets an array containing the profiles of all connected players.
Definition: GameServer.cs:151
string GetPlayerID(int peerIndex)
Get the ID of the player with the given peer index.
Definition: GameClient.cs:466
UJeli MapSettings
Settings for this map, pulled from the world server.
Definition: GameServer.cs:119
PlayerProfile GetPlayerProfile(string playerId)
Get the profile of the player with the given ID.
Definition: GameServer.cs:441
Zone manager.
Definition: Zone.cs:30
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
Main game client class.
Definition: GameClient.cs:16
Class for general minigame management.
Definition: Minigame.cs:12
UJeli MapSettings
Settings for this map, pulled from the world server.
Definition: GameClient.cs:226
string MapID
Gets the ID of the currently loaded map.
Definition: GameClient.cs:213
static int LocalPeerIndex
Gets the peer index of this peer.
Definition: Sync.Static.cs:37
Unity version of Jeli markup class.
Definition: UJeli.cs:10
int GetPlayerPeerIndex(string playerId)
Get the peer index of the player with the given ID.
Definition: GameServer.cs:417
int NumPlayers
Gets the number of connected players.
Definition: GameServer.cs:127
PlayerProfile LocalPlayerProfile
Gets the player profile of the local client.
Definition: GameClient.cs:294
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13
string[] PlayerIDs
Gets an array containing the IDs of all connected players.
Definition: GameServer.cs:135