1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
/**
* @file inventory.hpp
* @brief Provides an inventory for the player.
*/
#ifndef INVENTORY_HPP_
#define INVENTORY_HPP_
#include <GL/glew.h>
#include <SDL2/SDL_opengl.h>
#include <SDL2/SDL_mixer.h>
#include <string>
#include <vector>
#include <entityx/entityx.h>
#include <tinyxml2.h>
using namespace tinyxml2;
#include <attack.hpp>
#include <events.hpp>
#include <texture.hpp>
/**
* @struct Item
* Contains the information neccessary for an item.
*/
struct Item {
std::string name; /**< The name of the item */
std::string type; /**< The type of the item */
int value; /**< The value/worth of the item */
int stackSize; /**< The stack size of the item */
Texture sprite; /**< The texture for the item (in inventory) */
TextureIterator effect; /**< Animation played on item use */
Mix_Chunk* sound; /**< The sound to play on item use */
int cooldown;
Item(void)
: value(0), stackSize(1), cooldown(0) {}
/*~Item(void) {
if (sound != nullptr)
Mix_FreeChunk(sound);
}*/
};
/**
* @struct InventoryEntry
* Describes a slot in the player's inventory.
*/
struct InventoryEntry {
Item* item; /**< Pointer to info on what item this slot contains */
int count; /**< The quantity of this item stored here */
vec2 loc; /**< Used by render, to determine slot location on screen */
InventoryEntry(Item* i = nullptr, int c = 0, vec2 l = vec2())
: item(i), count(c), loc(l) {}
};
struct UseItemEvent {
vec2 curs;
Item* item;
Attack* attack;
UseItemEvent(vec2 c, Item* i, Attack* a = nullptr)
: curs(c), item(i), attack(a) {}
};
/**
* @class InventorySystem
* Handles the player's inventory system.
*/
class InventorySystem : public entityx::System<InventorySystem>, public entityx::Receiver<InventorySystem> {
private:
constexpr static const char* itemsPath = "config/items.xml";
constexpr static int entrySize = 70;
constexpr static int hotbarSize = 4;
constexpr static float inventoryZ = -5.0f;
constexpr static unsigned int rowSize = 8;
static std::unordered_map<std::string, Item> itemList;
static std::unordered_map<std::string, Attack> attackList;
static std::vector<InventoryEntry> items;
static vec2 hotStart;
static vec2 hotEnd;
static vec2 fullStart;
static vec2 fullEnd;
static int movingItem;
static bool fullInventory;
static void loadItems(void);
public:
InventorySystem(int size = 20);
void configure(entityx::EventManager &ev);
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
bool receive(const KeyDownEvent &kde);
bool receive(const MouseClickEvent &mce);
bool receive(const MouseReleaseEvent &mce);
static void render(void);
/**
* Adds 'count' 'name's to the inventory.
* @param name the name of the item
* @param count the quantity of the item to give
*/
static void add(const std::string& name, int count);
/**
* Takes 'count' 'name's from the inventory.
* If the inventory does not contain enough of the item, no items are taken
* and false is returned.
* @param name the name of the item
* @param count the quantity of the item to take
* @return true if the operation could be completed
*/
static bool take(const std::string& name, int count);
static void makeDrop(const vec2& p, InventoryEntry& ie);
static void makeDrop(const vec2& p, const std::string& s, int c);
static inline Item* getItem(const std::string& s)
{ return &itemList[s]; }
static bool save(void);
static void load(void);
};
#endif // INVENTORY_HPP_
|