From 316df0931c66e43e69f21bda28c77b9bdb1e8bca Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 13 Jun 2017 21:01:08 -0400 Subject: component reorginization; entity flashes --- include/components/dialog.hpp | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 include/components/dialog.hpp (limited to 'include/components/dialog.hpp') 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 + +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_ -- cgit v1.2.3