Acme::AsciiArtinator - Embed Perl code in ASCII artwork
0.04
use Acme::AsciiArtinator; asciiartinate( { art_file => "ascii.file", code_file => "code.pl", output => "output.pl" } );
Embeds Perl code (or at least gives it a good college try) into a piece of ASCII artwork by replacing the non-whitespace (we'll refer to non-whitespace
a lot in this document, so let's just call it darkspace
for convenience) characters of an ASCII file with the characters of a Perl script. If necessary, the code is modified (padded) so that blocks of contiguous characters (keywords, quoted strings, alphanumeric literals, etc.) in the code are aligned with at least the minimum number of contiguous darkspace characters in the artwork.
Suppose we have a file called spider.pl
with the following code:
&I();$N=<>;@o=(map{$z=${U}x($x=1+$N-$_); ' 'x$x.($".$F)x$_.($B.$z.$P.$z.$F).($B.$")x$_.$/} 0..$N);@o=(@o,($U.$F)x++$N.($"x3).($B.$U)x$N.$/); print@o; sub I{($B,$F,$P,$U)=qw(\\ / | _);} while($_=pop@o){y'/\\'\/';@o||y#_# #;$t++||y#_ # _#;print}
What this code does is read one value from standard input and draws a spider web of the given size:
$ echo 5 | perl spiders.pl \______|______/ /\_____|_____/\ / /\____|____/\ \ / / /\___|___/\ \ \ / / / /\__|__/\ \ \ \ / / / / /\_|_/\ \ \ \ \ _/_/_/_/_/_/ \_\_\_\_\_\_ \ \ \ \ \ \___/ / / / / / \ \ \ \ \/_|_\/ / / / / \ \ \ \/__|__\/ / / / \ \ \/___|___\/ / / \ \/____|____\/ / \/_____|_____\/ / | \
Suppose we also have a file called spider.ascii
that looks like:
; , ,; '. ;: :; :: :: :: :: ': : :. : ;' :: :: ' .' '; ;' '. :: :; ;: :: ; :;. ,;: :: :; :;: ,;" :: ::. ':; ..,.; ;:' ,.;: "'"... '::,::::: ;: .;.;""' '"""....;:::::;,;.;""" .:::.....'"':::::::'",...;::::;. ;:'.'""'"";.,;:::::;.'"""""". ':; ::' ;::;:::;::.. :; ::. ,;:::::::::::;:.. :: ;' ,;;:;::::::::::::::;";.. ':. :: ;:" ::::::"__':::::: ": :: :. :: ::::::;__::::::: :: .; ; :: :::::::__::::::: : ; ' :: ::::::....:::::' ,: ' ' :: :::::::::::::" :: :: ':::::::::"' :: ': """""""' :: :: ;: ':; ;:" '; ,;' "' '"
And now suppose that we think it would be pretty cool if the code that draws spider webs on the screen actually looked like a spider. Well, this is a job for the Acme::AsciiArtinator.
Let's code up a quick script that just says:
use Acme::AsciiArtinator; asciiartinate( art_file => "spiders.ascii", code_file => "spiders.pl", output => "spider-art.pl" );
and run it.
If this works (and it might not, for a variety of reasons), we will get a new file called spider-art.pl
that looks something like:
& I () ;$ N= <> ;; ;; ;; ;; ;; ; ;; ; ;; ;; ;; ; ;; ;; ;; ;; ;; ;; ;@ o= ( map {$z =$ {U }x( $x= 1+ $N- $_) ;' 'x $x. ($". $F)x$_ .($B.$z.$ P. $z.$F). ($B.$")x$_.$/}0..$N);@ o=(@o,($U.$F)x++$N.($"x3).($B.$U )x$N.$/);;;;print@o;;;sub I{( $B, $F, $P,$U)=qw(\\ / | _);;}while($_=pop @o ){ y'/\\'\/';;;@o||y#_# #;; ;;; ;$ t++ ||y#_ # _#;print }# ## ## ## ################ ## ## # ## ################ # # # ## ################ ## # # ## ############## ## ## ############ ## ## ######## ## ## ## ### ### ## ### ## ##
Hey, that was pretty cool! Let's see if it works.
$ echo 6 | perl spider-art.pl \_______|_______/ /\______|______/\ / /\_____|_____/\ \ / / /\____|____/\ \ \ / / / /\___|___/\ \ \ \ / / / / /\__|__/\ \ \ \ \ / / / / / /\_|_/\ \ \ \ \ \ _/_/_/_/_/_/_/ \_\_\_\_\_\_\_ \ \ \ \ \ \ \___/ / / / / / / \ \ \ \ \ \/_|_\/ / / / / / \ \ \ \ \/__|__\/ / / / / \ \ \ \/___|___\/ / / / \ \ \/____|____\/ / / \ \/_____|_____\/ / \/______|______\/ / | \
To fill in the shape of the spider, we inserted whitespace, semi-colons, sharps, and maybe the occasional {
}
pair into the original code. Certain blocks of text, like print
, while
, and y#_ # _#
are kept intact since splitting them would cause the program to either fail to compile or to behave differently.
The ASCII Artinator tokenizes the code and does its best to identify
These include alphanumeric literals, quoted strings, and most regular expressions.
The next step is to try to align the tokens from the code with enough contiguous blocks of darkspace in the art. When a token is misaligned, we attempt to align it by inserting some padding at some point in the code before that token.
There are currently two ways that we pad the code. Each time there is a need to pad the code, we randomly choose a padding method and randomly choose an eligible position for padding.
In general, we can put as many semi-colons as we like at the beginning or end of statements. The following lines of code should all do the same thing:
$a=$b+$c;$d=4 $a=$b+$c;;;;;;$d=4;;;;;; ;;;;;;;;;$a=$b+$c;;;;;;;;$d=4;
In general, we can replace $name
with ${name}
and the code will run the same.
There are several other interesting ways to pad code (putting parentheses around expressions, adding and or-ing zeros to expressions, using quoted strings in a void context) that may be put to use in future versions of this module.
When all tokens from the code are successfully aligned with the blocks of darkspace from the artwork, we can paste the code on top of the art and write the output file.
Sometimes we insert too many characters without successfully aligning the tokens and darkspace blocks (and actually in the spider example, this happens about 90% of the time). If this happens, we will start over and retry up to 100 times.
Certain coding practices will increase the chance that Acme::AsciiArtinator
will be able to embed your code in the artwork of your choice. In no particular order, here are some suggestions:
Make sure the code compiles and test it to see if it works like you expect it to before running the ASCII Artinator. It would be frustrating to try to debug an artinated script only to later realize that there was some bug in the original input.
This module won't handle comments very well. There's no way to stop the ASCII Artinator from splitting your comment across two lines and breaking the code.
In addition to making the code longer and thus more difficult to align, any whitespace in your code will be printed out as space over a darkspace in the art and put a "hole" in your picture. It would be nice if there was a way to align the whitespace in the code with the whitespace in the art, but that is probably something for a far future version.
Newlines are stripped from the code before the code is tokenized. If there are any significant newlines (I mean the literal 0x0a char. It should still be OK to say print"\n"
), then the artinated code will run differently.
Quoted strings are parsed as a single token. Consider ways to break them up so that can be split into multiple tokens. For example, instead of saying $h="Hello, world!";
, we could actually say something like:
&I;($c,$e)=qw(, !);$h=H.e.l.l.o.$c.$".W.o.r.l.d.$e;
The modified code is a lot longer, but this code can be split at any point except in the middle of qw
, so it is much more flexible code from the perspective of the Artinator.
In the spider example, we see that the largest contiguous blocks of darkspace are in the center of the spider, and at the beginning and end of the spider art, there are many smaller blocks of darkspace. In this case, code that has large tokens in the middle or near the end of the code will be more flexible than code with large tokens in the beginning of the code. So for example, we are better off writing
@o=(map ... );print@o
than
print@o=(map ... )
even through the latter code is a little shorter.
The asciiartinate
method supports the following options:
Specifies the ASCII artwork that we'll try to embed code into. At least one of art
, art_string
, art_file
must be specified.
Specifies the Perl code that we will try to embed into the art. At least one of code
, code_string
, code_file
must be specified.
Specifies the output file for the embedded code. If omitted, output is written to the file "ascii-art.pl" in the current directory.
Runs the Perl interpreter with the -cw
flags on the original code string and asserts that the code compiles.
Causes the ASCII Artinator to display verbose messages about what it is trying to do while it is doing what it is trying to do.
Executes the original and the artinated code and compares the output to make sure that the artination process did not change the behavior of the code. A separate test will be conducted for every test_argv<NNN>
parameter passed to the asciiartinate
method. The arguments associated with each parameter will be passed to the code as command-line arguments.
Executes the original and the artinated code and compares the output to make sure that the artination process did not change the behavior of the code. A separate test will be conducted for every test_input<NNN>
parameter passed to the asciiartinate
method. The data associated with each parameter will be passed to the standard input of the code.
Lots of future enhancements are possible:
Probably lots.
If you liked this module, you might also get a kick out of Acme::EyeDrops.
Marty O'Brien, <mob@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.