aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui_quest.hpp
blob: a46483a3314cc43c8deaa624da6787af00fae87d (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
 * @file ui_quest.hpp
 * @brief Handles UI elements related to quests.
 */
#ifndef UI_QUEST_HPP_
#define UI_QUEST_HPP_

#include <ui.hpp>
#include <vector2.hpp>

extern vec2 offset;

namespace ui {
	namespace quest {
		/**
		 * A flag to determine if the UI should be drawn.
		 */
		bool _toggle = false;

		/**
		 * Toggles displaying of the UI.
		 */
		inline void toggle(void)
		{ _toggle ^= true; }

		/**
		 * Draws the quest UI to the screen, if enabled.
		 */
		void draw(void) {
			static unsigned int textWrap = 40;

			if (!_toggle)
				return;

			std::swap(textWrap, ui::textWrapLimit);

			float top_y = offset.y + 200;
			ui::drawNiceBox(vec2 {offset.x - 200, top_y },
			                vec2 {offset.x + 200, offset.y - 200 },
			                -0.7f);

			ui::putStringCentered(offset.x, top_y - 40, "Current Quests:");
			
			/*auto y = top_y - 100;
			const auto x = offset.x - 180;
			for (const auto &q : player->qh.current) {
				ui::putText(x, y, q.title.c_str());
				y -= 20;
				ui::putText(x + 40, y, q.desc.c_str());
				y -= 40; 
			}*/

			std::swap(textWrap, ui::textWrapLimit);
		}
	}
}

#endif // UI_QUEST_HPP_