mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
6aa90ad5b2
* Breakout rest of the enums from dcommonvars so we don't have to deal with merge conflicts ePlayerFlags is not a scoped enum, yet, due to it's complexity * address feedback * make player flag types consistent * fix typo
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
#include "FvPandaServer.h"
|
|
#include "PetComponent.h"
|
|
#include "Character.h"
|
|
#include "ePetTamingNotifyType.h"
|
|
|
|
void FvPandaServer::OnStartup(Entity* self) {
|
|
const auto* petComponent = self->GetComponent<PetComponent>();
|
|
if (petComponent != nullptr && petComponent->GetOwner() == nullptr) {
|
|
self->SetNetworkVar<std::string>(u"pandatamer", std::to_string(self->GetVar<LWOOBJID>(u"tamer")));
|
|
self->AddTimer("killSelf", 45);
|
|
}
|
|
}
|
|
|
|
void FvPandaServer::OnNotifyPetTamingMinigame(Entity* self, Entity* tamer, ePetTamingNotifyType type) {
|
|
if (type == ePetTamingNotifyType::BEGIN) {
|
|
self->CancelAllTimers();
|
|
} else if (type == ePetTamingNotifyType::QUIT || type == ePetTamingNotifyType::FAILED) {
|
|
self->Smash();
|
|
} else if (type == ePetTamingNotifyType::SUCCESS) {
|
|
// TODO: Remove from groups
|
|
|
|
auto* character = tamer->GetCharacter();
|
|
if (character != nullptr) {
|
|
character->SetPlayerFlag(82, true);
|
|
}
|
|
}
|
|
}
|
|
|
|
void FvPandaServer::OnTimerDone(Entity* self, std::string timerName) {
|
|
if (timerName == "killSelf") {
|
|
const auto* petComponent = self->GetComponent<PetComponent>();
|
|
if (petComponent != nullptr && petComponent->GetOwner() == nullptr) {
|
|
self->Smash(self->GetObjectID(), eKillType::SILENT);
|
|
}
|
|
}
|
|
}
|