2024-11-27 18:05:53 +08:00
|
|
|
|
using PSO2SERVER.Protocol.Packets;
|
2024-09-18 01:13:01 +08:00
|
|
|
|
using System;
|
2024-09-16 02:56:02 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-11-27 18:05:53 +08:00
|
|
|
|
namespace PSO2SERVER.Protocol.Handlers
|
2024-09-16 02:56:02 +08:00
|
|
|
|
{
|
|
|
|
|
[PacketHandlerAttr(0x03, 0x03)]
|
|
|
|
|
public class InitialLoad : PacketHandler
|
|
|
|
|
{
|
2024-09-16 15:30:00 +08:00
|
|
|
|
/// (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.
|
2024-09-16 02:56:02 +08:00
|
|
|
|
// 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)
|
|
|
|
|
{
|
2024-12-03 13:10:49 +08:00
|
|
|
|
// Spawn Accounts
|
2024-09-16 02:56:02 +08:00
|
|
|
|
new CharacterSpawn().HandlePacket(context, flags, data, position, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|