diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-13 21:01:08 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-13 21:01:08 -0400 |
commit | 316df0931c66e43e69f21bda28c77b9bdb1e8bca (patch) | |
tree | d98231e4b41d046a2a60ee9c6f1cc724a9e3837d /include/components/dialog.hpp | |
parent | 11b8e727e04ed6095164bb826541409f88047625 (diff) |
component reorginization; entity flashes
Diffstat (limited to 'include/components/dialog.hpp')
-rw-r--r-- | include/components/dialog.hpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/components/dialog.hpp b/include/components/dialog.hpp new file mode 100644 index 0000000..8d26b92 --- /dev/null +++ b/include/components/dialog.hpp @@ -0,0 +1,31 @@ +#ifndef COMPONENTS_DIALOG_HPP_ +#define COMPONENTS_DIALOG_HPP_ + +#include "base.hpp" + +#include <random.hpp> + +struct Dialog : public Component { + Dialog(int idx = 0) + : index(idx), rindex((idx == 9999) ? randGet() : idx), talking(false) {} + Dialog(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + int index; + int rindex; + bool talking; + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)def; + bool hasDialog; + if (imp->QueryBoolAttribute("hasDialog", &hasDialog) != XML_NO_ERROR) + hasDialog = false; + + index = hasDialog ? 0 : 9999; + rindex = (index == 9999) ? randGet() : index; + talking = false; + } +}; + +#endif // COMPONENTS_DIALOG_HPP_ |