2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Component.h"
|
|
|
|
#include "Entity.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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:
|
2023-03-04 07:16:37 +00:00
|
|
|
static const eReplicaComponentType ComponentType = eReplicaComponentType::EXHIBIT;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
LUPExhibitComponent(Entity* parent);
|
|
|
|
~LUPExhibitComponent();
|
|
|
|
void Update(float deltaTime) override;
|
|
|
|
void Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, uint32_t& flags);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
/**
|
|
|
|
* After the timer runs out, this changes the currently exhibited LOT to the next one
|
|
|
|
*/
|
|
|
|
void NextExhibit();
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* The LOT that's currently on exhibit
|
|
|
|
*/
|
|
|
|
LOT m_Exhibit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The time since we've last updated the exhibit
|
|
|
|
*/
|
|
|
|
float m_UpdateTimer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The list of possible exhibits to show
|
|
|
|
*/
|
|
|
|
std::vector<LOT> m_Exhibits;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current index in the exhibit list
|
|
|
|
*/
|
|
|
|
size_t m_ExhibitIndex;
|
|
|
|
};
|