最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c++ - Moving a sprite from a vector of pairs SFML - Stack Overflow

programmeradmin1浏览0评论

I have projectiles that move from the origin(player position) to where I click my mouse. They're stored as a vector of pairs, where one part is the target position(as a Vector2i), and the other is the sprite. My problem is that the sprites now don't move. Before, I only had one projectile so I converted everything - now it doesn't work.

void Fireball::draw(sf::RenderTarget& target, sf::RenderStates states) const
{
    for (const auto& projectile : fireballs)
    {
        target.draw(projectile.second);
    }
}

void Fireball::update(float dt, sf::RenderWindow* window, bool collision, bool hit, sf::Vector2f origin)
{   
    for (const auto& projectile : fireballs)
    {
        sf::Sprite temp = projectile.second;

        sf::Vector2f vectorToTarget = static_cast<sf::Vector2f>(window->mapPixelToCoords(projectile.first)) - origin;
        float distanceToTarget = sqrt(vectorToTarget.x * vectorToTarget.x + vectorToTarget.y * vectorToTarget.y);

        // reset once collides or hits enemy
        if (collision || hit)
        {   
            temp.move(vectorToTarget);
            target = {};
            fireballs.pop_back();
        }
        // move projectile
        else
        {
            sf::Vector2f moveDirection = vectorToTarget / distanceToTarget;
            temp.move(moveDirection * moveSpeed);
        }
    }
}

void Fireball::mouseClicked(sf::Event event, sf::RenderWindow* window, sf::Vector2f origin)
{
    if (event.key.code == sf::Mouse::Left && fireballs.size() <= 5)
    {
        projectile.setPosition(origin);
        target = sf::Mouse::getPosition(*window);
        fireballs.push_back(std::make_pair(target, projectile));
    }
}
发布评论

评论列表(0)

  1. 暂无评论