PSO2SERVER/Server/Protocol/Handlers/03-ServerHandler/03-03-InitialLoad.cs
2024-12-03 18:17:43 +08:00

42 lines
1.4 KiB
C#

using PSO2SERVER.Protocol.Packets;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSO2SERVER.Protocol.Handlers
{
[PacketHandlerAttr(0x03, 0x03)]
public class InitialLoad : PacketHandler
{
/// (0x03, 0x03) Initial Load (?).
///
/// (C -> S) Sent when the client loads for the first time in the session.
///
/// Response to: [`Packet::LoadingScreenTransition`] (?).
///
/// Respond with: lobby map setup.
// Ninji note: 3-3 may not be the correct place to do this
// Once we have better state tracking, we should make sure that
// 3-3 only does anything at the points where the client is supposed
// to be sending it, etc etc
// This seems to only ever be called once after logging in, yet is also handled by 11-3E in other places
// Moved the actual handling into 11-3E until I can actually confirm this
// Just insantiate a new CharacterSpawn and push it through until then
// - Kyle
#region implemented abstract members of PacketHandler
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
// Spawn Accounts
new CharacterSpawn().HandlePacket(context, flags, data, position, size);
}
#endregion
}
}