diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-04-30 19:57:28 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-04-30 19:57:28 -0400 |
commit | d6dac7e8336b435c2f335aa824df0aedd63074c6 (patch) | |
tree | b31fe6fc3aa840389674aa6d3bf5e1ff33ebdf69 | |
parent | a55b7f9a6394d2299464930b3253a14e4f4f10df (diff) |
drop.hpp
-rw-r--r-- | include/components/drop.hpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/include/components/drop.hpp b/include/components/drop.hpp new file mode 100644 index 0000000..80502a1 --- /dev/null +++ b/include/components/drop.hpp @@ -0,0 +1,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 |