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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
|
#ifndef INVENTORY_H
#define INVENTORY_H
#include <common.hpp>
#include <string.h>
#include <texture.hpp>
#include <events.hpp>
#define DEBUG
class Entity;
/**
* The base item class
* This stores the name, width, height, and texture(s)
*/
class Item {
private:
bool beingUsed;
protected:
std::vector<Entity*> interact;
public:
// what we want to call each item
std::string name;
// how many pixel tall and white each thing is
dim2 dim;
// the total amount of this item each slot can have
uint maxStackSize;
// the array of textures for each frame of animation
Texturec *tex;
// how much the item is rotated in the hand
float rotation = 0.0f;
// return if the item is currently in use
virtual bool inUse();
// set the state of the item
virtual void setUse(bool use);
// add entities to the list of those being interacted
virtual void addInteract(Entity* e);
virtual void addInteract(std::vector<Entity*> e);
/**
* The function we use to call the child classes ability
* Note: Since this function is abstract, we HAVE to create one for each
* child class/type of item.
*/
virtual int useItem()=0;
virtual Item* clone()=0;
// destructor
virtual ~Item();
// return the first texture for the item
GLuint rtex();
// return the nth texture for the item
GLuint rtex(int n);
};
/**
* Class for blank items, we use this for items that do not have an ability
* Like Quest or Debug items
*/
class BaseItem : public Item {
public:
// since the items don't have a use, we don't make one for it
int useItem();
BaseItem* clone();
//~BaseItem(){}
};
/**
* Sword class. This is for swords, y'know. Pretty basic stuff
*/
class Sword : public Item {
// can't touch this
private:
/**
* How much damage our sword will do
* notice that it's private to avoid a change
*/
float damage;
Ray hitbox;
//can touch this
public:
/**
* Lets us return the amount of damage the sword has
* TODO takes into account enchants and/or buffs/nerfs
*/
//TODO move
float getDamage();
// set the damage of the sword
void setDamage(float d);
/**
* handles the swinging of the sword
*/
//TODO move
int useItem();
Sword* clone();
};
class Arrow : public Item {
private:
// same as sword
float damage;
public:
// see sword
float getDamage();
// sets amount of damage
void setDamage(float d);
// uses item
int useItem();
Arrow *clone();
};
/**
* Bow class. We use this for shooting bow and arrows
*/
class Bow : public Item {
private:
// same as sword
float damage;
public:
// returns the amount of damage, see sword
float getDamage();
// sets the amount of damages
void setDamage(float d);
// handles shooting and arrow curving
int useItem();
Bow* clone();
};
/**
* Raw food class, this will be used for uncooked meats...
* TODO Eating this may cause health loss, salmonela, mad cow diese
*/
class RawFood : public Item {
private:
// the amount of the health the food heals
float health;
public:
// since the health is private, we get how much it is here
float getHealth();
// TODO chance to hurt
virtual int useItem();
RawFood* clone();
};
/**
* Cooked/Naturale food class
* When this food is consumed, higher stats are gained than Raw Food and
* there is no chance of damage/de-buffs
*/
class Food : public RawFood {
private:
public:
// consume food in hand, no chance for de-buff;
int useItem();
Food* clone();
};
class ItemLight : public Item {
private:
// the color of the light
Color color;
public:
// turn on/off the light
// TODO
int useItem();
ItemLight* clone();
};
/**
* Currency class. Well, it's used for currency
*/
class NewCurrency : public Item {
private:
// how much the coin is "worth" so to say
int value;
public:
// get the value of the coin
int getValue();
// TODO maybe play a jingling noise
// probably won't have a use
int useItem();
NewCurrency(){}
~NewCurrency(){}
};
/***********************************************************************************
* OLD STUFF THAT NEEDS TO GET UPDATED *
**********************************************************************************/
using InventorySlot = std::pair<Item *, unsigned int>;
class Inventory {
private:
unsigned int size; //how many slots our inventory has
unsigned int sel; //what item is currently selected
int os = 0;
public:
std::vector<InventorySlot> Items;
bool invOpen = false; //is the inventory open
bool invOpening = false; //is the opening animation playing
bool invHover = false; //are we using the fancy hover inventory
bool selected = false; //used in hover inventory to show which item has been selected
bool mouseSel = false; //the location of the temperary selection for the hover inv
bool usingi = false; //bool used to tell if inventory owner is using selected item
Inventory(unsigned int s); // Creates an inventory of size 's'
~Inventory(void); // Free's allocated memory
int useCurrent();
void currentAddInteract(Entity* e);
void currentAddInteract(std::vector<Entity*> e);
int addItem(std::string name,uint count);
int takeItem(std::string name,uint count);
int hasItem(std::string name);
int useItem(void);
bool detectCollision(vec2,vec2);
void setSelection(unsigned int s);
void setSelectionUp();
void setSelectionDown();
void draw(void); // Draws a text list of items in this inventory (should only be called for the player for now)
const Item* getCurrentItem(void);
};
void initInventorySprites(void);
void destroyInventory(void);
const char *getItemTexturePath(std::string name);
GLuint getItemTexture(std::string name);
float getItemWidth(std::string name);
float getItemHeight(std::string name);
#include <entityx/entityx.h>
class InventorySystem : public entityx::System<InventorySystem>, public entityx::Receiver<InventorySystem> {
public:
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
void configure(entityx::EventManager &em);
void receive(const MouseScrollEvent &mse);
};
#endif // INVENTORY_H
|