Liberi
An exergame built for kids with CP!
GameLobbyManager.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using System.Net;
5 
9 public class GameLobbyManager : MonoBehaviour
10 {
11  static GameLobbyManager _instance;
12 
13  public List<string> MapIdKeys;
14  public List<Sprite> StickerSpriteValues;
15 
16  static Dictionary<string, Sprite> _stickerSprites = new Dictionary<string, Sprite>();
17  static List<GUIGameLobbyPanel> _panels = new List<GUIGameLobbyPanel>();
18  static int _selectedMinigameIndex;
19 
20  void Awake()
21  {
22  _instance = this;
23 
24  if (MapIdKeys.Count != StickerSpriteValues.Count)
25  Debug.LogWarning("Cannot build sticker dictionary, number of keys is not equal to number of values.");
26  else
27  {
28  for (int i = 0; i < MapIdKeys.Count; i++)
29  _stickerSprites.Add(MapIdKeys[i], StickerSpriteValues[i]);
30  }
31  }
32 
33  public static void Show(string mapID)
34  {
35  _panels.Add(_instance.CreatePanel("Create Game", "", _stickerSprites[mapID]));
36  _selectedMinigameIndex = 0;
37  _panels[0].Select();
38  }
39 
40  public static void Hide()
41  {
42  for (int i = 0; i < _panels.Count; i++)
43  {
44  if (_panels[i] != null)
45  Destroy(_panels[i].gameObject);
46  }
47 
48  _panels.Clear();
49  }
50 
51  public static void UpdatePanel(GameServerSummary summary)
52  {
53  for (int i = 0; i < _panels.Count; i++)
54  {
55  if (_panels[i].EndPoint == summary.EndPoint)
56  {
57  // Panel already exists for this server endpoint, update panel with new summary.
58  return;
59  }
60  }
61 
62  // No panel exists for this summary, so create one.
63  string playerCountText = string.Format("{0}/{1}", summary.PlayerProfiles.Length, summary.MaxPlayers);
64  _panels.Add(_instance.CreatePanel("Join Game", playerCountText, _stickerSprites[summary.MapID]));
65  }
66 
67  public static void UpdateScroll(int dir)
68  {
69  if (_panels.Count > 0)
70  {
71  _panels[_selectedMinigameIndex].Deselect();
72  _selectedMinigameIndex = Mathf.Clamp(_selectedMinigameIndex + dir, 0, _panels.Count - 1);
73  _panels[_selectedMinigameIndex].Select();
74  }
75  }
76 
77  GUIGameLobbyPanel CreatePanel(string dialogText, string playerCountText, Sprite stickerSprite)
78  {
79  GUIGameLobbyPanel newPanel = Sync.SpawnLocal("game_lobby_panel", Vector3.zero).GetComponent<GUIGameLobbyPanel>();
80 
81  newPanel.Init();
82  newPanel.DialogText = dialogText;
83  newPanel.PlayerCountText = playerCountText;
84  newPanel.StickerSprite = stickerSprite;
85  newPanel.transform.SetParent(transform, false);
86 
87  return newPanel;
88  }
89 }
A Deprecated class for managing Game Lobbies. This may resurected in some form in the future! ...
int MaxPlayers
The maximum number of players this server can hold.
A summary for a game server.
IPEndPoint EndPoint
The network end point of the server.
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
string MapID
The ID of the map loaded on the server.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13
PlayerProfile[] PlayerProfiles
An array containing the profiles of all connected players.