2017-08-22 17:29:03 +02:00
|
|
|
#ifndef _CORE_NETWORK_PACKETS_IPCS_H
|
|
|
|
#define _CORE_NETWORK_PACKETS_IPCS_H
|
|
|
|
|
2018-06-02 13:38:00 +02:00
|
|
|
#include <stdint.h>
|
2017-08-22 17:29:03 +02:00
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
namespace Network {
|
|
|
|
namespace Packets {
|
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Lobby Connection IPC Codes
|
|
|
|
/**
|
|
|
|
* Server IPC Lobby Type Codes.
|
|
|
|
*/
|
|
|
|
enum ServerLobbyIpcType :
|
|
|
|
uint16_t
|
|
|
|
{
|
|
|
|
LobbyError = 0x0002,
|
|
|
|
LobbyServiceAccountList = 0x000C,
|
|
|
|
LobbyCharList = 0x000D,
|
|
|
|
LobbyCharCreate = 0x000E,
|
|
|
|
LobbyEnterWorld = 0x000F,
|
|
|
|
LobbyServerList = 0x0015,
|
|
|
|
LobbyRetainerList = 0x0017,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Client IPC Lobby Type Codes.
|
|
|
|
*/
|
|
|
|
enum ClientLobbyIpcType :
|
|
|
|
uint16_t
|
|
|
|
{
|
|
|
|
ReqCharList = 0x0003,
|
|
|
|
ReqEnterWorld = 0x0004,
|
|
|
|
ReqServiceAccountList = 0x0005,
|
|
|
|
|
|
|
|
ReqCharDelete = 0x000A,
|
|
|
|
ReqCharCreate = 0x000B,
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Zone Connection IPC Codes
|
|
|
|
/**
|
|
|
|
* Server IPC Zone Type Codes.
|
|
|
|
*/
|
|
|
|
enum ServerZoneIpcType :
|
|
|
|
uint16_t
|
|
|
|
{
|
|
|
|
|
|
|
|
// static opcode ( the ones that rarely, if ever, change )
|
2018-09-18 20:56:12 +10:00
|
|
|
Ping = 0x0065,
|
2018-08-29 21:40:59 +02:00
|
|
|
Init = 0x0066,
|
|
|
|
|
|
|
|
ActorFreeSpawn = 0x0191,
|
|
|
|
InitZone = 0x019A,
|
|
|
|
|
|
|
|
AddStatusEffect = 0x0141,
|
|
|
|
ActorControl142 = 0x0142,
|
|
|
|
ActorControl143 = 0x0143,
|
|
|
|
ActorControl144 = 0x0144,
|
|
|
|
UpdateHpMpTp = 0x0145,
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////
|
|
|
|
|
|
|
|
ChatBanned = 0x006B,
|
2018-09-18 20:29:35 +10:00
|
|
|
Logout = 0x0077, // updated 4.4
|
2018-08-29 21:40:59 +02:00
|
|
|
CFNotify = 0x0078,
|
|
|
|
CFMemberStatus = 0x0079,
|
|
|
|
CFDutyInfo = 0x007A,
|
|
|
|
CFPlayerInNeed = 0x007F,
|
|
|
|
|
|
|
|
SocialRequestError = 0x00AD,
|
|
|
|
|
|
|
|
CFRegistered = 0x00B8, // updated 4.1
|
|
|
|
SocialRequestResponse = 0x00BB, // updated 4.1
|
|
|
|
CancelAllianceForming = 0x00C6, // updated 4.2
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-09-10 14:34:24 +01:00
|
|
|
|
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
Playtime = 0x00F5, // updated 4.3
|
2018-09-18 20:34:37 +10:00
|
|
|
Chat = 0x00F4, // updated 4.4
|
|
|
|
SocialList = 0x00FB, // updated 4.4
|
2018-06-02 18:09:29 +02:00
|
|
|
|
2018-09-18 20:34:37 +10:00
|
|
|
UpdateSearchInfo = 0x00FE, // updated 4.4
|
|
|
|
InitSearchInfo = 0x00FF, // updated 4.4
|
2018-09-10 14:34:24 +01:00
|
|
|
ExamineSearchComment = 0x0102, // updated 4.1
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-09-18 20:29:35 +10:00
|
|
|
ServerNotice = 0x0104, // updated 4.4
|
2018-09-18 20:56:12 +10:00
|
|
|
SetOnlineStatus = 0x0105, // updated 4.4
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-09-10 14:34:24 +01:00
|
|
|
|
2018-09-18 20:56:12 +10:00
|
|
|
CountdownInitiate = 0x010C, // updated 4.4
|
|
|
|
CountdownCancel = 0x010D, // updated 4.4
|
2017-10-15 01:43:57 +02:00
|
|
|
|
2018-09-18 20:56:12 +10:00
|
|
|
BlackList = 0x0110, // updated 4.4
|
2018-02-04 16:40:29 +11:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
LogMessage = 0x00D0,
|
2017-10-10 23:48:02 +02:00
|
|
|
|
2018-09-18 20:56:12 +10:00
|
|
|
LinkshellList = 0x0117, // updated 4.4
|
2018-09-10 14:34:24 +01:00
|
|
|
|
|
|
|
ExamineFreeCompanyInfo = 0x013A, // updated 4.1
|
2018-09-18 20:56:12 +10:00
|
|
|
CharaFreeCompanyTag = 0x0127, // updated 4.4
|
|
|
|
FreeCompanyBoardMsg = 0x0128, // updated 4.4
|
|
|
|
FreeCompanyInfo = 0x0129, // updated 4.4
|
|
|
|
|
|
|
|
StatusEffectList = 0x0149, // updated 4.4
|
|
|
|
Effect = 0x014C, // updated 4.4
|
|
|
|
AoeEffect8 = 0x014F, // updated 4.4
|
|
|
|
AoeEffect16 = 0x0150, // updated 4.4
|
|
|
|
AoeEffect24 = 0x0151, // updated 4.4
|
|
|
|
AoeEffect32 = 0x0152, // updated 4.4
|
2018-09-18 21:21:52 +10:00
|
|
|
PersistantEffect = 0x0153, // updated 4.4
|
2018-05-26 09:25:56 +02:00
|
|
|
|
2018-09-18 20:56:12 +10:00
|
|
|
GCAffiliation = 0x015D, // updated 4.4
|
2018-02-04 14:16:09 +01:00
|
|
|
|
2018-09-18 20:29:35 +10:00
|
|
|
PlayerSpawn = 0x016D, // updated 4.4
|
2018-09-18 20:56:12 +10:00
|
|
|
NpcSpawn = 0x016E, // updated 4.4
|
2018-09-18 20:29:35 +10:00
|
|
|
ActorMove = 0x0170, // updated 4.4
|
|
|
|
ActorSetPos = 0x0172, // updated 4.4
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-09-18 21:21:52 +10:00
|
|
|
ActorCast = 0x0170, // updated 4.4
|
2018-09-18 20:20:25 +10:00
|
|
|
|
|
|
|
PartyList = 0x0176, // updated 4.4
|
|
|
|
HateList = 0x0177, // updated 4.4
|
|
|
|
|
|
|
|
ObjectSpawn = 0x0179, // updated 4.4
|
|
|
|
ObjectDespawn = 0x017A, // updated 4.4
|
|
|
|
|
|
|
|
SetLevelSync = 0x017B, // updated 4.4
|
|
|
|
SilentSetClassJob = 0x017C, // updated 4.4 - seems to be the case, not sure if it's actually used for anything
|
|
|
|
|
|
|
|
InitUI = 0x017D, // updated 4.4
|
|
|
|
PlayerStats = 0x017E, // updated 4.4
|
|
|
|
ActorOwner = 0x017F, // updated 4.4 ?
|
|
|
|
PlayerStateFlags = 0x0180, // updated 4.4
|
|
|
|
PlayerClassInfo = 0x0181, // updated 4.4
|
|
|
|
ModelEquip = 0x0182, // updated 4.4
|
|
|
|
Examine = 0x0183, // updated 4.4
|
|
|
|
CharaNameReq = 0x0185, // updated 4.4
|
|
|
|
UpdateClassInfo = 0x0186, // updated 4.4
|
|
|
|
|
|
|
|
ItemInfo = 0x018C, // updated 4.4
|
|
|
|
ContainerInfo = 0x018D, // updated 4.4
|
|
|
|
InventoryTransactionFinish = 0x018E, // updated 4.4
|
|
|
|
InventoryTransaction = 0x018F, // updated 4.4
|
|
|
|
CurrencyCrystalInfo = 0x0190, // updated 4.4
|
|
|
|
InventoryActionAck = 0x0193, // updated 4.4
|
|
|
|
UpdateInventorySlot = 0x0194, // updated 4.4
|
2018-06-02 18:09:29 +02:00
|
|
|
|
2018-09-18 21:21:52 +10:00
|
|
|
EventPlay = 0x01A2, // updated 4.4
|
|
|
|
EventOpenGilShop = 0x01A9, // updated 4.4
|
|
|
|
DirectorPlayScene = 0x01A6, // updated 4.4
|
2017-10-15 01:43:57 +02:00
|
|
|
|
2018-09-18 21:21:52 +10:00
|
|
|
EventStart = 0x01AB, // updated 4.4
|
|
|
|
EventFinish = 0x01AC, // updated 4.4
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
EventLinkshell = 0x1169,
|
2017-08-27 02:03:27 +02:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
QuestActiveList = 0x01BF, // updated 4.4
|
|
|
|
QuestUpdate = 0x01C0, // updated 4.4
|
|
|
|
QuestCompleteList = 0x01C1, // updated 4.4
|
2017-08-27 02:03:27 +02:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
QuestFinish = 0x01C2, // updated 4.4
|
|
|
|
MSQTrackerComplete = 0x01C3, // updated 4.4
|
|
|
|
MSQTrackerProgress = 0x01C4, // updated 4.4
|
2017-10-15 01:43:57 +02:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
QuestMessage = 0x01CA, // updated 4.4
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
QuestTracker = 0x01CF, // updated 4.4
|
2018-06-02 18:09:29 +02:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
Mount = 0x01DF, // updated 4.4
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
DirectorVars = 0x01E1, // updated 4.4
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
CFAvailableContents = 0x01FD, // updated 4.2
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
WeatherChange = 0x01FC, // updated 4.4
|
|
|
|
PlayerTitleList = 0x01FD, // updated 4.4
|
|
|
|
Discovery = 0x01FE, // updated 4.4
|
2018-06-02 18:09:29 +02:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
EorzeaTimeOffset = 0x01FF, // updated 4.4
|
2018-02-07 00:00:48 +01:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
EquipDisplayFlags = 0x020C, // updated 4.4
|
2017-08-28 18:36:51 +02:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
WardInfo = 0x0220, // updated 4.4
|
|
|
|
WardHousingPermission = 0x0229, // updated 4.4
|
2018-09-18 13:54:03 +02:00
|
|
|
WardYardInfo = 0x022B, // updated 4.4
|
2017-10-05 20:24:58 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
DuelChallenge = 0x0277, // 4.2; this is responsible for opening the ui
|
|
|
|
PerformNote = 0x0286, // updated 4.3
|
2018-07-15 23:59:15 +02:00
|
|
|
|
2018-09-18 21:36:39 +10:00
|
|
|
PrepareZoning = 0x028F, // updated 4.4
|
2018-08-29 21:40:59 +02:00
|
|
|
ActorGauge = 0x0292, // updated 4.3
|
2017-08-28 18:36:51 +02:00
|
|
|
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-06-02 18:09:29 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
// Unknown IPC types that still need to be sent
|
|
|
|
// TODO: figure all these out properly
|
2018-09-18 20:20:25 +10:00
|
|
|
IPCTYPE_UNK_320 = 0x0248, // updated 4.4
|
|
|
|
IPCTYPE_UNK_322 = 0x024B, // updated 4.4
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
};
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
/**
|
|
|
|
* Client IPC Zone Type Codes.
|
|
|
|
*/
|
|
|
|
enum ClientZoneIpcType :
|
|
|
|
uint16_t
|
|
|
|
{
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
PingHandler = 0x0065, // unchanged 4.3
|
|
|
|
InitHandler = 0x0066, // unchanged 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
FinishLoadingHandler = 0x0069, // unchanged 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
CFCommenceHandler = 0x006F,
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
CFRegisterDuty = 0x0071,
|
|
|
|
CFRegisterRoulette = 0x0072,
|
|
|
|
PlayTimeHandler = 0x0073, // unchanged 4.3
|
|
|
|
LogoutHandler = 0x0074, // unchanged 4.3
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
CFDutyInfoHandler = 0x0078, // updated 4.2
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
SocialReqSendHandler = 0x00AE, // updated 4.1
|
|
|
|
CreateCrossWorldLS = 0x00AF, // updated 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
ChatHandler = 0x00D3, // updated 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
SocialListHandler = 0x00DB, // updated 4.3
|
|
|
|
ReqSearchInfoHandler = 0x00E0, // updated 4.3
|
2018-09-10 14:34:24 +01:00
|
|
|
ReqExamineSearchCommentHandler = 0x00E1, // updated 4.1
|
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
SetSearchInfoHandler = 0x00DE, // updated 4.3
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
BlackListHandler = 0x00EC, // updated 4.3
|
|
|
|
PlayerSearchHandler = 0x00E2, // updated 4.2
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
LinkshellListHandler = 0x00F4, // updated 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
SearchMarketboard = 0x0103, // updated 4.3
|
2018-09-10 14:34:24 +01:00
|
|
|
ReqExamineFcInfo = 0x010F, // updated 4.1
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
FcInfoReqHandler = 0x011A, // updated 4.2
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
ReqMarketWishList = 0x012C, // updated 4.3
|
2018-07-22 16:54:01 +10:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
ReqJoinNoviceNetwork = 0x0129, // updated 4.2
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
ReqCountdownInitiate = 0x0138, // updated 4.3
|
|
|
|
ReqCountdownCancel = 0x0139, // updated 4.3
|
|
|
|
ClearWaymarks = 0x013A, // updated 4.3
|
2018-02-25 15:16:42 +11:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
ZoneLineHandler = 0x013C, // updated 4.3
|
|
|
|
ClientTrigger = 0x013D, // updated 4.3
|
|
|
|
DiscoveryHandler = 0x013E, // updated 4.3
|
2018-07-06 20:32:36 +10:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
AddWaymark = 0x013F, // updated 4.3
|
2018-02-04 16:40:29 +11:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
SkillHandler = 0x0140, // updated 4.3
|
|
|
|
GMCommand1 = 0x0141, // updated 4.3
|
|
|
|
GMCommand2 = 0x0142, // updated 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
UpdatePositionHandler = 0x0144, // updated 4.3
|
|
|
|
UpdatePositionInstance = 0x0183, // updated 4.3
|
2018-07-06 20:32:36 +10:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
InventoryModifyHandler = 0x014B, // updated 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
TalkEventHandler = 0x0154, // updated 4.3
|
|
|
|
EmoteEventHandler = 0x0155, // updated 4.3
|
|
|
|
WithinRangeEventHandler = 0x0156, // updated 4.3
|
|
|
|
OutOfRangeEventHandler = 0x0157, // updated 4.3
|
|
|
|
EnterTeriEventHandler = 0x0158, // updated 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
ReturnEventHandler = 0x015D, // updated 4.3
|
|
|
|
TradeReturnEventHandler = 0x015E, // updated 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
LinkshellEventHandler = 0x0150, // updated 4.1 ??
|
|
|
|
LinkshellEventHandler1 = 0x0151, // updated 4.1 ??
|
2017-08-23 23:58:14 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
PerformNoteHandler = 0x029B, // updated 4.3
|
2017-08-22 17:29:03 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
ReqEquipDisplayFlagsChange = 0x0178, // updated 4.3
|
2017-08-23 23:58:14 +02:00
|
|
|
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
};
|
2017-10-05 20:24:58 +02:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Chat Connection IPC Codes
|
|
|
|
/**
|
|
|
|
* Server IPC Chat Type Codes.
|
|
|
|
*/
|
|
|
|
enum ServerChatIpcType :
|
|
|
|
uint16_t
|
|
|
|
{
|
|
|
|
Tell = 0x0064, // updated for sb
|
|
|
|
TellErrNotFound = 0x0066,
|
|
|
|
};
|
2018-02-02 18:34:20 +01:00
|
|
|
|
2018-08-29 21:40:59 +02:00
|
|
|
/**
|
|
|
|
* Client IPC Chat Type Codes.
|
|
|
|
*/
|
|
|
|
enum ClientChatIpcType :
|
|
|
|
uint16_t
|
|
|
|
{
|
|
|
|
TellReq = 0x0064,
|
|
|
|
};
|
2017-08-22 17:29:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
} /* Packets */
|
|
|
|
} /* Network */
|
|
|
|
} /* Core */
|
|
|
|
|
|
|
|
#endif /*_CORE_NETWORK_PACKETS_IPCS_H*/
|