From 9d53b5e235a991458f9c869fb07cea23ee36a560 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 24 Mar 2017 09:24:04 -0400 Subject: item cooldown --- src/player.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/player.cpp b/src/player.cpp index 1908af4..d9a4a98 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -242,10 +242,10 @@ void PlayerSystem::receive(const UseItemEvent& uie) } } - /*cool.store(false); - std::thread([&](void) { - std::this_thread::sleep_for(std::chrono::milliseconds(uie.item->cooldown)); + cool.store(false); + std::thread([&](unsigned int ms) { + std::this_thread::sleep_for(std::chrono::milliseconds(ms)); cool.store(true); - }).detach();*/ + }, uie.item->cooldown).detach(); } } -- cgit v1.2.3 From da4bd0b57b1ce5cdb56e6f8d9870998cbdd176f4 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 27 Mar 2017 19:22:49 -0400 Subject: gravity? --- include/components.hpp | 4 ++-- include/player.hpp | 2 +- src/attack.cpp | 8 ++++---- src/components.cpp | 10 +++++----- src/inventory.cpp | 2 +- src/player.cpp | 6 +++--- 6 files changed, 16 insertions(+), 16 deletions(-) (limited to 'src') diff --git a/include/components.hpp b/include/components.hpp index fe56a88..20a1419 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -98,7 +98,7 @@ struct Physics : public Component { * Constructor that sets the gravity constant, if not specified it becomes 0. * @param g The non default gravity constant. */ - Physics(float g = 1.0f): g(g) {} + Physics(float g = 0.2f): g(g) {} Physics(XMLElement* imp, XMLElement* def) { fromXML(imp, def); } @@ -108,7 +108,7 @@ struct Physics : public Component { void fromXML(XMLElement* imp, XMLElement* def) final { if (imp->QueryFloatAttribute("gravity", &g) != XML_NO_ERROR) { if (def->QueryFloatAttribute("value", &g) != XML_NO_ERROR) - g = 1.0f; + g = 0.2f; } } }; diff --git a/include/player.hpp b/include/player.hpp index 2c65717..efac984 100644 --- a/include/player.hpp +++ b/include/player.hpp @@ -15,7 +15,7 @@ /** * The constant velocity the player is given when moved with the arrow keys. */ -constexpr const float PLAYER_SPEED_CONSTANT = 0.15f; +constexpr const float PLAYER_SPEED_CONSTANT = 0.03f; /** * @class PlayerSystem diff --git a/src/attack.cpp b/src/attack.cpp index 550b849..3dc1594 100644 --- a/src/attack.cpp +++ b/src/attack.cpp @@ -3,8 +3,8 @@ #include #include -constexpr int shortSlashLength = 100; -constexpr int longSlashLength = 200; +constexpr int shortSlashLength = 20; +constexpr int longSlashLength = 40; // math helpers because we don't trust stdlib template @@ -41,7 +41,7 @@ void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, if (e.has_component()) return; - if (inrange(a.pos.x, pos.x, pos.x + dim.width, shortSlashLength)) { + if (inrange(a.pos.x, pos.x, pos.x + dim.width, HLINES(shortSlashLength))) { h.health -= a.power; game::engine.getSystem()->addMultiple(15, ParticleType::DownSlash, [&](){ return vec2(pos.x + dim.width / 2, pos.y + dim.height / 2); }, 300, 7); @@ -56,7 +56,7 @@ void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, if (e.has_component()) return; - if (inrange(a.pos.x, pos.x, pos.x + dim.width, shortSlashLength)) { + if (inrange(a.pos.x, pos.x, pos.x + dim.width, 0)) { h.health -= a.power; game::engine.getSystem()->addMultiple(15, ParticleType::SmallBlast, [&](){ return vec2(pos.x + dim.width / 2, pos.y + dim.height / 2); }, 300, 7); diff --git a/src/components.cpp b/src/components.cpp index 732e21f..dee56a6 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -27,8 +27,8 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e (void)ev; en.each([&](entityx::Entity entity, Position &position, Direction &direction) { - position.x += direction.x * dt; - position.y += direction.y * dt; + position.x += HLINES(direction.x) * dt; + position.y += HLINES(direction.y) * dt; if (entity.has_component() && entity.has_component()) { auto animate = entity.component(); @@ -38,7 +38,7 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e animate->updateAnimation(1, sprite->sprite, dt); else animate->firstFrame(1, sprite->sprite); - } + } if (entity.has_component() && entity.component()->talking) { direction.x = 0; } else { @@ -60,7 +60,7 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e h = 0; } } else - direction.x = (ppos.x > position.x) ? .05 : -.05; + direction.x = (ppos.x > position.x) ? .01 : -.01; } else if (entity.has_component()) { auto& countdown = entity.component()->countdown; @@ -68,7 +68,7 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e countdown--; } else { countdown = 5000 + randGet() % 10 * 100; - direction.x = (randGet() % 3 - 1) * 0.02f; + direction.x = (randGet() % 3 - 1) * 0.004f; } } } diff --git a/src/inventory.cpp b/src/inventory.cpp index 3e7104e..664d8a6 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -211,7 +211,7 @@ void InventorySystem::receive(const MouseReleaseEvent &mre) auto e = game::entities.create(); e.assign(mre.position.x, mre.position.y); - e.assign(0, 1); + e.assign(0, 0.4f); e.assign(items[movingItem]); e.assign(); e.component()->addSpriteSegment( diff --git a/src/player.cpp b/src/player.cpp index d9a4a98..711ddae 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -75,7 +75,7 @@ void PlayerSystem::create(void) player.assign(0.0f, 100.0f); player.assign(0.0f, 0.0f); //player.assign(-0.001f); - player.assign(1); + player.assign(); player.assign(-0.2f); player.assign(100); auto sprite = player.assign(); @@ -154,7 +154,7 @@ void PlayerSystem::receive(const KeyDownEvent &kde) if ((kc == SDLK_SPACE) && game::canJump && ((vel.y > -0.01) & (vel.y < 0.01))) { loc.y += HLINES(2); - vel.y = .4; + vel.y = 0.05f; vel.grounded = false; } else if (!ui::dialogBoxExists || ui::dialogPassive) { if (kc == getControl(0)) { @@ -229,7 +229,7 @@ void PlayerSystem::receive(const UseItemEvent& uie) e.assign(pos.x, pos.y + 10); auto angle = std::atan2(uie.curs.y - pos.y, uie.curs.x - pos.x); - e.assign(1 * std::cos(angle), 1 * std::sin(angle)); + e.assign(0.25f * std::cos(angle), 0.25f * std::sin(angle)); e.assign(-5); e.assign(); -- cgit v1.2.3 From ceef5de7d838e97c3d7f990023398181ee1500c2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 28 Mar 2017 10:21:04 -0400 Subject: better arrow collision --- include/attack.hpp | 1 - src/attack.cpp | 46 ++++++++++++++++++++++++++++++---------------- src/world.cpp | 6 ------ xml/!town.xml | 2 +- 4 files changed, 31 insertions(+), 24 deletions(-) (limited to 'src') diff --git a/include/attack.hpp b/include/attack.hpp index 027b93f..ef67a79 100644 --- a/include/attack.hpp +++ b/include/attack.hpp @@ -10,7 +10,6 @@ enum class AttackType : char { ShortSlash, LongSlash, - SmallBoom }; struct AttackEvent { diff --git a/src/attack.cpp b/src/attack.cpp index 3dc1594..6fb6cec 100644 --- a/src/attack.cpp +++ b/src/attack.cpp @@ -1,7 +1,10 @@ #include + #include #include #include +#include +#include constexpr int shortSlashLength = 20; constexpr int longSlashLength = 40; @@ -20,6 +23,11 @@ bool inrange(float point, float left, float right, float range) (point > left && point < right); } +bool inrange(float point, float left, float right) +{ + return point > left && point < right; +} + void AttackSystem::receive(const AttackEvent& ae) { attacks.emplace_front(ae); @@ -31,6 +39,26 @@ void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, (void)ev; (void)dt; + auto pid = game::engine.getSystem()->getId(); + + // handle attacking entities + en.each([&](entityx::Entity p, Hit& hit, Position& ppos) { + bool die = false; + en.each([&](entityx::Entity e, Health& health, Position& pos, Solid& dim) { + if (e.id() != pid && inrange(ppos.x, pos.x, pos.x + dim.width) && inrange(ppos.y, pos.y - 2, pos.y + dim.height)) { + health.health -= hit.damage; + game::engine.getSystem()->addMultiple(15, ParticleType::SmallBlast, + [&](){ return vec2(pos.x + dim.width / 2, pos.y + dim.height / 2); }, 300, 7); + die = true; + } else if (game::engine.getSystem()->isAboveGround(vec2(ppos.x, ppos.y))) + die = true; + }); + + if (die) + p.destroy(); + }); + + // handle emitted attacks for (const auto& a : attacks) { switch (a.type) { case AttackType::ShortSlash: @@ -41,7 +69,8 @@ void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, if (e.has_component()) return; - if (inrange(a.pos.x, pos.x, pos.x + dim.width, HLINES(shortSlashLength))) { + if (inrange(a.pos.x, pos.x, pos.x + dim.width, HLINES(shortSlashLength)) && + inrange(a.pos.y, pos.y, pos.y + dim.height)) { h.health -= a.power; game::engine.getSystem()->addMultiple(15, ParticleType::DownSlash, [&](){ return vec2(pos.x + dim.width / 2, pos.y + dim.height / 2); }, 300, 7); @@ -49,21 +78,6 @@ void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, } ); break; - case AttackType::SmallBoom: - en.each( - [&a](entityx::Entity e, Position& pos, Solid& dim, Health& h) { - (void)e; - if (e.has_component()) - return; - - if (inrange(a.pos.x, pos.x, pos.x + dim.width, 0)) { - h.health -= a.power; - game::engine.getSystem()->addMultiple(15, ParticleType::SmallBlast, - [&](){ return vec2(pos.x + dim.width / 2, pos.y + dim.height / 2); }, 300, 7); - } - } - ); - break; default: break; } diff --git a/src/world.cpp b/src/world.cpp index 353f4d9..9a47576 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -14,7 +14,6 @@ using namespace std::literals::chrono_literals; using namespace tinyxml2; // game headers -#include #include #include #include @@ -1141,11 +1140,6 @@ void WorldSystem::detect(entityx::TimeDelta dt) } else { loc.y = data[line].groundHeight - 0.001f * dt; vel.y = 0; - if (e.has_component()) { - game::events.emit(vec2(loc.x, loc.y), - AttackType::SmallBoom, e.component()->damage); - e.destroy(); - } if (!vel.grounded) { vel.grounded = true; game::engine.getSystem()->addMultiple(20, ParticleType::SmallPoof, diff --git a/xml/!town.xml b/xml/!town.xml index c50932b..7506f70 100644 --- a/xml/!town.xml +++ b/xml/!town.xml @@ -4,7 +4,7 @@