How can I overwrite the same portion of the console in a Windows native C++ console app, without using a 3rd Party library? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:30:41Z http://stackoverflow.com/feeds/question/45286 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/45286/how-can-i-overwrite-the-same-portion-of-the-console-in-a-windows-native-c-conso 3 How can I overwrite the same portion of the console in a Windows native C++ console app, without using a 3rd Party library? Patrick Johnmeyer 2008-09-05T05:42:57Z 2008-09-19T15:29:03Z <p>I have a console app that needs to display the state of items, but rather than having text scroll by like mad I'd rather see the current status keep showing up on the same lines. For the sake of example:</p> <blockquote> <p><code>Running... nn% complete</code><br /> <code>Buffer size: bbbb bytes</code></p> </blockquote> <p>should be the output, where 'nn' is the current percentage complete, and 'bbbb' is a buffer size, updated periodically on the same lines of the console.</p> <p>The first approach I took simply printed the correct number of backspaces to the console before printing the new state, but this has an obnoxious flicker that I want to get rid of. I also want to stick to either standard library or MS-provided functionality (VC 8) so as not to introduce another dependency for this one simple need.</p> http://stackoverflow.com/questions/45286/how-can-i-overwrite-the-same-portion-of-the-console-in-a-windows-native-c-conso/45292#45292 0 Answer by Ben Collins for How can I overwrite the same portion of the console in a Windows native C++ console app, without using a 3rd Party library? Ben Collins 2008-09-05T05:55:18Z 2008-09-05T05:55:18Z <p>In Linux, you can accomplish this by printing \b and/or \r to stderr. You might need to experiment to find the right combination of things in Windows.</p> http://stackoverflow.com/questions/45286/how-can-i-overwrite-the-same-portion-of-the-console-in-a-windows-native-c-conso/45302#45302 3 Answer by Joseph for How can I overwrite the same portion of the console in a Windows native C++ console app, without using a 3rd Party library? Joseph 2008-09-05T06:01:33Z 2008-09-05T19:21:57Z <p>If you print using \r and don't use a function that will generate a newline or add \n to the end, the cursor will go back to the beginning of the line and just print over the next thing you put up. Generating the complete string before printing might reduce flicker as well.</p> <p><strong><em>UPDATE</em></strong>: The question has been changed to 2 lines of output instead of 1 which makes my answer no longer complete. A more complicated approach is likely necessary. JP has the right idea with the <a href="http://msdn.microsoft.com/en-us/library/ms682073(VS.85).aspx" rel="nofollow">Console API</a>. I believe the following site details many of the things you will need to accomplish your goal. The site also mentions that the key to reducing flicker is to render everything offscreen before displaying it. This is true whenever you are displaying anything on the screen whether it is text or graphics (2D or 3D).</p> <p><a href="http://www.benryves.com/tutorials/?t=winconsole" rel="nofollow">http://www.benryves.com/tutorials/?t=winconsole</a></p> http://stackoverflow.com/questions/45286/how-can-i-overwrite-the-same-portion-of-the-console-in-a-windows-native-c-conso/45316#45316 2 Answer by Coding the Wheel for How can I overwrite the same portion of the console in a Windows native C++ console app, without using a 3rd Party library? Coding the Wheel 2008-09-05T06:12:27Z 2008-09-05T06:12:27Z <p>You can use <a href="http://msdn.microsoft.com/en-us/library/ms686025.aspx" rel="nofollow">SetConsoleCursorPosition</a>. You'll need to call <a href="http://msdn.microsoft.com/en-us/library/ms683231.aspx" rel="nofollow">GetStdHandle</a> to get a handle to the output buffer.</p> http://stackoverflow.com/questions/45286/how-can-i-overwrite-the-same-portion-of-the-console-in-a-windows-native-c-conso/45317#45317 2 Answer by Johannes Passing for How can I overwrite the same portion of the console in a Windows native C++ console app, without using a 3rd Party library? Johannes Passing 2008-09-05T06:12:42Z 2008-09-05T06:12:42Z <p>In case the Joseph's suggestion does not give you enough flexibility, have a look at the Console API: <a href="http://msdn.microsoft.com/en-us/library/ms682073" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms682073</a>(VS.85).aspx.</p> http://stackoverflow.com/questions/45286/how-can-i-overwrite-the-same-portion-of-the-console-in-a-windows-native-c-conso/49884#49884 0 Answer by Patrick Johnmeyer for How can I overwrite the same portion of the console in a Windows native C++ console app, without using a 3rd Party library? Patrick Johnmeyer 2008-09-08T15:03:53Z 2008-09-08T15:03:53Z <p>Joseph, JP, and CodingTheWheel all provided valuable help.</p> <p>For my simple case, the most straight-forward approach seemed to be based on <a href="http://beta.stackoverflow.com/questions/45286/how-can-i-overwrite-the-same-portion-of-the-console-in-a-windows-native-c-conso#45316" rel="nofollow">CodingTheWheel's answer</a>:</p> <pre><code>// before entering update loop HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE); CONSOLE_SCREEN_BUFFER_INFO bufferInfo; GetConsoleScreenBufferInfo(h, &amp;bufferInfo); // update loop while (updating) { // reset the cursor position to where it was each time SetConsoleCursorPosition(h, bufferInfo.dwCursorPosition); //... // insert combinations of sprintf, printf, etc. here //... } </code></pre> <p>For more complicated problems, the full <a href="http://msdn.microsoft.com/en-us/library/ms682073.aspx" rel="nofollow">console API</a> as provided by <a href="http://beta.stackoverflow.com/questions/45286/how-can-i-overwrite-the-same-portion-of-the-console-in-a-windows-native-c-conso#45317" rel="nofollow">JP's answer</a>, in coordination with the examples provided via the <a href="http://www.benryves.com/tutorials/?t=winconsole" rel="nofollow">link</a> from <a href="http://beta.stackoverflow.com/questions/45286/how-can-i-overwrite-the-same-portion-of-the-console-in-a-windows-native-c-conso#45302" rel="nofollow">Joseph's answer</a> may prove useful, but I found the work necessary to use <code>CHAR_INFO</code> too tedious for such a simple app.</p>