2022-07-16 23:19:40 +00:00
|
|
|
#include "PlayerManager.hpp"
|
|
|
|
|
|
|
|
#include "db/Database.hpp"
|
2021-03-17 19:07:40 +00:00
|
|
|
#include "core/CNShared.hpp"
|
|
|
|
#include "servers/CNShardServer.hpp"
|
2022-07-16 23:19:40 +00:00
|
|
|
|
2020-08-20 21:43:48 +00:00
|
|
|
#include "NPCManager.hpp"
|
2022-07-16 23:19:40 +00:00
|
|
|
#include "Combat.hpp"
|
|
|
|
#include "Racing.hpp"
|
|
|
|
#include "Eggs.hpp"
|
2021-03-16 22:29:13 +00:00
|
|
|
#include "Missions.hpp"
|
|
|
|
#include "Chat.hpp"
|
2022-07-16 23:19:40 +00:00
|
|
|
#include "Items.hpp"
|
2021-03-16 22:29:13 +00:00
|
|
|
#include "Buddies.hpp"
|
2021-03-12 22:18:00 +00:00
|
|
|
#include "BuiltinCommands.hpp"
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2020-09-11 23:22:58 +00:00
|
|
|
#include <assert.h>
|
2020-08-18 20:42:30 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
|
|
|
#include <cmath>
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
using namespace PlayerManager;
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
std::map<CNSocket*, Player*> PlayerManager::players;
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2022-12-06 01:11:31 +00:00
|
|
|
static void addPlayer(CNSocket* key, Player *plr) {
|
|
|
|
players[key] = plr;
|
|
|
|
plr->chunkPos = Chunking::INVALID_CHUNK;
|
|
|
|
plr->lastHeartbeat = 0;
|
2020-08-24 22:02:07 +00:00
|
|
|
|
2022-12-06 01:11:31 +00:00
|
|
|
std::cout << getPlayerName(plr) << " has joined!" << std::endl;
|
2020-08-19 00:11:31 +00:00
|
|
|
std::cout << players.size() << " players" << std::endl;
|
2020-08-18 20:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PlayerManager::removePlayer(CNSocket* key) {
|
2020-11-17 23:16:16 +00:00
|
|
|
Player* plr = getPlayer(key);
|
|
|
|
uint64_t fromInstance = plr->instanceID;
|
2020-10-05 00:03:13 +00:00
|
|
|
|
2022-07-17 06:33:57 +00:00
|
|
|
// free buff memory
|
|
|
|
for(auto buffEntry : plr->buffs)
|
|
|
|
delete buffEntry.second;
|
|
|
|
|
|
|
|
// leave group
|
2022-04-23 01:13:00 +00:00
|
|
|
if(plr->group != nullptr)
|
2022-07-17 06:33:57 +00:00
|
|
|
Groups::groupKick(plr->group, key);
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2020-11-17 02:23:34 +00:00
|
|
|
// remove player's bullets
|
2021-03-13 22:55:16 +00:00
|
|
|
Combat::Bullets.erase(plr->iID);
|
2020-11-17 02:23:34 +00:00
|
|
|
|
2020-11-28 16:20:37 +00:00
|
|
|
// remove player's ongoing race, if it exists
|
2021-03-16 22:29:13 +00:00
|
|
|
Racing::EPRaces.erase(key);
|
2020-11-28 16:20:37 +00:00
|
|
|
|
2020-10-14 04:26:30 +00:00
|
|
|
// save player to DB
|
2020-11-17 23:16:16 +00:00
|
|
|
Database::updatePlayer(plr);
|
2020-10-14 04:26:30 +00:00
|
|
|
|
2020-11-18 00:07:04 +00:00
|
|
|
// remove player visually and untrack
|
2021-03-21 18:29:17 +00:00
|
|
|
EntityRef ref = {key};
|
2021-03-21 01:42:45 +00:00
|
|
|
Chunking::removeEntityFromChunks(Chunking::getViewableChunks(plr->chunkPos), ref);
|
|
|
|
Chunking::untrackEntity(plr->chunkPos, ref);
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2020-12-01 18:58:34 +00:00
|
|
|
std::cout << getPlayerName(plr) << " has left!" << std::endl;
|
2020-08-25 22:09:31 +00:00
|
|
|
|
2020-11-17 23:16:16 +00:00
|
|
|
delete plr;
|
2020-08-25 22:09:31 +00:00
|
|
|
players.erase(key);
|
2020-09-17 19:22:31 +00:00
|
|
|
|
2020-10-19 02:30:12 +00:00
|
|
|
// if the player was in a lair, clean it up
|
2021-03-16 22:29:13 +00:00
|
|
|
Chunking::destroyInstanceIfEmpty(fromInstance);
|
2020-10-19 02:30:12 +00:00
|
|
|
|
2020-09-17 19:22:31 +00:00
|
|
|
std::cout << players.size() << " players" << std::endl;
|
2020-08-18 20:42:30 +00:00
|
|
|
}
|
|
|
|
|
2020-11-18 00:07:04 +00:00
|
|
|
void PlayerManager::updatePlayerPosition(CNSocket* sock, int X, int Y, int Z, uint64_t I, int angle) {
|
2020-11-17 23:16:16 +00:00
|
|
|
Player* plr = getPlayer(sock);
|
2020-11-18 00:07:04 +00:00
|
|
|
plr->angle = angle;
|
2020-11-19 01:37:58 +00:00
|
|
|
ChunkPos oldChunk = plr->chunkPos;
|
2021-03-16 22:29:13 +00:00
|
|
|
ChunkPos newChunk = Chunking::chunkPosAt(X, Y, I);
|
2020-11-17 23:16:16 +00:00
|
|
|
plr->x = X;
|
|
|
|
plr->y = Y;
|
|
|
|
plr->z = Z;
|
2020-11-18 00:07:04 +00:00
|
|
|
plr->instanceID = I;
|
|
|
|
if (oldChunk == newChunk)
|
|
|
|
return; // didn't change chunks
|
2021-03-21 01:42:45 +00:00
|
|
|
Chunking::updateEntityChunk({sock}, oldChunk, newChunk);
|
2020-08-23 15:42:37 +00:00
|
|
|
}
|
|
|
|
|
2022-07-22 00:40:33 +00:00
|
|
|
/*
|
|
|
|
* Low-level helper function for correctly updating chunks when teleporting players.
|
|
|
|
*
|
|
|
|
* Use PlayerManager::sendPlayerTo() to actually teleport players.
|
|
|
|
*/
|
|
|
|
void PlayerManager::updatePlayerPositionForWarp(CNSocket* sock, int X, int Y, int Z, uint64_t inst) {
|
|
|
|
Player *plr = getPlayer(sock);
|
|
|
|
|
|
|
|
// force player to reload chunks
|
|
|
|
Chunking::updateEntityChunk({sock}, plr->chunkPos, Chunking::INVALID_CHUNK);
|
|
|
|
updatePlayerPosition(sock, X, Y, Z, inst, plr->angle);
|
|
|
|
}
|
|
|
|
|
2020-10-12 16:55:41 +00:00
|
|
|
void PlayerManager::sendPlayerTo(CNSocket* sock, int X, int Y, int Z, uint64_t I) {
|
2020-11-17 23:16:16 +00:00
|
|
|
Player* plr = getPlayer(sock);
|
2020-11-26 15:01:48 +00:00
|
|
|
plr->onMonkey = false;
|
2020-10-19 02:30:12 +00:00
|
|
|
|
2020-11-18 00:07:04 +00:00
|
|
|
if (plr->instanceID == INSTANCE_OVERWORLD) {
|
2020-10-22 17:14:24 +00:00
|
|
|
// save last uninstanced coords
|
2020-11-17 23:16:16 +00:00
|
|
|
plr->lastX = plr->x;
|
|
|
|
plr->lastY = plr->y;
|
|
|
|
plr->lastZ = plr->z;
|
|
|
|
plr->lastAngle = plr->angle;
|
2020-10-22 17:14:24 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 22:29:13 +00:00
|
|
|
Missions::failInstancedMissions(sock); // fail any instanced missions
|
2020-10-22 17:14:24 +00:00
|
|
|
|
2020-11-17 23:16:16 +00:00
|
|
|
uint64_t fromInstance = plr->instanceID; // pre-warp instance, saved for post-warp
|
2020-10-19 02:30:12 +00:00
|
|
|
|
2020-12-31 02:31:46 +00:00
|
|
|
if (I == INSTANCE_OVERWORLD || (I != fromInstance && fromInstance != 0)) {
|
|
|
|
// annoying but necessary to set the flag back
|
|
|
|
INITSTRUCT(sP_FE2CL_REP_PC_WARP_USE_NPC_SUCC, resp);
|
|
|
|
resp.iX = X;
|
|
|
|
resp.iY = Y;
|
|
|
|
resp.iZ = Z;
|
|
|
|
resp.iCandy = plr->money;
|
|
|
|
resp.eIL = 4; // do not take away any items
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(resp, P_FE2CL_REP_PC_WARP_USE_NPC_SUCC);
|
2020-12-31 02:31:46 +00:00
|
|
|
}
|
|
|
|
|
2020-10-02 20:17:24 +00:00
|
|
|
if (I != INSTANCE_OVERWORLD) {
|
|
|
|
INITSTRUCT(sP_FE2CL_INSTANCE_MAP_INFO, pkt);
|
2020-10-18 20:43:22 +00:00
|
|
|
pkt.iInstanceMapNum = (int32_t)MAPNUM(I); // lower 32 bits are mapnum
|
2020-12-28 15:51:31 +00:00
|
|
|
if (I != fromInstance // do not retransmit MAP_INFO on recall
|
2021-03-16 22:29:13 +00:00
|
|
|
&& Racing::EPData.find(pkt.iInstanceMapNum) != Racing::EPData.end()) {
|
|
|
|
EPInfo* ep = &Racing::EPData[pkt.iInstanceMapNum];
|
2020-11-29 03:03:20 +00:00
|
|
|
pkt.iEP_ID = ep->EPID;
|
|
|
|
pkt.iMapCoordX_Min = ep->zoneX * 51200;
|
|
|
|
pkt.iMapCoordX_Max = (ep->zoneX + 1) * 51200;
|
|
|
|
pkt.iMapCoordY_Min = ep->zoneY * 51200;
|
|
|
|
pkt.iMapCoordY_Max = (ep->zoneY + 1) * 51200;
|
|
|
|
pkt.iMapCoordZ_Min = INT32_MIN;
|
|
|
|
pkt.iMapCoordZ_Max = INT32_MAX;
|
|
|
|
}
|
2020-12-31 02:31:46 +00:00
|
|
|
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(pkt, P_FE2CL_INSTANCE_MAP_INFO);
|
2020-10-02 20:17:24 +00:00
|
|
|
}
|
2020-10-19 02:30:12 +00:00
|
|
|
|
2020-11-19 02:41:16 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_REP_PC_GOTO_SUCC, pkt2);
|
|
|
|
pkt2.iX = X;
|
|
|
|
pkt2.iY = Y;
|
|
|
|
pkt2.iZ = Z;
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(pkt2, P_FE2CL_REP_PC_GOTO_SUCC);
|
|
|
|
|
2022-07-22 00:40:33 +00:00
|
|
|
updatePlayerPositionForWarp(sock, X, Y, Z, I);
|
2020-11-18 00:07:04 +00:00
|
|
|
|
2020-10-25 22:14:35 +00:00
|
|
|
// post-warp: check if the source instance has no more players in it and delete it if so
|
2021-03-16 22:29:13 +00:00
|
|
|
Chunking::destroyInstanceIfEmpty(fromInstance);
|
2020-11-18 00:07:04 +00:00
|
|
|
|
2020-12-29 13:31:48 +00:00
|
|
|
// clean up EPRaces if we were likely in an IZ and left
|
|
|
|
if (fromInstance != INSTANCE_OVERWORLD && fromInstance != I
|
2021-03-16 22:29:13 +00:00
|
|
|
&& Racing::EPRaces.find(sock) != Racing::EPRaces.end())
|
|
|
|
Racing::EPRaces.erase(sock);
|
2020-10-03 15:21:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PlayerManager::sendPlayerTo(CNSocket* sock, int X, int Y, int Z) {
|
2020-11-18 00:07:04 +00:00
|
|
|
sendPlayerTo(sock, X, Y, Z, getPlayer(sock)->instanceID);
|
2020-10-03 15:21:36 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
/*
|
|
|
|
* Sends all nanos, from 0 to 58 (the contents of the Nanos array in PC_ENTER_SUCC are totally irrelevant).
|
|
|
|
* The first Nano in the in-game nanobook is the Unstable Nano, which is Van Kleiss.
|
|
|
|
* 0 (in plr->Nanos) is the null nano entry.
|
|
|
|
* 58 is a "Coming Soon" duplicate entry for an actual Van Kleiss nano, identical to the Unstable Nano.
|
|
|
|
* Nanos the player hasn't unlocked will (and should) be greyed out. Thus, all nanos should be accounted
|
|
|
|
* for in these packets, even if the player hasn't unlocked them.
|
|
|
|
*/
|
|
|
|
static void sendNanoBookSubset(CNSocket *sock) {
|
|
|
|
#ifdef ACADEMY
|
|
|
|
Player *plr = getPlayer(sock);
|
|
|
|
|
|
|
|
int16_t id = 0;
|
|
|
|
INITSTRUCT(sP_FE2CL_REP_NANO_BOOK_SUBSET, pkt);
|
|
|
|
|
|
|
|
pkt.PCUID = plr->iID;
|
|
|
|
pkt.bookSize = NANO_COUNT;
|
|
|
|
|
|
|
|
while (id < NANO_COUNT) {
|
|
|
|
pkt.elementOffset = id;
|
|
|
|
|
|
|
|
for (int i = id - pkt.elementOffset; id < NANO_COUNT && i < 10; id++, i = id - pkt.elementOffset)
|
|
|
|
pkt.element[i] = plr->Nanos[id];
|
|
|
|
|
2021-03-20 01:22:49 +00:00
|
|
|
sock->sendPacket(pkt, P_FE2CL_REP_NANO_BOOK_SUBSET);
|
2021-03-16 21:06:10 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void enterPlayer(CNSocket* sock, CNPacketData* data) {
|
2021-03-20 01:22:49 +00:00
|
|
|
auto enter = (sP_CL2FE_REQ_PC_ENTER*)data->buf;
|
2020-08-23 00:26:18 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_REP_PC_ENTER_SUCC, response);
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2022-07-23 22:16:04 +00:00
|
|
|
LoginMetadata *lm = CNShared::getLoginMetadata(enter->iEnterSerialKey);
|
|
|
|
if (lm == nullptr) {
|
|
|
|
std::cout << "[WARN] Refusing invalid REQ_PC_ENTER" << std::endl;
|
2022-07-31 01:16:07 +00:00
|
|
|
|
|
|
|
// send failure packet
|
2022-07-23 22:16:04 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_REP_PC_ENTER_FAIL, fail);
|
|
|
|
sock->sendPacket(fail, P_FE2CL_REP_PC_ENTER_FAIL);
|
2022-07-31 01:16:07 +00:00
|
|
|
|
|
|
|
// kill the connection
|
|
|
|
sock->kill();
|
|
|
|
// no need to call _killConnection(); Player isn't in shard yet
|
|
|
|
|
2022-07-23 22:16:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-06 01:11:31 +00:00
|
|
|
Player *plr = new Player();
|
|
|
|
Database::getPlayer(plr, lm->playerId);
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2020-09-27 05:12:26 +00:00
|
|
|
// check if account is already in use
|
2022-12-06 01:11:31 +00:00
|
|
|
if (isAccountInUse(plr->accountId)) {
|
2020-09-27 05:12:26 +00:00
|
|
|
// kick the other player
|
2022-12-06 01:11:31 +00:00
|
|
|
exitDuplicate(plr->accountId);
|
2022-12-06 00:07:21 +00:00
|
|
|
|
|
|
|
// re-read the player from disk, in case it was just flushed
|
2022-12-06 01:11:31 +00:00
|
|
|
*plr = {};
|
|
|
|
Database::getPlayer(plr, lm->playerId);
|
2020-09-27 05:12:26 +00:00
|
|
|
}
|
|
|
|
|
2022-04-23 01:13:00 +00:00
|
|
|
plr->group = nullptr;
|
2022-12-06 00:07:21 +00:00
|
|
|
|
2022-12-06 01:11:31 +00:00
|
|
|
response.iID = plr->iID;
|
2020-08-22 23:31:09 +00:00
|
|
|
response.uiSvrTime = getTime();
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.iUserLevel = plr->accountLevel;
|
|
|
|
response.PCLoadData2CL.iHP = plr->HP;
|
|
|
|
response.PCLoadData2CL.iLevel = plr->level;
|
|
|
|
response.PCLoadData2CL.iCandy = plr->money;
|
|
|
|
response.PCLoadData2CL.iFusionMatter = plr->fusionmatter;
|
|
|
|
response.PCLoadData2CL.iMentor = plr->mentor;
|
2020-09-12 20:43:04 +00:00
|
|
|
response.PCLoadData2CL.iMentorCount = 1; // how many guides the player has had
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.iX = plr->x;
|
|
|
|
response.PCLoadData2CL.iY = plr->y;
|
|
|
|
response.PCLoadData2CL.iZ = plr->z;
|
|
|
|
response.PCLoadData2CL.iAngle = plr->angle;
|
|
|
|
response.PCLoadData2CL.iBatteryN = plr->batteryN;
|
|
|
|
response.PCLoadData2CL.iBatteryW = plr->batteryW;
|
2020-10-19 17:26:14 +00:00
|
|
|
response.PCLoadData2CL.iBuddyWarpTime = 60; // sets 60s warp cooldown on login
|
2020-09-07 00:16:44 +00:00
|
|
|
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.iWarpLocationFlag = plr->iWarpLocationFlag;
|
|
|
|
response.PCLoadData2CL.aWyvernLocationFlag[0] = plr->aSkywayLocationFlag[0];
|
|
|
|
response.PCLoadData2CL.aWyvernLocationFlag[1] = plr->aSkywayLocationFlag[1];
|
2020-09-22 03:54:07 +00:00
|
|
|
|
2020-09-07 00:16:44 +00:00
|
|
|
response.PCLoadData2CL.iActiveNanoSlotNum = -1;
|
2020-08-22 23:31:09 +00:00
|
|
|
response.PCLoadData2CL.iFatigue = 50;
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.PCStyle = plr->PCStyle;
|
2020-10-05 00:03:13 +00:00
|
|
|
|
2020-10-19 17:26:14 +00:00
|
|
|
// client doesnt read this, it gets it from charinfo
|
2022-12-06 01:11:31 +00:00
|
|
|
// response.PCLoadData2CL.PCStyle2 = plr->PCStyle2;
|
2020-09-14 14:03:30 +00:00
|
|
|
// inventory
|
2020-08-18 20:42:30 +00:00
|
|
|
for (int i = 0; i < AEQUIP_COUNT; i++)
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.aEquip[i] = plr->Equip[i];
|
2020-08-24 21:04:56 +00:00
|
|
|
for (int i = 0; i < AINVEN_COUNT; i++)
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.aInven[i] = plr->Inven[i];
|
2020-09-21 19:43:53 +00:00
|
|
|
// quest inventory
|
|
|
|
for (int i = 0; i < AQINVEN_COUNT; i++)
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.aQInven[i] = plr->QInven[i];
|
2020-09-14 14:03:30 +00:00
|
|
|
// nanos
|
2020-09-07 00:16:44 +00:00
|
|
|
for (int i = 1; i < SIZEOF_NANO_BANK_SLOT; i++) {
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.aNanoBank[i] = plr->Nanos[i];
|
2020-08-18 20:42:30 +00:00
|
|
|
}
|
2020-09-07 00:16:44 +00:00
|
|
|
for (int i = 0; i < 3; i++) {
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.aNanoSlots[i] = plr->equippedNanos[i];
|
2020-09-07 00:16:44 +00:00
|
|
|
}
|
2020-10-19 17:26:14 +00:00
|
|
|
// missions in progress
|
2020-09-21 19:43:53 +00:00
|
|
|
for (int i = 0; i < ACTIVE_MISSION_COUNT; i++) {
|
2022-12-06 01:11:31 +00:00
|
|
|
if (plr->tasks[i] == 0)
|
2020-09-21 19:43:53 +00:00
|
|
|
break;
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.aRunningQuest[i].m_aCurrTaskID = plr->tasks[i];
|
|
|
|
TaskData &task = *Missions::Tasks[plr->tasks[i]];
|
2020-09-21 19:43:53 +00:00
|
|
|
for (int j = 0; j < 3; j++) {
|
|
|
|
response.PCLoadData2CL.aRunningQuest[i].m_aKillNPCID[j] = (int)task["m_iCSUEnemyID"][j];
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.aRunningQuest[i].m_aKillNPCCount[j] = plr->RemainingNPCCount[i][j];
|
2020-09-21 19:43:53 +00:00
|
|
|
/*
|
|
|
|
* client doesn't care about NeededItem ID and Count,
|
|
|
|
* it gets Count from Quest Inventory
|
2020-10-05 00:03:13 +00:00
|
|
|
*
|
2020-09-21 19:43:53 +00:00
|
|
|
* KillNPCCount sets RemainEnemyNum in the client
|
2020-09-21 21:30:05 +00:00
|
|
|
* Yes, this is extraordinary stupid.
|
2020-09-21 19:43:53 +00:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.iCurrentMissionID = plr->CurrentMissionID;
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2020-09-21 19:43:53 +00:00
|
|
|
// completed missions
|
|
|
|
// the packet requires 32 items, but the client only checks the first 16 (shrug)
|
2020-09-13 18:45:51 +00:00
|
|
|
for (int i = 0; i < 16; i++) {
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.aQuestFlag[i] = plr->aQuestFlag[i];
|
2020-09-13 18:45:51 +00:00
|
|
|
}
|
|
|
|
|
2020-12-07 18:01:29 +00:00
|
|
|
// Computress tips
|
2020-12-07 18:24:56 +00:00
|
|
|
if (settings::DISABLEFIRSTUSEFLAG) {
|
|
|
|
response.PCLoadData2CL.iFirstUseFlag1 = UINT64_MAX;
|
|
|
|
response.PCLoadData2CL.iFirstUseFlag2 = UINT64_MAX;
|
|
|
|
}
|
|
|
|
else {
|
2022-12-06 01:11:31 +00:00
|
|
|
response.PCLoadData2CL.iFirstUseFlag1 = plr->iFirstUseFlag[0];
|
|
|
|
response.PCLoadData2CL.iFirstUseFlag2 = plr->iFirstUseFlag[1];
|
2020-12-07 18:24:56 +00:00
|
|
|
}
|
2020-08-25 01:42:52 +00:00
|
|
|
|
2022-12-06 01:11:31 +00:00
|
|
|
plr->instanceID = INSTANCE_OVERWORLD; // the player should never be in an instance on enter
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2020-08-22 23:31:09 +00:00
|
|
|
sock->setEKey(CNSocketEncryption::createNewKey(response.uiSvrTime, response.iID + 1, response.PCLoadData2CL.iFusionMatter + 1));
|
2022-07-23 22:16:04 +00:00
|
|
|
sock->setFEKey(lm->FEKey);
|
2020-08-22 23:31:09 +00:00
|
|
|
sock->setActiveKey(SOCKETKEY_FE); // send all packets using the FE key from now on
|
|
|
|
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(response, P_FE2CL_REP_PC_ENTER_SUCC);
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2020-08-21 17:38:45 +00:00
|
|
|
// transmit MOTD after entering the game, so the client hopefully changes modes on time
|
2021-03-16 22:29:13 +00:00
|
|
|
Chat::sendServerMessage(sock, settings::MOTDSTRING);
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2022-12-06 01:11:31 +00:00
|
|
|
// transfer ownership of Player object into the shard (still valid in this function though)
|
2020-08-18 20:42:30 +00:00
|
|
|
addPlayer(sock, plr);
|
2022-07-23 22:16:04 +00:00
|
|
|
|
2020-10-19 17:26:14 +00:00
|
|
|
// check if there is an expiring vehicle
|
2022-12-06 01:11:31 +00:00
|
|
|
Items::checkItemExpire(sock, plr);
|
2020-10-05 00:03:13 +00:00
|
|
|
|
2020-10-19 17:26:14 +00:00
|
|
|
// set player equip stats
|
2022-12-06 01:11:31 +00:00
|
|
|
Items::setItemStats(plr);
|
2020-10-14 18:36:38 +00:00
|
|
|
|
2021-03-16 22:29:13 +00:00
|
|
|
Missions::failInstancedMissions(sock);
|
2020-10-31 17:12:13 +00:00
|
|
|
|
2020-11-25 22:36:30 +00:00
|
|
|
sendNanoBookSubset(sock);
|
|
|
|
|
2020-11-08 18:58:44 +00:00
|
|
|
// initial buddy sync
|
2021-03-16 22:29:13 +00:00
|
|
|
Buddies::refreshBuddyList(sock);
|
2020-11-08 17:42:27 +00:00
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
for (auto& pair : players)
|
2020-11-17 23:16:16 +00:00
|
|
|
if (pair.second->notify)
|
2022-12-06 01:11:31 +00:00
|
|
|
Chat::sendServerMessage(pair.first, "[ADMIN]" + getPlayerName(plr) + " has joined.");
|
2022-07-23 22:16:04 +00:00
|
|
|
|
2022-12-06 00:07:21 +00:00
|
|
|
// deallocate lm
|
2022-07-23 22:16:04 +00:00
|
|
|
delete lm;
|
2020-08-18 20:42:30 +00:00
|
|
|
}
|
|
|
|
|
2022-11-27 22:36:47 +00:00
|
|
|
void PlayerManager::sendToGroup(CNSocket* sock, void* buf, uint32_t type, size_t size) {
|
|
|
|
Player* plr = getPlayer(sock);
|
|
|
|
if (plr->group == nullptr)
|
|
|
|
return;
|
|
|
|
for(const EntityRef& ref : plr->group->filter(EntityKind::PLAYER))
|
|
|
|
ref.sock->sendPacket(buf, type, size);
|
|
|
|
}
|
|
|
|
|
2020-09-17 22:45:43 +00:00
|
|
|
void PlayerManager::sendToViewable(CNSocket* sock, void* buf, uint32_t type, size_t size) {
|
2020-11-18 00:07:04 +00:00
|
|
|
Player* plr = getPlayer(sock);
|
2021-03-20 01:23:53 +00:00
|
|
|
for (auto it = plr->viewableChunks.begin(); it != plr->viewableChunks.end(); it++) {
|
2020-11-19 22:19:46 +00:00
|
|
|
Chunk* chunk = *it;
|
2021-03-21 02:54:24 +00:00
|
|
|
for (const EntityRef& ref : chunk->entities) {
|
2022-04-13 19:09:43 +00:00
|
|
|
if (ref.kind != EntityKind::PLAYER || ref.sock == sock)
|
2020-09-17 22:45:43 +00:00
|
|
|
continue;
|
2020-10-05 00:03:13 +00:00
|
|
|
|
2021-03-21 02:54:24 +00:00
|
|
|
ref.sock->sendPacket(buf, type, size);
|
2020-09-17 22:45:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
static void loadPlayer(CNSocket* sock, CNPacketData* data) {
|
2020-08-18 20:42:30 +00:00
|
|
|
sP_CL2FE_REQ_PC_LOADING_COMPLETE* complete = (sP_CL2FE_REQ_PC_LOADING_COMPLETE*)data->buf;
|
2020-08-23 00:26:18 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_REP_PC_LOADING_COMPLETE_SUCC, response);
|
2020-08-25 18:42:52 +00:00
|
|
|
Player *plr = getPlayer(sock);
|
2020-08-18 20:42:30 +00:00
|
|
|
|
|
|
|
DEBUGLOG(
|
|
|
|
std::cout << "P_CL2FE_REQ_PC_LOADING_COMPLETE:" << std::endl;
|
2020-08-24 23:08:02 +00:00
|
|
|
std::cout << "\tPC_ID: " << complete->iPC_ID << std::endl;
|
2020-08-18 20:42:30 +00:00
|
|
|
)
|
|
|
|
|
2020-08-24 23:08:02 +00:00
|
|
|
response.iPC_ID = complete->iPC_ID;
|
2020-08-18 20:42:30 +00:00
|
|
|
|
2020-11-18 00:07:04 +00:00
|
|
|
updatePlayerPosition(sock, plr->x, plr->y, plr->z, plr->instanceID, plr->angle);
|
2020-08-25 18:42:52 +00:00
|
|
|
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(response, P_FE2CL_REP_PC_LOADING_COMPLETE_SUCC);
|
2020-08-18 20:42:30 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
static void heartbeatPlayer(CNSocket* sock, CNPacketData* data) {
|
2020-11-17 23:16:16 +00:00
|
|
|
getPlayer(sock)->lastHeartbeat = getTime();
|
2020-08-19 17:22:54 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
static void exitGame(CNSocket* sock, CNPacketData* data) {
|
2021-03-19 21:29:14 +00:00
|
|
|
auto exitData = (sP_CL2FE_REQ_PC_EXIT*)data->buf;
|
2020-08-23 00:26:18 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_REP_PC_EXIT_SUCC, response);
|
2020-08-19 17:22:54 +00:00
|
|
|
|
2020-08-22 23:31:09 +00:00
|
|
|
response.iID = exitData->iID;
|
|
|
|
response.iExitCode = 1;
|
2020-08-19 17:22:54 +00:00
|
|
|
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(response, P_FE2CL_REP_PC_EXIT_SUCC);
|
2022-07-19 06:17:43 +00:00
|
|
|
|
|
|
|
sock->kill();
|
|
|
|
CNShardServer::_killConnection(sock);
|
2020-08-19 17:22:54 +00:00
|
|
|
}
|
2020-08-22 18:02:08 +00:00
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
static void revivePlayer(CNSocket* sock, CNPacketData* data) {
|
|
|
|
Player *plr = getPlayer(sock);
|
|
|
|
WarpLocation* target = getRespawnPoint(plr);
|
2020-08-24 21:04:56 +00:00
|
|
|
|
2021-03-19 21:29:14 +00:00
|
|
|
auto reviveData = (sP_CL2FE_REQ_PC_REGEN*)data->buf;
|
2020-08-24 21:04:56 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_REP_PC_REGEN_SUCC, response);
|
2020-09-12 20:43:04 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_PC_REGEN, resp2);
|
2020-10-05 00:03:13 +00:00
|
|
|
|
2020-09-25 14:57:32 +00:00
|
|
|
int activeSlot = -1;
|
2020-11-25 22:46:27 +00:00
|
|
|
bool move = false;
|
|
|
|
|
2021-10-19 22:40:40 +00:00
|
|
|
switch ((ePCRegenType)reviveData->iRegenType) {
|
|
|
|
case ePCRegenType::HereByPhoenix: // nano revive
|
2022-07-17 06:33:57 +00:00
|
|
|
if (!(plr->hasBuff(ECSB_PHOENIX)))
|
2021-10-19 22:40:40 +00:00
|
|
|
return; // sanity check
|
2020-10-04 23:54:08 +00:00
|
|
|
plr->Nanos[plr->activeNano].iStamina = 0;
|
2021-10-19 22:40:40 +00:00
|
|
|
// fallthrough
|
|
|
|
case ePCRegenType::HereByPhoenixGroup: // revived by group member's nano
|
2021-10-19 14:42:54 +00:00
|
|
|
plr->HP = PC_MAXHEALTH(plr->level) / 2;
|
2021-10-19 22:40:40 +00:00
|
|
|
break;
|
2022-11-27 22:36:47 +00:00
|
|
|
|
2021-10-19 22:40:40 +00:00
|
|
|
default: // plain respawn
|
2021-10-19 14:42:54 +00:00
|
|
|
plr->HP = PC_MAXHEALTH(plr->level) / 2;
|
2023-08-21 01:16:14 +00:00
|
|
|
plr->clearBuffs(false);
|
2021-10-19 22:40:40 +00:00
|
|
|
// fallthrough
|
|
|
|
case ePCRegenType::Unstick: // warp away
|
|
|
|
move = true;
|
|
|
|
break;
|
2020-11-27 20:39:38 +00:00
|
|
|
}
|
2020-10-05 00:03:13 +00:00
|
|
|
|
2020-11-27 20:39:38 +00:00
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
int nanoID = plr->equippedNanos[i];
|
|
|
|
// halve nano health if respawning
|
2020-11-29 01:43:42 +00:00
|
|
|
// all revives not 3-5 are normal respawns.
|
2020-12-06 04:25:23 +00:00
|
|
|
if (reviveData->iRegenType < 3 || reviveData->iRegenType > 5)
|
2020-11-27 20:39:38 +00:00
|
|
|
plr->Nanos[nanoID].iStamina = 75; // max is 150, so 75 is half
|
|
|
|
response.PCRegenData.Nanos[i] = plr->Nanos[nanoID];
|
|
|
|
if (plr->activeNano == nanoID)
|
|
|
|
activeSlot = i;
|
2020-09-12 18:21:36 +00:00
|
|
|
}
|
|
|
|
|
2020-12-14 23:22:27 +00:00
|
|
|
int x, y, z;
|
2020-11-26 16:03:42 +00:00
|
|
|
if (move && target != nullptr) {
|
2020-12-14 23:22:27 +00:00
|
|
|
// go to Resurrect 'Em
|
|
|
|
x = target->x;
|
|
|
|
y = target->y;
|
|
|
|
z = target->z;
|
|
|
|
} else if (PLAYERID(plr->instanceID)) {
|
|
|
|
// respawn at entrance to the Lair
|
|
|
|
x = plr->recallX;
|
|
|
|
y = plr->recallY;
|
|
|
|
z = plr->recallZ;
|
2020-11-26 16:03:42 +00:00
|
|
|
} else {
|
2020-12-14 23:22:27 +00:00
|
|
|
// no other choice; respawn in place
|
|
|
|
x = plr->x;
|
|
|
|
y = plr->y;
|
|
|
|
z = plr->z;
|
2020-11-26 16:03:42 +00:00
|
|
|
}
|
2020-12-14 23:22:27 +00:00
|
|
|
|
|
|
|
// Response parameters
|
|
|
|
response.PCRegenData.iActiveNanoSlotNum = activeSlot;
|
|
|
|
response.PCRegenData.iX = x;
|
|
|
|
response.PCRegenData.iY = y;
|
|
|
|
response.PCRegenData.iZ = z;
|
2020-09-12 18:21:36 +00:00
|
|
|
response.PCRegenData.iHP = plr->HP;
|
|
|
|
response.iFusionMatter = plr->fusionmatter;
|
2020-10-04 23:54:08 +00:00
|
|
|
response.bMoveLocation = 0;
|
2020-12-14 23:22:27 +00:00
|
|
|
response.PCRegenData.iMapNum = MAPNUM(plr->instanceID);
|
2020-08-24 21:04:56 +00:00
|
|
|
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(response, P_FE2CL_REP_PC_REGEN_SUCC);
|
2020-09-12 20:43:04 +00:00
|
|
|
|
|
|
|
// Update other players
|
|
|
|
resp2.PCRegenDataForOtherPC.iPC_ID = plr->iID;
|
2020-12-14 23:22:27 +00:00
|
|
|
resp2.PCRegenDataForOtherPC.iX = x;
|
|
|
|
resp2.PCRegenDataForOtherPC.iY = y;
|
|
|
|
resp2.PCRegenDataForOtherPC.iZ = z;
|
2020-09-12 20:43:04 +00:00
|
|
|
resp2.PCRegenDataForOtherPC.iHP = plr->HP;
|
|
|
|
resp2.PCRegenDataForOtherPC.iAngle = plr->angle;
|
2020-11-27 16:50:57 +00:00
|
|
|
|
2022-04-23 01:13:00 +00:00
|
|
|
if (plr->group != nullptr) {
|
2022-07-17 06:33:57 +00:00
|
|
|
|
|
|
|
resp2.PCRegenDataForOtherPC.iConditionBitFlag = plr->getCompositeCondition();
|
2020-12-14 23:22:27 +00:00
|
|
|
resp2.PCRegenDataForOtherPC.iPCState = plr->iPCState;
|
|
|
|
resp2.PCRegenDataForOtherPC.iSpecialState = plr->iSpecialState;
|
|
|
|
resp2.PCRegenDataForOtherPC.Nano = plr->Nanos[plr->activeNano];
|
2020-09-12 20:43:04 +00:00
|
|
|
|
2021-03-19 21:29:14 +00:00
|
|
|
sendToViewable(sock, resp2, P_FE2CL_PC_REGEN);
|
2020-12-14 23:22:27 +00:00
|
|
|
}
|
2020-11-25 22:46:27 +00:00
|
|
|
|
2020-12-14 23:22:27 +00:00
|
|
|
if (!move)
|
2020-11-25 22:46:27 +00:00
|
|
|
return;
|
|
|
|
|
2022-07-22 00:40:33 +00:00
|
|
|
updatePlayerPositionForWarp(sock, x, y, z, plr->instanceID);
|
2020-08-24 21:04:56 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
static void enterPlayerVehicle(CNSocket* sock, CNPacketData* data) {
|
2020-11-17 23:16:16 +00:00
|
|
|
Player* plr = getPlayer(sock);
|
2020-09-14 13:53:48 +00:00
|
|
|
|
2021-03-19 01:20:13 +00:00
|
|
|
// vehicles are only allowed in the overworld
|
|
|
|
if (plr->instanceID != 0)
|
|
|
|
return;
|
|
|
|
|
2020-12-22 21:52:25 +00:00
|
|
|
bool expired = plr->Equip[8].iTimeLimit < getTimestamp() && plr->Equip[8].iTimeLimit != 0;
|
|
|
|
|
|
|
|
if (plr->Equip[8].iID > 0 && !expired) {
|
2020-08-27 02:35:13 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_PC_VEHICLE_ON_SUCC, response);
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(response, P_FE2CL_PC_VEHICLE_ON_SUCC);
|
2020-09-14 13:53:48 +00:00
|
|
|
|
2020-09-14 14:03:30 +00:00
|
|
|
// send to other players
|
2020-11-17 23:16:16 +00:00
|
|
|
plr->iPCState |= 8;
|
2020-08-27 02:35:13 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_PC_STATE_CHANGE, response2);
|
2020-11-17 23:16:16 +00:00
|
|
|
response2.iPC_ID = plr->iID;
|
|
|
|
response2.iState = plr->iPCState;
|
2021-03-19 21:29:14 +00:00
|
|
|
sendToViewable(sock, response2, P_FE2CL_PC_STATE_CHANGE);
|
2020-09-14 13:53:48 +00:00
|
|
|
|
2020-08-27 02:35:13 +00:00
|
|
|
} else {
|
|
|
|
INITSTRUCT(sP_FE2CL_PC_VEHICLE_ON_FAIL, response);
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(response, P_FE2CL_PC_VEHICLE_ON_FAIL);
|
2020-09-23 08:20:47 +00:00
|
|
|
|
2020-09-23 09:21:32 +00:00
|
|
|
// check if vehicle didn't expire
|
2020-12-22 21:52:25 +00:00
|
|
|
if (expired) {
|
2020-11-17 23:16:16 +00:00
|
|
|
plr->toRemoveVehicle.eIL = 0;
|
|
|
|
plr->toRemoveVehicle.iSlotNum = 8;
|
2021-03-16 22:29:13 +00:00
|
|
|
Items::checkItemExpire(sock, plr);
|
2020-09-23 08:20:47 +00:00
|
|
|
}
|
2020-08-24 21:04:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
static void exitPlayerVehicle(CNSocket* sock, CNPacketData* data) {
|
2020-11-17 23:16:16 +00:00
|
|
|
Player* plr = getPlayer(sock);
|
2020-08-24 21:04:56 +00:00
|
|
|
|
2020-11-17 23:16:16 +00:00
|
|
|
if (plr->iPCState & 8) {
|
2020-10-28 21:05:01 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_PC_VEHICLE_OFF_SUCC, response);
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(response, P_FE2CL_PC_VEHICLE_OFF_SUCC);
|
2020-09-14 13:53:48 +00:00
|
|
|
|
2020-10-28 21:05:01 +00:00
|
|
|
// send to other players
|
2020-11-17 23:16:16 +00:00
|
|
|
plr->iPCState &= ~8;
|
2020-10-28 21:05:01 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_PC_STATE_CHANGE, response2);
|
2020-11-17 23:16:16 +00:00
|
|
|
response2.iPC_ID = plr->iID;
|
|
|
|
response2.iState = plr->iPCState;
|
2020-10-28 21:05:01 +00:00
|
|
|
|
2021-03-19 21:29:14 +00:00
|
|
|
sendToViewable(sock, response2, P_FE2CL_PC_STATE_CHANGE);
|
2020-10-28 21:05:01 +00:00
|
|
|
}
|
2020-08-24 21:04:56 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
static void setSpecialSwitchPlayer(CNSocket* sock, CNPacketData* data) {
|
2021-03-12 22:18:00 +00:00
|
|
|
BuiltinCommands::setSpecialState(sock, data);
|
2020-12-31 01:13:43 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
static void changePlayerGuide(CNSocket *sock, CNPacketData *data) {
|
2021-03-19 21:29:14 +00:00
|
|
|
auto pkt = (sP_CL2FE_REQ_PC_CHANGE_MENTOR*)data->buf;
|
2020-08-28 19:42:00 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_REP_PC_CHANGE_MENTOR_SUCC, resp);
|
|
|
|
Player *plr = getPlayer(sock);
|
|
|
|
|
|
|
|
resp.iMentor = pkt->iMentor;
|
|
|
|
resp.iMentorCnt = 1;
|
|
|
|
resp.iFusionMatter = plr->fusionmatter; // no cost
|
2020-10-05 00:03:13 +00:00
|
|
|
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(resp, P_FE2CL_REP_PC_CHANGE_MENTOR_SUCC);
|
2020-09-25 05:35:27 +00:00
|
|
|
// if it's changed from computress
|
|
|
|
if (plr->mentor == 5) {
|
|
|
|
// we're warping to the past
|
|
|
|
plr->PCStyle2.iPayzoneFlag = 1;
|
|
|
|
// remove all active missions
|
|
|
|
for (int i = 0; i < ACTIVE_MISSION_COUNT; i++) {
|
|
|
|
if (plr->tasks[i] != 0)
|
2021-03-16 22:29:13 +00:00
|
|
|
Missions::quitTask(sock, plr->tasks[i], true);
|
2020-09-25 05:35:27 +00:00
|
|
|
}
|
2020-09-26 01:48:45 +00:00
|
|
|
|
|
|
|
// start Blossom nano mission if applicable
|
2021-03-16 22:29:13 +00:00
|
|
|
Missions::updateFusionMatter(sock, 0);
|
2020-09-25 05:35:27 +00:00
|
|
|
}
|
|
|
|
// save it on player
|
2020-09-21 19:43:53 +00:00
|
|
|
plr->mentor = pkt->iMentor;
|
2020-08-28 19:42:00 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 21:06:10 +00:00
|
|
|
static void setFirstUseFlag(CNSocket* sock, CNPacketData* data) {
|
2021-03-19 21:29:14 +00:00
|
|
|
auto flag = (sP_CL2FE_REQ_PC_FIRST_USE_FLAG_SET*)data->buf;
|
2020-12-07 18:01:29 +00:00
|
|
|
Player* plr = getPlayer(sock);
|
|
|
|
|
|
|
|
if (flag->iFlagCode < 1 || flag->iFlagCode > 128) {
|
|
|
|
std::cout << "[WARN] Client submitted invalid first use flag number?!" << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag->iFlagCode <= 64)
|
|
|
|
plr->iFirstUseFlag[0] |= (1ULL << (flag->iFlagCode - 1));
|
|
|
|
else
|
|
|
|
plr->iFirstUseFlag[1] |= (1ULL << (flag->iFlagCode - 65));
|
|
|
|
}
|
|
|
|
|
2020-08-24 21:04:56 +00:00
|
|
|
#pragma region Helper methods
|
2020-08-24 22:02:07 +00:00
|
|
|
Player *PlayerManager::getPlayer(CNSocket* key) {
|
2020-09-28 18:11:13 +00:00
|
|
|
if (players.find(key) != players.end())
|
2020-11-17 23:16:16 +00:00
|
|
|
return players[key];
|
2020-10-05 00:03:13 +00:00
|
|
|
|
2020-12-01 18:58:34 +00:00
|
|
|
// this should never happen
|
|
|
|
assert(false);
|
2020-08-24 21:04:56 +00:00
|
|
|
}
|
2020-08-25 01:34:53 +00:00
|
|
|
|
2020-10-31 20:31:25 +00:00
|
|
|
std::string PlayerManager::getPlayerName(Player *plr, bool id) {
|
|
|
|
// the print in CNShardServer can print packets from players that haven't yet joined
|
|
|
|
if (plr == nullptr)
|
|
|
|
return "NOT IN GAME";
|
|
|
|
|
2020-12-15 14:53:45 +00:00
|
|
|
std::string ret = "";
|
2020-12-17 00:59:55 +00:00
|
|
|
if (id && plr->accountLevel <= 30)
|
2020-12-15 14:53:45 +00:00
|
|
|
ret += "(GM) ";
|
|
|
|
|
2021-03-18 04:41:47 +00:00
|
|
|
ret += AUTOU16TOU8(plr->PCStyle.szFirstName) + " " + AUTOU16TOU8(plr->PCStyle.szLastName);
|
2020-10-31 20:31:25 +00:00
|
|
|
|
|
|
|
if (id)
|
|
|
|
ret += " [" + std::to_string(plr->iID) + "]";
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-09-01 22:37:09 +00:00
|
|
|
bool PlayerManager::isAccountInUse(int accountId) {
|
2020-11-17 23:16:16 +00:00
|
|
|
std::map<CNSocket*, Player*>::iterator it;
|
2021-03-16 21:06:10 +00:00
|
|
|
for (it = players.begin(); it != players.end(); it++) {
|
2020-11-17 23:16:16 +00:00
|
|
|
if (it->second->accountId == accountId)
|
2020-09-01 22:37:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlayerManager::exitDuplicate(int accountId) {
|
2020-11-17 23:16:16 +00:00
|
|
|
std::map<CNSocket*, Player*>::iterator it;
|
2020-10-01 23:37:50 +00:00
|
|
|
|
|
|
|
// disconnect any duplicate players
|
|
|
|
for (it = players.begin(); it != players.end(); it++) {
|
2020-11-17 23:16:16 +00:00
|
|
|
if (it->second->accountId == accountId) {
|
2020-09-01 22:37:09 +00:00
|
|
|
CNSocket* sock = it->first;
|
2020-10-01 23:37:50 +00:00
|
|
|
|
2020-09-01 22:37:09 +00:00
|
|
|
INITSTRUCT(sP_FE2CL_REP_PC_EXIT_DUPLICATE, resp);
|
|
|
|
resp.iErrorCode = 0;
|
2021-03-19 21:29:14 +00:00
|
|
|
sock->sendPacket(resp, P_FE2CL_REP_PC_EXIT_DUPLICATE);
|
2020-10-01 23:37:50 +00:00
|
|
|
|
2020-09-01 22:37:09 +00:00
|
|
|
sock->kill();
|
2020-10-01 23:37:50 +00:00
|
|
|
CNShardServer::_killConnection(sock);
|
2020-12-08 00:53:21 +00:00
|
|
|
break;
|
2020-09-01 22:37:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-22 15:30:49 +00:00
|
|
|
|
2020-12-31 01:13:43 +00:00
|
|
|
// TODO: just call getPlayer() after getSockFromID()?
|
2020-10-04 23:54:08 +00:00
|
|
|
Player *PlayerManager::getPlayerFromID(int32_t iID) {
|
2020-12-31 01:13:43 +00:00
|
|
|
for (auto& pair : players)
|
2020-11-17 23:16:16 +00:00
|
|
|
if (pair.second->iID == iID)
|
|
|
|
return pair.second;
|
2020-10-04 23:54:08 +00:00
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CNSocket *PlayerManager::getSockFromID(int32_t iID) {
|
2020-12-31 01:13:43 +00:00
|
|
|
for (auto& pair : players)
|
2020-11-17 23:16:16 +00:00
|
|
|
if (pair.second->iID == iID)
|
2020-10-02 21:00:36 +00:00
|
|
|
return pair.first;
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
2020-12-31 01:13:43 +00:00
|
|
|
|
|
|
|
CNSocket *PlayerManager::getSockFromName(std::string firstname, std::string lastname) {
|
|
|
|
for (auto& pair : players)
|
2021-03-18 04:41:47 +00:00
|
|
|
if (AUTOU16TOU8(pair.second->PCStyle.szFirstName) == firstname
|
|
|
|
&& AUTOU16TOU8(pair.second->PCStyle.szLastName) == lastname)
|
2020-12-31 01:13:43 +00:00
|
|
|
return pair.first;
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CNSocket *PlayerManager::getSockFromAny(int by, int id, int uid, std::string firstname, std::string lastname) {
|
2021-10-19 22:40:40 +00:00
|
|
|
switch ((eCN_GM_TargetSearchBy)by) {
|
|
|
|
case eCN_GM_TargetSearchBy::PC_ID:
|
2020-12-31 01:13:43 +00:00
|
|
|
assert(id != 0);
|
|
|
|
return getSockFromID(id);
|
2021-10-19 22:40:40 +00:00
|
|
|
case eCN_GM_TargetSearchBy::PC_UID: // account id; not player id
|
2020-12-31 01:13:43 +00:00
|
|
|
assert(uid != 0);
|
|
|
|
for (auto& pair : players)
|
|
|
|
if (pair.second->accountId == uid)
|
|
|
|
return pair.first;
|
2021-10-19 22:40:40 +00:00
|
|
|
case eCN_GM_TargetSearchBy::PC_Name:
|
2020-12-31 01:13:43 +00:00
|
|
|
assert(firstname != "" && lastname != ""); // XXX: remove this if we start messing around with edited names?
|
|
|
|
return getSockFromName(firstname, lastname);
|
|
|
|
}
|
|
|
|
|
|
|
|
// not found
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-04-25 07:40:36 +00:00
|
|
|
WarpLocation *PlayerManager::getRespawnPoint(Player *plr) {
|
|
|
|
WarpLocation* best = nullptr;
|
|
|
|
uint32_t curDist, bestDist = UINT32_MAX;
|
|
|
|
|
|
|
|
for (auto& targ : NPCManager::RespawnPoints) {
|
|
|
|
curDist = sqrt(pow(plr->x - targ.x, 2) + pow(plr->y - targ.y, 2));
|
|
|
|
if (curDist < bestDist && targ.instanceID == MAPNUM(plr->instanceID)) { // only mapNum needs to match
|
|
|
|
best = &targ;
|
|
|
|
bestDist = curDist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return best;
|
|
|
|
}
|
|
|
|
|
2020-08-24 22:02:07 +00:00
|
|
|
#pragma endregion
|
2021-03-16 21:06:10 +00:00
|
|
|
|
|
|
|
void PlayerManager::init() {
|
|
|
|
// register packet types
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REQ_PC_ENTER, enterPlayer);
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REQ_PC_LOADING_COMPLETE, loadPlayer);
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REP_LIVE_CHECK, heartbeatPlayer);
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REQ_PC_REGEN, revivePlayer);
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REQ_PC_EXIT, exitGame);
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REQ_PC_SPECIAL_STATE_SWITCH, setSpecialSwitchPlayer);
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REQ_PC_VEHICLE_ON, enterPlayerVehicle);
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REQ_PC_VEHICLE_OFF, exitPlayerVehicle);
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REQ_PC_CHANGE_MENTOR, changePlayerGuide);
|
|
|
|
REGISTER_SHARD_PACKET(P_CL2FE_REQ_PC_FIRST_USE_FLAG_SET, setFirstUseFlag);
|
2022-07-23 22:16:04 +00:00
|
|
|
|
2022-07-31 01:16:07 +00:00
|
|
|
REGISTER_SHARD_TIMER(CNShared::pruneLoginMetadata, CNSHARED_PERIOD);
|
2021-03-16 21:06:10 +00:00
|
|
|
}
|