aboutsummaryrefslogtreecommitdiffstats
path: root/src/components.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components.cpp')
-rw-r--r--src/components.cpp40
1 files changed, 24 insertions, 16 deletions
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();
}