sc: rename showrange() to prepare for non-integer reuse
[sheet.git] / sc.plp
1 <(common.inc.plp)><:
2 use List::Util qw(max sum);
3
4 my %scver = (
5         id => 'bw',
6         name => 'Brood War',
7         title => 'starcraft',
8         game => 'StarCraft',
9         major => 1,
10 );
11
12 if ($ENV{PATH_INFO} and $ENV{PATH_INFO} eq '/2') {
13         %scver = (
14                 id => 'hots',
15                 name => 'Heart of the Swarm',
16                 title => 'starcraft2',
17                 game => 'StarCraft II',
18                 major => 2,
19         );
20 }
21 my $datafile = "sc-units-$scver{id}.inc.pl";
22
23 Html({
24         title => "$scver{title} unit cheat sheet",
25         version => 'v1.1',
26         description => [
27                 "Reference of $scver{game} unit properties,"
28                 . " comparing various statistics of all the units in $scver{name}"
29                 . ' including costs, damage, defense, speed, ranges, and abilities.',
30         ],
31         keywords => [
32                 qw'
33                 starcraft game unit statistics stats comparison table sheet cheat
34                 reference software attributes properties
35                 ',
36                 $scver{major} < 2 ? qw' bw broodwar brood war ' : qw' starcraft2 hots ',
37         ],
38         stylesheet => [qw'light'],
39         raw => '<link rel="stylesheet" type="text/css" media="all" href="/sc.css?1.1" title="light">',
40         data => [$datafile],
41 });
42
43 print "<h1>$scver{game} units</h1>\n\n";
44
45 my $units = do $datafile;
46 die "Cannot open unit data: $_\n" for $@ || $! || ();
47 my $patch = shift @{$units}
48         or die "Cannot open unit data: metadata not found\n";
49
50 print "<p>Unit properties as seen or measured in $scver{name}\n$patch.\n";
51 print "Also see the $_ table.\n" for join(', ',
52         ('<a href="/sc/2">StarCraft 2: HotS</a>')    x ($scver{major} < 2),
53         ('<a href="/sc">original SC: Brood War</a>') x ($scver{major} > 1),
54 );
55 print "</p>\n\n";
56
57 sub addupgrade {
58         my ($ref, $increase, $org) = @_;
59         if (ref $increase eq 'HASH') {
60                 addupgrade(\${$ref}->{$_}, $increase->{$_}, $org->{$_}) for keys %{$increase};
61         }
62         elsif (ref $increase eq 'ARRAY') {
63                 addupgrade(\${$ref}->[$_], $increase->[$_], $org->[$_]) for 0 .. $#{$increase};
64         }
65         ${$ref} //= $org;
66         ${$ref} += $increase if $increase =~ /^-?[0-9.]+/;
67 }
68
69 for my $unit (@{$units}) {
70         for my $upgrade (@{ $unit->{upgrade} }) {
71                 while (my ($col, $increase) = each %{$upgrade}) {
72                         defined $unit->{$col} or next;
73                         addupgrade(\$unit->{upgraded}->{$col}, $increase, $unit->{$col});
74                 }
75         }
76         for my $special (@{ $unit->{special} }) {
77                 for my $upgrade (@{ $special->{upgrade} }) {
78                         while (my ($col, $increase) = each %{$upgrade}) {
79                                 defined $special->{$col} or next;
80                                 addupgrade(\$special->{upgraded}->{$col}, $increase, $special->{$col});
81                         }
82                 }
83         }
84 }
85
86 sub coltoggle {
87         my ($name, $id, $nolink) = @_;
88         return sprintf(
89                 (defined $get{order} ? $get{order} eq $id : !$id) ? '%2$s ▼'
90                         : $nolink ? '%2$s' : '<a href="?%s">%s</a>',
91                 $id && "order=$id", $name
92         );
93 }
94 :><table class="units">
95 <thead><tr>
96         <th></th>
97         <th><:= coltoggle('name', '') :></th>
98         <th class="val min" title=minerals>cost</th>
99         <th class="val gas">gas</th>
100         <th class="val time"><:= coltoggle(qw'build cost') :></th>
101         <th class="unit" colspan="2"><:= coltoggle(qw'size size') :></th>
102         <th class="unit" colspan="2">attr</th>
103         <th class="val unit-hp">HP</th>
104         <th class="val unit-shield">shield</th>
105         <th class="val unit-armor" title="armor">⛨</th>
106         <th class="val hurt">attack</th>
107         <th class="hurt hurtrel"><:= coltoggle(qw'dps attack 1') :></th>
108         <th class="val unit-range" colspan=3>range</th>
109         <th class="val unit-sight">sight</th>
110         <th class="val unit-speed">speed</th>
111         <th class="unit-magic">specials</th>
112 </tr></thead>
113 <:
114 sub showrange {
115         my ($min, $max) = @_;
116         return '' if not defined $min;
117         return $min || '-' if !$max or $min == $max;
118         return "$min-$max";
119 }
120
121 sub showrangeint {
122         $_ &&= int($_ + .5) for @_;  # round halves up
123         return showrange(@_);
124 }
125
126         sub showcost {
127                 my ($row, $unit) = @_;
128                 return join(' ',
129                         sprintf('cost %s%%', join '-',
130                                 map { $_ && sprintf '%.0f', 100 * $row->{cost} / $_ } grep { defined $_ }
131                                 $unit->{energy},
132                                 $unit->{upgraded}->{energy},
133                                 $unit->{capacity},
134                                 $unit->{upgraded}->{capacity},
135                         ),
136                         !defined $row->{maint} ? () : sprintf('+%s%%/s', join '-',
137                                 map { sprintf '%.1f', 100 * $row->{maint} / $_ } grep $_,
138                                 $unit->{capacity},
139                                 $unit->{upgraded}->{capacity},
140                         ),
141                 );
142         }
143
144         sub showattack {
145                 my ($row, $area) = @_;
146                 my $attack = $row->{attack}->[$area]
147                         or return '<td colspan=5 class="hurt">';
148
149                 my $upattack = $row->{upgraded}->{attack}->[$area];
150                 my $damage = $attack->{damage};
151                 my $maxdamage = $upattack->{damage} // $damage;
152                 $maxdamage += ($upattack->{upgrade} // $attack->{upgrade}) * 3;
153
154                 my $out = '<td class="val hurt">';
155                 $out .= sprintf '<span title="%s">¤</span> ', showcost($attack, $row)
156                         if $attack->{cost};
157                 $out .= sprintf('<small>%s× </small>',
158                         showrangeint($attack->{count}, $upattack->{count}),
159                 ) if $attack->{count} > 1;
160                 $out .= '<span class="unit-l" title="explosive">*</span>'
161                         if $attack->{type} eq 'explosive';
162                 $out .= '<span class="unit-s" title="implosive">~</span>'
163                         if $attack->{type} eq 'implosive';
164         if (my @bonus = sort grep { !/^-/ } keys %{ $attack->{bonus} }) {
165                 $out .= sprintf('<span class="%s" title="%s">&ge;</span>',
166                         (map {
167                                 $_ eq 'light' ? 'unit-s' :
168                                 $_ eq 'armored' ? 'unit-l' :
169                                 $_ eq 'organic' ? 'unit-o' :
170                                 $_ eq 'massive' ? 'unit-h' :
171                                 $_ eq 'shields' ? 'unit-shield' :
172                                 '',
173                         } join '_', @bonus),
174                         join(', ', map {(
175                                 sprintf('+%s vs %s',
176                                         showrangeint(
177                                                 $attack->{bonus}->{$_},
178                                                 $attack->{bonus}->{$_} + $attack->{bonus}->{"-$_"} * 3,
179                                         ),
180                                         $_,
181                                 ),
182                         )} @bonus),
183                 );
184         }
185                 $out .= '<span class="unit-pdd" title="projectile">•</span>'
186                         if $attack->{type} eq 'projectile';
187
188                 $out .= sprintf '<span title="%s">', $attack->{name} if $attack->{name};
189                 $out .= showrangeint($damage, $maxdamage);
190                 $out .= '</span>' if $attack->{name};
191                 $out .= sprintf('<span class="unit-splash" title="%s">%s</span>',
192                         $attack->{splash} eq 'line' ? ('linear', '+') : ('splash', '⁜')
193                 ) if $attack->{splash};
194
195                 $out .= '<td class="val hurt hurtrel">';
196                 if ($attack->{dps}) {
197                         # precalculated dps, do not touch
198                         $out .= showrangeint($attack->{dps}->[0],
199                                 $upattack->{dps}->[-1] // $attack->{dps}->[-1]
200                         );
201                 }
202                 elsif ($attack->{cooldown}) {
203                         if (my $type = $attack->{type}) {
204                                 if ($type eq 'explosive') {
205                                         $damage /= 2;
206                                 }
207                                 elsif ($type eq 'implosive') {
208                                         $damage /= 4;
209                                 }
210                         }
211                         $damage *= ($attack->{count} // 1) / $attack->{cooldown};
212                         if (my $bonus = $upattack->{bonus} // $attack->{bonus}) {
213                                 $maxdamage += $_ for max(
214                                         map { $bonus->{$_} + $bonus->{"-$_"} * 3 }
215                                         grep { !/^-/ } keys %{$bonus}
216                                 );
217                         }
218                         $maxdamage *= ($upattack->{count} // $attack->{count} // 1)
219                                     / ($upattack->{cooldown} // $attack->{cooldown});
220                         $out .= showrangeint($damage, $maxdamage);
221                 }
222
223                 $out .= '<td class="unit hurt-g">' . '▽' x !!($attack->{anti} & 1);
224                 $out .= '<td class="unit hurt-a">' . '△' x !!($attack->{anti} & 2);
225
226                 $out .= '<td class="val unit-range">' .
227                         showrangeint($attack->{range}, $upattack->{range});
228
229                 return $out;
230         }
231
232         sub showmagic {
233                 my ($row) = @_;
234                 my $specials = $row->{special} or return '';
235                 return join ' ', map {
236                         sprintf '<span%s title="%s">%s</span>',
237                                 $_->{duration} < 0 && ' class="magic-perma"',
238                                 join('',
239                                         $_->{name},
240                                         $_->{desc} ? ": $_->{desc}" : '',
241                                         (map { $_ && " ($_)" } join ', ',
242                                                 #TODO: apply upgrades
243                                                 $_->{range} ? "range $_->{range}" : (),
244                                                 $_->{cost} ? showcost($_, $row) :
245                                                 $_->{cooldown} ? "cooldown $_->{cooldown}s" : (),
246                                         ),
247                                 ),
248                                 sprintf($_->{build} ? '(%s)' : '%s', $_->{abbr}),
249                 } grep { defined $_->{abbr} } @{$specials};
250         }
251
252         sub showunitcols {
253                 my ($row) = @_;
254                 local $_ = $row;
255                 $_->{hp} += $_->{shield} if $_->{shield};
256
257                 return (
258                         '<td class="val min">' . ($_->{min} // ''),
259                         '<td class="val gas">' . ($_->{gas} || ''),
260                         !defined $_->{build} ? '<td>' : sprintf('<td class="val time">%s%.0f',
261                                 !!$_->{base} && '<span class="unit-composed">+</span>',
262                                 $_->{build} || '0',
263                         ),
264                         sprintf('<td class="unit unit-%s" title="%4$s%3$s">%s',
265                                 $_->            {cargo} < 0 ? ('supply',           T => 'transport') :
266                                 $_->{upgraded}->{cargo} < 0 ? ('supply magic-opt', T => 'optional transport') :
267                                 $_->{attr}->{flying}    ? ('air', F => 'flying') :
268                                 $_->{attr}->{structure} ? ('x',   B => 'building') :
269                                 (
270                                         [qw( x s m l l h h h h )]->[ $_->{cargo} ],
271                                         $_->{cargo} || '-',
272                                         $_->{cargo} ? 'transportable' : 'untransportable',
273                                 ),
274                                 defined $_->{size} && sprintf('⌀%.1f ', $_->{size}),
275                         ),
276                         sprintf('<td class="val unit%s">%s',
277                                 defined $_->{pop} && $_->{pop} < 0 && ' unit-supply',
278                                 defined $_->{pop} && $_->{pop} == .5 ? '½' : $_->{pop},
279                         ),
280                         '<td class="unit unit-type">' . join('', grep { $_ }
281                                 (defined $_->{organic} ? !$_->{organic} : $_->{attr}->{mech})
282                                         && '<span class="unit-u" title="mechanic">m</span>',
283                                 ($_->{organic} || $_->{attr}->{organic})
284                                         && '<span class="unit-o" title="organic">o</span>',
285                                 $_->{attr}->{psionic}
286                                         && '<span class="unit-p" title="psionic">ψ</span>',
287                         ),
288                         '<td class="unit unit-attr">' . join('', grep { $_ }
289                                 $_->{attr}->{armored}
290                                         && '<span class="unit unit-l" title="armored">A</span>',
291                                 $_->{attr}->{light}
292                                         && '<span class="unit unit-s" title="light">L</span>',
293                                 $_->{suit} && sprintf(
294                                         '<span class="unit unit-%s" title="%3$s">%s</span>',
295                                         map { @{$_} } [
296                                                 [qw( x ? unknown )],
297                                                 [qw( s S small )],
298                                                 [qw( m M medium )],
299                                                 [qw( l L large )],
300                                         ]->[ $_->{suit} ],
301                                 ),
302                                 $_->{attr}->{massive}
303                                         && '<span class="unit-massive" title="massive">⚓</span>',
304                         ),
305                         '<td class="val unit-hp">' . $_->{hp} // '',
306                         $_->{shield} ? sprintf('<td class="val unit-shield">%.0f%%<td',
307                                 100 * $_->{shield} / $_->{hp}
308                         ) : '<td colspan=2',
309                         ' class="val unit-armor">' .
310                                 showrangeint($_->{armor}, $_->{upgraded}->{armor}),
311                         showattack($_, 0),
312                         '<td class="val unit-sight">' . sprintf(
313                                 $_->{detect} ? '<strong class="unit-detect">%s</strong>' : '%s',
314                                 showrangeint($_->{sight}, $_->{upgraded}->{sight})
315                         ),
316                         '<td class="val unit-speed">' .
317                                 showrangeint($_->{speed}, $_->{upgraded}->{speed}),
318                         $_->{attr}->{jump}
319                                 && qq'<span class="unit unit-jump" title="$_->{attr}->{jump}">↕</span>',
320                         '<td class="unit-magic">' . showmagic($_),
321                         !$_->{attack}->[1] ? () : (
322                                 '<tr><td colspan=12>', showattack($_, 1), '<td colspan=3>'
323                         ),
324                         !$_->{attack}->[2] ? () : (
325                                 '<tr><td colspan=12>', showattack($_, 2), '<td colspan=3>'
326                         ),
327                         "\n"
328                 );
329         }
330
331         my $grouped = 1;  # race headers
332         if (exists $get{order}) {
333                 $grouped = 0;
334                 $get{order} ||= '';
335                 if ($get{order} eq 'size') {
336                         $_->{order} = (
337                                 $_->{pop}*16 + ($_->{size} // $_->{suit}) + $_->{cargo}/8
338                                 + $_->{hp}/512 + $_->{min}/8192
339                         ) for @$units;
340                 }
341                 elsif ($get{order} eq 'cost') {
342                         $_->{order} = (
343                                 $_->{gas}*1.5 + $_->{min} + $_->{pop}/8 + $_->{build}/256/8
344                         ) for @$units;
345                 }
346                 elsif ($get{order} eq 'attack') {
347                         $_->{order} = $_->{hp} / 1024 + $_->{shield} / 1008 + max(
348                                 map {
349                                         ($_->{damage} + $_->{upgrade} * 3)
350                                         * ($_->{count} // 1) / ($_->{cooldown} // 1)
351                                         * ($_->{splash} ? 1.01 : 1)
352                                         * ($_->{type} eq 'implosive' ? .96 : 1)
353                                         * ($_->{type} eq 'explosive' ? .98 : 1)
354                                 } @{ $_->{attack} }
355                         ) for @$units;
356                 }
357                 else {
358                         $units->[$_]->{order} = $_ for 0 .. $#$units;
359                 }
360         }
361         my @rows = @{$units};
362         @rows = sort {$a->{order} <=> $b->{order}} @rows unless $grouped;
363
364         my ($race, $cat) = ('', '');
365         for (@rows) {
366                 if ($grouped) {
367                         printf '<tbody id="%s"><tr class="race"><th colspan="20"><h2>%s</h2>'."\n",
368                                 $race = $_->{race}, ucfirst $race
369                                         unless $race eq $_->{race};
370                 }
371                 else {
372                         $_->{cat} = $_->{race};
373                 }
374
375                 print(
376                         '<tr>',
377                         '<th class="cat">', $cat ne $_->{cat} && ($cat = $_->{cat}),
378                         '<td>', $_->{name},
379                         showunitcols($_),
380                 );
381
382                 for my $subrow (@{ $_->{special} }) {
383                         $subrow->{alt} or next;
384                         print(
385                                 '<tr class="alt"><th class="cat"><td>', $subrow->{alt},
386                                 showunitcols($subrow),
387                         );
388                 }
389         }
390 :>
391 </table>
392
393 <div class="legend">
394 <h2>Legend</h2>
395
396 <dl>
397 <dt>cost
398         <dd>minerals+gas required to create one unit
399         <dd>includes total expenses if based on existing units
400 <dt>build
401         <dd>relative time needed to create at least one unit
402         <dd>excludes construction of dependencies such as buildings
403                 and <span class="unit-composed">+</span>parent units
404 <dt>size
405         <dd><span class="unit unit-supply">T</span>ransports can fit upto
406                 <span class="unit unit-s">8</span>
407                 non-<span class="unit unit-air">F</span>lying units
408         <dd>number of command points taken per unit
409         <dd><:
410 if ($scver{major} > 1) {
411                 :>received damage depends on
412                 <span class="unit unit-o">o</span>rganic,
413                 <span class="unit unit-u">m</span>echanic,
414                 <span class="unit unit-p">ψ</span>(ps)ionic,
415                 <span class="unit unit-s">L</span>ight, and
416                 <span class="unit unit-l">A</span>rmored
417                 attributes
418         <dd>massive <span class="unit-massive">⚓</span> units
419                 cannot be lifted or slowed and can break force fields<:
420 } else {
421                 :><span class="unit unit-o">o</span>rganic/<span class="unit unit-u">m</span>echanic unit
422         <dd>affected by <span class="unit unit-s">S</span>mall,
423                 <span class="unit unit-m">M</span>edium, or
424                 <span class="unit unit-l">L</span>arge unit damage<:
425 } :>
426 <dt>HP<dd>
427         total number of hitpoints (including shields)
428 <dt>shield
429         <dd>percentage of HP in shields
430         <dd>shields always take full damage, irrelevant of unit size
431         <dd>does not take armor bonuses, but upgrades can decrease damage to any shield hit by upto 3
432 <dt>armor
433         <dd>base unit armor
434         <dd>can be increased by upto 3 at various facilities
435         <dd>each point decreases damage per hit by one, upto a minimum of ½
436         <dd>reduction applies to initial damage, before size penalties
437                 <small>(so a plasma hit of 12 to 4 armor large deals 2 damage, not ½)</small>
438 <dt>attack
439         <dd>damage given per single hit
440         <dd><span class="hurtrel">dps</span> indicates relative amount of damage
441                 done in 1 second of in-game time
442         <dd>splash damage hits all objects nearby <span class="unit-splash">⁜</span>
443                 or in a straight line <span class="unit-splash">+</span>.
444         <dd><:
445 if ($scver{major} > 1) {
446                 :>does not include <span>&ge;</span>bonus damage
447                 dealt to susceptible unit types
448         <dd><span class="unit-pdd">•</span>projectile shots are negated by
449                 Point Defense Drones<:
450 } else {
451                 :><span class="unit-l">*</span>explosive damage does only
452                 50% damage to small units, 75% to medium, 100% to large
453         <dd><span class="unit-s">~</span>concussive/plasma damage does
454                 25% to large, 50% medium, 100% to small units<:
455 } :>
456         <dd>targets <span class="hurt-g">▽</span>&nbsp;ground
457                 and/or  <span class="hurt-a">△</span>&nbsp;air
458 <dt>range
459         <dd>maximum range of weapon (note Sieged Tank also has a minimum range)
460 <dt>sight
461         <dd>range in which the unit detects other units
462         <dd><strong class="unit-detect">emphasis</strong> indicates ability to detect cloaked units
463 <dt>speed
464         <dd>relative speed of movement (when in full motion, startup speed ignored)
465 <dt>specials
466         <dd>parentheses () indicate that it needs to be researched first
467         <dd><span class="magic-perma">passive</span> abilities are always enabled
468         <dd>hover for description
469         <dd>range is maximum range required to activate
470         <dd>cost is energy loss percentage on spawn and when fully charged
471 </dl>
472
473 <p>
474 When two values are given (1-2), second value indicates attribute after all
475 possible upgrades.
476 </p>
477
478 </div>
479