mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 12:18:22 +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
85 lines
2.5 KiB
C++
85 lines
2.5 KiB
C++
#include "GfCaptainsCannon.h"
|
|
#include "GameMessages.h"
|
|
#include "EntityManager.h"
|
|
#include "MissionComponent.h"
|
|
#include "RenderComponent.h"
|
|
|
|
void GfCaptainsCannon::OnUse(Entity* self, Entity* user) {
|
|
if (self->GetVar<bool>(u"bIsInUse")) {
|
|
return;
|
|
}
|
|
|
|
self->SetVar<LWOOBJID>(u"userID", user->GetObjectID());
|
|
|
|
self->SetVar<bool>(u"bIsInUse", true);
|
|
self->SetNetworkVar<bool>(u"bIsInUse", true);
|
|
|
|
GameMessages::SendSetStunned(user->GetObjectID(), eStateChangeType::PUSH, user->GetSystemAddress(),
|
|
LWOOBJID_EMPTY, true, true, true, true, true, true, true, true
|
|
);
|
|
|
|
auto position = self->GetPosition();
|
|
auto forward = self->GetRotation().GetForwardVector();
|
|
|
|
position.x += forward.x * -3;
|
|
position.z += forward.z * -3;
|
|
|
|
auto rotation = self->GetRotation();
|
|
|
|
GameMessages::SendTeleport(user->GetObjectID(), position, rotation, user->GetSystemAddress());
|
|
|
|
RenderComponent::PlayAnimation(user, u"cannon-strike-no-equip");
|
|
|
|
GameMessages::SendPlayFXEffect(user->GetObjectID(), 6039, u"hook", "hook", LWOOBJID_EMPTY, 1, 1, true);
|
|
|
|
self->AddTimer("FireCannon", 1.667f);
|
|
}
|
|
|
|
void GfCaptainsCannon::OnTimerDone(Entity* self, std::string timerName) {
|
|
const auto playerId = self->GetVar<LWOOBJID>(u"userID");
|
|
|
|
auto* player = EntityManager::Instance()->GetEntity(playerId);
|
|
|
|
if (player == nullptr) {
|
|
self->SetVar<bool>(u"bIsInUse", false);
|
|
self->SetNetworkVar<bool>(u"bIsInUse", false);
|
|
|
|
return;
|
|
}
|
|
|
|
if (timerName == "FireCannon") {
|
|
float cinematicTime = 6.3f;
|
|
|
|
GameMessages::SendPlayCinematic(playerId, u"Cannon_Cam", player->GetSystemAddress());
|
|
|
|
self->AddTimer("cinematicTimer", cinematicTime);
|
|
|
|
const auto sharkObjects = EntityManager::Instance()->GetEntitiesInGroup("SharkCannon");
|
|
|
|
for (auto* shark : sharkObjects) {
|
|
if (shark->GetLOT() != m_SharkItemID) continue;
|
|
|
|
RenderComponent::PlayAnimation(shark, u"cannon");
|
|
}
|
|
|
|
GameMessages::SendPlay2DAmbientSound(player, "{7457d85c-4537-4317-ac9d-2f549219ea87}");
|
|
} else if (timerName == "cinematicTimer") {
|
|
GameMessages::SendSetStunned(playerId, eStateChangeType::POP, player->GetSystemAddress(),
|
|
LWOOBJID_EMPTY, true, true, true, true, true, true, true, true
|
|
);
|
|
|
|
self->SetVar<bool>(u"bIsInUse", false);
|
|
self->SetNetworkVar<bool>(u"bIsInUse", false);
|
|
|
|
GameMessages::SendStopFXEffect(player, true, "hook");
|
|
|
|
auto* missionComponent = player->GetComponent<MissionComponent>();
|
|
|
|
if (missionComponent != nullptr) {
|
|
missionComponent->ForceProgress(601, 910, 1);
|
|
}
|
|
|
|
GameMessages::SendTerminateInteraction(playerId, FROM_INTERACTION, self->GetObjectID());
|
|
}
|
|
}
|