using System.Collections; using System.Collections.Generic; using DG.Tweening; using PlayFab; using PlayFab.ClientModels; using PlayFab.EconomyModels; using UnityEngine; public class LeaderboardUIScreen : MonoBehaviour { [SerializeField] private GameObject lbItemPrefab; [SerializeField] private GameObject lbItemSelfPrefab; [SerializeField] private Transform content; [SerializeField] private Transform contentHOL; [SerializeField] private Transform contentTowerEscape; [SerializeField] private List _lbPedestalItems; public void Init() { PlayFabManager.Instance.playFabLeaderboards.GetLeaderboard(OnLeaderboardFetchSuccess, OnLeaderboardFetchFailure); InitHOL(); InitTowerEscape(); } public void InitHOL() { PlayFabManager.Instance.playFabLeaderboards.GetLeaderboardHOL(OnLeaderboardFetchSuccessHOL, OnLeaderboardFetchFailure); } public void InitTowerEscape() { PlayFabManager.Instance.playFabLeaderboards.GetLeaderboardTowerEscape(OnLeaderboardFetchSuccessTowerEscape, OnLeaderboardFetchFailure); } public void OnClose() { // GameObject[] temp = content.transform.GetComponentsInChildren(); // for (int i = 0; i < temp.Length; i++) // { // Destroy(temp[i]); // } } private void OnLeaderboardFetchSuccess(List leaderboard) { foreach (Transform child in content.transform) { Destroy(child.gameObject); } PopulateLeaderboard(leaderboard); } private void OnLeaderboardFetchSuccessHOL(List leaderboard) { foreach (Transform child in contentHOL.transform) { Destroy(child.gameObject); } PopulateLeaderboardHOL(leaderboard); } private void OnLeaderboardFetchSuccessTowerEscape(List leaderboard) { foreach (Transform child in contentTowerEscape.transform) { Destroy(child.gameObject); } PopulateLeaderboardTowerEscape(leaderboard); } private void PopulateLeaderboard(List leaderboard) { foreach (PlayerLeaderboardEntry lbEntry in leaderboard) { PopulateLbItem(lbEntry); if (lbEntry.Position <= 2) { PopulatePedestalItem(lbEntry); } } content.GetComponent().DOAnchorPosX(0f,1f).SetEase(Ease.OutElastic); } private void PopulateLeaderboardHOL(List leaderboard) { foreach (PlayerLeaderboardEntry lbEntry in leaderboard) { PopulateLbItemHOL(lbEntry); if (lbEntry.Position <= 2) { PopulatePedestalItem(lbEntry); } } contentHOL.GetComponent().DOAnchorPosX(0f, 1f).SetEase(Ease.OutElastic); } private void PopulateLeaderboardTowerEscape(List leaderboard) { foreach (PlayerLeaderboardEntry lbEntry in leaderboard) { PopulateLbItemTowerEscape(lbEntry); if (lbEntry.Position <= 2) { PopulatePedestalItem(lbEntry); } } contentTowerEscape.GetComponent().DOAnchorPosX(0f, 1f).SetEase(Ease.OutElastic); } private void PopulateLbItem(PlayerLeaderboardEntry lbEntry) { bool isSelf = false; if (lbEntry.Profile != null && PlayFabManager.Instance.playFabUserDataManager.myProfile != null) { isSelf = lbEntry.Profile.PlayerId == PlayFabManager.Instance.playFabUserDataManager.myProfile.PlayerId; } LBEntryItem lbItem = Instantiate(isSelf ? lbItemSelfPrefab : lbItemPrefab, content).GetComponent(); lbItem.nameText.text = lbEntry.DisplayName ?? lbEntry.PlayFabId; lbItem.rankText.text = (lbEntry.Position + 1).ToString(); lbItem.scoreText.text = lbEntry.StatValue.ToString(); PlayFabManager.Instance.playFabUserDataManager.GetPlayerAvatarImage(lbEntry.PlayFabId, sprite => { lbItem.profilePic.sprite = sprite; }, error => { Debug.Log("Couldn't get pic"); }); } private void PopulateLbItemHOL(PlayerLeaderboardEntry lbEntry) { bool isSelf = false; if (lbEntry.Profile != null && PlayFabManager.Instance.playFabUserDataManager.myProfile != null) { isSelf = lbEntry.Profile.PlayerId == PlayFabManager.Instance.playFabUserDataManager.myProfile.PlayerId; } LBEntryItem lbItem = Instantiate(isSelf ? lbItemSelfPrefab : lbItemPrefab, contentHOL).GetComponent(); lbItem.nameText.text = lbEntry.DisplayName ?? lbEntry.PlayFabId; lbItem.rankText.text = (lbEntry.Position + 1).ToString(); lbItem.scoreText.text = lbEntry.StatValue.ToString(); PlayFabManager.Instance.playFabUserDataManager.GetPlayerAvatarImage(lbEntry.PlayFabId, sprite => { lbItem.profilePic.sprite = sprite; }, error => { Debug.Log("Couldn't get pic"); }); } private void PopulateLbItemTowerEscape(PlayerLeaderboardEntry lbEntry) { bool isSelf = false; if (lbEntry.Profile != null && PlayFabManager.Instance.playFabUserDataManager.myProfile != null) { isSelf = lbEntry.Profile.PlayerId == PlayFabManager.Instance.playFabUserDataManager.myProfile.PlayerId; } LBEntryItem lbItem = Instantiate(isSelf ? lbItemSelfPrefab : lbItemPrefab, contentTowerEscape).GetComponent(); lbItem.nameText.text = lbEntry.DisplayName ?? lbEntry.PlayFabId; lbItem.rankText.text = (lbEntry.Position + 1).ToString(); lbItem.scoreText.text = lbEntry.StatValue.ToString(); PlayFabManager.Instance.playFabUserDataManager.GetPlayerAvatarImage(lbEntry.PlayFabId, sprite => { lbItem.profilePic.sprite = sprite; }, error => { Debug.Log("Couldn't get pic"); }); } private void PopulatePedestalItem(PlayerLeaderboardEntry lbEntry) { LBPedestalItem pedestalItem = _lbPedestalItems[lbEntry.Position]; pedestalItem.nameText.text = "PlayerName"; pedestalItem.scoreText.text = "0"; pedestalItem.nameText.text = lbEntry.DisplayName??lbEntry.PlayFabId; pedestalItem.scoreText.text = lbEntry.StatValue.ToString(); PlayFabManager.Instance.playFabUserDataManager.GetPlayerAvatarImage(lbEntry.PlayFabId, (sprite) => { pedestalItem.profilePic.sprite = sprite; }, (s) => { Debug.Log("Could'nt get pic"); }); } private void OnLeaderboardFetchFailure(PlayFabError obj) { Debug.Log("Couldn't Load Leaderboards"); throw new System.NotImplementedException(); } }