2022-04-26 10:41:16 +00:00
|
|
|
#pragma once
|
2021-12-05 17:54:36 +00:00
|
|
|
#ifndef VENDORCOMPONENT_H
|
|
|
|
#define VENDORCOMPONENT_H
|
|
|
|
|
|
|
|
#include "CDClientManager.h"
|
|
|
|
#include "Component.h"
|
2022-04-26 10:41:16 +00:00
|
|
|
#include "Entity.h"
|
|
|
|
#include "GameMessages.h"
|
|
|
|
#include "RakNetTypes.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A component for vendor NPCs. A vendor sells items to the player.
|
|
|
|
*/
|
|
|
|
class VendorComponent : public Component {
|
|
|
|
public:
|
2023-03-04 07:16:37 +00:00
|
|
|
static const eReplicaComponentType ComponentType = eReplicaComponentType::VENDOR;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
VendorComponent(Entity* parent);
|
|
|
|
~VendorComponent() override;
|
|
|
|
|
|
|
|
void Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2022-04-05 12:11:06 +00:00
|
|
|
void OnUse(Entity* originator) override;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
/**
|
|
|
|
* Gets the buy scaler
|
|
|
|
* @return the buy scaler
|
|
|
|
*/
|
|
|
|
float GetBuyScalar() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the buy scalar.
|
|
|
|
* @param value the new value.
|
|
|
|
*/
|
|
|
|
void SetBuyScalar(float value);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
/**
|
|
|
|
* Gets the buy scaler
|
|
|
|
* @return the buy scaler
|
|
|
|
*/
|
|
|
|
float GetSellScalar() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the sell scalar.
|
|
|
|
* @param value the new value.
|
|
|
|
*/
|
|
|
|
void SetSellScalar(float value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* True if the NPC LOT is 13800, the only NPC with a crafting station.
|
|
|
|
*/
|
|
|
|
bool HasCraftingStation();
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
/**
|
|
|
|
* Gets the list if items the vendor sells.
|
|
|
|
* @return the list of items.
|
|
|
|
*/
|
|
|
|
std::map<LOT, int>& GetInventory();
|
|
|
|
|
2022-04-26 10:41:16 +00:00
|
|
|
/**
|
|
|
|
* Refresh the inventory of this vendor.
|
|
|
|
*/
|
|
|
|
void RefreshInventory(bool isCreation = false);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2022-04-26 10:41:16 +00:00
|
|
|
/**
|
|
|
|
* Called on startup of vendor to setup the variables for the component.
|
|
|
|
*/
|
|
|
|
void SetupConstants();
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
/**
|
2022-04-26 10:41:16 +00:00
|
|
|
* The buy scalar.
|
2021-12-05 17:54:36 +00:00
|
|
|
*/
|
|
|
|
float m_BuyScalar;
|
|
|
|
|
|
|
|
/**
|
2022-04-26 10:41:16 +00:00
|
|
|
* The sell scalar.
|
2021-12-05 17:54:36 +00:00
|
|
|
*/
|
|
|
|
float m_SellScalar;
|
|
|
|
|
2022-04-26 10:41:16 +00:00
|
|
|
/**
|
|
|
|
* The refresh time of this vendors' inventory.
|
|
|
|
*/
|
|
|
|
float m_RefreshTimeSeconds;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loot matrix id of this vendor.
|
|
|
|
*/
|
|
|
|
uint32_t m_LootMatrixID;
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
/**
|
|
|
|
* The list of items the vendor sells.
|
|
|
|
*/
|
|
|
|
std::map<LOT, int> m_Inventory;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VENDORCOMPONENT_H
|