blob: 80502a173e2414fc2952c09db32cfb1c6c6fde16 (
plain)
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
|
#ifndef COMPONENTS_DROP_HPP
#define COMPONENTS_DROP_HPP
#include "base.hpp"
#include <inventory.hpp>
#include <random.hpp>
#include <string>
#include <vector>
using DropInfo = std::pair<std::string, int>;
struct Drop : public Component {
Drop(void) {}
Drop(XMLElement* imp, XMLElement* def) {
fromXML(imp, def);
}
std::vector<DropInfo> items;
void fromXML(XMLElement* imp, XMLElement* def) final {
(void)imp;
auto dxml = def->FirstChildElement("item");
while (dxml != nullptr) {
int min = dxml->IntAttribute("min");
int max = dxml->IntAttribute("max");
int count = randGet() % (max - min) + min;
items.emplace_back(dxml->StrAttribute("name"), count);
dxml = dxml->NextSiblingElement();
}
}
};
#endif // COMPONENTS_DROP_HPP
|