You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
232 lines
8.5 KiB
C#
232 lines
8.5 KiB
C#
2 months ago
|
#if DEBUG && !UNITY_WP_8_1 && !UNITY_WSA
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using FlyingWormConsole3.LiteNetLib.Utils;
|
||
|
|
||
|
//Some code parts taked from lidgren-network-gen3
|
||
|
|
||
|
namespace FlyingWormConsole3.LiteNetLib
|
||
|
{
|
||
|
public interface INatPunchListener
|
||
|
{
|
||
|
void OnNatIntroductionRequest(NetEndPoint localEndPoint, NetEndPoint remoteEndPoint, string token);
|
||
|
void OnNatIntroductionSuccess(NetEndPoint targetEndPoint, string token);
|
||
|
}
|
||
|
|
||
|
public class EventBasedNatPunchListener : INatPunchListener
|
||
|
{
|
||
|
public delegate void OnNatIntroductionRequest(NetEndPoint localEndPoint, NetEndPoint remoteEndPoint, string token);
|
||
|
public delegate void OnNatIntroductionSuccess(NetEndPoint targetEndPoint, string token);
|
||
|
|
||
|
public event OnNatIntroductionRequest NatIntroductionRequest;
|
||
|
public event OnNatIntroductionSuccess NatIntroductionSuccess;
|
||
|
|
||
|
void INatPunchListener.OnNatIntroductionRequest(NetEndPoint localEndPoint, NetEndPoint remoteEndPoint, string token)
|
||
|
{
|
||
|
if(NatIntroductionRequest != null)
|
||
|
NatIntroductionRequest(localEndPoint, remoteEndPoint, token);
|
||
|
}
|
||
|
|
||
|
void INatPunchListener.OnNatIntroductionSuccess(NetEndPoint targetEndPoint, string token)
|
||
|
{
|
||
|
if (NatIntroductionSuccess != null)
|
||
|
NatIntroductionSuccess(targetEndPoint, token);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public sealed class NatPunchModule
|
||
|
{
|
||
|
struct RequestEventData
|
||
|
{
|
||
|
public NetEndPoint LocalEndPoint;
|
||
|
public NetEndPoint RemoteEndPoint;
|
||
|
public string Token;
|
||
|
}
|
||
|
|
||
|
struct SuccessEventData
|
||
|
{
|
||
|
public NetEndPoint TargetEndPoint;
|
||
|
public string Token;
|
||
|
}
|
||
|
|
||
|
private readonly NetManager _netBase;
|
||
|
private readonly Queue<RequestEventData> _requestEvents;
|
||
|
private readonly Queue<SuccessEventData> _successEvents;
|
||
|
private const byte HostByte = 1;
|
||
|
private const byte ClientByte = 0;
|
||
|
public const int MaxTokenLength = 256;
|
||
|
|
||
|
private INatPunchListener _natPunchListener;
|
||
|
|
||
|
internal NatPunchModule(NetManager netBase)
|
||
|
{
|
||
|
_netBase = netBase;
|
||
|
_requestEvents = new Queue<RequestEventData>();
|
||
|
_successEvents = new Queue<SuccessEventData>();
|
||
|
}
|
||
|
|
||
|
public void Init(INatPunchListener listener)
|
||
|
{
|
||
|
_natPunchListener = listener;
|
||
|
}
|
||
|
|
||
|
public void NatIntroduce(
|
||
|
NetEndPoint hostInternal,
|
||
|
NetEndPoint hostExternal,
|
||
|
NetEndPoint clientInternal,
|
||
|
NetEndPoint clientExternal,
|
||
|
string additionalInfo)
|
||
|
{
|
||
|
NetDataWriter dw = new NetDataWriter();
|
||
|
|
||
|
//First packet (server)
|
||
|
//send to client
|
||
|
dw.Put(ClientByte);
|
||
|
dw.Put(hostInternal);
|
||
|
dw.Put(hostExternal);
|
||
|
dw.Put(additionalInfo, MaxTokenLength);
|
||
|
|
||
|
var packet = _netBase.PacketPool.GetWithData(PacketProperty.NatIntroduction, dw);
|
||
|
_netBase.SendRawAndRecycle(packet, clientExternal);
|
||
|
|
||
|
//Second packet (client)
|
||
|
//send to server
|
||
|
dw.Reset();
|
||
|
dw.Put(HostByte);
|
||
|
dw.Put(clientInternal);
|
||
|
dw.Put(clientExternal);
|
||
|
dw.Put(additionalInfo, MaxTokenLength);
|
||
|
|
||
|
packet = _netBase.PacketPool.GetWithData(PacketProperty.NatIntroduction, dw);
|
||
|
_netBase.SendRawAndRecycle(packet, hostExternal);
|
||
|
}
|
||
|
|
||
|
public void PollEvents()
|
||
|
{
|
||
|
if (_natPunchListener == null)
|
||
|
return;
|
||
|
lock (_successEvents)
|
||
|
{
|
||
|
while (_successEvents.Count > 0)
|
||
|
{
|
||
|
var evt = _successEvents.Dequeue();
|
||
|
_natPunchListener.OnNatIntroductionSuccess(evt.TargetEndPoint, evt.Token);
|
||
|
}
|
||
|
}
|
||
|
lock (_requestEvents)
|
||
|
{
|
||
|
while (_requestEvents.Count > 0)
|
||
|
{
|
||
|
var evt = _requestEvents.Dequeue();
|
||
|
_natPunchListener.OnNatIntroductionRequest(evt.LocalEndPoint, evt.RemoteEndPoint, evt.Token);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void SendNatIntroduceRequest(NetEndPoint masterServerEndPoint, string additionalInfo)
|
||
|
{
|
||
|
if (!_netBase.IsRunning)
|
||
|
return;
|
||
|
|
||
|
//prepare outgoing data
|
||
|
NetDataWriter dw = new NetDataWriter();
|
||
|
string networkIp = NetUtils.GetLocalIp(LocalAddrType.IPv4);
|
||
|
if (string.IsNullOrEmpty(networkIp))
|
||
|
{
|
||
|
networkIp = NetUtils.GetLocalIp(LocalAddrType.IPv6);
|
||
|
}
|
||
|
int networkPort = _netBase.LocalEndPoint.Port;
|
||
|
NetEndPoint localEndPoint = new NetEndPoint(networkIp, networkPort);
|
||
|
dw.Put(localEndPoint);
|
||
|
dw.Put(additionalInfo, MaxTokenLength);
|
||
|
|
||
|
//prepare packet
|
||
|
var packet = _netBase.PacketPool.GetWithData(PacketProperty.NatIntroductionRequest, dw);
|
||
|
_netBase.SendRawAndRecycle(packet, masterServerEndPoint);
|
||
|
}
|
||
|
|
||
|
private void HandleNatPunch(NetEndPoint senderEndPoint, NetDataReader dr)
|
||
|
{
|
||
|
byte fromHostByte = dr.GetByte();
|
||
|
if (fromHostByte != HostByte && fromHostByte != ClientByte)
|
||
|
{
|
||
|
//garbage
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
//Read info
|
||
|
string additionalInfo = dr.GetString(MaxTokenLength);
|
||
|
NetUtils.DebugWrite(ConsoleColor.Green, "[NAT] punch received from {0} - additional info: {1}", senderEndPoint, additionalInfo);
|
||
|
|
||
|
//Release punch success to client; enabling him to Connect() to msg.Sender if token is ok
|
||
|
lock (_successEvents)
|
||
|
{
|
||
|
_successEvents.Enqueue(new SuccessEventData { TargetEndPoint = senderEndPoint, Token = additionalInfo });
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void HandleNatIntroduction(NetDataReader dr)
|
||
|
{
|
||
|
// read intro
|
||
|
byte hostByte = dr.GetByte();
|
||
|
NetEndPoint remoteInternal = dr.GetNetEndPoint();
|
||
|
NetEndPoint remoteExternal = dr.GetNetEndPoint();
|
||
|
string token = dr.GetString(MaxTokenLength);
|
||
|
|
||
|
NetUtils.DebugWrite(ConsoleColor.Cyan, "[NAT] introduction received; we are designated " + (hostByte == HostByte ? "host" : "client"));
|
||
|
NetDataWriter writer = new NetDataWriter();
|
||
|
|
||
|
// send internal punch
|
||
|
writer.Put(hostByte);
|
||
|
writer.Put(token);
|
||
|
var packet = _netBase.PacketPool.GetWithData(PacketProperty.NatPunchMessage, writer);
|
||
|
_netBase.SendRawAndRecycle(packet, remoteInternal);
|
||
|
NetUtils.DebugWrite(ConsoleColor.Cyan, "[NAT] internal punch sent to " + remoteInternal);
|
||
|
|
||
|
// send external punch
|
||
|
writer.Reset();
|
||
|
writer.Put(hostByte);
|
||
|
writer.Put(token);
|
||
|
packet = _netBase.PacketPool.GetWithData(PacketProperty.NatPunchMessage, writer);
|
||
|
_netBase.SendRawAndRecycle(packet, remoteExternal);
|
||
|
NetUtils.DebugWrite(ConsoleColor.Cyan, "[NAT] external punch sent to " + remoteExternal);
|
||
|
}
|
||
|
|
||
|
private void HandleNatIntroductionRequest(NetEndPoint senderEndPoint, NetDataReader dr)
|
||
|
{
|
||
|
NetEndPoint localEp = dr.GetNetEndPoint();
|
||
|
string token = dr.GetString(MaxTokenLength);
|
||
|
lock (_requestEvents)
|
||
|
{
|
||
|
_requestEvents.Enqueue(new RequestEventData
|
||
|
{
|
||
|
LocalEndPoint = localEp,
|
||
|
RemoteEndPoint = senderEndPoint,
|
||
|
Token = token
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal void ProcessMessage(NetEndPoint senderEndPoint, NetPacket packet)
|
||
|
{
|
||
|
var dr = new NetDataReader(packet.RawData, NetConstants.HeaderSize, packet.Size);
|
||
|
switch (packet.Property)
|
||
|
{
|
||
|
case PacketProperty.NatIntroductionRequest:
|
||
|
//We got request and must introduce
|
||
|
HandleNatIntroductionRequest(senderEndPoint, dr);
|
||
|
break;
|
||
|
case PacketProperty.NatIntroduction:
|
||
|
//We got introduce and must punch
|
||
|
HandleNatIntroduction(dr);
|
||
|
break;
|
||
|
case PacketProperty.NatPunchMessage:
|
||
|
//We got punch and can connect
|
||
|
HandleNatPunch(senderEndPoint, dr);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#endif
|