I'm getting a "incompatible vector iterator" error to what i believe is a invalid iterator

void Bomb::CreateExplosion(Game_Manager* EGame_Manager)
{
for(irr::f32 iteration = 0; iteration < BlastRadius; iteration++) //up direction blast
{
   ***//PROGRAM CRASHES AT THIS LINE-->*** for(EGame_Manager->getEntityManager()->GetEntityIterator() = EGame_Manager->getEntityManager()->GetEntityList().begin(); EGame_Manager->getEntityManager()->GetEntityIterator() != EGame_Manager->getEntityManager()->GetEntityList().end(); ++EGame_Manager->getEntityManager()->GetEntityIterator())
    {
        if(CheckForCollision(UpExplosion->getTransformedBoundingBox(), (*EGame_Manager->getEntityManager()->GetEntityIterator())->GetEntityNode()->getTransformedBoundingBox()) == true)//check for collision against the unbreakable blocks (entity.type equals 0)
        {
            if((*EGame_Manager->getEntityManager()->GetEntityIterator())->GetType() == unbreakableblock)
            {
                break;
            }
            else if((*EGame_Manager->getEntityManager()->GetEntityIterator())->GetType() == gameplayer)
            {
                (*EGame_Manager->getEntityManager()->GetEntityIterator())->SetLives(this->GetLives() -1);
                break;
            }
            else if((*EGame_Manager->getEntityManager()->GetEntityIterator())->GetType() == gameitem)
            {
                break;
            }
        }
        else
        {
            UpExplosion->setScale(irr::core::vector3df(1,1,iteration)); //standard width of UpExplosion, iterated height of the UpExplosion
        }
    }
}

CreateExplosion is called by Bomb::UpdateEntity() which is called by EntityManager::UpdateList() which then loops through the vector<*Entity> List calling each Entity's respective Update function.

This function adds the Entities to the vector I'm not sure if it causes the problem

EntityManager::AddEntity(Entity* addtoList)
{
    List.push_back(addtolist);
    addtolist->GetEntityNode()->setID(List.size());
    EntityIterator = List.begin();
}

Also the instance of the Bomb class that calls these functions is declared in the Player class if that helps with anything. And I can post more code if needed.

link|improve this question
Is this a compiler error or a runtime error? Also, without the definitions of the types, this is going to be tricky... – Oli Charlesworth Jun 8 '11 at 0:30
if your GetEntityIterator() method returns a reference then the code might make sense. – Cheers and hth. - Alf Jun 8 '11 at 0:35
Its a runtime error – Just a humble programmer Jun 8 '11 at 0:36
Does AddEntity() get called at some point during the loop? Looks like the iterator is being set back to the beginning of the vector when a new entity is added... that might cause some strange side effects if you're already iterating through the list of entities. – Mike O'Connor Jun 8 '11 at 0:58
2  
Also, from a readability standpoint, the code would be much easier to follow if all the EGame_Manager->getEntityManager()->GetEntityIterator() instances were replaced with a local reference. – Mike O'Connor Jun 8 '11 at 1:00
show 7 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.