diff options
-rw-r--r-- | include/common.hpp | 6 | ||||
-rw-r--r-- | src/components.cpp | 40 | ||||
-rw-r--r-- | src/quest.cpp | 9 | ||||
-rw-r--r-- | src/ui.cpp | 2 |
4 files changed, 32 insertions, 25 deletions
diff --git a/include/common.hpp b/include/common.hpp index 249b9eb..3caa083 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -58,11 +58,7 @@ typedef unsigned int uint; #define BREAKPOINT __asm__("int $3") -template<typename T> -inline const T * const& coalesce(const T * const &p1, const T * const &p2) -{ - return ((p1 == nullptr) ? p2 : p1); -} +#define coalesce(v1, v2) ((v1 != nullptr) ? v1 : v2) /** * Creates a coordinate of integers. diff --git a/src/components.cpp b/src/components.cpp index b74555c..612e522 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -18,9 +18,9 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e en.each<Position, Direction>([dt](entityx::Entity entity, Position &position, Direction &direction) { position.x += direction.x * dt; position.y += direction.y * dt; - + if (entity.has_component<Animate>() && entity.has_component<Sprite>()) { - if (direction.x) { + if (direction.x) { entity.component<Sprite>().get()->sprite = entity.component<Animate>().get()->nextFrame(); } else { entity.component<Sprite>().get()->sprite = entity.component<Animate>().get()->firstFrame(); @@ -97,7 +97,10 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0}; - + + if (entity.has_component<Animate>()) + sprite.sprite = entity.component<Animate>()->nextFrame(); + for (auto &S : sprite.sprite) { float width = HLINES(S.first.size.x); float height = HLINES(S.first.size.y); @@ -119,9 +122,9 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, float flashAmt = 1-(hitDuration/maxHitDuration); glUniform4f(Render::worldShader.uniform[WU_tex_color], 1.0, flashAmt, flashAmt, 1.0); }*/ - + glBindTexture(GL_TEXTURE_2D, S.first.pic); - + glUniform1i(Render::worldShader.uniform[WU_texture], 0); Render::worldShader.enable(); @@ -191,24 +194,29 @@ void DialogSystem::receive(const MouseClickEvent &mce) auto qxml = exml->FirstChildElement("quest"); if (qxml != nullptr) { - std::string qname; + const char *qname; auto qsys = game::engine.getSystem<QuestSystem>(); do { // assign quest - qname = qxml->StrAttribute("assign"); - if (!qname.empty()) { + qname = qxml->Attribute("assign"); + if (qname != nullptr) { questAssignedText = qname; - qsys->assign(qname, qxml->StrAttribute("desc"), "req"); // gettext() for req + auto req = qxml->GetText(); + qsys->assign(qname, qxml->StrAttribute("desc"), req ? req : ""); } // check / finish quest else { - qname = qxml->StrAttribute("check"); - if (!(qname.empty() && qsys->hasQuest(qname) && qsys->finish(qname))) { - ui::dialogBox(name.name, "", false, "Finish my quest u nug"); - ui::waitForDialog(); - return; + qname = qxml->Attribute("check"); + if (qname != nullptr) { + if (qname != nullptr && qsys->hasQuest(qname) && qsys->finish(qname) == 0) { + d.index = 9999; + } else { + ui::dialogBox(name.name, "", false, "Finish my quest u nug"); + ui::waitForDialog(); + return; + } // oldidx = d.index; // d.index = qxml->UnsignedAttribute("fail"); // goto COMMONAIFUNC; @@ -230,7 +238,7 @@ void DialogSystem::receive(const MouseClickEvent &mce) ui::waitForDialog(); if (!questAssignedText.empty()) - ui::passiveImportantText(4000, ("Quest assigned:\n\"" + questAssignedText + "\"").c_str()); + ui::passiveImportantText(5000, ("Quest assigned:\n\"" + questAssignedText + "\"").c_str()); if (exml->QueryIntAttribute("nextid", &newIndex) == XML_NO_ERROR) d.index = newIndex; @@ -275,7 +283,7 @@ std::vector<Frame> developFrame(XMLElement* xml) tmp.push_back(tmpf); } // if it's not a frame we don't care - + // parse next frame framexml = framexml->NextSiblingElement(); } diff --git a/src/quest.cpp b/src/quest.cpp index f7548d2..1e343a6 100644 --- a/src/quest.cpp +++ b/src/quest.cpp @@ -1,4 +1,5 @@ #include <quest.hpp> +#include <common.hpp> #include <algorithm> @@ -11,14 +12,17 @@ void QuestSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, int QuestSystem::assign(std::string title, std::string desc, std::string req) { - (void)req; + const auto& reqs = StringTokenizer(req, ','); + for (const auto& s : reqs) + std::cout << s << '\n'; + current.emplace_back(title, desc); return 0; } int QuestSystem::drop(std::string title) { - current.erase(std::remove_if(std::begin(current), std::end(current), + current.erase(std::remove_if(std::begin(current), std::end(current), [&title](const Quest& q) { return (q.name == title); })); return 0; } @@ -43,4 +47,3 @@ bool QuestSystem::hasQuest(std::string title) return (std::find_if(std::begin(current), std::end(current), [&title](const Quest& q) { return (q.name == title); }) != std::end(current)); } - @@ -899,7 +899,7 @@ namespace ui { if (dialogImportant) { setFontColor(255,255,255); if (dialogPassive) { - dialogPassiveTime -= game::time::getDeltaTime(); + dialogPassiveTime -= game::time::getDeltaTime() * 12; if (dialogPassiveTime < 0) { dialogPassive = false; dialogImportant = false; |