Split the NetworkingManager components to smaller namespaces
This commit is contained in:
parent
691fd26075
commit
679c56a62f
@ -73,11 +73,11 @@
|
||||
<Compile Include="Data\TrackedPointData.cs" />
|
||||
<Compile Include="MonoBehaviours\Prototyping\NetworkedAnimator.cs" />
|
||||
<Compile Include="MonoBehaviours\Prototyping\NetworkedNavMeshAgent.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\BinarySerializer.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\CryptographyHelper.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\DiffieHellman.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\EllipticCurve.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\LagCompensationManager.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Binary\BinarySerializer.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Cryptography\CryptographyHelper.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Cryptography\DiffieHellman.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Cryptography\EllipticCurve.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Core\LagCompensationManager.cs" />
|
||||
<Compile Include="MonoBehaviours\Core\NetworkedBehaviour.cs" />
|
||||
<Compile Include="Data\NetworkedClient.cs" />
|
||||
<Compile Include="MonoBehaviours\Core\NetworkedObject.cs" />
|
||||
@ -85,14 +85,14 @@
|
||||
<Compile Include="MonoBehaviours\Core\NetworkingManager.cs" />
|
||||
<Compile Include="MonoBehaviours\Core\TrackedObject.cs" />
|
||||
<Compile Include="MonoBehaviours\Prototyping\NetworkedTransform.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\MessageManager.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\NetworkPoolManager.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\NetworkSceneManager.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\SpawnManager.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Core\MessageManager.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Core\NetworkPoolManager.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Core\NetworkSceneManager.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Core\SpawnManager.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\ClientIdManager.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Core\ClientIdManager.cs" />
|
||||
<Compile Include="Data\ClientIdKey.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\MessageChunker.cs" />
|
||||
<Compile Include="NetworkingManagerComponents\Binary\MessageChunker.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
|
@ -1,12 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using MLAPI.NetworkingManagerComponents;
|
||||
using System.Reflection;
|
||||
using MLAPI.Attributes;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using MLAPI.Data;
|
||||
using MLAPI.NetworkingManagerComponents.Binary;
|
||||
using MLAPI.NetworkingManagerComponents.Core;
|
||||
|
||||
namespace MLAPI.MonoBehaviours.Core
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
using MLAPI.NetworkingManagerComponents;
|
||||
using MLAPI.NetworkingManagerComponents.Core;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
@ -1,5 +1,4 @@
|
||||
using MLAPI.Data;
|
||||
using MLAPI.NetworkingManagerComponents;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
@ -8,6 +7,8 @@ using UnityEngine;
|
||||
using UnityEngine.Networking;
|
||||
using System.Linq;
|
||||
using System.Security.Cryptography;
|
||||
using MLAPI.NetworkingManagerComponents.Cryptography;
|
||||
using MLAPI.NetworkingManagerComponents.Core;
|
||||
|
||||
namespace MLAPI.MonoBehaviours.Core
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
using MLAPI.Data;
|
||||
using MLAPI.NetworkingManagerComponents;
|
||||
using MLAPI.NetworkingManagerComponents.Core;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
|
@ -6,7 +6,7 @@ using System.Reflection;
|
||||
using System.Text;
|
||||
using UnityEngine;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Binary
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper class for serializing classes to binary
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Binary
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper class to chunk messages
|
@ -1,8 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using MLAPI.Data;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Core
|
||||
{
|
||||
internal static class ClientIdManager
|
||||
{
|
@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Networking;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// The main class for controlling lag compensation
|
@ -3,7 +3,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Core
|
||||
{
|
||||
internal static class MessageManager
|
||||
{
|
@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using UnityEngine;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Main class for managing network pools
|
@ -5,7 +5,7 @@ using System.Linq;
|
||||
using UnityEngine;
|
||||
using UnityEngine.SceneManagement;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Main class for managing network scenes
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using UnityEngine;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Core
|
||||
{
|
||||
internal static class SpawnManager
|
||||
{
|
@ -2,7 +2,7 @@
|
||||
using System.Security.Cryptography;
|
||||
using System.IO;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Cryptography
|
||||
{
|
||||
/// <summary>
|
||||
/// Helper class for encryption purposes
|
@ -3,7 +3,7 @@ using IntXLib;
|
||||
using System.Text;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Cryptography
|
||||
{
|
||||
internal class EllipticDiffieHellman
|
||||
{
|
@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using IntXLib;
|
||||
|
||||
namespace MLAPI.NetworkingManagerComponents
|
||||
namespace MLAPI.NetworkingManagerComponents.Cryptography
|
||||
{
|
||||
internal class CurvePoint
|
||||
{
|
Loading…
x
Reference in New Issue
Block a user