diff options
-rw-r--r-- | assets/NPC_Sheet.png | bin | 0 -> 531 bytes | |||
-rw-r--r-- | include/components.hpp | 29 | ||||
-rw-r--r-- | src/components.cpp | 23 | ||||
-rw-r--r-- | src/world.cpp | 22 | ||||
-rw-r--r-- | xml/entities.xml | 23 |
5 files changed, 57 insertions, 40 deletions
diff --git a/assets/NPC_Sheet.png b/assets/NPC_Sheet.png Binary files differnew file mode 100644 index 0000000..5537b5e --- /dev/null +++ b/assets/NPC_Sheet.png diff --git a/include/components.hpp b/include/components.hpp index 5bafa02..1deaf69 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -127,10 +127,11 @@ struct Solid { struct SpriteData { SpriteData(std::string path, vec2 off): - offset(off) { + offset(off) { tex = Texture(path); size = tex.getDim(); - + offset = vec2(0.0f, 0.0f); + size_tex = vec2(1.0, 1.0); offset_tex.x = offset.x/size.x; @@ -155,13 +156,14 @@ struct SpriteData { vec2 offset_tex; vec2 size_tex; + + uint limb; }; using Frame = std::vector<std::pair<SpriteData, vec2>>; std::vector<Frame> developFrame(XMLElement*); -//TODO /** * @struct Sprite * @brief If an entity is visible we want to be able to see it. @@ -202,30 +204,33 @@ struct Sprite { } vec2 getSpriteSize() { - vec2 st; /** the start location of the sprite */ + vec2 st; /** the start location of the sprite (bottom left)*/ + vec2 ed; /** the end ofthe location of the sprite (bottom right)*/ vec2 dim; /** how wide the sprite is */ if (sprite.size()) { st.x = sprite[0].second.x; st.y = sprite[0].second.y; + + ed.x = sprite[0].second.x + sprite[0].first.size.x; + ed.y = sprite[0].second.y + sprite[0].first.size.y; } else { return vec2(0.0f, 0.0f); } for (auto &s : sprite) { - const auto& size = s.first.tex.getDim(); - if (s.second.x < st.x) st.x = s.second.x; if (s.second.y < st.y) st.y = s.second.y; - if (s.second.x + size.x > dim.x) - dim.x = s.second.x + size.x; - if (s.second.y + size.y > dim.y) - dim.y = s.second.y + size.y; + if (s.second.x + s.first.size.x > ed.x) + ed.x = s.second.x + s.first.size.x; + if (s.second.y + s.first.size.y > ed.y) + ed.y = s.second.y + s.first.size.y; } + dim = vec2(ed.x - st.x, ed.y - st.y); return dim; } @@ -233,10 +238,12 @@ struct Sprite { bool faceLeft; }; +using Limb = std::vector<std::pair<uint, Frame>>; + //TODO struct Animate { // COMMENT - std::vector<std::pair<uint, Frame>> frame; + Limb frame; // COMMENT uint index; diff --git a/src/components.cpp b/src/components.cpp index 140d02b..6f243a7 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -82,9 +82,21 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, Render::worldShader.use(); en.each<Visible, Sprite, Position>([dt](entityx::Entity entity, Visible &visible, Sprite &sprite, Position &pos) { - (void)entity; // Verticies and shit float its = 0; + + float sz; + if (entity.has_component<Solid>()) { + sz = entity.component<Solid>()->width; + } + if(sprite.faceLeft) { + glm::mat4 scale = glm::scale(glm::mat4(1.0f), glm::vec3(-1.0f,1.0f,1.0f)); + glm::mat4 translate = glm::translate(glm::mat4(1.0f), glm::vec3(0.0f - sz - pos.x * 2.0f, 0.0f, 0.0f)); + + glm::mat4 mov = scale * translate; + glUniformMatrix4fv(Render::worldShader.uniform[WU_transform], 1, GL_FALSE, glm::value_ptr(mov)); + } + for (auto &S : sprite.sprite) { auto sp = S.first; auto size = sp.size * game::HLINE; @@ -99,13 +111,6 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, sp.offset_tex.x, sp.offset_tex.y + sp.size_tex.y, sp.offset_tex.x, sp.offset_tex.y}; - if(sprite.faceLeft) { - glm::mat4 scale = glm::scale(glm::mat4(1.0f), glm::vec3(-1.0f,1.0f,1.0f)); - glm::mat4 translate = glm::translate(glm::mat4(1.0f), glm::vec3(0.0f - size.x - pos.x * 2.0f, 0.0f, 0.0f)); - - glm::mat4 mov = scale * translate; - glUniformMatrix4fv(Render::worldShader.uniform[WU_transform], 1, GL_FALSE, glm::value_ptr(mov)); - } GLfloat coords[] = {loc.x, loc.y, visible.z + its, loc.x + size.x, loc.y, visible.z + its, @@ -132,11 +137,11 @@ void RenderSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, glVertexAttribPointer(Render::worldShader.tex, 2, GL_FLOAT, GL_FALSE, 0 ,tex_coord); glDrawArrays(GL_TRIANGLES, 0, 6); - glUniformMatrix4fv(Render::worldShader.uniform[WU_transform], 1, GL_FALSE, glm::value_ptr(glm::mat4(1.0f))); glUniform4f(Render::worldShader.uniform[WU_tex_color], 1.0, 1.0, 1.0, 1.0); its-=.01; } + glUniformMatrix4fv(Render::worldShader.uniform[WU_transform], 1, GL_FALSE, glm::value_ptr(glm::mat4(1.0f))); }); Render::worldShader.disable(); diff --git a/src/world.cpp b/src/world.cpp index b10edac..08426a8 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -338,9 +338,9 @@ void WorldSystem::load(const std::string& file) if (abcd->Attribute("value") != nullptr) dim = str2coord(abcd->StrAttribute("value")); else - dim = entity.component<Sprite>().get()->getSpriteSize() * game::HLINE; + dim = entity.component<Sprite>()->getSpriteSize(); - float cdat[2] = {dim.x, dim.y}; + float cdat[2] = {dim.x * game::HLINE, dim.y * game::HLINE}; entity.assign<Solid>(cdat[0], cdat[1]); } else if (tname == "Direction") { vec2 dir; @@ -384,13 +384,17 @@ void WorldSystem::load(const std::string& file) while (animx) { std::string animType = animx->Name(); if (animType == "movement") { - auto frames = developFrame(animx); - if (animx->UnsignedAttribute("changeID") != XML_NO_ERROR) - idtc = 0; - else - idtc = animx->UnsignedAttribute("changeID"); - for (uint i = 0; i < frames.size(); i++) { - entan->frame.push_back(std::make_pair(idtc, frames[i])); + auto limbx = animx->FirstChildElement(); + while (limbx) { + auto frames = developFrame(limbx); + if (limbx->UnsignedAttribute("changeID") != XML_NO_ERROR) + idtc = 0; + else + idtc = limbx->UnsignedAttribute("changeID"); + for (uint i = 0; i < frames.size(); i++) { + entan->frame.push_back(std::make_pair(idtc, frames[i])); + } + limbx = limbx->NextSiblingElement(); } } diff --git a/xml/entities.xml b/xml/entities.xml index e1d7549..23b9358 100644 --- a/xml/entities.xml +++ b/xml/entities.xml @@ -3,21 +3,22 @@ <npc> <Position value="0.0,100.0" /> <Visible value="0.2" /> - <Sprite> image="assets/NPC.png" + <Sprite> <frame> - <src id="0" offset="0,0" size="15,20" drawOffset="0,0">assets/NPC.png</src> - <src id="1" offset="0,21" size="15,9" drawOffset="-1,14">assets/NPC.png</src> - <src id="2" drawOffset="13,6">assets/items/ironSword.png</src> + <src limb="0" offset="0,0" size="13,15" drawOffset="0,5">assets/NPC_Sheet.png</src> + <src limb="1" offset="13,0" size="9,6" drawOffset="3,0">assets/NPC_Sheet.png</src> </frame> </Sprite> <Animation> - <movement update="1" changeId="1"> - <frame> - <src offset="0,21" size="15,9" drawOffset="0,13">assets/NPC.png</src> - </frame> - <frame> - <src offset="0,21" size="15,9" drawOffset="0,13">assets/NPC_Walk.png</src> - </frame> + <movement> + <limb update="1" id="0"> + <frame> + <src offset="0,21" size="15,9" drawOffset="0,13">assets/NPC.png</src> + </frame> + <frame> + <src offset="0,21" size="15,9" drawOffset="0,13">assets/NPC_Walk.png</src> + </frame> + </limb> </movement> </Animation> <Direction /> |