Removed allocations from NetId

This commit is contained in:
Albin Corén 2018-04-19 15:39:34 +02:00
parent 503964c475
commit 8e31dbe624

View File

@ -1,5 +1,4 @@
using MLAPI.MonoBehaviours.Core; using MLAPI.MonoBehaviours.Core;
using System;
namespace MLAPI.Data namespace MLAPI.Data
{ {
@ -66,20 +65,15 @@ namespace MLAPI.Data
else else
Meta = 0; Meta = 0;
} }
private static byte[] tempUIntBytes = new byte[4];
private static byte[] tempUShortBytes = new byte[2];
/// <summary> /// <summary>
/// Initializes a new instance of the netId struct from a clientId /// Initializes a new instance of the netId struct from a clientId
/// </summary> /// </summary>
/// <param name="clientId">Client identifier.</param> /// <param name="clientId">Client identifier.</param>
public NetId(uint clientId) public NetId(uint clientId)
{ {
tempUIntBytes = BitConverter.GetBytes(clientId); HostId = (byte)(clientId & 0xFF);
HostId = tempUIntBytes[0]; ConnectionId = (ushort)((byte)((clientId >> 8) & 0xFF) | (ushort)(((clientId >> 16) & 0xFF) << 8));
ConnectionId = BitConverter.ToUInt16(tempUIntBytes, 1); Meta = (byte)((clientId >> 24) & 0xFF);
Meta = tempUIntBytes[3];
} }
/// <summary> /// <summary>
/// Gets the clientId. /// Gets the clientId.
@ -87,12 +81,7 @@ namespace MLAPI.Data
/// <returns>The client identifier.</returns> /// <returns>The client identifier.</returns>
public uint GetClientId() public uint GetClientId()
{ {
tempUShortBytes = BitConverter.GetBytes(ConnectionId); return (uint)HostId | (ushort)((uint)(byte)(ConnectionId & 0xFF) << 8) | (ushort)((uint)(byte)((ConnectionId >> 8) & 0xFF) << 16) | (ushort)((uint)Meta << 24);
tempUIntBytes[0] = HostId;
tempUIntBytes[1] = tempUShortBytes[0];
tempUIntBytes[2] = tempUShortBytes[1];
tempUIntBytes[3] = Meta;
return BitConverter.ToUInt32(tempUIntBytes, 0);
} }
// Rider generated vvv // Rider generated vvv
/// <summary> /// <summary>