mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-11 18:41:59 +00:00
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using QSB.EventsCore;
|
|
using QSB.Utility;
|
|
using QSB.WorldSync;
|
|
using QSB.WorldSync.Events;
|
|
|
|
namespace QSB.OrbSync.Events
|
|
{
|
|
public class OrbSlotEvent : QSBEvent<BoolWorldObjectMessage>
|
|
{
|
|
public override EventType Type => EventType.OrbSlot;
|
|
|
|
public override void SetupListener() => GlobalMessenger<int, bool>.AddListener(EventNames.QSBOrbSlot, Handler);
|
|
|
|
public override void CloseListener() => GlobalMessenger<int, bool>.RemoveListener(EventNames.QSBOrbSlot, Handler);
|
|
|
|
private void Handler(int id, bool state) => SendEvent(CreateMessage(id, state));
|
|
|
|
private BoolWorldObjectMessage CreateMessage(int id, bool state) => new BoolWorldObjectMessage
|
|
{
|
|
AboutId = LocalPlayerId,
|
|
ObjectId = id,
|
|
State = state
|
|
};
|
|
|
|
public override void OnReceiveRemote(BoolWorldObjectMessage message)
|
|
{
|
|
DebugLog.DebugWrite($"receive slot {message.ObjectId} to {message.State}");
|
|
var orbSlot = WorldRegistry.GetObject<QSBOrbSlot>(message.ObjectId);
|
|
orbSlot?.SetState(message.State);
|
|
}
|
|
}
|
|
}
|