mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-28 00:19:27 +00:00
34 lines
838 B
C#
34 lines
838 B
C#
using Mirror;
|
|
using QSB.Messaging;
|
|
using QSB.WorldSync;
|
|
|
|
namespace QSB.OwnershipSync;
|
|
|
|
/// <summary>
|
|
/// always sent to host
|
|
/// </summary>
|
|
public class OwnQueueMessage : QSBMessage<(uint NetId, OwnQueueAction Action)>
|
|
{
|
|
public OwnQueueMessage(uint netId, OwnQueueAction action) : base((netId, action)) =>
|
|
To = 0;
|
|
|
|
public override bool ShouldReceive => QSBWorldSync.AllObjectsReady;
|
|
public override void OnReceiveLocal() => OnReceiveRemote();
|
|
public override void OnReceiveRemote() => NetworkServer.spawned[Data.NetId].ServerUpdateAuthQueue(From, Data.Action);
|
|
}
|
|
|
|
public enum OwnQueueAction
|
|
{
|
|
/// <summary>
|
|
/// add player to the queue
|
|
/// </summary>
|
|
Add,
|
|
/// <summary>
|
|
/// remove player from the queue
|
|
/// </summary>
|
|
Remove,
|
|
/// <summary>
|
|
/// add player to the queue and force them to the front
|
|
/// </summary>
|
|
Force
|
|
} |