d8e89de68219ec5ec0fcb4b3d8975a5ec9ba2ebd
[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                                 showrange(
318                                         map { $_ && sprintf '%.1f', $_ }
319                                         $_->{speed}, $_->{upgraded}->{speed}
320                                 ),
321                         $_->{attr}->{jump}
322                                 && qq'<span class="unit unit-jump" title="$_->{attr}->{jump}">↕</span>',
323                         '<td class="unit-magic">' . showmagic($_),
324                         !$_->{attack}->[1] ? () : (
325                                 '<tr><td colspan=12>', showattack($_, 1), '<td colspan=3>'
326                         ),
327                         !$_->{attack}->[2] ? () : (
328                                 '<tr><td colspan=12>', showattack($_, 2), '<td colspan=3>'
329                         ),
330                         "\n"
331                 );
332         }
333
334         my $grouped = 1;  # race headers
335         if (exists $get{order}) {
336                 $grouped = 0;
337                 $get{order} ||= '';
338                 if ($get{order} eq 'size') {
339                         $_->{order} = (
340                                 $_->{pop}*16 + ($_->{size} // $_->{suit}) + $_->{cargo}/8
341                                 + $_->{hp}/512 + $_->{min}/8192
342                         ) for @$units;
343                 }
344                 elsif ($get{order} eq 'cost') {
345                         $_->{order} = (
346                                 $_->{gas}*1.5 + $_->{min} + $_->{pop}/8 + $_->{build}/256/8
347                         ) for @$units;
348                 }
349                 elsif ($get{order} eq 'attack') {
350                         $_->{order} = $_->{hp} / 1024 + $_->{shield} / 1008 + max(
351                                 map {
352                                         ($_->{damage} + $_->{upgrade} * 3)
353                                         * ($_->{count} // 1) / ($_->{cooldown} // 1)
354                                         * ($_->{splash} ? 1.01 : 1)
355                                         * ($_->{type} eq 'implosive' ? .96 : 1)
356                                         * ($_->{type} eq 'explosive' ? .98 : 1)
357                                 } @{ $_->{attack} }
358                         ) for @$units;
359                 }
360                 else {
361                         $units->[$_]->{order} = $_ for 0 .. $#$units;
362                 }
363         }
364         my @rows = @{$units};
365         @rows = sort {$a->{order} <=> $b->{order}} @rows unless $grouped;
366
367         my ($race, $cat) = ('', '');
368         for (@rows) {
369                 if ($grouped) {
370                         printf '<tbody id="%s"><tr class="race"><th colspan="20"><h2>%s</h2>'."\n",
371                                 $race = $_->{race}, ucfirst $race
372                                         unless $race eq $_->{race};
373                 }
374                 else {
375                         $_->{cat} = $_->{race};
376                 }
377
378                 print(
379                         '<tr>',
380                         '<th class="cat">', $cat ne $_->{cat} && ($cat = $_->{cat}),
381                         '<td>', $_->{name},
382                         showunitcols($_),
383                 );
384
385                 for my $subrow (@{ $_->{special} }) {
386                         $subrow->{alt} or next;
387                         print(
388                                 '<tr class="alt"><th class="cat"><td>', $subrow->{alt},
389                                 showunitcols($subrow),
390                         );
391                 }
392         }
393 :>
394 </table>
395
396 <div class="legend">
397 <h2>Legend</h2>
398
399 <dl>
400 <dt>cost
401         <dd>minerals+gas required to create one unit
402         <dd>includes total expenses if based on existing units
403 <dt>build
404         <dd>relative time needed to create at least one unit
405         <dd>excludes construction of dependencies such as buildings
406                 and <span class="unit-composed">+</span>parent units
407 <dt>size
408         <dd><span class="unit unit-supply">T</span>ransports can fit upto
409                 <span class="unit unit-s">8</span>
410                 non-<span class="unit unit-air">F</span>lying units
411         <dd>number of command points taken per unit
412         <dd><:
413 if ($scver{major} > 1) {
414                 :>received damage depends on
415                 <span class="unit unit-o">o</span>rganic,
416                 <span class="unit unit-u">m</span>echanic,
417                 <span class="unit unit-p">ψ</span>(ps)ionic,
418                 <span class="unit unit-s">L</span>ight, and
419                 <span class="unit unit-l">A</span>rmored
420                 attributes
421         <dd>massive <span class="unit-massive">⚓</span> units
422                 cannot be lifted or slowed and can break force fields<:
423 } else {
424                 :><span class="unit unit-o">o</span>rganic/<span class="unit unit-u">m</span>echanic unit
425         <dd>affected by <span class="unit unit-s">S</span>mall,
426                 <span class="unit unit-m">M</span>edium, or
427                 <span class="unit unit-l">L</span>arge unit damage<:
428 } :>
429 <dt>HP<dd>
430         total number of hitpoints (including shields)
431 <dt>shield
432         <dd>percentage of HP in shields
433         <dd>shields always take full damage, irrelevant of unit size
434         <dd>does not take armor bonuses, but upgrades can decrease damage to any shield hit by upto 3
435 <dt>armor
436         <dd>base unit armor
437         <dd>can be increased by upto 3 at various facilities
438         <dd>each point decreases damage per hit by one, upto a minimum of ½
439         <dd>reduction applies to initial damage, before size penalties
440                 <small>(so a plasma hit of 12 to 4 armor large deals 2 damage, not ½)</small>
441 <dt>attack
442         <dd>damage given per single hit
443         <dd><span class="hurtrel">dps</span> indicates relative amount of damage
444                 done in 1 second of in-game time
445         <dd>splash damage hits all objects nearby <span class="unit-splash">⁜</span>
446                 or in a straight line <span class="unit-splash">+</span>.
447         <dd><:
448 if ($scver{major} > 1) {
449                 :>does not include <span>&ge;</span>bonus damage
450                 dealt to susceptible unit types
451         <dd><span class="unit-pdd">•</span>projectile shots are negated by
452                 Point Defense Drones<:
453 } else {
454                 :><span class="unit-l">*</span>explosive damage does only
455                 50% damage to small units, 75% to medium, 100% to large
456         <dd><span class="unit-s">~</span>concussive/plasma damage does
457                 25% to large, 50% medium, 100% to small units<:
458 } :>
459         <dd>targets <span class="hurt-g">▽</span>&nbsp;ground
460                 and/or  <span class="hurt-a">△</span>&nbsp;air
461 <dt>range
462         <dd>maximum range of weapon (note Sieged Tank also has a minimum range)
463 <dt>sight
464         <dd>range in which the unit detects other units
465         <dd><strong class="unit-detect">emphasis</strong> indicates ability to detect cloaked units
466 <dt>speed
467         <dd>relative speed of movement (when in full motion, startup speed ignored)
468 <dt>specials
469         <dd>parentheses () indicate that it needs to be researched first
470         <dd><span class="magic-perma">passive</span> abilities are always enabled
471         <dd>hover for description
472         <dd>range is maximum range required to activate
473         <dd>cost is energy loss percentage on spawn and when fully charged
474 </dl>
475
476 <p>
477 When two values are given (1-2), second value indicates attribute after all
478 possible upgrades.
479 </p>
480
481 </div>
482