The file handle going into the Win32 Console doesn't do ANSI terminal controls or anything like that.

But, it looks like Win32::ANSIConsole is a wrapper to intercept the control codes and call the Console API to do things between sending the output on to the real device handle. It looks like exactly what you need.

If that's too rough for you, get inspiration from it. Write your own filehandle tie that calls the Win32::Console commands to position the cursor, draw text, change colors, etc.

Hmm, I wonder why nobody has written something you can pipe into that does this.

For another idea, I just did some colorized output in a program, but was using a Tk text window for the output, along with some GUI buttons and indicators. You might want to do that, so you can implement your status indicator plus a colored console within a window, rather than using a TTY.

—John


In reply to Re: Stupid console tricks (or color highlighted tail) by John M. Dlugosz
in thread Stupid console tricks (or color highlighted tail) by icius

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.