2024-02-12 17:53:51 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using LiteNetLib;
|
|
|
|
using Microsoft.Xna.Framework.Input;
|
|
|
|
using Syntriax.Engine.Input;
|
|
|
|
using Syntriax.Engine.Network;
|
|
|
|
|
|
|
|
namespace Pong.Behaviours;
|
|
|
|
|
|
|
|
public class NetworkedKeyboardInputs : NetworkBehaviour, IButtonInputs<Keys>
|
|
|
|
{
|
2024-02-13 11:16:43 +03:00
|
|
|
private readonly Dictionary<Keys, Action<IButtonInputs<Keys>, Keys>?> OnPressed = new(256);
|
|
|
|
private readonly Dictionary<Keys, Action<IButtonInputs<Keys>, Keys>?> OnReleased = new(256);
|
2024-02-12 17:53:51 +03:00
|
|
|
|
|
|
|
private int cachePressedCurrentlyCount = 0;
|
|
|
|
private readonly Keys[] cachePressedCurrently = new Keys[256];
|
|
|
|
|
|
|
|
private int cachePressedPreviouslyCount = 0;
|
|
|
|
private readonly Keys[] cachePressedPreviously = new Keys[256];
|
|
|
|
|
|
|
|
public void RegisterOnPress(Keys key, Action<IButtonInputs<Keys>, Keys> callback)
|
|
|
|
{
|
|
|
|
if (OnPressed.TryGetValue(key, out var action))
|
|
|
|
{
|
|
|
|
action += callback;
|
2024-02-13 11:16:43 +03:00
|
|
|
OnPressed.Remove(key);
|
|
|
|
OnPressed.Add(key, action);
|
2024-02-12 17:53:51 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
OnPressed.Add(key, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void UnregisterOnPress(Keys key, Action<IButtonInputs<Keys>, Keys> callback)
|
|
|
|
{
|
|
|
|
if (OnPressed.TryGetValue(key, out var action))
|
|
|
|
action -= callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void RegisterOnRelease(Keys key, Action<IButtonInputs<Keys>, Keys> callback)
|
|
|
|
{
|
|
|
|
if (OnReleased.TryGetValue(key, out var action))
|
|
|
|
{
|
|
|
|
action += callback;
|
2024-02-13 11:16:43 +03:00
|
|
|
OnReleased.Remove(key);
|
|
|
|
OnReleased.Add(key, action);
|
2024-02-12 17:53:51 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
OnReleased.Add(key, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void UnregisterOnRelease(Keys key, Action<IButtonInputs<Keys>, Keys> callback)
|
|
|
|
{
|
|
|
|
if (OnReleased.TryGetValue(key, out var action))
|
|
|
|
action -= callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnUpdate()
|
|
|
|
{
|
|
|
|
if (!IsServer && !LocalAssigned)
|
|
|
|
return;
|
|
|
|
|
|
|
|
KeyboardState keyboardState = Keyboard.GetState();
|
|
|
|
keyboardState.GetPressedKeys(cachePressedCurrently);
|
|
|
|
cachePressedCurrentlyCount = keyboardState.GetPressedKeyCount();
|
|
|
|
|
|
|
|
for (int i = 0; i < cachePressedCurrentlyCount; i++)
|
|
|
|
{
|
|
|
|
Keys currentlyPressedKey = cachePressedCurrently[i];
|
|
|
|
|
|
|
|
if (!OnPressed.TryGetValue(currentlyPressedKey, out var action))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (WasPressed(currentlyPressedKey))
|
|
|
|
continue;
|
|
|
|
|
2024-02-13 11:16:43 +03:00
|
|
|
action?.Invoke(this, currentlyPressedKey);
|
2024-02-12 17:53:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < cachePressedPreviouslyCount; i++)
|
|
|
|
{
|
|
|
|
Keys previouslyPressedKey = cachePressedPreviously[i];
|
|
|
|
|
|
|
|
if (!OnReleased.TryGetValue(previouslyPressedKey, out var action))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (IsPressed(previouslyPressedKey))
|
|
|
|
continue;
|
|
|
|
|
2024-02-13 11:16:43 +03:00
|
|
|
action?.Invoke(this, previouslyPressedKey);
|
2024-02-12 17:53:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Array.Copy(cachePressedCurrently, cachePressedPreviously, cachePressedCurrentlyCount);
|
|
|
|
cachePressedPreviouslyCount = cachePressedCurrentlyCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool IsPressed(Keys key)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < cachePressedCurrentlyCount; i++)
|
|
|
|
if (cachePressedCurrently[i] == key)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool WasPressed(Keys key)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < cachePressedPreviouslyCount; i++)
|
|
|
|
if (cachePressedPreviously[i] == key)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-02-13 11:16:43 +03:00
|
|
|
protected override void OnInitialize()
|
|
|
|
{
|
|
|
|
base.OnInitialize();
|
|
|
|
foreach (Keys key in Enum.GetValues(typeof(Keys)))
|
|
|
|
{
|
|
|
|
RegisterOnPress(key, (keys, keyVal) =>
|
|
|
|
{
|
|
|
|
if (!LocalAssigned && !IsServer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var netDataWriter = NetworkCommunicator.GetMessageWriter(this);
|
|
|
|
netDataWriter.Put(true);
|
|
|
|
netDataWriter.Put((int)key);
|
|
|
|
NetworkCommunicator.Manager.SendToAll(netDataWriter, DeliveryMethod.ReliableOrdered);
|
|
|
|
});
|
|
|
|
RegisterOnRelease(key, (keys, keyVal) =>
|
|
|
|
{
|
|
|
|
if (!LocalAssigned && !IsServer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var netDataWriter = NetworkCommunicator.GetMessageWriter(this);
|
|
|
|
netDataWriter.Put(false);
|
|
|
|
netDataWriter.Put((int)key);
|
|
|
|
NetworkCommunicator.Manager.SendToAll(netDataWriter, DeliveryMethod.ReliableOrdered);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-12 17:53:51 +03:00
|
|
|
protected override void OnMessageReceived(NetPacketReader reader, NetPeer peer)
|
|
|
|
{
|
|
|
|
bool isPressed = reader.GetBool();
|
|
|
|
Keys key = (Keys)reader.GetInt();
|
|
|
|
|
|
|
|
if (isPressed)
|
|
|
|
if (OnPressed.TryGetValue(key, out var action))
|
2024-02-13 11:16:43 +03:00
|
|
|
action?.Invoke(this, key);
|
2024-02-12 17:53:51 +03:00
|
|
|
if (!isPressed)
|
|
|
|
if (OnReleased.TryGetValue(key, out var action))
|
2024-02-13 11:16:43 +03:00
|
|
|
action?.Invoke(this, key);
|
2024-02-12 17:53:51 +03:00
|
|
|
}
|
|
|
|
}
|