You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/NewUI/LeaderBoard/LeaderboardUIScreen.cs

92 lines
3.0 KiB
C#

2 weeks ago
using System.Collections;
using System.Collections.Generic;
using DG.Tweening;
using PlayFab;
using PlayFab.ClientModels;
using UnityEngine;
public class LeaderboardUIScreen : MonoBehaviour
{
[SerializeField] private GameObject lbItemPrefab;
[SerializeField] private GameObject lbItemSelfPrefab;
[SerializeField] private Transform content;
[SerializeField] private List<LBPedestalItem> _lbPedestalItems;
public void Init()
{
2 weeks ago
Debug.Log("Leaderboard Initialized");
PlayFabManager.Instance.playFabLeaderboards.GetLeaderboard(OnLeaderboardFetchSuccess, OnLeaderboardFetchFailure);
}
public void OnClose()
{
2 weeks ago
// Cleanup leaderboard UI elements
}
2 weeks ago
private void OnLeaderboardFetchSuccess(List<PlayerLeaderboardEntry> leaderboard)
{
foreach (Transform child in content.transform)
{
Destroy(child.gameObject);
}
PopulateLeaderboard(leaderboard);
2 weeks ago
Debug.Log("Leaderboard fetch success");
}
private void PopulateLeaderboard(List<PlayerLeaderboardEntry> leaderboard)
{
foreach (PlayerLeaderboardEntry lbEntry in leaderboard)
{
PopulateLbItem(lbEntry);
if (lbEntry.Position <= 2)
{
PopulatePedestalItem(lbEntry);
}
}
2 weeks ago
content.GetComponent<RectTransform>().DOAnchorPosX(0f, 1f).SetEase(Ease.OutElastic);
}
private void PopulateLbItem(PlayerLeaderboardEntry lbEntry)
{
2 weeks ago
bool isSelf = lbEntry.Profile != null &&
PlayFabManager.Instance.playFabUserDataManager?.myProfile != null &&
lbEntry.Profile.PlayerId == PlayFabManager.Instance.playFabUserDataManager.myProfile.PlayerId;
LBEntryItem lbItem = Instantiate(isSelf ? lbItemSelfPrefab : lbItemPrefab, content).GetComponent<LBEntryItem>();
2 weeks ago
lbItem.nameText.text = lbEntry.DisplayName ?? lbEntry.PlayFabId;
lbItem.rankText.text = (lbEntry.Position + 1).ToString();
lbItem.scoreText.text = lbEntry.StatValue.ToString();
2 weeks ago
PlayFabManager.Instance.playFabUserDataManager.GetPlayerAvatarImage(lbEntry.PlayFabId, (sprite) =>
2 weeks ago
{
lbItem.profilePic.sprite = sprite;
},
(s) =>
{
Debug.Log("Couldn<64>t get pic");
});
}
private void PopulatePedestalItem(PlayerLeaderboardEntry lbEntry)
{
LBPedestalItem pedestalItem = _lbPedestalItems[lbEntry.Position];
2 weeks ago
pedestalItem.nameText.text = lbEntry.DisplayName ?? lbEntry.PlayFabId;
pedestalItem.scoreText.text = lbEntry.StatValue.ToString();
2 weeks ago
PlayFabManager.Instance.playFabUserDataManager.GetPlayerAvatarImage(lbEntry.PlayFabId, (sprite) =>
2 weeks ago
{
pedestalItem.profilePic.sprite = sprite;
},
(s) =>
{
Debug.Log("Couldn<64>t get pic");
});
}
private void OnLeaderboardFetchFailure(PlayFabError obj)
{
2 weeks ago
Debug.LogError("Couldn't Load Leaderboards: " + obj.GenerateErrorReport());
}
2 weeks ago
}