You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

207 lines
5.8 KiB

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. using UnityEngine.Networking;
  6. using Networking.Server;
  7. using Networking;
  8. using UnityEngine.SceneManagement;
  9. public class GameManager : MonoBehaviour
  10. {
  11. #region Inspector Field
  12. [Header("Settings")]
  13. [SerializeField]
  14. private float AnimationTime;
  15. [SerializeField]
  16. private GameModeReference CurrentGameMode;
  17. [Header("References")]
  18. [SerializeField]
  19. [Tooltip("Prefab of character for players to play")]
  20. private Character characterPrefab;
  21. [SerializeField]
  22. private ServerObject server;
  23. [SerializeField]
  24. private ClientList ClientList;
  25. #endregion Inspector Field
  26. #region Private Variables
  27. private Dictionary<int, PlayerData> playerData;
  28. private GameMode gamemode;
  29. #endregion Private Variables
  30. #region Read Only
  31. private IEnumerable<PlayerData> playerArray { get { return playerData.Values; } }
  32. #endregion Read Only
  33. public GameObject levelInfo;
  34. public blockSpawn bspawn;
  35. public void Awake()
  36. {
  37. gamemode = CurrentGameMode.Value;
  38. RegisterHandlers();
  39. SpawnCharacters();
  40. ClientList.ForEach(p => p.ChangeScene("ClientScene"));
  41. }
  42. private void Start()
  43. {
  44. StartCoroutine(displayforSeconds(levelInfo, 5.0f));
  45. gamemode.GameStart(playerArray.ToArray());
  46. StartRound();
  47. }
  48. private void Update()
  49. {
  50. server.ServerUpdate();
  51. }
  52. IEnumerator displayforSeconds(GameObject display, float time)
  53. {
  54. display.SetActive (true);
  55. yield return new WaitForSeconds(time);
  56. display.SetActive (false);
  57. }
  58. private void RecieveLogicList(NetworkMessage msg)
  59. {
  60. LogicProtocols.LogicMsg logicMsg;
  61. if (!msg.TryRead(out logicMsg))
  62. return;
  63. Debug.Log("Recieved function from " + msg.conn.connectionId);
  64. playerData[msg.conn.connectionId].blockReader.LogicChain = new List<LogicBlock>(logicMsg.elements);
  65. playerData[msg.conn.connectionId].recievedList = true;
  66. if (playerData.All(p => p.Value.recievedList))
  67. DoRoundRoutine();
  68. }
  69. private void DoRoundRoutine()
  70. {
  71. Debug.Log("Starting Round");
  72. StartCoroutine(RoundRoutine());
  73. }
  74. private void StartRound()
  75. {
  76. gamemode.RoundStart(playerArray.ToArray());
  77. LogicProtocols.FloatMsg RoundTime = new LogicProtocols.FloatMsg( gamemode.GetRoundTime());
  78. //bspawn.getPlayerScores();
  79. //bspawn.getPlayerLocations();
  80. playerArray.ForEach(p => p.client.conn.Send(LogicProtocols.SendRoundTime, RoundTime));
  81. }
  82. private IEnumerator RoundRoutine()
  83. {
  84. playerArray.ForEach(p => p.recievedList = false);
  85. Debug.Log("Doing Round Routine");
  86. while (playerArray.Any(p => !p.blockReader.Finished))
  87. {
  88. Debug.Log("One Move");
  89. foreach (PlayerData player in playerArray)
  90. StartCoroutine(RunOnce(player));
  91. //wait until all players have finished
  92. yield return new WaitUntil(() => playerArray.All(p => p.waiting));
  93. gamemode.FinishedMove(playerArray.ToArray());
  94. playerArray.ForEach(p => p.client.SendScore());
  95. }
  96. if (gamemode.isGameOver(playerArray.ToArray()))
  97. {
  98. Debug.Log("Game Over");
  99. SceneManager.LoadScene("ScoreBoards");
  100. }
  101. gamemode.RoundEnd(playerArray.ToArray());
  102. foreach (PlayerData player in playerArray)
  103. {
  104. player.blockReader.Reset();
  105. player.waiting = false;
  106. player.client.SendInventory();
  107. player.client.ChangeScene("ClientScene");
  108. }
  109. Debug.Log("Finished Moving");
  110. StartRound();
  111. }
  112. private void SpawnCharacters()
  113. {
  114. playerData = new Dictionary<int, PlayerData>();
  115. Block[] SpawnBlocks = FindObjectsOfType<Block>().Where(p => p.isSpawnable).ToArray();
  116. int spawnIndex = 0;
  117. foreach (ClientData client in ClientList)
  118. {
  119. Character newChar = Instantiate(characterPrefab);
  120. Block startingBlock = SpawnBlocks[(spawnIndex++ % ClientList.ConnectedClients.Count)];
  121. newChar.Initialise(startingBlock, client.Inventory, client.characterAnimal);
  122. newChar.transform.forward = startingBlock.SpawnDirection.ToVector();
  123. playerData.Add(client.ID, new PlayerData(newChar,client));
  124. newChar.ClientLink = client;
  125. client.playerCharacter = newChar;
  126. }
  127. }
  128. private void RegisterHandlers()
  129. {
  130. server.server.RegisterHandler(LogicProtocols.SendLogicList, RecieveLogicList);
  131. }
  132. private IEnumerator RunOnce(PlayerData data)
  133. {
  134. data.waiting = false;
  135. bool blockFinished = false;
  136. float waitTime;
  137. while (!blockFinished && !data.blockReader.Finished)
  138. {
  139. Debug.Log(data.client + "Moving once");
  140. if (data.blockReader.CurrentBlock != null && !data.blockReader.CurrentBlock.hasBeenRemoved)
  141. {
  142. data.client.Inventory.Remove(data.blockReader.CurrentBlock);
  143. data.blockReader.CurrentBlock.hasBeenRemoved = true;
  144. }
  145. blockFinished = data.blockReader.Read(data.character, AnimationTime,out waitTime);
  146. Debug.Log("Waiting: " + waitTime);
  147. yield return new WaitForSeconds(waitTime);
  148. gamemode.OnePlayerMoved(data);
  149. }
  150. data.waiting = true;
  151. }
  152. }
  153. public class PlayerData
  154. {
  155. public Character character;
  156. public BlockReader blockReader;
  157. public ClientData client;
  158. public bool recievedList;
  159. public bool waiting;
  160. public PlayerData(Character character, ClientData client)
  161. {
  162. this.character = character;
  163. this.client = client;
  164. blockReader = new BlockReader();
  165. }
  166. }