blob: 1c478caf9ec5ce0f53c01900e9aad7ab54b203dd (
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
|
/**
* @file ui_quest.hpp
* @brief Handles UI elements related to quests.
*/
#ifndef UI_QUEST_HPP_
#define UI_QUEST_HPP_
#include <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) {
if (!_toggle)
return;
float z = Render::ZRange::Quest;
float top_y = offset.y + 200;
ui::drawNiceBox(vec2 {offset.x - 200, top_y }, vec2 {offset.x + 200, offset.y - 200 },
z);
FontSystem::setFontZ(z - 0.01f);
UISystem::putStringCentered(vec2(offset.x, top_y - 40), "Current Quests:");
const auto& titles = QuestSystem::getQuestTitles();
auto y = top_y - 100;
const auto x = offset.x - 180;
for (const auto t : titles) {
UISystem::putString(vec2(x, y), t);
y -= 20;
//ui::putText(x + 40, y, q.desc.c_str());
//y -= 40;
}
FontSystem::setFontZ();
}
}
}
#endif // UI_QUEST_HPP_
|