Clearing Screen in the console

Please support our C++ advertiser: Intel Parallel Studio Home
Reply

Join Date: Nov 2007
Posts: 390
Reputation: skatamatic will become famous soon enough skatamatic will become famous soon enough 
Solved Threads: 39
skatamatic skatamatic is offline Offline
Posting Whiz

Clearing Screen in the console

 
0
  #1
Nov 2nd, 2007
Hey, I'm brand new to this site. Hopefully someone can help me out.

How do you clear the console screen without any system-compatibility issues?
This means that SYSTEM("CLS") and anything from a windows library (like #include<windows.h>) is not acceptable, as it will not run on linux/unix etc...
I know theres some tweaks you can do to linux which would make this work, but this is for a computer engineering course, and it has to run on everything.

I've created a function that looks something like this:
  1.  
  2. void CLS()
  3. {
  4. for (int iLoop = 0; iLoop < 40; iLoop++)
  5. {
  6. cout << " ";
  7. }
  8. return 0;
  9. }

While this does pseudo-solve my problem, it leaves the text on the bottom of the console screen rather than the top, and you can just scroll up to see the previous output. It seems a little redundant to clear the screen in the console, but I need it for a lab at school. Although I don't think anyone else in my class has figuired out how yet...

Thanks.
Reply With Quote Quick reply to this message  
Join Date: Oct 2007
Posts: 1,953
Reputation: Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of 
Solved Threads: 214
Featured Poster
Duoas's Avatar
Duoas Duoas is offline Offline
Posting Virtuoso

Re: Clearing Screen in the console

 
0
  #2
Nov 2nd, 2007
There is no way to do this without system dependencies. C++ doesn't know anything about the output device, so if you want to play with it you have to know something about it.

It is possible to write your C code to choose to compile specific options depending on what OS you are using, but that is a rather clunky option.

Another option is to write several separate cpp files that each define the same function, but implement it differently depending on the OS. Compile and link the one appropriate to the OS. (This is the most common option.)

For just playing with the console though, I recommend you to look at the curses library. There are several versions: curses, ncurses, and pdcurses. I recommend the latter. It is available on most POSIX capable systems, including windows.

If you want something really simple, and you have ANSI.SYS running on your Windows PC, you can just code:
cout << "\33[2J";
If it works it works. If not you'll just get some junk on the screen.

Sorry I couldn't be of more help.
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 390
Reputation: skatamatic will become famous soon enough skatamatic will become famous soon enough 
Solved Threads: 39
skatamatic skatamatic is offline Offline
Posting Whiz

Re: Clearing Screen in the console

 
0
  #3
Nov 2nd, 2007
Hmmm, I think I'll have to do some research on determining the OS. I could probably just run a script that looks for key OS files (in the windows system folder, etc) and if they exist, clear the screen one way, and if they don't, clear the screen another. Thanks for the help!
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,850
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 754
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Senior Bitch

Re: Clearing Screen in the console

 
0
  #4
Nov 2nd, 2007
>How do you clear the console screen without any system-compatibility issues?
Start by altering reality such that standard C++ recognizes a "screen" and a "console" in a convenient way.

>but this is for a computer engineering course
I'm impressed. Most programming courses actually take the opposite stance when it comes to portability.

>and it has to run on everything.
It's quite impossible to do that. The second best is to pick which systems you want to be compatible with, isolate the non-portable aspects of your code, and port (or conditionally compile) the non-portable parts as necessary to get the code working on the different systems that you're supporting. For example, here's a somewhat naive way to go about handling both Windows and POSIX systems:
  1. #include <cstdlib>
  2.  
  3. void clear_screen()
  4. {
  5. #ifdef WINDOWS
  6. std::system ( "CLS" );
  7. #else
  8. // Assume POSIX
  9. std::system ( "clear" );
  10. #endif
  11. }
New members chased away this month: 4
Reply With Quote Quick reply to this message  
Join Date: May 2006
Posts: 3,124
Reputation: WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of 
Solved Threads: 283
Moderator
WaltP's Avatar
WaltP WaltP is offline Offline
Posting Sensei

Re: Clearing Screen in the console

 
0
  #5
Nov 2nd, 2007
Originally Posted by Narue View Post
>How do you clear the console screen without any system-compatibility issues?
Start by altering reality such that standard C++ recognizes a "screen" and a "console" in a convenient way.
In other words, brute force. Outputting a bunch of newlines '\n' is the only portable way.
The 3 Laws of the Procrastination Society:
1) Never do today that which can be put off until tomorrow
2) Tomorrow never comes
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 15,647
Reputation: Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute 
Solved Threads: 1498
Team Colleague
Featured Poster
Ancient Dragon's Avatar
Ancient Dragon Ancient Dragon is offline Offline
Still Learning

Re: Clearing Screen in the console

 
0
  #6
Nov 2nd, 2007
Originally Posted by WaltP View Post
In other words, brute force. Outputting a bunch of newlines '\n' is the only portable way.
And that isn't portable either because there is no standard way to determine how many line to clear.
Don't PM me with questions -- you might get a nasty PM in response. If you have a question then post it in one of the forums.
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 390
Reputation: skatamatic will become famous soon enough skatamatic will become famous soon enough 
Solved Threads: 39
skatamatic skatamatic is offline Offline
Posting Whiz

Re: Clearing Screen in the console

 
0
  #7
Nov 2nd, 2007
Haha. Wow, such a simple concept, yet so many unclear answers. Oh well, I'll talk to my teacher about it, maybe it was a trick question, or maybe she just meant Linux and Windows. Thanks all.
Reply With Quote Quick reply to this message  
Join Date: Oct 2007
Posts: 1,953
Reputation: Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of Duoas has much to be proud of 
Solved Threads: 214
Featured Poster
Duoas's Avatar
Duoas Duoas is offline Offline
Posting Virtuoso

Re: Clearing Screen in the console

 
0
  #8
Nov 2nd, 2007
All the answers given you have been very clear. Some even posted code that works just fine.

What's not too clear is your teacher's brain if she gave you a homework assignment to clear the screen using C++...
Reply With Quote Quick reply to this message  
Join Date: Dec 2006
Posts: 1,089
Reputation: vijayan121 is a name known to all vijayan121 is a name known to all vijayan121 is a name known to all vijayan121 is a name known to all vijayan121 is a name known to all vijayan121 is a name known to all 
Solved Threads: 164
vijayan121 vijayan121 is offline Offline
Veteran Poster

Re: Clearing Screen in the console

 
0
  #9
Nov 3rd, 2007
> How do you clear the console screen without any system-compatibility issues?
when the language (and the language libraries) do not provide a portable way of doing something, the usual approch is to look for a library with an api, allowing the programmer to write code in a portable way. ncurses is one that you could use. http://tldp.org/HOWTO/NCURSES-Progra...WTO/intro.html
unix/linux : usually available as part of your base installation. if not, obtain from ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses.tar.gz
windows: download from http://gnuwin32.sourceforge.net/packages/pdcurses.htm
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,850
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 754
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Senior Bitch

Re: Clearing Screen in the console

 
0
  #10
Nov 3rd, 2007
>Outputting a bunch of newlines '\n' is the only portable way.
It's portable only in that you're using standard code. It's not portable in that you don't know how many newlines to print, and if the stream is redirected (or never wrote to a screen in the first place), you're not going to be clearing any screens. "Clearing the screen" requires a screen and knowledge about that screen, both of which are fundamentally non-portable.

>Wow, such a simple concept, yet so many unclear answers.
No, it only seems like a simple concept because you're ignoring all of the variables involved. Clearing the screen is actually a complex topic, which is precisely why the language definition doesn't specify anything about it.

>Oh well, I'll talk to my teacher about it, maybe it was a trick question
I doubt it. Methinks your teacher wants you to use fflush(stdin).

>or maybe she just meant Linux and Windows.
In that case, see my previous reply.
New members chased away this month: 4
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:




Views: 6485 | Replies: 10
Thread Tools Search this Thread



Tag cloud for C++
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC