diff --git a/MLAPI/Data/Channel.cs b/MLAPI/Data/Channel.cs index 18997fb..dcc92cd 100644 --- a/MLAPI/Data/Channel.cs +++ b/MLAPI/Data/Channel.cs @@ -1,7 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; using UnityEngine.Networking; namespace MLAPI.Data diff --git a/MLAPI/Data/NetworkConfig.cs b/MLAPI/Data/NetworkConfig.cs index 5f8c9f1..dd4d22c 100644 --- a/MLAPI/Data/NetworkConfig.cs +++ b/MLAPI/Data/NetworkConfig.cs @@ -1,13 +1,8 @@ -using MLAPI.MonoBehaviours.Core; -using MLAPI.NetworkingManagerComponents.Binary; +using MLAPI.NetworkingManagerComponents.Binary; using System; using System.Collections.Generic; -using System.IO; -using System.Linq; using System.Security.Cryptography; -using System.Text; using UnityEngine; -using UnityEngine.Networking; namespace MLAPI.Data { diff --git a/MLAPI/Data/SyncedVarField.cs b/MLAPI/Data/SyncedVarField.cs index 1d662a1..d2c132e 100644 --- a/MLAPI/Data/SyncedVarField.cs +++ b/MLAPI/Data/SyncedVarField.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Reflection; -using System.Text; +using System.Reflection; namespace MLAPI.Data { diff --git a/MLAPI/GlobalSuppressions.cs b/MLAPI/GlobalSuppressions.cs index 2b128de..71ac213 100644 --- a/MLAPI/GlobalSuppressions.cs +++ b/MLAPI/GlobalSuppressions.cs @@ -18,3 +18,12 @@ [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.MonoBehaviours.Core.NetworkingManager.Send(System.String,System.String,System.Byte[],System.UInt32,System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.MonoBehaviours.Core.NetworkingManager.Send(System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.MonoBehaviours.Core.NetworkingManager.Send(System.UInt32[],System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] + +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.MonoBehaviours.Core.NetworkingManager.HandleApproval(System.UInt32,System.Boolean,UnityEngine.Vector3,UnityEngine.Quaternion)")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.HandleConnectionApproved(System.UInt32,System.Byte[],System.Int32)")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.HandleTimeSync(System.UInt32,System.Byte[],System.Int32)")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.PassthroughSend(System.UInt32,System.UInt32,System.UInt16,System.Int32,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.Send(System.Collections.Generic.List{System.UInt32},System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.Send(System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.Send(System.String,System.String,System.Byte[],System.UInt32,System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.Send(System.UInt32[],System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] diff --git a/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs b/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs index f9de861..eda5881 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace MLAPI.NetworkingManagerComponents.Binary +namespace MLAPI.NetworkingManagerComponents.Binary { public static class BinaryHelpers { diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs index f76dedb..1cc3fea 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs @@ -97,8 +97,6 @@ namespace MLAPI.NetworkingManagerComponents.Binary lock(result_holder) lock (type_holder) { - //for (int i = 0; i < size; ++i) - // holder.SetValue(ReadByte(), i); if (size == 4) result_holder.SetValue(BinaryHelpers.SwapEndian(ReadUInt()), 0); else result_holder.SetValue(BinaryHelpers.SwapEndian(ReadULong()), 0); Buffer.BlockCopy(result_holder, 0, type_holder, 0, size); diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index 48dc23a..77bba00 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -218,17 +218,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary } else { - //bool signed = IsSigned(t.GetType()); ulong value; - /*if (signed) - { - Type t1 = t.GetType(); - if (t1 == typeof(sbyte)) value = (byte)ZigZagEncode(t as sbyte? ?? 0, 1); - else if (t1 == typeof(short)) value = (ushort)ZigZagEncode(t as short? ?? 0, 2); - else if (t1 == typeof(int)) value = (uint)ZigZagEncode(t as int? ?? 0, 4); - else /*if (t1 == typeof(long)) value = (ulong)ZigZagEncode(t as long? ?? 0, 8); - } - else*/ if (t is byte) { WriteByte(writeTo, t as byte? ?? 0, bitOffset, isAligned); @@ -237,7 +227,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary } else if (t is ushort) value = t as ushort? ?? 0; else if (t is uint) value = t as uint? ?? 0; - else /*if (t is ulong)*/ value = t as ulong? ?? 0; + else value = t as ulong? ?? 0; if (value <= 240) WriteByte(writeTo, (byte)value, bitOffset, isAligned); else if (value <= 2287) @@ -324,8 +314,6 @@ namespace MLAPI.NetworkingManagerComponents.Binary else if (t is bool || t is decimal) count += ba; else count += BytesToRead(t) * 8; } - //else - // Debug.LogWarning("MLAPI: The type \"" + b.GetType() + "\" is not supported by the Binary Serializer. It will be ignored"); return count; } diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs index adff8dc..a7de38b 100644 --- a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs @@ -1,5 +1,4 @@ -using System; -using MLAPI.MonoBehaviours.Core; +using MLAPI.MonoBehaviours.Core; namespace MLAPI.NetworkingManagerComponents.Core { diff --git a/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs b/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs index 4015b41..4e830f7 100644 --- a/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs @@ -2,7 +2,6 @@ using MLAPI.MonoBehaviours.Core; using MLAPI.NetworkingManagerComponents.Binary; using System.Collections.Generic; -using System.IO; using UnityEngine; namespace MLAPI.NetworkingManagerComponents.Core diff --git a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs index f13dee4..1f182fb 100644 --- a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs @@ -1,9 +1,7 @@ using MLAPI.Data; using MLAPI.MonoBehaviours.Core; using MLAPI.NetworkingManagerComponents.Binary; -using System; using System.Collections.Generic; -using System.IO; using UnityEngine; namespace MLAPI.NetworkingManagerComponents.Core