Shawn M Moore > Tie-Handle-TtyRec > Tie::Handle::TtyRec

Download:
Tie-Handle-TtyRec-0.03.tar.gz

Dependencies

Annotate this POD

Website

CPAN RT

Open  0
Report a bug
Module Version: 0.03   Source  

NAME ^

Tie::Handle::TtyRec - write a ttyrec

SYNOPSIS ^

    use Tie::Handle::TtyRec;
    my $handle = Tie::Handle::TtyRec->new("foo.ttyrec");
    print $handle "hello", "world";

DESCRIPTION ^

A ttyrec is a format used for recording terminal sessions. Notably, practically all NetHack games are recorded using ttyrecs. ttyrecs include precise timing data and can be a little fiddly. This module lets you focus on your application, instead of making sure your ttyrec headers are perfect.

The usual way to use this module is through its new interface. It will clobber the file you decide to record to. A way of allowing you to instead append will be included in a future version.

Each argument to print will be put into its own ttyrec frame, using the current time. So, the following will create three separate frames,

    print $handle "foo", "bar", "baz";

The following will create only one frame,

    print $handle "foo" . "bar" . "baz";

SEE ALSO ^

Term::TtyRec, Term::TtyRec::Plus

AUTHOR ^

Shawn M Moore, sartak@gmail.com

COPYRIGHT AND LICENSE ^

Copyright 2007-2009 Shawn M Moore.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.