I have been working on a game, that involves individual update loops for each object. I have my program structured so each object class (BaseObject) contains a scene node. Currently the code for updating is as follows:
void State::run()
{
for(list<BaseObject*>::Iterator it = objectList.begin(); it != objectList.end(); it++)
{
BaseObject *currentObject = *it;
currentObject->run();
}
}
The state object is part of the game's state machine, and for the current state it runs through the iterates through a list of objects to run the update loop for. Each object has its own update. Now, my question is: is there a more efficient way to do this with irrlicht? More specifically, integrating each event loop with the render loop. This is running rather slow it seems, I don't think I'm getting very good frame-rates. Any suggestions/fixes would be great! Thanks!