| Roguelike-Utils documentation | view source | Contained in the Roguelike-Utils distribution. |
Games::Roguelike::Console::ANSI - socket-friendly, object oriented curses-like support for an ansi screen buffer
use Games::Roguelike::Console::ANSI;
$con = Games::Roguelike::Console::ANSI->new();
$con->attron('bold yellow');
$con->addstr('test');
$con->attroff();
$con->refresh();
Allows a curses-like ansi screen buffer that works on win32, and doesn't crash when used with sockets like the perl ncurses does.
Inherits from Games::Roguelike::Console. See Games::Roguelike::Console for list of methods.
Uses Term::ANSIColor for colors.
Erik Aronesty earonesty@cpan.org
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html or the included LICENSE file.
| Roguelike-Utils documentation | view source | Contained in the Roguelike-Utils distribution. |