4 using System.Collections.Generic;
15 [Script(ScriptRole.Client)]
28 Dictionary<IPEndPoint, GameServerSummary> _minigameServerSummaries;
33 _inspectable = GetComponent<Inspectable>();
34 _minigameServerSummaries =
new Dictionary<IPEndPoint, GameServerSummary>();
35 _spawner = GetComponent<MinigameSpawner>();
40 bool isEnabled =
false;
42 if (Game.MapSettings.HasChild(MapID +
"_enabled"))
43 isEnabled = Game.MapSettings[MapID +
"_enabled"].BoolValue;
45 Debug.LogWarning(MapID +
" is not defined in " + Game.MapSettings.Name +
", so the associated minigame portal is disabled.");
47 _inspectable.enabled = isEnabled;
48 transform.FindChild(
"coming_soon_banner").GetComponent<SpriteRenderer>().enabled = !isEnabled;
49 transform.FindChild(
"rings").GetComponent<ParticleSystem>().enableEmission = isEnabled;
51 transform.FindChild(
"rings").GetComponent<ParticleSystem>().Clear();
71 private void Connect (IPEndPoint endPoint)
81 _inspectable.StopInspecting();
84 void OnScroll (Vector3 scrollDir)
89 void OnServersFound (GameServerType serverType,
string mapId, IPEndPoint[] results)
91 if (serverType != GameServerType.Minigame || mapId != MapID)
94 _minigameServerSummaries.Clear();
96 foreach (var minigameServerEndPoint
in results)
101 if (!JoinImmediately)
108 void OnServerSearchFailed (GameServerType serverType,
string mapId)
110 if (serverType != GameServerType.Minigame || mapId != MapID)
113 if (!JoinImmediately)
120 _spawner.SpawnRequests[0] =
MapID;
121 _spawner.ServerSpawns.EntryPassed += OnServerSpawned;
127 if (serverSummary.
ServerType != GameServerType.Minigame || serverSummary.
MapID != MapID)
130 _minigameServerSummaries[serverSummary.
EndPoint] = serverSummary;
132 if (!JoinImmediately)
135 if (JoinImmediately && !serverSummary.
IsFull && _inspectable.IsInspecting)
141 void OnServerSpawned (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
143 GameServerType serverType = (GameServerType)entry.Value.ReadByte();
144 string mapId = entry.Value.ReadString();
145 IPEndPoint endPoint = entry.Value.ReadIPEndPoint();
146 entry.Value.FinishReading();
148 if (serverType != GameServerType.Minigame || mapId != MapID || !_inspectable.IsInspecting)
151 StartCoroutine(LateConnect(endPoint));
154 IEnumerator LateConnect (IPEndPoint endPoint)
156 yield
return new WaitForEndOfFrame();
160 void OnStartInspecting ()
166 void OnStopInspecting ()
static string GetString(string key, SystemLanguage language=SystemLanguage.Unknown)
Gets the localized string for the given string key.
string MapID
The ID of the minigame to which this portal leads.
ServersFoundHandler ServersFound
Event fired when a server search returns results.
bool JoinImmediately
Whether or not this portal should connect the player to the first available minigame server found...
ServerSearchFailedHandler ServerSearchFailed
Event fired when a server search fails.
Client-side controller script for a minigame portal interface.
GameServerType ServerType
The server type.
A Deprecated class for managing Game Lobbies. This may resurected in some form in the future! ...
bool IsFull
Whether or not this server is full.
An overlay for displaying game status on the game client.
void RequestServerSummary(IPEndPoint serverEndPoint)
Requests a summary from the server at the given end point.
static void ShowStatus(string status)
Show the overlay with a given status message.
ServerSummaryReceivedHandler ServerSummaryReceived
Event fired when a response is received for a server summary request.
static bool GetActionDown(ControlsAction action)
Checks if the given action has just been pressed down.
static void Hide()
Hide the overlay.
A Component used to decouple the Server side logic of a minigame portal from the MinigamePortal class...
A summary for a game server.
IPEndPoint EndPoint
The network end point of the server.
void FindServers(GameServerType serverType, string mapId, bool isCrucial)
Initiates a server search.
void ConnectToServer(IPEndPoint serverEndPoint, GameServerType serverType, string mapId, bool isCrucial)
Connect to a server.
static GameClient Instance
Gets the sole instance of the game client.
Something which can be inspected by the player.
string MapID
The ID of the map loaded on the server.
Controls class. Allows for controls queries and controls injection from devices.