您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
49 行
1.6 KiB
49 行
1.6 KiB
using TMPro;
|
|
using Unity.Netcode;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
namespace LobbyRelaySample.ngo
|
|
{
|
|
/// <summary>
|
|
/// Used by the host to actually track scores for all players, and by each client to monitor for updates to their own score.
|
|
/// </summary>
|
|
public class Scorer : NetworkBehaviour
|
|
{
|
|
[SerializeField] private NetworkedDataStore m_dataStore = default;
|
|
private ulong m_localId;
|
|
[SerializeField] private TMP_Text m_scoreOutputText = default;
|
|
|
|
[Tooltip("When the game ends, this will be called once for each player in order of rank (1st-place first, and so on).")]
|
|
[SerializeField] private UnityEvent<PlayerData> m_onGameEnd = default;
|
|
|
|
public override void OnNetworkSpawn()
|
|
{
|
|
m_localId = NetworkManager.Singleton.LocalClientId;
|
|
}
|
|
|
|
// Called on the host.
|
|
public void ScoreSuccess(ulong id)
|
|
{
|
|
int newScore = m_dataStore.UpdateScore(id, 1);
|
|
UpdateScoreOutput_ClientRpc(id, newScore);
|
|
}
|
|
public void ScoreFailure(ulong id)
|
|
{
|
|
int newScore = m_dataStore.UpdateScore(id, -1);
|
|
UpdateScoreOutput_ClientRpc(id, newScore);
|
|
}
|
|
|
|
[ClientRpc]
|
|
private void UpdateScoreOutput_ClientRpc(ulong id, int score)
|
|
{
|
|
if (m_localId == id)
|
|
m_scoreOutputText.text = score.ToString("00");
|
|
}
|
|
|
|
public void OnGameEnd()
|
|
{
|
|
m_dataStore.GetAllPlayerData(m_onGameEnd);
|
|
}
|
|
}
|
|
}
|