From 1894e311bdeb098c3bef9bd342e0eaf78d197a9b Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 20 Jan 2017 10:37:18 -0500 Subject: Walking player --- src/player.cpp | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 100 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/player.cpp b/src/player.cpp index c0710cc..78c0b8e 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -9,11 +9,64 @@ static const char *spriteXML = " \ \ - assets/player/player.png \ - assets/player/player.png\ + assets/player/player.png \ + assets/player/player.png\ + assets/player/player.png\ + assets/player/player.png\ \ "; +static const char *animationXML = + "\ + \ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + \ + \ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + assets/player/player.png\ + \ + \ + \ + "; + void PlayerSystem::create(void) { player = game::entities.create(); @@ -32,6 +85,51 @@ void PlayerSystem::create(void) vec2 dim = player.component().get()->getSpriteSize(); float cdat[2] = {dim.x, dim.y}; player.assign(cdat[0], cdat[1]); + + // handle player animation + xmld.Parse(animationXML); + auto entan = player.assign(); + auto animx = xmld.FirstChildElement()->FirstChildElement(); + + uint limbid = 0; + float limbupdate = 0; + uint limbupdatetype = 0; + + while (animx) { + std::string animType = animx->Name(); + std::cout << animx->Name() << std::endl; + if (animType == "movement") { + limbupdatetype = 1; + auto limbx = animx->FirstChildElement(); + while (limbx) { + std::string limbHopefully = limbx->Name(); + if (limbHopefully == "limb") { + auto frames = developFrame(limbx); + + entan->limb.push_back(Limb()); + entan->limb.back().updateType = limbupdatetype; + + if (limbx->QueryUnsignedAttribute("id", &limbid) == XML_NO_ERROR) { + entan->limb.back().limbID = limbid; + } + if (limbx->QueryFloatAttribute("update", &limbupdate) == XML_NO_ERROR) { + entan->limb.back().updateRate = limbupdate; + } + + // place our newly developed frames in the entities animation stack + for (auto &f : frames) { + entan->limb.back().addFrame(f); + for (auto &fr : entan->limb.back().frame) { + for (auto &sd : fr) + sd.first.limb = limbid; + } + } + } + limbx = limbx->NextSiblingElement(); + } + } + animx = animx->NextSiblingElement(); + } } void PlayerSystem::configure(entityx::EventManager &ev) -- cgit v1.2.3