SFML community forums

Help => General => Topic started by: EGYPTIAN CODER on December 07, 2016, 11:41:07 pm

Title: strange behavior in the update function
Post by: EGYPTIAN CODER on December 07, 2016, 11:41:07 pm
        void                                    update(sf::Time elapsedTime)
{
        std::cout<<"too slow right !!\n";
        mWorld.update(elapsedTime);
}
this is the function update from class(game) from SFML GAME DEVELOPMENT
I just added cout and then the game become tooooo slow 1 frame/second
I am in chapter three in the book and I have followed the instructions very well
before adding this cout and in this particular place every thing was good ???
Title: Re: strange behavior in the update function
Post by: jamesL on December 08, 2016, 12:29:58 am
then take it out

it's not serving any purpose
Title: Re: strange behavior in the update function
Post by: EGYPTIAN CODER on December 08, 2016, 12:45:45 am
I know it is not serving any target but I just want to know why this happened
Title: Re: strange behavior in the update function
Post by: victorlevasseur on December 08, 2016, 01:42:31 am
That's because std::cout is slow (but it shouldn't be that slow however).
Title: Re: strange behavior in the update function
Post by: Mario on December 08, 2016, 08:45:36 pm
std::cout is generally slow on Windows, even if you're not flushing content every line. How significant is the impact on your framerate? Note that dropping from 5,000 fps to 2,500 fps (or anything similar) is essentially "nothing".
Title: Re: strange behavior in the update function
Post by: EGYPTIAN CODER on December 08, 2016, 10:58:04 pm
I am just asking the question because its a very strange thing  that the frame rate drop to even less than
1 frame per second;
but if this is normal then  I will just remove std::cout and complete the project with no problems at all
Title: strange behavior in the update function
Post by: eXpl0it3r on December 09, 2016, 08:18:27 am
Having performance issues? Use a profiler to figure out why. ;)