mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
5225c86d65
* Misc component cleanup * Update InventoryComponent.h * Update MissionComponent.h * Update PropertyManagementComponent.h * Update PropertyVendorComponent.h * Update SkillComponent.h maximum pedantry B) * SoundTriggerComponent.h braces gone * Rename SoundTriggerComponent.h braces gone to SoundTriggerComponent.h I was tired
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include "Entity.h"
|
|
#include "Component.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
/**
|
|
* Component that handles the LUP/WBL rocket launchpad that can be interacted with to travel to WBL worlds.
|
|
*
|
|
*/
|
|
class MultiZoneEntranceComponent final : public Component {
|
|
public:
|
|
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::MULTI_ZONE_ENTRANCE;
|
|
|
|
/**
|
|
* Constructor for this component, builds the m_LUPWorlds vector
|
|
* @param parent parent that contains this component
|
|
*/
|
|
MultiZoneEntranceComponent(Entity* parent);
|
|
~MultiZoneEntranceComponent() override;
|
|
|
|
/**
|
|
* Handles an OnUse event from some entity, preparing it for launch to some other world
|
|
* @param originator the entity that triggered the event
|
|
*/
|
|
void OnUse(Entity* originator) override;
|
|
|
|
/**
|
|
* Handles an OnUse event from some entity, preparing it for launch to some other world
|
|
* @param originator the entity that triggered the event
|
|
* @param index index of the world that was selected
|
|
*/
|
|
void OnSelectWorld(Entity* originator, uint32_t index);
|
|
private:
|
|
/**
|
|
* vector of the LUP World Zone IDs, built from CDServer's LUPZoneIDs table
|
|
*/
|
|
std::vector<LWOMAPID> m_LUPWorlds{};
|
|
};
|