mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
fix: not everything attached to a path is a moving platform (#1090)
This commit is contained in:
parent
1af70161eb
commit
9d105a287d
@ -690,11 +690,30 @@ void Entity::Initialize() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::string pathName = GetVarAsString(u"attached_path");
|
std::string pathName = GetVarAsString(u"attached_path");
|
||||||
|
const Path* path = dZoneManager::Instance()->GetZone()->GetPath(pathName);
|
||||||
|
|
||||||
int32_t movingPlatformComponentId = compRegistryTable->GetByIDAndType(m_TemplateID, eReplicaComponentType::MOVING_PLATFORM, -1);
|
//Check to see if we have an attached path and add the appropiate component to handle it:
|
||||||
if (movingPlatformComponentId >= 0 || !pathName.empty()) {
|
if (path){
|
||||||
MovingPlatformComponent* plat = new MovingPlatformComponent(this, pathName);
|
// if we have a moving platform path, then we need a moving platform component
|
||||||
m_Components.insert(std::make_pair(eReplicaComponentType::MOVING_PLATFORM, plat));
|
if (path->pathType == PathType::MovingPlatform) {
|
||||||
|
MovingPlatformComponent* plat = new MovingPlatformComponent(this, pathName);
|
||||||
|
m_Components.insert(std::make_pair(eReplicaComponentType::MOVING_PLATFORM, plat));
|
||||||
|
// else if we are a movement path
|
||||||
|
} /*else if (path->pathType == PathType::Movement) {
|
||||||
|
auto movementAIcomp = GetComponent<MovementAIComponent>();
|
||||||
|
if (movementAIcomp){
|
||||||
|
// TODO: set path in existing movementAIComp
|
||||||
|
} else {
|
||||||
|
// TODO: create movementAIcomp and set path
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
} else {
|
||||||
|
// else we still need to setup moving platform if it has a moving platform comp but no path
|
||||||
|
int32_t movingPlatformComponentId = compRegistryTable->GetByIDAndType(m_TemplateID, eReplicaComponentType::MOVING_PLATFORM, -1);
|
||||||
|
if (movingPlatformComponentId >= 0) {
|
||||||
|
MovingPlatformComponent* plat = new MovingPlatformComponent(this, pathName);
|
||||||
|
m_Components.insert(std::make_pair(eReplicaComponentType::MOVING_PLATFORM, plat));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int proximityMonitorID = compRegistryTable->GetByIDAndType(m_TemplateID, eReplicaComponentType::PROXIMITY_MONITOR);
|
int proximityMonitorID = compRegistryTable->GetByIDAndType(m_TemplateID, eReplicaComponentType::PROXIMITY_MONITOR);
|
||||||
|
Loading…
Reference in New Issue
Block a user