Liberi
An exergame built for kids with CP!
MinigamePortal.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Net;
7 using Lidgren.Network;
8 using LiberiNet;
9 using Janus;
10 
14 [RequireComponent(typeof(Inspectable))]
15 [Script(ScriptRole.Client)]
16 public class MinigamePortal : MonoBehaviour
17 {
21  public string MapID;
25  public bool JoinImmediately;
26 
27  Inspectable _inspectable;
28  Dictionary<IPEndPoint, GameServerSummary> _minigameServerSummaries;
29  MinigameSpawner _spawner;
30 
31  void Awake ()
32  {
33  _inspectable = GetComponent<Inspectable>();
34  _minigameServerSummaries = new Dictionary<IPEndPoint, GameServerSummary>();
35  _spawner = GetComponent<MinigameSpawner>();
36  }
37 
38  void OnSpawn ()
39  {
40  bool isEnabled = false;
41 
42  if (Game.MapSettings.HasChild(MapID + "_enabled"))
43  isEnabled = Game.MapSettings[MapID + "_enabled"].BoolValue;
44  else
45  Debug.LogWarning(MapID + " is not defined in " + Game.MapSettings.Name + ", so the associated minigame portal is disabled.");
46 
47  _inspectable.enabled = isEnabled;
48  transform.FindChild("coming_soon_banner").GetComponent<SpriteRenderer>().enabled = !isEnabled;
49  transform.FindChild("rings").GetComponent<ParticleSystem>().enableEmission = isEnabled;
50  if (!isEnabled)
51  transform.FindChild("rings").GetComponent<ParticleSystem>().Clear();
52 
53  if (!isEnabled)
54  return;
55 
56  GameClient.Instance.ServersFound += OnServersFound;
57  GameClient.Instance.ServerSearchFailed += OnServerSearchFailed;
58  GameClient.Instance.ServerSummaryReceived += OnServerSummaryReceived;
59  }
60 
61  void OnDestroy ()
62  {
63  if (GameClient.Instance == null)
64  return;
65 
66  GameClient.Instance.ServersFound -= OnServersFound;
67  GameClient.Instance.ServerSearchFailed -= OnServerSearchFailed;
68  GameClient.Instance.ServerSummaryReceived -= OnServerSummaryReceived;
69  }
70 
71  private void Connect (IPEndPoint endPoint)
72  {
73  StatusOverlay.ShowStatus(Localizer.GetString("status.connecting"));
74 
75  GameClient.Instance.ConnectToServer(endPoint, GameServerType.Minigame, MapID, false);
76  }
77 
78  void Update ()
79  {
80  if (Controls.GetActionDown(ControlsAction.Back))
81  _inspectable.StopInspecting();
82  }
83 
84  void OnScroll (Vector3 scrollDir)
85  {
86  GameLobbyManager.UpdateScroll(-(int)scrollDir.y);
87  }
88 
89  void OnServersFound (GameServerType serverType, string mapId, IPEndPoint[] results)
90  {
91  if (serverType != GameServerType.Minigame || mapId != MapID)
92  return;
93 
94  _minigameServerSummaries.Clear();
95 
96  foreach (var minigameServerEndPoint in results)
97  {
98  GameClient.Instance.RequestServerSummary(minigameServerEndPoint);
99  }
100 
101  if (!JoinImmediately)
102  {
104  GameLobbyManager.Show(mapId);
105  }
106  }
107 
108  void OnServerSearchFailed (GameServerType serverType, string mapId)
109  {
110  if (serverType != GameServerType.Minigame || mapId != MapID)
111  return;
112 
113  if (!JoinImmediately)
114  {
116  GameLobbyManager.Show(mapId);
117  }
118  else
119  {
120  _spawner.SpawnRequests[0] = MapID;
121  _spawner.ServerSpawns.EntryPassed += OnServerSpawned;
122  }
123  }
124 
125  void OnServerSummaryReceived (GameServerSummary serverSummary)
126  {
127  if (serverSummary.ServerType != GameServerType.Minigame || serverSummary.MapID != MapID)
128  return;
129 
130  _minigameServerSummaries[serverSummary.EndPoint] = serverSummary;
131 
132  if (!JoinImmediately)
133  GameLobbyManager.UpdatePanel(serverSummary);
134 
135  if (JoinImmediately && !serverSummary.IsFull && _inspectable.IsInspecting)
136  {
137  Connect(serverSummary.EndPoint);
138  }
139  }
140 
141  void OnServerSpawned (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
142  {
143  GameServerType serverType = (GameServerType)entry.Value.ReadByte();
144  string mapId = entry.Value.ReadString();
145  IPEndPoint endPoint = entry.Value.ReadIPEndPoint();
146  entry.Value.FinishReading();
147 
148  if (serverType != GameServerType.Minigame || mapId != MapID || !_inspectable.IsInspecting)
149  return;
150 
151  StartCoroutine(LateConnect(endPoint));
152  }
153 
154  IEnumerator LateConnect (IPEndPoint endPoint)
155  {
156  yield return new WaitForEndOfFrame();
157  Connect(endPoint);
158  }
159 
160  void OnStartInspecting ()
161  {
162  StatusOverlay.ShowStatus(Localizer.GetString("status.searching"));
163  GameClient.Instance.FindServers(GameServerType.Minigame, MapID, false);
164  }
165 
166  void OnStopInspecting ()
167  {
169  GameLobbyManager.Hide();
170  }
171 }
static string GetString(string key, SystemLanguage language=SystemLanguage.Unknown)
Gets the localized string for the given string key.
Definition: Localizer.cs:55
string MapID
The ID of the minigame to which this portal leads.
ServersFoundHandler ServersFound
Event fired when a server search returns results.
Definition: GameClient.cs:89
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.
Definition: GameClient.cs:93
Client-side controller script for a minigame portal interface.
GameServerType ServerType
The server type.
Localization manager.
Definition: Localizer.cs:9
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.
Definition: GameClient.cs:626
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.
Definition: GameClient.cs:97
static bool GetActionDown(ControlsAction action)
Checks if the given action has just been pressed down.
Definition: Controls.cs:194
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.
Definition: GameClient.cs:607
void ConnectToServer(IPEndPoint serverEndPoint, GameServerType serverType, string mapId, bool isCrucial)
Connect to a server.
Definition: GameClient.cs:663
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
Main game client class.
Definition: GameClient.cs:16
Something which can be inspected by the player.
Definition: Inspectable.cs:15
string MapID
The ID of the map loaded on the server.
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41