Khearts wrote:A few things about that:
1. If I'm calling your proposed function each frame, wouldn't I be adding the same object that I am on top of continuously to the vector?
2. What would I be doing with the items stored in that vector?
3. If there's something I can do with my existing for-loop embedded within my boolean, it'll be nice just to know for future implementations of other things I may need to cycle through later.
1. Yes you would.
2. Handle the collision ? Maybe inside your character somewhere ?
I used to handle collisions like this:
inside main loop:
Code: Select all
EntityManager::GetInstance()->Update();
inside EntityManager::Update() :
Code: Select all
vector<Entity*> collision;
for(int i=0; i<entities.size(); i++) {
for(int j0; j<entities.size(); j++) {
if(collision(entities[i]->rect(), entities[j]->rect()) {
//entity i has collided with j
collision.push_back(entities[j]);
}
//done with entity i.. send the vector with all the colliding entities to handle them
entities[i]->HandleCollision(collision);
}
Granted... it's probably not the best way to handle collision... but it is A way.

. Also... it's a n^2 "algorithm".
inside HandleCollision():
Code: Select all
void Player::UpdateCollision(vector<Entity*>& collision)
{
for(int i=0; i<collision.size(); i++) {
if(collision[i]->GetType() == TYPE_BULLET) {
if(((Bullet*)collision[i])->owner() != this) {
this->Die();
}
}
}
}
3. You fixed that yourself

. But still... how will you handle collision when you add enemies ?
(P.S. I had some annoying problems solving collisions like this so I don't recommended)