X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/1d8f89a77c6bb11649e0a7179e65fe339c419451..aac22478e6a264e504af77c87af6db144daabc68:/sc.plp diff --git a/sc.plp b/sc.plp index 7174228..9c271be 100644 --- a/sc.plp +++ b/sc.plp @@ -1,36 +1,53 @@ <(common.inc.plp)><: -my $datafile = 'sc-units.inc.pl'; +my %scver = ( + id => 'bw', + name => 'Brood War', + title => 'starcraft', + game => 'StarCraft', + major => 1, +); + if ($ENV{PATH_INFO} and $ENV{PATH_INFO} eq '/2') { - $datafile = 'sc2-units.inc.pl'; + %scver = ( + id => 'hots', + name => 'Heart of the Swarm', + title => 'starcraft2', + game => 'StarCraft II', + major => 2, + ); } +my $datafile = "sc-units-$scver{id}.inc.pl"; Html({ - title => 'starcraft unit cheat sheet', - version => 'v1.0', + title => "$scver{title} unit cheat sheet", + version => 'v1.1', description => [ - 'Reference of StarCraft unit properties,' - . ' comparing various statistics of all the units in Brood War' + "Reference of $scver{game} unit properties," + . " comparing various statistics of all the units in $scver{name}" . ' including costs, damage, defense, speed, ranges, and abilities.', ], - keywords => [qw' + keywords => [ + qw' starcraft game unit statistics stats comparison table sheet cheat reference software attributes properties - '], + ', + $scver{major} < 2 ? qw' bw broodwar brood war ' : qw' starcraft2 hots ', + ], stylesheet => [qw'light'], raw => '', data => [$datafile], }); -:> -

StarCraft units

+print "

$scver{game} units

\n\n"; -

-Unit properties as seen or measured in Brood War -version≥1.08. -

+my $units = do $datafile; +die "Cannot open unit data: $_\n" for $@ || $! || (); +my $patch = shift @{$units} + or die "Cannot open unit data: metadata not found\n"; + +print "

Unit properties as seen or measured in $scver{name}\n$patch.\n

\n\n"; -<: sub coltoggle { my ($name, $id) = @_; return sprintf( @@ -46,12 +63,14 @@ sub coltoggle { min gas <:= coltoggle(qw'build cost') :> - <:= coltoggle(qw'size size') :> + <:= coltoggle(qw'size size') :> HP shield - armor - ground - air + ⛨ + ground + dps + air + dps range sight speed @@ -147,8 +166,11 @@ sub showval { $_->{desc} ? ": $_->{desc}" : '', $_->{range} || $_->{cost} ? sprintf(' (%s)', join ', ', $_->{range} ? "range $_->{range}" : (), - $_->{cost} ? sprintf('cost %.0f%%', - 100 * $_->{cost} / $row->{energy} + $_->{cost} ? sprintf('cost %.0f%%%s', + 100 * $_->{cost} / $row->{energy}, + defined $_->{maint} && sprintf('+%.1f%%/s', + 100 * $_->{maint} / $row->{energy}, + ), ) : (), ) : '', ), @@ -161,9 +183,24 @@ sub showval { local $_ = $row; $_->{hp} += $_->{shield} if $_->{shield}; my $suitchar = ''; - if ($_->{suit}) { + if ($_->{attr}->{structure}) { + $suitchar = 'b'; + } + elsif ($_->{suit}) { $suitchar = [qw/? s m l/]->[$_->{suit}]; } + elsif ($_->{cargo} > 0) { + $suitchar = [qw/? s m l l h h h h/]->[abs $_->{cargo}]; + } + elsif ($_->{size}) { + $suitchar = [qw/s m l h h h/]->[$_->{size}]; + } + elsif ($_->{attr} and $_->{attr}->{light}) { + $suitchar = 's'; + } + elsif ($_->{attr} and $_->{attr}->{armored}) { + $suitchar = 'l'; + } return ( '' . ($_->{min} // ''), @@ -173,20 +210,28 @@ sub showval { $_->{build} || '0', ), !$suitchar ? '' : sprintf('%s', $suitchar, ucfirst $suitchar), - '' . join('', - defined $_->{unit} && $_->{unit} == .5 ? '½' : $_->{unit}, - defined $_->{organic} && sprintf( - '%s', - $_->{organic} ? 'o' : 'u', - $_->{organic} ? 'organic' : 'mechanic', - $_->{organic} ? 'o' : 'm', - ), + '' . ( + defined $_->{unit} && $_->{unit} == .5 ? '½' : $_->{unit} ), - '' . $_->{hp} // '', - '' . ( - $_->{shield} ? sprintf('%.0f%%', 100 * $_->{shield} / $_->{hp}) : ' ' + '' . join('', grep { $_ } + (defined $_->{organic} ? !$_->{organic} : $_->{attr}->{mech}) + && 'm', + ($_->{organic} || $_->{attr}->{organic}) + && 'o', + $_->{attr}->{psionic} + && 'ψ', ), - '' . showval($_, 'armor'), + '' . join('', grep { $_ } + $_->{attr}->{armored} + && 'A', + $_->{attr}->{light} + && 'L', + ), + '' . $_->{hp} // '', + $_->{shield} ? sprintf('%.0f%%{shield} / $_->{hp} + ) : '' . showval($_, 'armor'), showattack($_, 'ground'), showattack($_, 'air'), '' . showval($_, 'attack', 'range'), @@ -195,13 +240,13 @@ sub showval { showval($_, 'sight') ), '' . showval($_, 'speed'), + $_->{attr}->{massive} + && '⚓', '' . showmagic($_), "\n" ); } - my $units = do $datafile; - die "Cannot open unit data: $_\n" for $@ || $! || (); my $grouped = 1; # race headers if (exists $get{order}) { $grouped = 0; @@ -222,7 +267,7 @@ sub showval { my ($race, $cat) = ('', ''); for (@rows) { if ($grouped) { - printf '

%s

'."\n", + printf '

%s

'."\n", $race = $_->{race}, ucfirst $race unless $race eq $_->{race}; } @@ -260,11 +305,30 @@ sub showval {
excludes construction of dependencies such as buildings and +parent units
size -
affected by Small, - Medium, - or Large unit damage +
<: +if ($scver{major} > 1) { + :>transports can fit 8 Small, + 4 Medium, + 2 Large, + or a single Huge unit<: +} else { + :>affected by Small, + Medium, or + Large unit damage<: +} :>
number of command points taken per unit -
organic/mechanic unit +
<: +if ($scver{major} > 1) { + :>received damage depends on + organic, + mechanic, + ψ(ps)ionic, + Light, and + Armored + attributes<: +} else { + :>organic/mechanic unit<: +} :>
HP
total number of hitpoints (including shields)
shield