Games::Roguelike::Console::ANSI - socket-friendly, object oriented curses-like support for an ansi screen buffer


Roguelike-Utils documentation  | view source Contained in the Roguelike-Utils distribution.

Index


NAME

Top

Games::Roguelike::Console::ANSI - socket-friendly, object oriented curses-like support for an ansi screen buffer

SYNOPSIS

Top

 use Games::Roguelike::Console::ANSI;

 $con = Games::Roguelike::Console::ANSI->new();
 $con->attron('bold yellow');
 $con->addstr('test');
 $con->attroff();
 $con->refresh();

DESCRIPTION

Top

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.

SEE ALSO

Top

Games::Roguelike::Console

AUTHOR

Top

Erik Aronesty earonesty@cpan.org

LICENSE

Top

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.