From cbd154a4834f56146dbe744ee2d2c6dccc04c5cb Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 5 Jan 2017 07:31:32 -0500 Subject: todo finder --- src/components.cpp | 15 ++++++++++++++- src/world.cpp | 2 ++ 2 files changed, 16 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/components.cpp b/src/components.cpp index 7322208..140d02b 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -35,6 +35,8 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e fl = (direction.x < 0); } + // make the entity wander + // TODO initialX and range? if (entity.has_component()) { auto& countdown = entity.component()->countdown; @@ -226,6 +228,17 @@ void DialogSystem::receive(const MouseClickEvent &mce) } while((qxml = qxml->NextSiblingElement())); } + auto xxml = exml->FirstChildElement("option"); + std::string options; + std::vector optionNexts; + if (xxml != nullptr) { + do { + options += '\"' + xxml->StrAttribute("name"); + optionNexts.emplace_back(xxml->IntAttribute("value")); + xxml = xxml->NextSiblingElement(); + } while (xxml != nullptr); + } + auto cxml = exml->FirstChildElement("content"); const char *content; if (cxml == nullptr) { @@ -235,7 +248,7 @@ void DialogSystem::receive(const MouseClickEvent &mce) while (*++content && isspace(*content)); } - ui::dialogBox(name.name, "", false, content); + ui::dialogBox(name.name, options, false, content); ui::waitForDialog(); if (!questAssignedText.empty()) diff --git a/src/world.cpp b/src/world.cpp index 6b18542..b10edac 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -375,6 +375,8 @@ void WorldSystem::load(const std::string& file) entity.assign(); } else if (tname == "Wander") { entity.assign(); + } else if (tname == "Hop" ) { + entity.assign(); } else if (tname == "Animation") { auto entan = entity.assign(); auto animx = abcd->FirstChildElement(); -- cgit v1.2.3