2024-09-16 02:56:02 +08:00
|
|
|
|
using System;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2024-09-16 02:56:02 +08:00
|
|
|
|
using PSO2SERVER.Models;
|
|
|
|
|
using PSO2SERVER.Object;
|
2024-11-27 18:05:53 +08:00
|
|
|
|
using PSO2SERVER.Protocol.Packets;
|
2024-09-16 02:56:02 +08:00
|
|
|
|
using PSO2SERVER.Zone;
|
2024-12-10 01:23:49 +08:00
|
|
|
|
using static PSO2SERVER.Protocol.Handlers.TeleportLobbyToCafe;
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
2024-11-27 18:05:53 +08:00
|
|
|
|
namespace PSO2SERVER.Protocol.Handlers
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-09-16 02:56:02 +08:00
|
|
|
|
[PacketHandlerAttr(0x03, 0x34)]
|
2024-12-03 13:18:58 +08:00
|
|
|
|
public class TeleportCasinoToLobby : PacketHandler
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
2024-09-16 16:58:51 +08:00
|
|
|
|
/// (0x03, 0x34) Move Casino -> Lobby.
|
2024-12-10 01:23:49 +08:00
|
|
|
|
public struct CasinoToLobbyPacket
|
|
|
|
|
{
|
|
|
|
|
public uint unk1;
|
|
|
|
|
public uint unk2;
|
|
|
|
|
public uint unk3;
|
|
|
|
|
public uint unk4;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-10 00:31:40 +08:00
|
|
|
|
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
|
|
|
|
{
|
2024-12-10 01:23:49 +08:00
|
|
|
|
var reader = new PacketReader(data, position, size);
|
|
|
|
|
var pkt = reader.ReadStruct<CasinoToLobbyPacket>();
|
|
|
|
|
|
|
|
|
|
Logger.Write($"unk1 {pkt.unk1} unk2 {pkt.unk2} unk3 {pkt.unk3} unk4 {pkt.unk4}");
|
2024-09-10 00:31:40 +08:00
|
|
|
|
|
2024-12-10 01:23:49 +08:00
|
|
|
|
if(pkt.unk3 != 0x10)
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
|
|
|
|
Logger.WriteWarning("[WRN] Packet 0x3 0x34's first value was not 0x10! Investigate.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PSOLocation destination;
|
2024-12-10 23:22:43 +08:00
|
|
|
|
if(pkt.unk4 == 0) // Gate area
|
2024-09-10 00:31:40 +08:00
|
|
|
|
{
|
|
|
|
|
destination = new PSOLocation(0f, 1f, 0f, 0f, -0.22f, 2.4f, 198.75f);
|
|
|
|
|
}
|
|
|
|
|
else // Shop area
|
|
|
|
|
{
|
|
|
|
|
destination = new PSOLocation(0f, 1f, 0f, 20f, 0.20f, 1.23f, -175.25f);
|
|
|
|
|
}
|
|
|
|
|
Map lobbyMap = ZoneManager.Instance.MapFromInstance("lobby", "lobby");
|
|
|
|
|
lobbyMap.SpawnClient(context, destination, "lobby");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|