2023-07-29 00:26:12 +00:00
using System ;
2023-07-31 19:51:20 +00:00
using UnityEngine.Events ;
2023-07-29 00:26:12 +00:00
namespace QSB.API ;
2023-07-29 23:34:46 +00:00
public interface IQSBAPI
2023-07-29 00:26:12 +00:00
{
2023-07-31 19:51:20 +00:00
/// <summary>
/// Returns the player ID of the current player.
/// </summary>
2023-07-29 00:26:12 +00:00
uint GetLocalPlayerID ( ) ;
2023-07-31 19:51:20 +00:00
/// <summary>
/// Returns the name of a given player.
/// </summary>
/// <param name="playerID">The ID of the player you want the name of.</param>
string GetPlayerName ( uint playerID ) ;
/// <summary>
/// Returns the list of IDs of all connected players.
/// </summary>
uint [ ] GetPlayerIDs ( ) ;
/// <summary>
/// Invoked when a player joins the game.
/// </summary>
UnityEvent < uint > OnPlayerJoin ( ) ;
/// <summary>
/// Invoked when a player leaves the game.
/// </summary>
UnityEvent < uint > OnPlayerLeave ( ) ;
/// <summary>
/// Sets some arbitrary data for a given player.
/// </summary>
/// <typeparam name="T">The type of the data.</typeparam>
/// <param name="playerId">The ID of the player.</param>
/// <param name="key">The unique key to access this data by.</param>
/// <param name="data">The data to set.</param>
2023-07-29 00:26:12 +00:00
void SetCustomData < T > ( uint playerId , string key , T data ) ;
2023-07-31 19:51:20 +00:00
/// <summary>
/// Returns some arbitrary data from a given player.
/// </summary>
/// <typeparam name="T">The type of the data.</typeparam>
/// <param name="playerId">The ID of the player.</param>
/// <param name="key">The unique key of the data you want to access.</param>
/// <returns>The data requested. If key is not valid, returns default.</returns>
2023-07-29 00:26:12 +00:00
T GetCustomData < T > ( uint playerId , string key ) ;
2023-07-31 19:51:20 +00:00
/// <summary>
/// Sends a message containing arbitrary data to every player.
/// </summary>
/// <typeparam name="T">The type of the data being sent. This type must be serializable.</typeparam>
/// <param name="messageType">The unique key of the message.</param>
/// <param name="data">The data to send.</param>
/// <param name="receiveLocally">If true, the action given to <see cref="RegisterHandler{T}"/> will also be called on the same client that is sending the message.</param>
2023-07-30 10:23:11 +00:00
void SendMessage < T > ( string messageType , T data , bool receiveLocally = false ) ;
2023-07-31 19:51:20 +00:00
/// <summary>
/// Registers an action to be called when a message is received.
/// </summary>
/// <typeparam name="T">The type of the data in the message.</typeparam>
/// <param name="messageType">The unique key of the message.</param>
/// <param name="handler">The action to be ran when the message is received. The uint is the player ID that sent the messsage.</param>
2023-07-30 10:23:11 +00:00
void RegisterHandler < T > ( string messageType , Action < uint , T > handler ) ;
2023-07-29 00:26:12 +00:00
}