Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: The Matrix Reloaded: JAPH

by cfreak (Chaplain)
on Sep 02, 2003 at 14:42 UTC ( [id://288324]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://288324]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-16 11:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found