From a5cd7da48747254033937f3aa6fef097746e949c Mon Sep 17 00:00:00 2001 From: Timothy Schenk Date: Thu, 4 Apr 2024 16:57:42 +0200 Subject: [PATCH] chore: PacketMediator renaming --- Continuity.AuthServer/AuthSession.cs | 2 +- Continuity.AuthServer/Consumers/PacketConsumer.cs | 2 +- Continuity.AuthServer/Continuity.AuthServer.csproj | 2 +- .../PacketHandlers/ChannelSelectionHandler.cs | 2 +- .../PacketHandlers/CharacterCreationHandler.cs | 2 +- .../PacketHandlers/CharacterDeletionHandler.cs | 2 +- .../PacketHandlers/CharacterNameCheckHandler.cs | 2 +- Continuity.AuthServer/PacketHandlers/LoginHandler.cs | 2 +- Continuity.AuthServer/Program.cs | 2 +- Continuity.sln | 6 ++++++ Wonderking/Packets/Incoming/ChannelSelectionPacket.cs | 2 +- Wonderking/Packets/Incoming/CharacterCreationPacket.cs | 2 +- Wonderking/Packets/Incoming/CharacterDeletePacket.cs | 2 +- Wonderking/Packets/Incoming/CharacterNameCheckPacket.cs | 2 +- Wonderking/Packets/Incoming/LoginInfoPacket.cs | 2 +- .../Packets/Outgoing/ChannelSelectionResponsePacket.cs | 2 +- .../Packets/Outgoing/CharacterCreationResponsePacket.cs | 2 +- .../Packets/Outgoing/CharacterDeleteResponsePacket.cs | 2 +- .../Packets/Outgoing/CharacterNameCheckPacketResponse.cs | 2 +- .../Outgoing/CharacterSelectionSetGuildNamePacket.cs | 2 +- Wonderking/Packets/Outgoing/LoginResponsePacket.cs | 2 +- Wonderking/Packets/WonderkingPacketIdAttribute.cs | 2 +- Wonderking/Wonderking.csproj | 2 +- 23 files changed, 28 insertions(+), 22 deletions(-) diff --git a/Continuity.AuthServer/AuthSession.cs b/Continuity.AuthServer/AuthSession.cs index 447c108..75f47ea 100644 --- a/Continuity.AuthServer/AuthSession.cs +++ b/Continuity.AuthServer/AuthSession.cs @@ -5,7 +5,7 @@ using Continuity.AuthServer.Packets; using MassTransit.Mediator; using Microsoft.Extensions.Logging; using NetCoreServer; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Packets; namespace Continuity.AuthServer; diff --git a/Continuity.AuthServer/Consumers/PacketConsumer.cs b/Continuity.AuthServer/Consumers/PacketConsumer.cs index 4eb8998..1571b3a 100644 --- a/Continuity.AuthServer/Consumers/PacketConsumer.cs +++ b/Continuity.AuthServer/Consumers/PacketConsumer.cs @@ -4,7 +4,7 @@ using System.Diagnostics; using Continuity.AuthServer.Packets; using JetBrains.Annotations; using MassTransit; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Packets; namespace Continuity.AuthServer.Consumers; diff --git a/Continuity.AuthServer/Continuity.AuthServer.csproj b/Continuity.AuthServer/Continuity.AuthServer.csproj index daa2252..9c9b267 100644 --- a/Continuity.AuthServer/Continuity.AuthServer.csproj +++ b/Continuity.AuthServer/Continuity.AuthServer.csproj @@ -102,7 +102,7 @@ - + diff --git a/Continuity.AuthServer/PacketHandlers/ChannelSelectionHandler.cs b/Continuity.AuthServer/PacketHandlers/ChannelSelectionHandler.cs index d4f2444..4b676eb 100644 --- a/Continuity.AuthServer/PacketHandlers/ChannelSelectionHandler.cs +++ b/Continuity.AuthServer/PacketHandlers/ChannelSelectionHandler.cs @@ -4,7 +4,7 @@ using Continuity.AuthServer.DB; using Continuity.AuthServer.DB.Documents; using DotNext.Collections.Generic; using Microsoft.EntityFrameworkCore; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Packets.Incoming; using Wonderking.Packets.Outgoing; using Wonderking.Packets.Outgoing.Data; diff --git a/Continuity.AuthServer/PacketHandlers/CharacterCreationHandler.cs b/Continuity.AuthServer/PacketHandlers/CharacterCreationHandler.cs index 6dfe60a..f27a508 100644 --- a/Continuity.AuthServer/PacketHandlers/CharacterCreationHandler.cs +++ b/Continuity.AuthServer/PacketHandlers/CharacterCreationHandler.cs @@ -4,7 +4,7 @@ using Continuity.AuthServer.DB; using Continuity.AuthServer.DB.Documents; using Continuity.AuthServer.Services; using Microsoft.EntityFrameworkCore; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Game.Data.Character; using Wonderking.Game.Mapping; using Wonderking.Packets.Incoming; diff --git a/Continuity.AuthServer/PacketHandlers/CharacterDeletionHandler.cs b/Continuity.AuthServer/PacketHandlers/CharacterDeletionHandler.cs index e44979e..56e06d5 100644 --- a/Continuity.AuthServer/PacketHandlers/CharacterDeletionHandler.cs +++ b/Continuity.AuthServer/PacketHandlers/CharacterDeletionHandler.cs @@ -2,7 +2,7 @@ using Continuity.AuthServer.DB; using Microsoft.EntityFrameworkCore; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Packets.Incoming; using Wonderking.Packets.Outgoing; diff --git a/Continuity.AuthServer/PacketHandlers/CharacterNameCheckHandler.cs b/Continuity.AuthServer/PacketHandlers/CharacterNameCheckHandler.cs index 89482c3..5d187c6 100644 --- a/Continuity.AuthServer/PacketHandlers/CharacterNameCheckHandler.cs +++ b/Continuity.AuthServer/PacketHandlers/CharacterNameCheckHandler.cs @@ -2,7 +2,7 @@ using Continuity.AuthServer.DB; using Microsoft.EntityFrameworkCore; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Packets.Incoming; using Wonderking.Packets.Outgoing; diff --git a/Continuity.AuthServer/PacketHandlers/LoginHandler.cs b/Continuity.AuthServer/PacketHandlers/LoginHandler.cs index 75c8bc9..c4cc0d6 100644 --- a/Continuity.AuthServer/PacketHandlers/LoginHandler.cs +++ b/Continuity.AuthServer/PacketHandlers/LoginHandler.cs @@ -10,7 +10,7 @@ using Konscious.Security.Cryptography; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Packets.Incoming; using Wonderking.Packets.Outgoing; using Wonderking.Packets.Outgoing.Data; diff --git a/Continuity.AuthServer/Program.cs b/Continuity.AuthServer/Program.cs index 43d2b6c..5b76c4e 100644 --- a/Continuity.AuthServer/Program.cs +++ b/Continuity.AuthServer/Program.cs @@ -19,7 +19,7 @@ using OpenTelemetry.Logs; using OpenTelemetry.Metrics; using OpenTelemetry.Resources; using OpenTelemetry.Trace; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Game.Mapping; using Wonderking.Packets; diff --git a/Continuity.sln b/Continuity.sln index ebb8be6..dafe5b4 100644 --- a/Continuity.sln +++ b/Continuity.sln @@ -6,6 +6,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Benchmarks", "Benchmarks\Be EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wonderking", "Wonderking\Wonderking.csproj", "{6B53A10B-C397-4347-BB00-A12272D0528E}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Continuity.WorldServer", "Continuity.WorldServer\Continuity.WorldServer.csproj", "{740E4A11-D2DB-4A36-8811-5D599311220A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -24,5 +26,9 @@ Global {6B53A10B-C397-4347-BB00-A12272D0528E}.Debug|Any CPU.Build.0 = Debug|Any CPU {6B53A10B-C397-4347-BB00-A12272D0528E}.Release|Any CPU.ActiveCfg = Release|Any CPU {6B53A10B-C397-4347-BB00-A12272D0528E}.Release|Any CPU.Build.0 = Release|Any CPU + {740E4A11-D2DB-4A36-8811-5D599311220A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {740E4A11-D2DB-4A36-8811-5D599311220A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {740E4A11-D2DB-4A36-8811-5D599311220A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {740E4A11-D2DB-4A36-8811-5D599311220A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal diff --git a/Wonderking/Packets/Incoming/ChannelSelectionPacket.cs b/Wonderking/Packets/Incoming/ChannelSelectionPacket.cs index 84b23e4..97b2221 100644 --- a/Wonderking/Packets/Incoming/ChannelSelectionPacket.cs +++ b/Wonderking/Packets/Incoming/ChannelSelectionPacket.cs @@ -1,6 +1,6 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. -using Rai.PacketMediator; +using RaiNote.PacketMediator; namespace Wonderking.Packets.Incoming; diff --git a/Wonderking/Packets/Incoming/CharacterCreationPacket.cs b/Wonderking/Packets/Incoming/CharacterCreationPacket.cs index 707fe04..a33862c 100644 --- a/Wonderking/Packets/Incoming/CharacterCreationPacket.cs +++ b/Wonderking/Packets/Incoming/CharacterCreationPacket.cs @@ -1,7 +1,7 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. using System.Text; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Game.Data.Character; namespace Wonderking.Packets.Incoming; diff --git a/Wonderking/Packets/Incoming/CharacterDeletePacket.cs b/Wonderking/Packets/Incoming/CharacterDeletePacket.cs index 18c63cc..56b15ea 100644 --- a/Wonderking/Packets/Incoming/CharacterDeletePacket.cs +++ b/Wonderking/Packets/Incoming/CharacterDeletePacket.cs @@ -1,7 +1,7 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. using System.Text; -using Rai.PacketMediator; +using RaiNote.PacketMediator; namespace Wonderking.Packets.Incoming; diff --git a/Wonderking/Packets/Incoming/CharacterNameCheckPacket.cs b/Wonderking/Packets/Incoming/CharacterNameCheckPacket.cs index 2f55b1b..423a2cb 100644 --- a/Wonderking/Packets/Incoming/CharacterNameCheckPacket.cs +++ b/Wonderking/Packets/Incoming/CharacterNameCheckPacket.cs @@ -1,7 +1,7 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. using System.Text; -using Rai.PacketMediator; +using RaiNote.PacketMediator; namespace Wonderking.Packets.Incoming; diff --git a/Wonderking/Packets/Incoming/LoginInfoPacket.cs b/Wonderking/Packets/Incoming/LoginInfoPacket.cs index 8f1b228..fabf7ef 100644 --- a/Wonderking/Packets/Incoming/LoginInfoPacket.cs +++ b/Wonderking/Packets/Incoming/LoginInfoPacket.cs @@ -1,7 +1,7 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. using System.Text; -using Rai.PacketMediator; +using RaiNote.PacketMediator; namespace Wonderking.Packets.Incoming; diff --git a/Wonderking/Packets/Outgoing/ChannelSelectionResponsePacket.cs b/Wonderking/Packets/Outgoing/ChannelSelectionResponsePacket.cs index 7d621d3..7d874f7 100644 --- a/Wonderking/Packets/Outgoing/ChannelSelectionResponsePacket.cs +++ b/Wonderking/Packets/Outgoing/ChannelSelectionResponsePacket.cs @@ -2,7 +2,7 @@ using System.Buffers.Binary; using System.Text; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Packets.Outgoing.Data; namespace Wonderking.Packets.Outgoing; diff --git a/Wonderking/Packets/Outgoing/CharacterCreationResponsePacket.cs b/Wonderking/Packets/Outgoing/CharacterCreationResponsePacket.cs index a2bbb96..4bf02d3 100644 --- a/Wonderking/Packets/Outgoing/CharacterCreationResponsePacket.cs +++ b/Wonderking/Packets/Outgoing/CharacterCreationResponsePacket.cs @@ -2,7 +2,7 @@ using System.Buffers.Binary; using System.Text; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Packets.Outgoing.Data; namespace Wonderking.Packets.Outgoing; diff --git a/Wonderking/Packets/Outgoing/CharacterDeleteResponsePacket.cs b/Wonderking/Packets/Outgoing/CharacterDeleteResponsePacket.cs index fb9628d..0fe28c8 100644 --- a/Wonderking/Packets/Outgoing/CharacterDeleteResponsePacket.cs +++ b/Wonderking/Packets/Outgoing/CharacterDeleteResponsePacket.cs @@ -1,6 +1,6 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. -using Rai.PacketMediator; +using RaiNote.PacketMediator; namespace Wonderking.Packets.Outgoing; diff --git a/Wonderking/Packets/Outgoing/CharacterNameCheckPacketResponse.cs b/Wonderking/Packets/Outgoing/CharacterNameCheckPacketResponse.cs index 165e6ac..83c2adc 100644 --- a/Wonderking/Packets/Outgoing/CharacterNameCheckPacketResponse.cs +++ b/Wonderking/Packets/Outgoing/CharacterNameCheckPacketResponse.cs @@ -1,6 +1,6 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. -using Rai.PacketMediator; +using RaiNote.PacketMediator; namespace Wonderking.Packets.Outgoing; diff --git a/Wonderking/Packets/Outgoing/CharacterSelectionSetGuildNamePacket.cs b/Wonderking/Packets/Outgoing/CharacterSelectionSetGuildNamePacket.cs index 607b795..3434307 100644 --- a/Wonderking/Packets/Outgoing/CharacterSelectionSetGuildNamePacket.cs +++ b/Wonderking/Packets/Outgoing/CharacterSelectionSetGuildNamePacket.cs @@ -1,7 +1,7 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. using System.Text; -using Rai.PacketMediator; +using RaiNote.PacketMediator; namespace Wonderking.Packets.Outgoing; diff --git a/Wonderking/Packets/Outgoing/LoginResponsePacket.cs b/Wonderking/Packets/Outgoing/LoginResponsePacket.cs index 6cadb5e..4aaaaf0 100644 --- a/Wonderking/Packets/Outgoing/LoginResponsePacket.cs +++ b/Wonderking/Packets/Outgoing/LoginResponsePacket.cs @@ -1,7 +1,7 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. using System.Buffers.Binary; -using Rai.PacketMediator; +using RaiNote.PacketMediator; using Wonderking.Packets.Outgoing.Data; namespace Wonderking.Packets.Outgoing; diff --git a/Wonderking/Packets/WonderkingPacketIdAttribute.cs b/Wonderking/Packets/WonderkingPacketIdAttribute.cs index ad02682..a2f2936 100644 --- a/Wonderking/Packets/WonderkingPacketIdAttribute.cs +++ b/Wonderking/Packets/WonderkingPacketIdAttribute.cs @@ -1,6 +1,6 @@ // Licensed to Timothy Schenk under the GNU AGPL Version 3 License. -using Rai.PacketMediator; +using RaiNote.PacketMediator; namespace Wonderking.Packets; diff --git a/Wonderking/Wonderking.csproj b/Wonderking/Wonderking.csproj index 4cffbc6..3729ebf 100644 --- a/Wonderking/Wonderking.csproj +++ b/Wonderking/Wonderking.csproj @@ -35,7 +35,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - +