diff options
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_ |