From 78dcc9c2df1f5d0dd80825eb8b70895913b8c1cc Mon Sep 17 00:00:00 2001 From: Longfeng Qin Date: Tue, 10 Dec 2024 23:08:39 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=96=B0=E6=95=B4=E7=90=86=E8=A7=92?= =?UTF-8?q?=E8=89=B2=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Server/Client.cs | 27 ++++++++++++++----- .../04-07-MovementHandlers.cs | 2 +- .../04-08-MovementActionHandler.cs | 2 +- .../04-ObjectHandler/04-14-ObjectInteract.cs | 4 +-- .../04-3C-ActionUpdateHandler.cs | 2 +- .../04-71-MovementEndHandler.cs | 2 +- .../07-ChatHandler/07-00-ChatHandler.cs | 2 +- .../0E-28-PlayerIsBusyState.cs | 2 +- .../0E-29-PlayerIsNotBusyState.cs | 2 +- Server/Zone/Map.cs | 8 +++--- 10 files changed, 33 insertions(+), 20 deletions(-) diff --git a/Server/Client.cs b/Server/Client.cs index 334c40e..5b5111e 100644 --- a/Server/Client.cs +++ b/Server/Client.cs @@ -58,19 +58,32 @@ namespace PSO2SERVER SendPacket(new ServerHelloPacket(0x03, 100, 68833280)); } + /// + /// Server + /// public bool IsClosed { get; private set; } public SocketClient Socket { get; private set; } - // Game properties, TODO Consider moving these somewhere else + + /// + /// Game + /// + // TODO Consider moving these somewhere else public Account _account { get; set; } - public Flags _flags { get; set; } public Character Character { get; set; } - //public Zone.Zone CurrentZone { get; set; } - public Map CurrentZone; public uint MovementTimestamp { get; internal set; } + public Flags _flags { get; set; } + public PSOPalette Palette { get; set; } = new PSOPalette(); + public PlayerStats battle_stats { get; set; } = new PlayerStats(); + + /// + /// Party + /// public Party.Party currentParty; - public PSOPalette Palette { get; set; } = new PSOPalette(); - + /// + /// Map + /// + public Map CurrentMap; public PSOLocation CurrentLocation; public PSOLocation LastLocation; @@ -141,7 +154,7 @@ namespace PSO2SERVER { // :( Logger.Write("[BYE] 连接丢失. :("); - CurrentZone?.RemoveClient(this); + CurrentMap?.RemoveClient(this); IsClosed = true; } diff --git a/Server/Protocol/Handlers/04-ObjectHandler/04-07-MovementHandlers.cs b/Server/Protocol/Handlers/04-ObjectHandler/04-07-MovementHandlers.cs index 0b6f96c..4f26e54 100644 --- a/Server/Protocol/Handlers/04-ObjectHandler/04-07-MovementHandlers.cs +++ b/Server/Protocol/Handlers/04-ObjectHandler/04-07-MovementHandlers.cs @@ -134,7 +134,7 @@ namespace PSO2SERVER.Protocol.Handlers foreach (var c in Server.Instance.Clients) { - if (c.Character == null || c == context || c.CurrentZone != context.CurrentZone) + if (c.Character == null || c == context || c.CurrentMap != context.CurrentMap) continue; //c.SendPacket(0x04, 0x07, flags, data); diff --git a/Server/Protocol/Handlers/04-ObjectHandler/04-08-MovementActionHandler.cs b/Server/Protocol/Handlers/04-ObjectHandler/04-08-MovementActionHandler.cs index b7f3cde..19c37bc 100644 --- a/Server/Protocol/Handlers/04-ObjectHandler/04-08-MovementActionHandler.cs +++ b/Server/Protocol/Handlers/04-ObjectHandler/04-08-MovementActionHandler.cs @@ -34,7 +34,7 @@ namespace PSO2SERVER.Protocol.Handlers foreach (var c in Server.Instance.Clients) { - if (c == context || c.Character == null || c.CurrentZone != context.CurrentZone) + if (c == context || c.Character == null || c.CurrentMap != context.CurrentMap) continue; //PacketWriter output = new PacketWriter(); //output.WriteStruct(new ObjectHeader((uint)context._account.AccountId, ObjectType.Accounts)); diff --git a/Server/Protocol/Handlers/04-ObjectHandler/04-14-ObjectInteract.cs b/Server/Protocol/Handlers/04-ObjectHandler/04-14-ObjectInteract.cs index 1e6da77..4a7186b 100644 --- a/Server/Protocol/Handlers/04-ObjectHandler/04-14-ObjectInteract.cs +++ b/Server/Protocol/Handlers/04-ObjectHandler/04-14-ObjectInteract.cs @@ -65,7 +65,7 @@ namespace PSO2SERVER.Protocol.Handlers PSOObject srcObj; if(pkt.Object1.ObjectType == ObjectType.Object) { - srcObj = ObjectManager.Instance.getObjectByID(context.CurrentZone.Name, pkt.Object1.ID); + srcObj = ObjectManager.Instance.getObjectByID(context.CurrentMap.Name, pkt.Object1.ID); } else if(pkt.Object1.ObjectType == ObjectType.Player) { @@ -83,7 +83,7 @@ namespace PSO2SERVER.Protocol.Handlers //Logger.WriteInternal("[OBJ] {0} (ID {1}) <{2}> --> Ent {3} (ID {4})", srcObj.name, srcObj.Header.ID, command, (ObjectType)dstObject.ObjectType, dstObject.ID); // TODO: Delete this code and do this COMPLETELY correctly!!! - if (pkt.Action == "Transfer" && context.CurrentZone.Name == "lobby") + if (pkt.Action == "Transfer" && context.CurrentMap.Name == "lobby") { // Try and get the teleport definition for the object... using (var db = new ServerEf()) diff --git a/Server/Protocol/Handlers/04-ObjectHandler/04-3C-ActionUpdateHandler.cs b/Server/Protocol/Handlers/04-ObjectHandler/04-3C-ActionUpdateHandler.cs index ddf3b0a..18076cd 100644 --- a/Server/Protocol/Handlers/04-ObjectHandler/04-3C-ActionUpdateHandler.cs +++ b/Server/Protocol/Handlers/04-ObjectHandler/04-3C-ActionUpdateHandler.cs @@ -20,7 +20,7 @@ namespace PSO2SERVER.Protocol.Handlers foreach (var c in Server.Instance.Clients) { - if (c == context || c.Character == null || c.CurrentZone != context.CurrentZone) + if (c == context || c.Character == null || c.CurrentMap != context.CurrentMap) continue; //PacketWriter writer = new PacketWriter(); //writer.WriteStruct(new ObjectHeader((uint)c._account.AccountId, ObjectType.Accounts)); diff --git a/Server/Protocol/Handlers/04-ObjectHandler/04-71-MovementEndHandler.cs b/Server/Protocol/Handlers/04-ObjectHandler/04-71-MovementEndHandler.cs index 43203ba..4052cbf 100644 --- a/Server/Protocol/Handlers/04-ObjectHandler/04-71-MovementEndHandler.cs +++ b/Server/Protocol/Handlers/04-ObjectHandler/04-71-MovementEndHandler.cs @@ -30,7 +30,7 @@ namespace PSO2SERVER.Protocol.Handlers foreach (var c in Server.Instance.Clients) { - if (c == context || c.Character == null || c.CurrentZone != context.CurrentZone) + if (c == context || c.Character == null || c.CurrentMap != context.CurrentMap) continue; c.SendPacket(new MovementEndPacket(movData)); diff --git a/Server/Protocol/Handlers/07-ChatHandler/07-00-ChatHandler.cs b/Server/Protocol/Handlers/07-ChatHandler/07-00-ChatHandler.cs index 05eaf84..bdb509a 100644 --- a/Server/Protocol/Handlers/07-ChatHandler/07-00-ChatHandler.cs +++ b/Server/Protocol/Handlers/07-ChatHandler/07-00-ChatHandler.cs @@ -56,7 +56,7 @@ namespace PSO2SERVER.Protocol.Handlers foreach (var c in Server.Instance.Clients) { - if (c.Character == null || c.CurrentZone != context.CurrentZone) + if (c.Character == null || c.CurrentMap != context.CurrentMap) continue; c.SendPacket(new ChatPacket((uint)context._account.AccountId, channel, message)); diff --git a/Server/Protocol/Handlers/0E-PartyHandler/0E-28-PlayerIsBusyState.cs b/Server/Protocol/Handlers/0E-PartyHandler/0E-28-PlayerIsBusyState.cs index 92e4a6a..e6471b8 100644 --- a/Server/Protocol/Handlers/0E-PartyHandler/0E-28-PlayerIsBusyState.cs +++ b/Server/Protocol/Handlers/0E-PartyHandler/0E-28-PlayerIsBusyState.cs @@ -15,7 +15,7 @@ namespace PSO2SERVER.Protocol.Handlers //Logger.WriteHex(info, data); foreach (var c in Server.Instance.Clients) { - if (c.Character == null || c.CurrentZone != context.CurrentZone) + if (c.Character == null || c.CurrentMap != context.CurrentMap) continue; c.SendPacket(new NewBusyStatePacket(context._account.AccountId, BusyState.Busy)); diff --git a/Server/Protocol/Handlers/0E-PartyHandler/0E-29-PlayerIsNotBusyState.cs b/Server/Protocol/Handlers/0E-PartyHandler/0E-29-PlayerIsNotBusyState.cs index 076bbae..211fd13 100644 --- a/Server/Protocol/Handlers/0E-PartyHandler/0E-29-PlayerIsNotBusyState.cs +++ b/Server/Protocol/Handlers/0E-PartyHandler/0E-29-PlayerIsNotBusyState.cs @@ -16,7 +16,7 @@ namespace PSO2SERVER.Protocol.Handlers foreach (var c in Server.Instance.Clients) { - if (c.Character == null || c.CurrentZone != context.CurrentZone) + if (c.Character == null || c.CurrentMap != context.CurrentMap) continue; c.SendPacket(new NewBusyStatePacket(context._account.AccountId, BusyState.NotBusy)); diff --git a/Server/Zone/Map.cs b/Server/Zone/Map.cs index a901a7c..46225e3 100644 --- a/Server/Zone/Map.cs +++ b/Server/Zone/Map.cs @@ -125,9 +125,9 @@ namespace PSO2SERVER.Zone c.SendPacket(new MapTransferPacket(zoneData, (uint)MapID, (uint)c._account.AccountId)); } - if (c.CurrentZone != null) + if (c.CurrentMap != null) { - c.CurrentZone.RemoveClient(c); + c.CurrentMap.RemoveClient(c); } // 设置客户端的账户ID @@ -136,7 +136,7 @@ namespace PSO2SERVER.Zone // Spawn Character c.SendPacket(new CharacterSpawnPacket(c.Character, location, true, true)); c.CurrentLocation = location; - c.CurrentZone = this; + c.CurrentMap = this; // Objects foreach (PSOObject obj in Objects) @@ -174,7 +174,7 @@ namespace PSO2SERVER.Zone if (!Clients.Contains(c)) return; - c.CurrentZone = null; + c.CurrentMap = null; Clients.Remove(c); foreach (Client other in Clients)