mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
b432a3f5da
Clean up macros more tomorrow Cleanup and optimize CDActivities table Remove unused include Further work on CDActivityRewards Update MasterServer.cpp Further animations work Activities still needs work for a better PK. fix type All of these replacements worked Create internal interface for animations Allows for user to just call GetAnimationTIme or PlayAnimation rather than passing in arbitrary true false statements
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
#include "AgMonumentBirds.h"
|
|
#include "GameMessages.h"
|
|
#include "Entity.h"
|
|
#include "RenderComponent.h"
|
|
#include "EntityManager.h"
|
|
|
|
//--------------------------------------------------------------
|
|
//Makes the ag birds fly away when you get close and smashes them.
|
|
//Created mrb... 6 / 3 / 11
|
|
//Ported Max 20/07/2020
|
|
//--------------------------------------------------------------
|
|
|
|
void AgMonumentBirds::OnStartup(Entity* self) {
|
|
self->SetProximityRadius(flyRadius, "MonumentBirds");
|
|
}
|
|
|
|
void AgMonumentBirds::OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) {
|
|
if (self->GetVar<bool>(u"IsFlying")) return;
|
|
|
|
if (name == "MonumentBirds" && status == "ENTER") {
|
|
self->AddTimer("killBird", 1.0f);
|
|
RenderComponent::PlayAnimation(self, sOnProximityAnim);
|
|
self->SetVar<bool>(u"IsFlying", true);
|
|
self->SetVar<LWOOBJID>(u"PlayerID", entering->GetObjectID());
|
|
}
|
|
}
|
|
|
|
void AgMonumentBirds::OnTimerDone(Entity* self, std::string timerName) {
|
|
if (timerName != "killBird") return;
|
|
|
|
auto* player = EntityManager::Instance()->GetEntity(self->GetVar<LWOOBJID>(u"PlayerID"));
|
|
|
|
if (player == nullptr) return;
|
|
|
|
self->ScheduleKillAfterUpdate(player);
|
|
}
|