using System.Collections; using System.Collections.Generic; using UnityEngine; using TMPro; using Photon.Pun; using PhotonPun = Photon.Pun; public class CanvasCountryInfoManager : MonoBehaviour { public GameObject prefabCountryContainer; public Transform countryInfoContainer; public int maxNumberOfCountriesDisplayed = 3; public GameObject info; private int numberOfCountriesDisplayed = 0; // SINGLETON public static CanvasCountryInfoManager instance; public void Awake() { if (instance != null && instance != this) { Destroy(this); } else { instance = this; } } private void Update() { if (countryInfoContainer != null) { numberOfCountriesDisplayed = countryInfoContainer.childCount; } //Check if it should show description if (numberOfCountriesDisplayed == 0) info.SetActive(true); else info.SetActive(false); // Test Inputs if (Input.GetKeyDown(KeyCode.I)) { int testYear = 2018; string testCountry = "Sweden"; float testValueCo2 = DataManager.instance.GetCo2FromYearAndCountry(testYear, testCountry); gameObject.GetComponent().RPC("ShowNewCountryInCanvas", RpcTarget.All, testCountry, testValueCo2.ToString()); } if (Input.GetKeyDown(KeyCode.O)) { gameObject.GetComponent().RPC("ShowNewCountryInCanvas", RpcTarget.All, "Iran", "5.0"); } if (Input.GetKeyDown(KeyCode.P)) { gameObject.GetComponent().RPC("ShowNewCountryInCanvas", RpcTarget.All, "Sweden", "6.0"); } } [PunRPC] public void ShowNewCountryInCanvas(string countryName, string co2ratio) { if (numberOfCountriesDisplayed < maxNumberOfCountriesDisplayed) { GameObject go = Instantiate(prefabCountryContainer, countryInfoContainer); SingleCountryDataUI dataScript = go.GetComponent(); dataScript.SetData(countryName, co2ratio); } } } /*using System.Collections; using System.Collections.Generic; using UnityEngine; using TMPro; using Photon.Pun; using PhotonPun = Photon.Pun; using WPM; public class CanvasCountryInfoManager : MonoBehaviour { public GameObject prefabCountryContainer; public Transform countryInfoContainer; //public GameObject countryInfoObj; //public GameObject country; public int maxNumberOfCountriesDisplayed = 3; public GameObject info; private int numberOfCountriesDisplayed = 0; // SINGLETON public static CanvasCountryInfoManager instance; public void Awake() { if (instance != null && instance != this) { Destroy(this); } else { instance = this; } } private void Update() { if(countryInfoContainer != null) { numberOfCountriesDisplayed = countryInfoContainer.childCount; } //NEEDS RPC //Check if it should show description if(numberOfCountriesDisplayed ==0) info.SetActive(true); else info.SetActive(false); ///// TESTING!! //if(Input.GetKeyDown(KeyCode.I)) //{ // ShowNewCountryInCanvas("Iran", "45.93"); //} //if (Input.GetKeyDown(KeyCode.C)) //{ // ShowNewCountryInCanvas("China", "2784.444"); //} //if (Input.GetKeyDown(KeyCode.S)) //{ // ShowNewCountryInCanvas("Sweden", "5.6"); //} if (Input.GetKeyDown(KeyCode.I)) { int testYear = 2018; string testCountry = "Sweden"; float testValueCo2 = DataManager.instance.GetCo2FromYearAndCountry(testYear, testCountry); ShowNewCountryInCanvas(testCountry, testValueCo2.ToString()); } if (Input.GetKeyDown(KeyCode.O)) { ShowNewCountryInCanvas("Iran", "5.0"); } if (Input.GetKeyDown(KeyCode.P)) { ShowNewCountryInCanvas("Sweden", "6.0"); } } //[PunRPC] public void ShowNewCountryInCanvas(string countryName, string co2ratio) { if(numberOfCountriesDisplayed < maxNumberOfCountriesDisplayed) { //GameObject go = Instantiate(prefabCountryContainer, countryInfoContainer); //GameObject go = SpawnCountryAndInfoContainer(); //SingleCountryDataUI dataScript = go.GetComponent(); var netCountryContainer = PhotonNetwork.Instantiate(prefabCountryContainer.name, new Vector3(countryInfoContainer.position.x, countryInfoContainer.position.y, countryInfoContainer.position.z) , Quaternion.identity); //SingleCountryDataUI dataScript = netCountryContainer.GetComponent(); // netCountryContainer.GetComponent().RPC("SetData", RpcTarget.All, countryName, co2ratio); //dataScript.SetData(countryName, co2ratio); var photonGrabbable = netCountryContainer.GetComponent(); photonGrabbable.TransferOwnershipToLocalPlayer(); } } }*/