using System; using System.Collections.Generic; using System.Linq; namespace LobbyRelaySample { /// /// On the host, this will watch for all players to ready, and once they have, it will prepare for a synchronized countdown. /// public class LobbyReadyCheck : IDisposable { Action m_OnReadyCheckComplete; float m_ReadyTime = 5; public LobbyReadyCheck(Action onReadyCheckComplete = null, float readyTime = 5) { m_OnReadyCheckComplete = onReadyCheckComplete; m_ReadyTime = readyTime; } public void BeginCheckingForReady() { Locator.Get.UpdateSlow.Subscribe(OnUpdate); } public void EndCheckingForReady() { Locator.Get.UpdateSlow.Unsubscribe(OnUpdate); } /// /// Checks the lobby to see if we have all Readied up. If so, send out a message with the target time at which to end a countdown. /// void OnUpdate(float dt) { var room = RoomsQuery.Instance.CurrentRoom; if (room == null || room.Players.Count == 0) return; int readyCount = room.Players.Count((p) => { if (p.Data?.ContainsKey("UserStatus") != true) // Needs to be "!= true" to handle null properly. return false; UserStatus status; if (Enum.TryParse(p.Data["UserStatus"].Value, out status)) return status == UserStatus.Ready; return false; }); if (readyCount == room.Players.Count) { Dictionary data = new Dictionary(); DateTime targetTime = DateTime.Now.AddSeconds(m_ReadyTime); data.Add("AllPlayersReady", targetTime.Ticks.ToString()); RoomsQuery.Instance.UpdateRoomDataAsync(data, null); EndCheckingForReady(); } } public void Dispose() { EndCheckingForReady(); } } }