DarkflameServer/dGame/dComponents/LUPExhibitComponent.h

45 lines
988 B
C
Raw Normal View History

#pragma once
#include "Component.h"
#include "Entity.h"
/**
* Component that handles the LOT that is shown in the LUP exhibit in the LUP world. Works by setting a timer and
* switching the LOTs around that we'd like to display.
*/
class LUPExhibitComponent : public Component
{
public:
static const uint32_t ComponentType = COMPONENT_TYPE_EXHIBIT;
2022-07-28 13:39:57 +00:00
LUPExhibitComponent(Entity* parent);
~LUPExhibitComponent();
void Update(float deltaTime) override;
void Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, uint32_t& flags);
/**
* After the timer runs out, this changes the currently exhibited LOT to the next one
*/
void NextExhibit();
private:
2022-07-28 13:39:57 +00:00
/**
* The LOT that's currently on exhibit
*/
LOT m_Exhibit;
2022-07-28 13:39:57 +00:00
/**
* The time since we've last updated the exhibit
*/
float m_UpdateTimer;
2022-07-28 13:39:57 +00:00
/**
* The list of possible exhibits to show
*/
std::vector<LOT> m_Exhibits;
2022-07-28 13:39:57 +00:00
/**
* The current index in the exhibit list
*/
size_t m_ExhibitIndex;
};