3 using System.Collections.Generic;
13 public List<string> MapIdKeys;
14 public List<Sprite> StickerSpriteValues;
16 static Dictionary<string, Sprite> _stickerSprites =
new Dictionary<string, Sprite>();
17 static List<GUIGameLobbyPanel> _panels =
new List<GUIGameLobbyPanel>();
18 static int _selectedMinigameIndex;
24 if (MapIdKeys.Count != StickerSpriteValues.Count)
25 Debug.LogWarning(
"Cannot build sticker dictionary, number of keys is not equal to number of values.");
28 for (
int i = 0; i < MapIdKeys.Count; i++)
29 _stickerSprites.Add(MapIdKeys[i], StickerSpriteValues[i]);
33 public static void Show(
string mapID)
35 _panels.Add(_instance.CreatePanel(
"Create Game",
"", _stickerSprites[mapID]));
36 _selectedMinigameIndex = 0;
40 public static void Hide()
42 for (
int i = 0; i < _panels.Count; i++)
44 if (_panels[i] != null)
45 Destroy(_panels[i].gameObject);
53 for (
int i = 0; i < _panels.Count; i++)
55 if (_panels[i].EndPoint == summary.
EndPoint)
64 _panels.Add(_instance.CreatePanel(
"Join Game", playerCountText, _stickerSprites[summary.
MapID]));
67 public static void UpdateScroll(
int dir)
69 if (_panels.Count > 0)
71 _panels[_selectedMinigameIndex].Deselect();
72 _selectedMinigameIndex = Mathf.Clamp(_selectedMinigameIndex + dir, 0, _panels.Count - 1);
73 _panels[_selectedMinigameIndex].Select();
77 GUIGameLobbyPanel CreatePanel(
string dialogText,
string playerCountText, Sprite stickerSprite)
82 newPanel.DialogText = dialogText;
83 newPanel.PlayerCountText = playerCountText;
84 newPanel.StickerSprite = stickerSprite;
85 newPanel.transform.SetParent(transform,
false);
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.
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...
PlayerProfile[] PlayerProfiles
An array containing the profiles of all connected players.