Liberi
An exergame built for kids with CP!
GameServerSummary.cs
1 using UnityEngine;
2 using System.Linq;
3 using System.Net;
4 using LiberiNet;
5 
9 public class GameServerSummary
10 {
14  public bool IsFull
15  {
16  get { return PlayerProfiles.Length >= MaxPlayers; }
17  }
18 
22  public string[] PlayerIDs
23  {
24  get { return PlayerProfiles.Select<PlayerProfile, string>(p => p.PlayerID).ToArray(); }
25  }
26 
30  public string[] PlayerNicknames
31  {
32  get { return PlayerProfiles.Select<PlayerProfile, string>(p => p.Basic.Nickname).ToArray(); }
33  }
34 
38  public IPEndPoint EndPoint;
42  public float RTT;
46  public GameServerType ServerType;
50  public string MapID;
54  public int MaxPlayers;
59 }
float RTT
The average round-trip time from this client to the server.
GameServerType ServerType
The server type.
bool IsFull
Whether or not this server is full.
int MaxPlayers
The maximum number of players this server can hold.
A summary for a game server.
string[] PlayerNicknames
Gets an array containing the nicknames of all connected players.
IPEndPoint EndPoint
The network end point of the server.
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
string MapID
The ID of the map loaded on the server.
string[] PlayerIDs
Gets an array containing the IDs of all connected players.
PlayerProfile[] PlayerProfiles
An array containing the profiles of all connected players.