using System.Collections.Generic; using System.Linq; using TMPro; using UnityEngine; public class QuestionHandler : MonoBehaviour { public GameObject managers; private GameManager gameManager; public TextMeshProUGUI explainText; public PromptList promptList; private List player2questions; private int currentQuestion = 0; void OnEnable() { player2questions = gameManager.myRoom.GetQuestionsByPlayer(gameManager.currentPlayer); Redraw(++currentQuestion); } void OnDisable() { player2questions = null; } void Redraw(int currentQuestion) { Prompt prompt = promptList.prompts.Find(x => x.id == player2questions[currentQuestion - 1].promptId); explainText.SetText(prompt.en); CameraManager cameraManager = gameObject.GetComponent(); cameraManager.WebcamResume(); } string GetPropRef(string playerId) { return gameManager.myRoom.questions[(currentQuestion - 1).ToString()].propositions.First(x => x.Value.owner.id == playerId).Key; } public void OnSubmitButton() { StorageManager storageManager = managers.GetComponent(); storageManager.UploadPhoto( gameManager.myRoom.code, gameManager.currentPlayer.id, currentQuestion, GetPropRef(gameManager.currentPlayer.id)); if (currentQuestion < 2) { Redraw(++currentQuestion); } else { gameManager.myRoom.currentState = (int) GameState.PropositionsSent; } } // Start is called before the first frame update void Start() { gameManager = managers.GetComponent(); } // Update is called once per frame void Update() { } }