sc: correctly recursive through all data references in upgrades
[sheet.git] / sc.plp
diff --git a/sc.plp b/sc.plp
index c8be6c7cebb55dfa42a6548661f40572ca54a741..0a0f16173be95073323877a3b213622b9aff0e0a 100644 (file)
--- a/sc.plp
+++ b/sc.plp
@@ -48,27 +48,22 @@ my $patch = shift @{$units}
 
 print "<p>Unit properties as seen or measured in $scver{name}\n$patch.\n</p>\n\n";
 
+sub addupgrade {
+       my ($ref, $increase) = @_;
+       if (ref $increase eq 'HASH') {
+               addupgrade(\${$ref}->{$_}, $increase->{$_}) for keys %{$increase};
+       }
+       elsif (ref $increase eq 'ARRAY') {
+               addupgrade(\${$ref}->[$_], $increase->[$_]) for 0 .. $#{$increase};
+       }
+       ${$ref} += $increase if $increase =~ /^-?[0-9.]+/;
+}
+
 for my $unit (@{$units}) {
-       for my $upgrade (@{ $unit->{upgrade} // $unit->{update} // [] }) {
+       for my $upgrade (@{ $unit->{upgrade} }) {
                while (my ($col, $increase) = each %{$upgrade}) {
                        defined $unit->{$col} or next;
-
-                       if (ref $increase eq 'ARRAY') {
-                               for my $incrow (0 .. $#{$increase}) {
-                                       while (my ($inccol, $subinc) = each %{ $increase->[$incrow] }) {
-                                               $unit->{upgraded}->{$col}->[$incrow]->{$inccol}
-                                                       //= ref $unit->{$col}->[$incrow]->{$inccol}
-                                                                 ? $unit->{$col}->[$incrow]->{$inccol}->[-1]
-                                                                 : $unit->{$col}->[$incrow]->{$inccol};
-                                               $unit->{upgraded}->{$col}->[$incrow]->{$inccol}
-                                                       += ref $subinc ? $subinc->[-1] : $subinc;
-                                       }
-                               }
-                       }
-                       elsif ($increase =~ /^-?[0-9.]+/) {
-                               $unit->{upgraded}->{$col} //= $unit->{$col};
-                               $unit->{upgraded}->{$col}  += $increase;
-                       }
+                       addupgrade(\( $unit->{upgraded}->{$col} //= $unit->{$col} ), $increase);
                }
        }
 }
@@ -128,11 +123,12 @@ sub showrange {
                $out .= '">';
 
                my $upattack = $row->{upgraded}->{attack}->[$area];
-               my $maxdamage =
                my $damage = $attack->{damage};
-               ($damage, $maxdamage) = ($damage->[0], $upattack->{damage} // $damage->[-1])
-                       if ref $damage;
+               my $maxdamage = $upattack->{damage} // $damage;
+               $damage = $damage->[0] if ref $damage;
+               $maxdamage = $maxdamage->[-1] if ref $maxdamage;
 
+               $out .= "<small>$attack->{count}× </small>" if $attack->{count} > 1;
                $out .= showrange($damage, $maxdamage);
                $out .= sprintf('<span class="unit-splash" title="%s">%s</span>',
                        $attack->{splash} eq 'line' ? ('linear', '×') : ('splash', '+')