Skip to content

Commit

Permalink
submodule update
Browse files Browse the repository at this point in the history
  • Loading branch information
ManOguaR committed Oct 25, 2024
1 parent 66967b6 commit 0971952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NI2S-Node
Submodule NI2S-Node updated 87 files
+1 −0 Directory.Packages.props
+1 −1 src/ARWNI2S.Node.Core/Entities/Logging/Log.cs
+3 −0 src/ARWNI2S.Node.Runtime/ARWNI2S.Node.Runtime.csproj
+1 −1 src/ARWNI2S.Node.Runtime/Infrastructure/Extensions/EnginePartManagerExtensions.cs
+33 −0 src/ARWNI2S.Node.Runtime/Infrastructure/Extensions/GDESKServiceCollectionExtensions.cs
+6 −3 src/ARWNI2S.Node.Runtime/Infrastructure/Extensions/HostServiceCollectionExtensions.cs
+1 −1 src/ARWNI2S.Node.Runtime/Infrastructure/NI2SStartup.cs
+1 −1 src/ARWNI2S.Node.Runtime/LocalNodeContext.cs
+6 −0 src/ARWNI2S.Node.Runtime/NewFolder/DefaultSimulation.cs
+12 −0 src/ARWNI2S.Node.Runtime/NewFolder/DefaultSimulationHost.cs
+4,565 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Actor.cs
+12 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Builder/ComposeTreeNode.cs
+37 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Builder/EntityHierarchyBuilder.cs
+499 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Builder/EntityInitializer.cs
+6 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Builder/EntityInstancingGraph.cs
+75 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Components/ActorComponentBase.cs
+12 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Components/ChildActorComponent.cs
+7 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Components/DefaultRootComponent.cs
+54 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/IActorComponent.cs
+19 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/IActorEntity.cs
+48 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/ISimulableEntity.cs
+15 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Scene/SceneTickType.cs
+6 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/Scene/SimulationScene.cs
+73 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/SimulableEntity.cs
+12 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/World/Builder/SimulationWorldBuilder.cs
+14 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/World/Builder/WorldTreeNode.cs
+28 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/World/SimulationWorld.cs
+9 −0 src/ARWNI2S.Node.Runtime/NewFolder/Entities/World/WorldRootComponent.cs
+6 −0 src/ARWNI2S.Node.Runtime/NewFolder/Events/Event (2).cs
+71 −0 src/ARWNI2S.Node.Runtime/NewFolder/Events/Event.cs
+7 −0 src/ARWNI2S.Node.Runtime/NewFolder/Events/EventDispatcher.cs
+17 −0 src/ARWNI2S.Node.Runtime/NewFolder/Events/EventPool.cs
+31 −0 src/ARWNI2S.Node.Runtime/NewFolder/Events/IEventPool.cs
+9 −0 src/ARWNI2S.Node.Runtime/NewFolder/IDispatcher.cs
+16 −0 src/ARWNI2S.Node.Runtime/NewFolder/ISimulationHostedService.cs
+6 −0 src/ARWNI2S.Node.Runtime/NewFolder/Management/ISimulationManager.cs
+6 −0 src/ARWNI2S.Node.Runtime/NewFolder/Management/WorldManager.cs
+71 −0 src/ARWNI2S.Node.Runtime/NewFolder/SimulationEngine.cs
+261 −0 src/ARWNI2S.Node.Runtime/NewFolder/SimulationHostedService.cs
+1 −1 src/ARWNI2S.Node.Runtime/NodeWorkContext.cs
+2 −9 src/ARWNI2S.Node.Services/Logging/ILogService.cs
+10 −10 src/ARWNI2S.Node.Services/Logging/NodeDbLogger.cs
+9 −0 src/Infrastructure/ARWNI2S.Infrastructure.Abstractions/ARWNI2S.Infrastructure.Abstractions.csproj
+1,203 −0 src/Infrastructure/ARWNI2S.Infrastructure.Abstractions/Logging/ErrorCodes.cs
+2 −3 src/Infrastructure/ARWNI2S.Infrastructure.Abstractions/Logging/ILogConsumer.cs
+119 −0 src/Infrastructure/ARWNI2S.Infrastructure.Abstractions/Logging/LogFormatter.cs
+34 −34 src/Infrastructure/ARWNI2S.Infrastructure.Abstractions/Logging/LoggingEnums.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Abstractions/Telemetry/ITraceTelemetryConsumer.cs
+2 −2 src/Infrastructure/ARWNI2S.Infrastructure.Collections/CollectionBase.cs
+2 −2 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Deque.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Collections/DictionaryBase.cs
+17 −17 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Generic/BigList.cs
+13 −13 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Generic/Deque.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Generic/Pair.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Generic/Triple.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Hash.cs
+58 −58 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Internals/CollectionAlgorithms.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Collections/LRU.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Collections/MultiDictionaryBase.cs
+2 −2 src/Infrastructure/ARWNI2S.Infrastructure.Collections/ReadOnlyCollectionBase.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Collections/RedBlack.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Rendering/SelectList.cs
+4 −4 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Sorted/OrderedBag.cs
+2 −2 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Sorted/OrderedDictionary.cs
+1 −1 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Sorted/OrderedMultiDictionary.cs
+4 −4 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Sorted/OrderedSet.cs
+11 −0 src/Infrastructure/ARWNI2S.Infrastructure.Collections/Sorted/QuickSortedQueue.cs
+26 −0 src/Infrastructure/ARWNI2S.Infrastructure.Commons/ARWNI2S.Infrastructure.Commons.csproj
+6 −1 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Constants.cs
+53 −0 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Extensions/LoggingServiceCollectionExtensions.cs
+113 −0 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/ITraceLogger.cs
+33 −0 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/LoggingExtensions.cs
+152 −0 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/LoggingTools.cs
+0 −225 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/NI2SLogger.cs
+38 −38 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/TraceCode.cs
+162 −946 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/TraceLogger.cs
+1,230 −0 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/TraceLogger.old.cs
+54 −0 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/TraceLoggerFactory.cs
+12 −0 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/TraceLoggingBuilder.cs
+17 −4 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Logging/TraceParserUtils.cs
+4 −5 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Telemetry/Consumers/ConsoleTelemetryConsumer.cs
+4 −3 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Telemetry/Consumers/FileTelemetryConsumer.cs
+4 −5 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Telemetry/Consumers/TraceTelemetryConsumer.cs
+7 −5 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Timing/AsyncTaskSafeTimer.cs
+36 −39 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Timing/SafeTimerBase.cs
+4 −3 src/Infrastructure/ARWNI2S.Infrastructure.Commons/Utilities/Utils.cs
+65 −0 src/Infrastructure/ARWNI2S.Infrastructure.Extensions/Configuration/ServiceCollectionExtensions.cs

0 comments on commit 0971952

Please sign in to comment.