X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/85d30226bf2643c24aa27e576bcbf0045e66f461..refs/heads/master:/sc.plp diff --git a/sc.plp b/sc.plp index c929c9a..e784cbd 100644 --- a/sc.plp +++ b/sc.plp @@ -20,18 +20,25 @@ my %scvers = ( game => 'StarCraft II LotV', major => 2, }, + index => 'bw', + 1 => 'bw', + 2 => 'lotv', ); -$Request ||= 'bw'; -$Request = 'lotv' if $Request eq '2'; -my %scver = %{ $scvers{$Request} } - or Abort("Requested version $Request not available", '404 unknown'); +my $requestver = $scvers{$Request ||= 'index'} + or Html(), Abort("Requested version $Request not available", '404 request not found'); -my $datafile = "sc-units-$Request.inc.pl"; +if (ref $requestver ne 'HASH') { + $header{Location} = "/sc/$requestver"; + Abort("Canonical URL for $Request is at $requestver", '302 subpage alias'); +} + +my %scver = %{$requestver}; +my $datafile = "sc-units-$Request"; Html({ title => "$scver{title} unit cheat sheet", - version => '1.2', + version => '1.4', description => [ "Reference of $scver{game} unit properties," . " comparing various statistics of all the units in $scver{name}" @@ -45,15 +52,14 @@ Html({ $scver{major} < 2 ? qw' bw broodwar brood war ' : qw' starcraft2 lotv hots wol ', ], - stylesheet => [qw'light'], + stylesheet => [qw( light dark )], raw => '', - data => [$datafile], + data => ["$datafile.inc.pl"], }); say "

$scver{game} units

\n"; -my $units = do $datafile; -Abort("Cannot open unit data", 501, $_) for $@ || $! || (); +my $units = Data($datafile); my $patch = shift @{$units} or Abort("Cannot open unit data: metadata not found", 501); @@ -172,24 +178,26 @@ sub showrangeint { if $attack->{type} eq 'implosive'; if (my @bonus = sort grep { !/^-/ } keys %{ $attack->{bonus} }) { $out .= sprintf('', - (map { + ( $_ eq 'light' ? 'unit-s' : $_ eq 'armored' ? 'unit-l' : $_ eq 'organic' ? 'unit-o' : $_ eq 'massive' ? 'unit-h' : $_ eq 'shields' ? 'unit-shield' : + $_ eq 'structure' ? 'unit-x' : '', - } join '_', @bonus), - join(', ', map {( + ), + ( sprintf('+%s vs %s', showrangeint( $attack->{bonus}->{$_}, - $attack->{bonus}->{$_} + $attack->{bonus}->{"-$_"} * 3, + ($upattack->{bonus} // $attack->{bonus})->{$_} + + ($upattack->{bonus} // $attack->{bonus})->{"-$_"} * 3, ), $_, ), - )} @bonus), - ); + ), + ) for @bonus; } $out .= '•' if $attack->{type} eq 'projectile'; @@ -243,9 +251,12 @@ sub showrangeint { my $specials = $row->{special} or return ''; return join ' ', map { sprintf '%s', - $_->{duration} < 0 && ' class="magic-perma"', join('', - $_->{name}, + $_->{duration} < 0 && ' class="magic-perma"', + $_->{detect} && ' class="unit-detect"', + ), + join('', + $_->{name} // $_->{alt}, $_->{desc} ? ": $_->{desc}" : '', (map { $_ && " ($_)" } join ', ', #TODO: apply upgrades @@ -270,7 +281,7 @@ sub showrangeint { $_->{transform}, ) : !defined $_->{build} ? '' : sprintf('%s%.0f', - defined $_->{warp} && qq(title="$_->{build} without warpgate"), + defined $_->{warp} && sprintf(' title="%.0f without warpgate"', $_->{build}), !!$_->{base} && sprintf( '+', 'from '.join('+', @{ $_->{base} }), @@ -348,12 +359,11 @@ sub showrangeint { $_->{attr}->{jump} && qq'↕', '' . showmagic($_), - !$_->{attack}->[1] ? () : ( - '', showattack($_, 1), '' - ), - !$_->{attack}->[2] ? () : ( - '', showattack($_, 2), '' - ), + (map {( + '', + showattack($row, $_), + '', + )} 1 .. $#{ $_->{attack} }), "\n" ); } @@ -366,11 +376,6 @@ sub showrangeint { if ($get{order} eq 'name') { @rows = sort {$a->{name} cmp $b->{name}} @rows; } - elsif ($get{order} eq 'hp') { - $_->{order} = ( - $_->{hp}*1.01 + $_->{armor} + $_->{shield} + $_->{size}/1024, - ) for @rows; - } elsif ($get{order} eq 'cost') { $_->{order} = ( $_->{gas}*1.5 + $_->{min} + $_->{pop}/8 + $_->{build}/256/8 @@ -391,8 +396,13 @@ sub showrangeint { + $_->{hp}/512 + $_->{min}/8192 ) for @rows; } + elsif ($get{order} eq 'hp') { + $_->{order} = ( + $_->{hp}*1.01 + $_->{armor} + $_->{shield} + $_->{size}/1024, + ) for @rows; + } elsif ($get{order} eq 'attack') { - $_->{order} = $_->{hp} / 1024 + $_->{shield} / 1008 + max( + $_->{order} = $_->{hp} / 16384 + max( map { ($_->{dps} ? $_->{dps}->[-1] : ($_->{damage} + $_->{upgrade} * 3)