aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/dialog.hpp
blob: 8d26b92104852bb4751f79306ac9403fe4c07aa2 (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
#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_