48 lines
1.7 KiB
C#
48 lines
1.7 KiB
C#
using PSO2SERVER.Packets.PSOPackets;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PSO2SERVER.Packets.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)
|
|
{
|
|
// Set Account ID
|
|
//var setPlayerId = new PacketWriter();
|
|
//setPlayerId.WritePlayerHeader((uint)context._account.AccountId);
|
|
//context.SendPacket(0x06, 0x00, 0, setPlayerId.ToArray());
|
|
context.SendPacket(new SetPlayerIDPacket(context._account.AccountId));
|
|
|
|
// Spawn Account
|
|
new CharacterSpawn().HandlePacket(context, flags, data, position, size);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
|
|
}
|