X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=quacks-ingredients-counts;h=cf883af99e3ac88517651c06c7abc29efea6b398;hb=32ee83f4e973cc9b70bb35fc0aa16ee7a5ac9e25;hp=3e49a9528c227f2b1a8c48ae3cced84429741a78;hpb=69a6019826250503f268a39e0adca8eae7b83936;p=reprap-play.git diff --git a/quacks-ingredients-counts b/quacks-ingredients-counts index 3e49a95..cf883af 100755 --- a/quacks-ingredients-counts +++ b/quacks-ingredients-counts @@ -5,8 +5,11 @@ use strict; use Data::Dumper; use POSIX; +our $which = shift @ARGV; + sub xdata ($) { my ($cb) = @_; + return unless $which eq 'Base'; foreach my $count (qw(1 2 3)) { foreach my $nspots (qw(1 2 3 4)) { $_ = $cb->($count,$nspots)."\t".$_; @@ -27,14 +30,25 @@ foreach my $nspots (qw(1 2 3 4)) { $_=; chomp or die; xdata sub { my ($xcount,$xnspots) = @_; - $xnspots == $nspots and $xcount; + $xnspots == $nspots and "$xcount+0"; }; my @l = split /\t/, $_; - foreach my $i (0..$#names) { $count{$names[$i]}{$nspots} = $l[$i] || 0; } + foreach my $i (0..$#names) { + $_ = $l[$i] || '0+0'; + $_ ||= 0; + m/\+/; + + $count{$names[$i]}{$nspots} = + $which eq 'All' ? $` + $' : + $which eq 'Base' ? $` : + $which eq 'Witches' ? $' : + die "$which ?"; + } } $_ = Dumper(\%count); s{^}{// }mg; +#print STDERR; our $name; our $total_count; @@ -43,7 +57,7 @@ our $max_nrows=0; our $max_rowsz=0; sub wrtoplevel () { - print "module $name(){ ////toplevel\n"; + print "module ${which}_$name(){ ////toplevel\n"; my $cs = $count{$name}; my $total = 0; $total += $_ foreach values %$cs; my $rowsz = ceil(sqrt($total)); @@ -53,8 +67,8 @@ sub wrtoplevel () { $max_nrows = $nrows if $nrows > $max_nrows; $max_rowsz = $rowsz if $rowsz > $max_rowsz; my $ix = 0; - printf "// %-10s total=%2d rowsz=$rowsz nrows=$nrows\n", - "$name", $total; + printf "// %s %-10s total=%2d rowsz=$rowsz nrows=$nrows\n", + $which, "$name", $total; foreach my $nspots (sort keys %$cs) { my $c = $cs->{$nspots}; print <error and die $!; __DATA__ White Green Blue Red Yellow Purple Black Orange -20 15 14 12 13 15 18 20 -8 10 10 8 6 -4 - 13 10 10 10 +20+6 15+10 14+8 12+6 13+6 15+8 18+8 20+12 +8+3 10+5 10+5 8+5 6+5 +4+2 + 13+5 10+5 10+5 10+5