mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-23 04:47:59 +01:00
Rewrote ponysaylist.pl.
This commit is contained in:
parent
39f455eea7
commit
a30723e36d
1 changed files with 21 additions and 52 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# ponysaylist
|
# ponysaylist
|
||||||
# Prints a list of ponies in columns
|
# Prints a list of ponies in columns
|
||||||
|
@ -9,63 +9,32 @@
|
||||||
# Author: Mattias Andrée, maandree@kth.se
|
# Author: Mattias Andrée, maandree@kth.se
|
||||||
|
|
||||||
|
|
||||||
$first = 1;
|
use strict;
|
||||||
$scrw = 1;
|
use warnings;
|
||||||
$maxw = 1;
|
use utf8;
|
||||||
|
use feature qw(say);
|
||||||
|
use integer;
|
||||||
|
use List::Util qw(max);
|
||||||
|
|
||||||
foreach $arg (@ARGV)
|
my $scrw = shift @ARGV;
|
||||||
{
|
|
||||||
|
for (@ARGV) {
|
||||||
# Format names from ponyies names
|
# Format names from ponyies names
|
||||||
$arg =~ s/([a-z])([A-Z])/\1 \2/;
|
s/(?<=[a-z])(?=[A-Z])/ /;
|
||||||
#$arg =~ s/_(.*)/\t(\1)/; ## Incompatible with `ponysay -L`
|
s/_(.*)/\t($1)/;
|
||||||
|
|
||||||
if ($first == 1)
|
|
||||||
{ $first = 0;
|
|
||||||
$scrw = $arg;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{ $w = length $arg;
|
|
||||||
$maxw = $w if ($w > $maxw);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$cols = int (($scrw + 2) / ($maxw + 2));
|
my $maxw = max map {length} @ARGV;
|
||||||
$cols = 1 if ($cols < 1);
|
|
||||||
|
|
||||||
|
my $cols = max 1, (($scrw + 2) / ($maxw + 2));
|
||||||
|
|
||||||
@list = ();
|
my @list = map {sprintf "%-${maxw}s", $_} @ARGV;
|
||||||
|
|
||||||
$first = 1;
|
my $rows = (@list + $cols - 1) / $cols;
|
||||||
$items = 0;
|
|
||||||
foreach $arg (@ARGV)
|
my @rowlist;
|
||||||
{
|
for my $i (0 .. $#list) {
|
||||||
if ($first == 1)
|
push @{$rowlist[$i % $rows]}, $list[$i];
|
||||||
{ $first = 0;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{ $ws = $maxw - (length $arg);
|
|
||||||
push @list, $arg.(" "x$ws);
|
|
||||||
$items += 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$rows = int (($items + $cols - 1) / $cols);
|
|
||||||
$i = 0;
|
|
||||||
@rowlist = ();
|
|
||||||
|
|
||||||
while ($i < $items)
|
|
||||||
{ $row = 0;
|
|
||||||
while (($row < $rows) and ($i < $items))
|
|
||||||
{
|
|
||||||
$rowlist[$row] .= " " unless ($i < $rows);
|
|
||||||
$rowlist[$row] .= $list[$i];
|
|
||||||
$row += 1;
|
|
||||||
$i += 1;
|
|
||||||
} }
|
|
||||||
|
|
||||||
foreach $row (@rowlist)
|
|
||||||
{
|
|
||||||
print $row."\n";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
say join ' ', @$_ for @rowlist;
|
||||||
|
|
Loading…
Reference in a new issue