mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-11-13 21:58:42 +00:00
.github
dAuthServer
dChatFilter
dChatServer
dCommon
dDatabase
dGame
dMasterServer
dNavigation
dNet
dPhysics
dScripts
02_server
DLU
Enemy
Equipment
Map
AG
AG_Spider_Queen
AM
FV
GF
General
NS
NT
PR
Property
AG_Med
AG_Small
NS_Med
CMakeLists.txt
PropertyBankInteract.cpp
PropertyBankInteract.h
SS
VE
njhub
CMakeLists.txt
Minigame
Objects
Pets
CMakeLists.txt
EquipmentScripts
EquipmentTriggers
ai
client
zone
ActivityManager.cpp
ActivityManager.h
BaseConsoleTeleportServer.cpp
BaseConsoleTeleportServer.h
BasePropertyServer.cpp
BasePropertyServer.h
BaseRandomServer.cpp
BaseRandomServer.h
BaseSurvivalServer.cpp
BaseSurvivalServer.h
BaseWavesGenericEnemy.cpp
BaseWavesGenericEnemy.h
BaseWavesServer.cpp
BaseWavesServer.h
CMakeLists.txt
ChooseYourDestinationNsToNt.cpp
ChooseYourDestinationNsToNt.h
CppScripts.cpp
CppScripts.h
Darkitect.cpp
Darkitect.h
NPCAddRemoveItem.cpp
NPCAddRemoveItem.h
NtFactionSpyServer.cpp
NtFactionSpyServer.h
ScriptComponent.cpp
ScriptComponent.h
ScriptedPowerupSpawner.cpp
ScriptedPowerupSpawner.h
SpawnPetBaseServer.cpp
SpawnPetBaseServer.h
dWorldServer
dZoneManager
docker
docs
migrations
resources
tests
thirdparty
vanity
.dockerignore
.editorconfig
.env.example
.git-blame-ignore-revs
.gitattributes
.gitignore
.gitmodules
CMakeLists.txt
CMakePresets.json
CMakeVariables.txt
CONTRIBUTING.md
Docker.md
Docker_Windows.md
LICENSE
README.md
SECURITY.md
build.sh
docker-compose.yml
logo.png
systemd.example
versions.txt
* Move EntityManager to Game namespace * move initialization to later Need to wait for dZoneManager to be initialized. * Fix bugs - Cannot delete from a RandomAccessIterator while in a range based for loop. Touchup zone manager initialize replace magic numbers with better named constants replace magic zonecontrol id with a more readable hex alternative condense stack variables move initializers closer to their use initialize entity manager with zone control change initialize timings If zone is not zero we expect to initialize the entity manager during zone manager initialization Add constexpr for zone control LOT * Add proper error handling * revert vanity changes * Update WorldServer.cpp * Update dZoneManager.cpp
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
#include "PropertyBankInteract.h"
|
|
#include "EntityManager.h"
|
|
#include "GameMessages.h"
|
|
#include "Amf3.h"
|
|
#include "Entity.h"
|
|
|
|
void PropertyBankInteract::OnStartup(Entity* self) {
|
|
auto* zoneControl = Game::entityManager->GetZoneControlEntity();
|
|
if (zoneControl != nullptr) {
|
|
zoneControl->OnFireEventServerSide(self, "CheckForPropertyOwner");
|
|
}
|
|
}
|
|
|
|
void PropertyBankInteract::OnPlayerLoaded(Entity* self, Entity* player) {
|
|
auto* zoneControl = Game::entityManager->GetZoneControlEntity();
|
|
if (zoneControl != nullptr) {
|
|
zoneControl->OnFireEventServerSide(self, "CheckForPropertyOwner");
|
|
}
|
|
}
|
|
|
|
void PropertyBankInteract::OnUse(Entity* self, Entity* user) {
|
|
|
|
AMFArrayValue args;
|
|
|
|
args.Insert("state", "bank");
|
|
|
|
GameMessages::SendUIMessageServerToSingleClient(user, user->GetSystemAddress(), "pushGameState", args);
|
|
|
|
GameMessages::SendNotifyClientObject(self->GetObjectID(), u"OpenBank", 0, 0, LWOOBJID_EMPTY,
|
|
"", user->GetSystemAddress());
|
|
}
|
|
|
|
void PropertyBankInteract::OnFireEventServerSide(Entity* self, Entity* sender, std::string args, int32_t param1,
|
|
int32_t param2, int32_t param3) {
|
|
if (args == "ToggleBank") {
|
|
AMFArrayValue amfArgs;
|
|
|
|
amfArgs.Insert("visible", false);
|
|
|
|
GameMessages::SendUIMessageServerToSingleClient(sender, sender->GetSystemAddress(), "ToggleBank", amfArgs);
|
|
|
|
GameMessages::SendNotifyClientObject(self->GetObjectID(), u"CloseBank", 0, 0, LWOOBJID_EMPTY,
|
|
"", sender->GetSystemAddress());
|
|
}
|
|
}
|