in reply to The Matrix Reloaded: JAPH

davido++! very nice. I was working on something like this but never got around to finishing it. Too bad because I knew that someone would do it eventually :)

Something that you might be able to add: if the terminal supports it you can add the correct escape sequences to get some green color like so:

# there may be some others but these are the ones I know of if($ENV{TERM} =~ /linux|xterm|xterm-color|vt220|ansi/) { $color = 1; } # assuming $char is the character you are about to print $char = "\33[0;32m$char\33[0m" if $color;

\33[ is the escape 0;<nn>m is the color (32 is green 30 - 39 seem to be the only ones that work) the \33[0m at the end returns it to the default white.

Hope you find that interesting :)

Lobster Aliens Are attacking the world!

Replies are listed 'Best First'.
Re: Re: The Matrix Reloaded: JAPH
by Anonymous Monk on Sep 02, 2003 at 15:13 UTC
    in Windows 2000 you can use the line
    system ("color 0A");
    to turn the color to black background, green foreground.
      You mean black bg and green fg isn't your default color scheme on Win2K?
      :-)

      Believe nothing, no matter where you read it, or who said it - even if I have said it - unless it agrees with your own reason and your own common sense. -- Buddha
      Thanks for the color tip... I was able to sucessfully use it on an old system with a crappy monitor, and people said 'howdya do that?!' :)

      ----
      Zak