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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
#include <inventory.hpp>
#include <common.hpp>
#include <components.hpp>
#include <engine.hpp>
#include <error.hpp>
#include <fileio.hpp>
#include <font.hpp>
#include <player.hpp>
#include <render.hpp>
#include <ui.hpp>
#include <forward_list>
#include <iostream>
#include <fstream>
#include <unordered_map>
#include <tinyxml2.h>
using namespace tinyxml2;
extern vec2 offset;
std::unordered_map<std::string, Item> InventorySystem::itemList;
std::unordered_map<std::string, Attack> InventorySystem::attackList;
std::vector<InventoryEntry> InventorySystem::items;
vec2 InventorySystem::hotStart;
vec2 InventorySystem::hotEnd;
vec2 InventorySystem::fullStart;
vec2 InventorySystem::fullEnd;
int InventorySystem::movingItem = -1;
bool InventorySystem::fullInventory = false;
inline bool isGoodEntry(const InventoryEntry& ie) {
return (ie.item != nullptr) && (ie.count > 0);
}
InventorySystem::InventorySystem(int size)
{
items.resize(size);
loadItems();
}
void InventorySystem::configure(entityx::EventManager &ev)
{
ev.subscribe<KeyDownEvent>(*this);
ev.subscribe<MouseClickEvent>(*this);
ev.subscribe<MouseReleaseEvent>(*this);
}
void InventorySystem::loadItems(void) {
XMLDocument doc;
doc.LoadFile(itemsPath);
auto itm = doc.FirstChildElement("item");
UserAssert(itm != nullptr, "No items found");
while (itm != nullptr) {
Item item;
item.name = itm->StrAttribute("name");
UserAssert(!item.name.empty(), "Item must have a name");
item.type = itm->StrAttribute("type");
UserAssert(!item.type.empty(), "Item must have a type");
item.value = 0;
itm->QueryIntAttribute("value", &item.value);
item.stackSize = 1;
itm->QueryIntAttribute("maxStackSize", &item.stackSize);
item.sprite = Texture(itm->StrAttribute("sprite"));
if (itm->Attribute("sound") != nullptr)
item.sound = Mix_LoadWAV(itm->Attribute("sound"));
else
item.sound = nullptr;
item.cooldown = 250;
itm->QueryIntAttribute("cooldown", &item.cooldown);
auto atk = itm->FirstChildElement("attack");
if (atk != nullptr) {
Attack attack;
attack.power = 0;
atk->QueryIntAttribute("power", &attack.power);
attack.offset = atk->StrAttribute("offset");
attack.range = atk->StrAttribute("range");
attack.vel = atk->StrAttribute("velocity");
attack.accel = atk->StrAttribute("accel");
if (atk->Attribute("effect") != nullptr)
attack.effect.appendGIF(atk->StrAttribute("effect"));
attackList.emplace(item.name, attack);
}
itemList.emplace(item.name, item);
itm = itm->NextSiblingElement("item");
}
}
void InventorySystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
(void)en;
(void)ev;
(void)dt;
}
void InventorySystem::render(void)
{
int size = items.size();
// calculate positions
items.front().loc = vec2(offset.x - entrySize / 2 * hotbarSize, offset.y + game::SCREEN_HEIGHT / 2 - entrySize);
for (unsigned int i = 1; i < hotbarSize; i++)
items[i].loc = vec2(items[i - 1].loc.x + entrySize, items[i - 1].loc.y);
hotStart = items[0].loc - 10;
hotEnd = items[hotbarSize - 1].loc + vec2(entrySize + 4, entrySize + 10);
ui::drawNiceBox(hotStart, hotEnd, inventoryZ);
if (fullInventory) {
vec2 start (offset.x - entrySize * rowSize / 2, offset.y + game::SCREEN_HEIGHT / 2 - 180);
for (unsigned int i = hotbarSize; i < items.size(); i++) {
items[i].loc = vec2(start.x + entrySize * ((i - hotbarSize) % rowSize), start.y);
if ((i - hotbarSize) % rowSize == rowSize - 1)
start.y -= entrySize;
}
fullStart = items[items.size() - rowSize].loc - 10;
fullEnd = items[hotbarSize + rowSize - 1].loc + (entrySize + 4);
ui::drawNiceBox(fullStart, fullEnd, inventoryZ);
} else {
size = hotbarSize;
}
// draw items
for (int n = 0; n < size; n++) {
auto &i = items[n];
// draw the slot
Render::textShader.use();
Render::textShader.enable();
Colors::black.use();
glUniform4f(Render::textShader.uniform[WU_tex_color], 1, 1, 1, .6);
vec2 end = i.loc + entrySize - 6;
GLfloat coords[] = {
i.loc.x, i.loc.y, inventoryZ - 0.1, 0, 0,
end.x, i.loc.y, inventoryZ - 0.1, 0, 0,
end.x, end.y, inventoryZ - 0.1, 0, 0,
end.x, end.y, inventoryZ - 0.1, 0, 0,
i.loc.x, end.y, inventoryZ - 0.1, 0, 0,
i.loc.x, i.loc.y, inventoryZ - 0.1, 0, 0,
};
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), coords);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), coords + 3);
glDrawArrays(GL_TRIANGLES, 0, 6);
glUniform4f(Render::textShader.uniform[WU_tex_color], 1, 1, 1, 1);
// draw the item
if (isGoodEntry(i)) {
i.item->sprite.use();
auto& dim = i.item->sprite.getDim();
vec2 truDim;
if (dim.x >= dim.y)
truDim.x = entrySize - 6, truDim.y = truDim.x * dim.y / dim.x;
else
truDim.y = entrySize - 6, truDim.x = truDim.y * dim.x / dim.y;
vec2 loc (i.loc.x + ((entrySize - 6) / 2 - truDim.x / 2), i.loc.y);
vec2 sta ((n == movingItem) ? ui::mouse - truDim / 2 : loc);
vec2 end = (n == movingItem) ? ui::mouse + truDim / 2 : loc + truDim;
GLfloat coords[] = {
sta.x, sta.y, inventoryZ - 0.2, 0, 1,
end.x, sta.y, inventoryZ - 0.2, 1, 1,
end.x, end.y, inventoryZ - 0.2, 1, 0,
end.x, end.y, inventoryZ - 0.2, 1, 0,
sta.x, end.y, inventoryZ - 0.2, 0, 0,
sta.x, sta.y, inventoryZ - 0.2, 0, 1,
};
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), coords);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), coords + 3);
if (n == movingItem)
glUniform4f(Render::textShader.uniform[WU_tex_color], .8, .8, 1, .8);
glDrawArrays(GL_TRIANGLES, 0, 6);
FontSystem::setFontZ(inventoryZ - 0.3); // TODO fix z's
UISystem::putString(i.loc, std::to_string(i.count));
FontSystem::setFontZ(-6);
glUniform4f(Render::textShader.uniform[WU_tex_color], 1, 1, 1, 1);
}
}
if (isGoodEntry(items[0])) {
Render::textShader.use();
Render::textShader.enable();
auto& i = items[0];
i.item->sprite.use();
auto pos = PlayerSystem::getPosition();
vec2 sta (pos.x, pos.y);
vec2 end (sta + (i.item->sprite.getDim() * game::HLINE));
GLfloat coords[] = {
sta.x, sta.y, -8, 0, 1,
end.x, sta.y, -8, 1, 1,
end.x, end.y, -8, 1, 0,
end.x, end.y, -8, 1, 0,
sta.x, end.y, -8, 0, 0,
sta.x, sta.y, -8, 0, 1,
};
glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), coords);
glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(GLfloat), coords + 3);
glDrawArrays(GL_TRIANGLES, 0, 6);
}
Render::textShader.disable();
Render::textShader.unuse();
}
bool InventorySystem::receive(const MouseClickEvent &mce)
{
if (mce.button == SDL_BUTTON_RIGHT) {
game::entities.each<ItemDrop>([&](entityx::Entity e, ItemDrop& id) {
auto& posComp = *e.component<Position>();
auto& dimComp = *e.component<Solid>();
vec2 sta (posComp.x, posComp.y);
vec2 end (sta.x + dimComp.width, sta.y + dimComp.height);
if (mce.position > sta && mce.position < end) {
add(id.item.item->name, id.item.count);
e.destroy();
}
});
} else if (mce.button == SDL_BUTTON_LEFT) {
if ((mce.position > hotStart && mce.position < hotEnd) ||
(fullInventory && mce.position > fullStart && mce.position < fullEnd)) {
int end = fullInventory ? items.size() : hotbarSize;
movingItem = -1;
for (int i = 0; i < end; i++) {
if (!isGoodEntry(items[i]))
continue;
if (mce.position > items[i].loc && mce.position < items[i].loc + entrySize) {
movingItem = i;
break;
}
}
} else if (isGoodEntry(items[0])) {
auto attack = attackList.find(items[0].item->name);
if (attack == attackList.end())
game::events.emit<UseItemEvent>(mce.position, items[0].item);
else
game::events.emit<UseItemEvent>(mce.position, items[0].item, &attack->second);
}
}
return true;
}
bool InventorySystem::receive(const MouseReleaseEvent &mre)
{
if (movingItem != -1) {
int end = fullInventory ? items.size() : hotbarSize;
for (int i = 0; i < end; i++) {
if (mre.position > items[i].loc && mre.position < items[i].loc + entrySize) {
if (isGoodEntry(items[i])) {
std::swap(items[movingItem], items[i]);
} else {
items[i] = items[movingItem];
items[movingItem].item = nullptr;
items[movingItem].count = 0;
}
movingItem = -1;
return true;
}
}
makeDrop(mre.position, items[movingItem]);
items[movingItem].item = nullptr;
items[movingItem].count = 0;
movingItem = -1;
}
return true;
}
void InventorySystem::makeDrop(const vec2& p, InventoryEntry& ie)
{
auto e = game::entities.create();
e.assign<Position>(p.x, p.y);
e.assign<Direction>(0, 0.1f);
e.assign<ItemDrop>(ie);
e.assign<Sprite>();
e.component<Sprite>()->addSpriteSegment(
SpriteData(ie.item->sprite), vec2(0, 0));
auto dim = ie.item->sprite.getDim();
e.assign<Solid>(HLINES(dim.x), HLINES(dim.y));
e.assign<Visible>();
e.assign<Physics>();
}
void InventorySystem::makeDrop(const vec2& p, const std::string& s, int c)
{
auto item = getItem(s);
auto e = game::entities.create();
e.assign<Position>(p.x, p.y);
e.assign<Direction>(0, 0.1f);
InventoryEntry ie (item, c);
e.assign<ItemDrop>(ie);
e.assign<Sprite>();
e.component<Sprite>()->addSpriteSegment(
SpriteData(item->sprite), vec2(0, 0));
auto dim = item->sprite.getDim();
e.assign<Solid>(HLINES(dim.x), HLINES(dim.y));
e.assign<Visible>();
e.assign<Physics>();
}
bool InventorySystem::receive(const KeyDownEvent &kde)
{
if (kde.keycode == SDLK_e)
fullInventory ^= true;
return true;
}
void InventorySystem::add(const std::string& name, int count)
{
auto i = std::find_if(items.begin(), items.end(),
[&name](const InventoryEntry& ie) {
// either matching item that isn't filled, or empty slow
return (ie.item != nullptr && ie.item->name == name && ie.count < ie.item->stackSize) || ie.count == 0;
});
if (i != items.end()) {
auto& ie = *i;
// update the slot
if (!isGoodEntry(ie)) {
ie.item = &itemList[name];
ie.count = count;
} else {
ie.count += count;
}
// handle overflow
if (ie.count > ie.item->stackSize) {
int diff = ie.count - ie.item->stackSize;
ie.count = ie.item->stackSize;
add(name, diff);
}
}
}
bool InventorySystem::take(const std::string& name, int count)
{
using InvIter = std::vector<InventoryEntry>::iterator;
std::forward_list<InvIter> toDelete;
InvIter next = items.begin();
int taken = 0;
while (taken < count) {
auto i = std::find_if(next, items.end(),
[&name](const InventoryEntry& ie) {
return isGoodEntry(ie) && ie.item->name == name;
});
if (i >= items.end())
break;
toDelete.push_front(i);
taken += i->count;
next = i + 1;
}
if (taken < count)
return false;
for (auto& ii : toDelete) {
if (count > ii->count) {
ii->item = nullptr;
count -= ii->count;
ii->count = 0;
} else {
ii->count -= count;
if (ii->count == 0)
ii->item = nullptr;
break;
}
}
return true;
}
bool InventorySystem::save(void)
{
std::ofstream s (game::config::xmlFolder + "inventory.dat");
// signature?
s << "831998\n";
for (const auto& i : items) {
if (i.item != nullptr && i.count > 0)
s << std::string(i.item->name) << '\n' << i.count << '\n';
}
// end of list?
s.close();
return true;
}
void InventorySystem::load(void)
{
// attempt to load data
std::ifstream sf (game::config::xmlFolder + "inventory.dat");
if (sf.good()) {
sf.close();
auto lines = readFileA(game::config::xmlFolder + "inventory.dat");
// check signature
if (std::stoi(lines[0]) != 831998)
UserError("Save file signature is invalid... (delete it)");
for (unsigned int i = 1; i < lines.size(); i += 2) {
if (lines[i].size() > 0) {
int count = std::stoi(lines[i + 1]);
if (count > 0)
add(lines[i], count);
}
}
}
}
|