blob: a0f3ad43c09891b6c8e0ca27424ffda1410c7edb (
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
|
#ifndef UI_QUEST_HPP_
#define UI_QUEST_HPP_
#include <ui.hpp>
#include <common.hpp>
namespace ui {
namespace quest {
bool _toggle = false;
void toggle(void) {
_toggle ^= true;
}
void draw(void) {
if (!_toggle)
return;
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;
}
}
}
}
#endif // UI_QUEST_HPP_
|