Calculating frames per second in a game - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T23:50:27Z http://stackoverflow.com/feeds/question/87304 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game 6 Calculating frames per second in a game Tod 2008-09-17T20:31:14Z 2008-11-13T22:56:39Z <p>What's a good algorithm for calculating frames per second in a game? I want to show it as a number in the corner of the screen. If I just look at how long it took to render the last frame the number changes too fast.</p> <p>Bonus points if your answer updates each frame and doesn't converge differently when the frame rate is increasing vs decreasing.</p> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/87333#87333 7 Answer by mgb for Calculating frames per second in a game mgb 2008-09-17T20:33:08Z 2008-09-17T21:26:34Z <p>You need a smoothed average, the easiest way is to take the current answer (the time to draw the last frame) and combine it with the previous answer.</p> <p>eg. time = time * 0.9 + last_frame * 0.1</p> <p>By adjusting the 0.9 / 0.1 ratio you can change the 'time constant' - that is how quickly the number responds to changes. A larger fraction in favour of the old answer gives a slower smoother change, a large fraction in favour of the new answer gives a quicker changing value. Obviously the two factors must add to one!</p> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/87335#87335 0 Answer by apandit for Calculating frames per second in a game apandit 2008-09-17T20:33:34Z 2008-09-17T20:33:48Z <p>Increment a counter every time you render a screen and clear that counter for some time interval over which you want to measure the frame-rate.</p> <p>Ie. Every 3 seconds, get counter/3 and then clear the counter.</p> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/87336#87336 0 Answer by Bryan Oakley for Calculating frames per second in a game Bryan Oakley 2008-09-17T20:33:37Z 2008-09-17T20:33:37Z <p>Set counter to zero. Each time you draw a frame increment the counter. After each second print the counter. lather, rinse, repeat. If yo want extra credit, keep a running counter and divide by the total number of seconds for a running average.</p> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/87343#87343 0 Answer by Mike Stone for Calculating frames per second in a game Mike Stone 2008-09-17T20:33:54Z 2008-09-17T20:33:54Z <p>You could keep a counter, increment it after each frame is rendered, then reset the counter when you are on a new second (storing the previous value as the last second's # of frames rendered)</p> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/87347#87347 0 Answer by Jimmy for Calculating frames per second in a game Jimmy 2008-09-17T20:34:16Z 2008-09-17T20:34:16Z <p>store a start time and increment your framecounter once per loop? every few seconds you could just print framecount/(Now - starttime) and then reinitialize them.</p> <p>edit: oops. double-ninja'ed</p> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/87523#87523 2 Answer by Wedge for Calculating frames per second in a game Wedge 2008-09-17T20:48:55Z 2008-09-17T21:30:34Z <p>Well, certainly </p> <pre><code>frames / sec = 1 / (sec / frame) </code></pre> <p>But, as you point out, there's a lot of variation in the time it takes to render a single frame, and from a UI perspective updating the fps value at the frame rate is not usable at all (unless the number is very stable).</p> <p>What you want is probably a moving average or some sort of binning / resetting counter.</p> <p>For example, you could maintain a queue data structure which held the rendering times for each of the last 30, 60, 100, or what-have-you frames (you could even design it so the limit was adjustable at run-time). To determine a decent fps approximation you can determine the average fps from all the rendering times in the queue:</p> <pre><code>fps = # of rendering times in queue / total rendering time </code></pre> <p>When you finish rendering a new frame you enqueue a new rendering time and dequeue an old rendering time. Alternately, you could dequeue only when the total of the rendering times exceeded some preset value (e.g. 1 sec). You can maintain the "last fps value" and a last updated timestamp so you can trigger when to update the fps figure, if you so desire. Though with a moving average if you have consistent formatting, printing the "instantaneous average" fps on each frame would probably be ok.</p> <p>Another method would be to have a resetting counter. Maintain a precise (millisecond) timestamp, a frame counter, and an fps value. When you finish rendering a frame, increment the counter. When the counter hits a pre-set limit (e.g. 100 frames) or when the time since the timestamp has passed some pre-set value (e.g. 1 sec), calculate the fps:</p> <pre><code>fps = # frames / (current time - start time) </code></pre> <p>Then reset the counter to 0 and set the timestamp to the current time.</p> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/87732#87732 4 Answer by KPexEA for Calculating frames per second in a game KPexEA 2008-09-17T21:13:40Z 2008-09-17T21:13:40Z <p>This is what I have used in many games.</p> <pre><code>#define MAXSAMPLES 100 int tickindex=0 int ticksum=0; int ticklist[MAXSAMPLES]; /* need to zero out the ticklist array before starting */ /* average will ramp up until the buffer is full */ /* returns average ticks per frame over the MAXSAMPPLES last frames */ double CalcAverageTick(int newtick) { ticksum-=ticklist[tickindex]; /* subtract value falling off */ ticksum+=newtick; /* add new value */ ticklist[tickindex]=newtick; /* save new value so it can be subtracted later */ if(++tickindex==MAXSAMPLES) /* inc buffer index */ tickindex=0; /* return average */ return((double)ticksum/MAXSAMPLES); } </code></pre> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/88179#88179 0 Answer by jilles de wit for Calculating frames per second in a game jilles de wit 2008-09-17T22:03:32Z 2008-09-17T22:03:32Z <p>In (c++ like) pseudocode these two are what I used in industrial image processing applications that had to process images from a set of externally triggered camera's. Variations in "frame rate" had a different source (slower or faster production on the belt) but the problem is the same. (I assume that you have a simple timer.peek() call that gives you something like the nr of msec (nsec?) since application start or the last call)</p> <p>Solution 1: fast but not updated every frame</p> <pre><code>do while (1) { ProcessImage(frame) if (frame.framenumber%poll_interval==0) { new_time=timer.peek() framerate=poll_interval/(new_time - last_time) last_time=new_time } } </code></pre> <p>Solution 2: updated every frame, requires more memory and CPU</p> <pre><code>do while (1) { ProcessImage(frame) new_time=timer.peek() delta=new_time - last_time last_time = new_time total_time += delta delta_history.push(delta) framerate= delta_history.length() / total_time while (delta_history.length() &gt; avg_interval) { oldest_delta = delta_history.pop() total_time -= oldest_delta } } </code></pre> http://stackoverflow.com/questions/87304/calculating-frames-per-second-in-a-game/288674#288674 0 Answer by David Frenkel for Calculating frames per second in a game David Frenkel 2008-11-13T22:56:39Z 2008-11-13T22:56:39Z <p>Good answers here. Just how you implement it is dependent on what you need it for. I prefer the running average one myself "time = time * 0.9 + last_frame * 0.1" by the guy above.</p> <p>however I personally like to weight my average more heavily towards newer data because in a game it is SPIKES that are the hardest to squash and thus of most interest to me. So I would use something more like a .7 \ .3 split will make a spike show up much faster (though it's effect will drop off-screen faster as well.. see below)</p> <p>If your focus is on RENDERING time, then the .9.1 split works pretty nicely b/c it tend to be more smooth. THough for gameplay/AI/physics spikes are much more of a concern as THAT will usually what makes your game look choppy (which is often worse than a low frame rate assuming we're not dipping below 20 fps)</p> <p>So, what I would do is also add something like this: </p> <pre><code>#define ONE_OVER_FPS (1.0f/60.0f) static float g_SpikeGuardBreakpoint = 3.0f * ONE_OVER_FPS; if(time &gt; g_SpikeGuardBreakpoint) DoInternalBreakpoint() </code></pre> <p>(fill in 3.0f with whatever magnitude you find to be an unacceptable spike) This will let you find and thus <em>solve</em> FPS issues the end of the frame they happen.</p>