6 public static class Game
8 public delegate
void WorldDataReceivedHandler (
UJeli worldDataPage);
13 public static bool IsServer
21 public static bool IsClient
29 public static int NumPlayers
37 public static string[] PlayerIDs
45 public static int[] PlayerPeerIndices
61 public static string[] PlayerNicknames
69 public static string LocalPlayerID
82 public static GameObject LocalAvatar
97 public static GameServerType ServerType
105 public static string MapID
113 public static bool IsConnectedToWorldServer
125 public static bool IsConnectedToServer
133 public static int LocalPeerIndex
141 public static int ServerPeerIndex
149 public static UJeli MapSettings
161 public static int GetPlayerPeerIndex (
string playerId)
170 public static string GetPlayerID (
int peerIndex)
179 public static PlayerProfile GetPlayerProfile (
string playerId)
195 public static string GetPlayerNickname (
string playerId)
197 int peerIndex = Game.GetPlayerPeerIndex(playerId);
208 public static string GetPlayerNickname (
int peerIndex)
210 if (peerIndex == Game.ServerPeerIndex)
225 public static void PullWorldData (
string pageName, WorldDataReceivedHandler callback,
bool useCache =
false)
236 public static UJeli GetCachedWorldData (
string pageName)
246 public static void Log (
string line)
PlayerProfile[] PlayerProfiles
Gets an array containing the profiles of all players connected to the current server.
PlayerProfile GetPlayerProfile(string playerId)
Get the profile of the player with the given ID.
UJeli GetCachedWorldData(string pageName)
Returns a cached copy of a previously fetched world data page.
static GameServer Instance
Gets the sole instance of this game server.
void PullWorldData(string pageName, WorldDataReceivedHandler callback, bool useCache=false)
Requests a specific page of world data from the world server.
void PullWorldData(string pageName, WorldDataReceivedHandler callback, bool useCache=false)
Requests a specific page of world data from the world server.
bool IsConnectedToWorldServer
Gets whether or not this client is connected to the world server.
string[] PlayerNicknames
Gets an array containing the nicknames of all connected players.
static Zone Instance
Gets the sole instance of the zone.
static Minigame Instance
Gets the sole instance of this minigame.
string[] PlayerIDs
Gets an array containing the IDs of all players connected to the current server.
GameServerType ServerType
Gets the type of server we are connected to, if any.
void Log(string line)
Write one line to the server log. Log entries are automatically timestamped.
bool IsConnectedToWorldServer
Whether or not this server is connected to the world server.
int NumPlayers
Gets the number of players connected to the current server.
UJeli GetCachedWorldData(string pageName)
Returns a cached copy of a previously fetched world data page.
GameObject LocalAvatar
If this is a game client, returns the avatar of the local player.
int[] PlayerPeerIndices
Gets an array containing the peer indices of all players connected to the current server...
void Log(string line)
Write one line to the client log. Log entries are automatically timestamped.
string LocalPlayerID
Gets the player ID of the local client.
string GetPlayerID(int peerIndex)
Get the ID of the player with the given peer index.
bool IsConnectedToServer
Gets whether or not this client is connected to a server.
GameObject LocalAvatar
Gets the avatar of the local player.
string[] PlayerNicknames
Gets an array containing the nicknames of all connected players.
int[] PlayerPeerIndices
Gets an array containing the peer indices of all connected players.
int GetPlayerPeerIndex(string playerId)
Get the peer index of the player with the given ID.
PlayerProfile[] PlayerProfiles
Gets an array containing the profiles of all connected players.
string GetPlayerID(int peerIndex)
Get the ID of the player with the given peer index.
UJeli MapSettings
Settings for this map, pulled from the world server.
PlayerProfile GetPlayerProfile(string playerId)
Get the profile of the player with the given ID.
static GameClient Instance
Gets the sole instance of the game client.
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
Class for general minigame management.
UJeli MapSettings
Settings for this map, pulled from the world server.
string MapID
Gets the ID of the currently loaded map.
static int LocalPeerIndex
Gets the peer index of this peer.
Unity version of Jeli markup class.
int GetPlayerPeerIndex(string playerId)
Get the peer index of the player with the given ID.
int NumPlayers
Gets the number of connected players.
PlayerProfile LocalPlayerProfile
Gets the player profile of the local client.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
string[] PlayerIDs
Gets an array containing the IDs of all connected players.