ASCII-Pony/render_parts.php
Mattia Basaglia 644a43e5f5 Applejack
2013-11-08 10:57:46 +01:00

51 lines
1.2 KiB
PHP
Executable file

#!/usr/bin/php
<?php
$dir = isset($argv[1]) ? $argv[1] : getcwd();
$dir_files = scandir($dir);
$files = array();
$maxw = 0;
$maxh = 0;
foreach($dir_files as $file)
{
if ( preg_match("/([0-9]+;)*[0-9]+/",$file) !== false )
{
$curr_file = file("$dir/$file",FILE_IGNORE_NEW_LINES);
$files[$file] = $curr_file;
foreach($curr_file as &$line)
{
$line = rtrim($line);
$w = strlen($line);
if ( $w> $maxw )
$maxw = $w;
}
$h = count($curr_file);
if ( $h > $maxh )
$maxh = $h;
}
}
$chars=array_fill(0,$maxh,array_fill(0,$maxw,null));
foreach ( $files as $color => $lines )
for ( $i = 0; $i < count($lines); $i++ )
{
for ( $j = 0, $l = strlen($lines[$i]); $j < $l; $j++ )
{
if ( $lines[$i][$j] != ' ' )
$chars[$i][$j] = array("color"=>$color,"char"=>$lines[$i][$j]);
}
}
foreach($chars as $line)
{
foreach($line as $char)
{
if ( is_null($char) )
echo ' ';
else
echo "\x1b[$char[color]m$char[char]";
}
echo "\n";
}
echo "\x1b[0m\n";