mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 12:48:20 +00:00
9954e20eac
* Added the ability to specify a change to play * Added the ability to specify if a scene can play multiple times to the same player
90 lines
1.6 KiB
C++
90 lines
1.6 KiB
C++
#include "Play.h"
|
|
|
|
#include "Scene.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
using namespace Cinema;
|
|
|
|
void Cinema::Play::Conclude() {
|
|
auto* player = Game::entityManager->GetEntity(this->player);
|
|
|
|
if (player == nullptr) {
|
|
return;
|
|
}
|
|
|
|
scene->Conclude(player);
|
|
}
|
|
|
|
void Cinema::Play::SetupCheckForAudience() {
|
|
if (m_CheckForAudience) {
|
|
return;
|
|
}
|
|
|
|
m_CheckForAudience = true;
|
|
|
|
CheckForAudience();
|
|
}
|
|
|
|
void Cinema::Play::CheckForAudience() {
|
|
auto* player = Game::entityManager->GetEntity(this->player);
|
|
|
|
if (player == nullptr) {
|
|
CleanUp();
|
|
|
|
return;
|
|
}
|
|
|
|
if (scene->IsPlayerInBounds(player)) {
|
|
SignalBarrier("audience");
|
|
|
|
m_PlayerHasBeenInsideBounds = true;
|
|
}
|
|
|
|
if (!scene->IsPlayerInShowingDistance(player)) {
|
|
if (m_PlayerHasBeenInsideBounds) {
|
|
Conclude();
|
|
}
|
|
|
|
CleanUp();
|
|
|
|
return;
|
|
}
|
|
|
|
// Still don't care
|
|
Game::entityManager->GetZoneControlEntity()->AddCallbackTimer(1.0f, [this]() {
|
|
CheckForAudience();
|
|
});
|
|
}
|
|
|
|
void Cinema::Play::CleanUp() {
|
|
LOG("Cleaning up play with %d entities", entities.size());
|
|
|
|
for (const auto& entity : entities) {
|
|
Game::entityManager->DestroyEntity(entity);
|
|
}
|
|
}
|
|
|
|
void Cinema::Play::SetupBarrier(const std::string& barrier, std::function<void()> callback) {
|
|
// Add the callback to the barrier
|
|
if (m_Barriers.find(barrier) == m_Barriers.end()) {
|
|
m_Barriers[barrier] = std::vector<std::function<void()>>();
|
|
}
|
|
|
|
m_Barriers[barrier].push_back(callback);
|
|
}
|
|
|
|
void Cinema::Play::SignalBarrier(const std::string& barrier) {
|
|
if (m_Barriers.find(barrier) == m_Barriers.end()) {
|
|
return;
|
|
}
|
|
|
|
for (const auto& callback : m_Barriers[barrier]) {
|
|
callback();
|
|
}
|
|
|
|
m_Barriers.erase(barrier);
|
|
}
|
|
|
|
|