mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-30 12:32:55 +00:00
35 lines
900 B
C#
35 lines
900 B
C#
using QSB.Messaging;
|
|
using QSB.Player;
|
|
using QSB.Player.TransformSync;
|
|
|
|
namespace QSB.Tools.TranslatorTool.Messages
|
|
{
|
|
public class PlayerTranslatorMessage : QSBBoolMessage
|
|
{
|
|
static PlayerTranslatorMessage()
|
|
{
|
|
GlobalMessenger.AddListener(OWEvents.EquipTranslator, () => Handle(true));
|
|
GlobalMessenger.AddListener(OWEvents.UnequipTranslator, () => Handle(false));
|
|
}
|
|
|
|
private static void Handle(bool equipped)
|
|
{
|
|
if (PlayerTransformSync.LocalInstance)
|
|
{
|
|
new PlayerTranslatorMessage(equipped).Send();
|
|
}
|
|
}
|
|
|
|
private PlayerTranslatorMessage(bool equipped) => Value = equipped;
|
|
|
|
public override void OnReceiveRemote()
|
|
{
|
|
var player = QSBPlayerManager.GetPlayer(From);
|
|
player.TranslatorEquipped = Value;
|
|
player.Translator?.ChangeEquipState(Value);
|
|
}
|
|
|
|
public override void OnReceiveLocal() =>
|
|
QSBPlayerManager.LocalPlayer.TranslatorEquipped = Value;
|
|
}
|
|
} |