aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui_quest.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-09-26 22:37:52 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-09-26 22:37:52 -0400
commit8be1f74e878950cbbac3f05451341fc18892518b (patch)
tree8301f06ee0da2b27fb93b149736c6f7d2ace68ca /include/ui_quest.hpp
parent19b2b1dde25885ada99deefe79266c2e22376e85 (diff)
windows 64-bit build
Diffstat (limited to 'include/ui_quest.hpp')
-rw-r--r--include/ui_quest.hpp22
1 files changed, 9 insertions, 13 deletions
diff --git a/include/ui_quest.hpp b/include/ui_quest.hpp
index d9d1708..e06570a 100644
--- a/include/ui_quest.hpp
+++ b/include/ui_quest.hpp
@@ -5,6 +5,7 @@
#ifndef UI_QUEST_HPP_
#define UI_QUEST_HPP_
+#include <quest.hpp>
#include <ui.hpp>
#include <vector2.hpp>
@@ -27,13 +28,9 @@ namespace ui {
* 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 },
@@ -41,16 +38,15 @@ namespace ui {
UISystem::putStringCentered(vec2(offset.x, top_y - 40), "Current Quests:");
- /*auto y = top_y - 100;
+ const auto& titles = QuestSystem::getQuestTitles();
+ 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());
+ for (const auto t : titles) {
+ UISystem::putString(vec2(x, y), t);
y -= 20;
- ui::putText(x + 40, y, q.desc.c_str());
- y -= 40;
- }*/
-
-// std::swap(textWrap, ui::textWrapLimit);
+ //ui::putText(x + 40, y, q.desc.c_str());
+ //y -= 40;
+ }
}
}
}