termcol: move palette data into separate include
[sheet.git] / termcol.plp
1 <(common.inc.plp)><:
2
3 Html({
4         title => 'terminal colour cheat sheet',
5         version => '1.0',
6         description => [
7                 "Index of all terminal/console colour codes,",
8                 "with an example result of various environments.",
9         ],
10         keywords => [qw'
11                 color code terminal console escape table xterm rxvt
12         '],
13         data => ['termcol.inc.pl'],
14         stylesheet => [qw'light dark'],
15 });
16
17 :>
18 <h1>Terminal colours</h1>
19
20 <p>
21 <span title="ECMA-48">ANSI</span> (VT100, ISO-6429) 16-colour text palette
22 as implemented by various systems and programs.
23 <:
24 print
25         !exists $get{v} ? 'Also see <a href="?v">8-bit legacy hardware</a> palettes.' :
26         'Also included are 8-bit legacy hardware palettes.';
27 :>
28 </p>
29
30 <div class="section">
31 <:
32 use Shiar_Sheet::Colour '1.03';
33 use List::Util qw( min max );
34
35 my $palettes = do 'termcol.inc.pl';
36 die "Cannot open palette data: $_\n" for $@ || $! || ();
37
38 sub colcell {
39         my $name = shift // return "<td colspan=3>\n";
40         my $col = Shiar_Sheet::Colour->new(@_);
41         my $minhex = $col->rgb24;
42         my $css     = '#' . $col->rgb48;
43         my $inverse = '#' . sprintf('%X', $col->luminance/255 < .3 ? 12 : 0) x 3;
44
45         my $sample = [ qw(#000 #FFF) ];
46         ($name, $sample) = @$name if ref $name eq 'ARRAY';
47
48         my $out = sprintf('<td title="%s" style="%s">%s',
49                 join(',', map { int } @$col),
50                 "background:$css; color:$inverse; padding:0 1ex",
51                 $name,
52         );
53         $out .= sprintf '<td style="%s"><code>%s</code>', "background:$_; color:$css", $minhex
54                 for @$sample;
55         return "$out\n";
56 }
57
58 if ($get{v}) {
59         my %reorder = (
60                 arnegame => [ 0,5,9,12 , 3,6,10,13,1 , 4,7,8,11,14,15,2 ],
61                 arnegame => [ 0,3,10,6,12,9,13,1 , 5,7,11,8,14,4,15,2 ],
62                 c64 => [ 0,2,5,9,6,4,3,15 , 11,10,13,7,14,8,12,1 ],
63                 msx2 => [ 0,6,2,10,4,13,7,14 , 1,8,3,11,5,9,12,15 ],
64                 risc => [ 7,11,13,14,8,12,15,1, 6,5,10,9,4,3,2,0],
65                 mac2 => [ 15,3,9,11,6,5,7,12 , 14,2,8,1,13,4,10,0 ],
66         );
67         $reorder{$_} = $reorder{msx2} for qw( msx1 arnejmp );
68         while (my ($name, $order) = each %reorder) {
69                 for my $pal ( $palettes->{$name}) {
70                         $pal = [ map { $pal->[$_ + 1] =~ s/:|$/:$_/r } -1, @{$order} ];
71                 }
72         }
73 }
74
75 my @termlist = qw( cga xterm tango app html xkcd );
76 push @termlist, qw( c64 msx2 mac2 risc arnegame ) if exists $get{v};
77 for my $term (@termlist) {
78         my ($name, @index) = @{ $palettes->{$term} };
79         my $caption = $name // $term;
80
81         print '<table>', "\n";
82         printf "<caption>%s</caption>\n", $caption;
83         for my $num (0 .. $#index) {
84                 my ($rgb, $name) = split /:/, $index[$num], 3;
85                 $name ||= $num;
86                 $name = [ $name, ['#333'] ] if $term eq 'xkcd';
87                 print '<tr>', colcell($name, $rgb);
88         }
89         print "</table>\n\n";
90 }
91
92 if (exists $get{v}) {
93         print "<table class=mapped>\n";
94         print "<caption>Amstrad CPC</caption>\n";
95         print coltable_hsv(3, sub {
96                 $_[2] + 3 * ($_[0] + 3 * $_[1]),
97                 map { $_ && $_ * 127 + 1 } @_
98         });
99         print "</table>\n\n";
100 }
101 :></div>
102
103 <hr>
104
105 <div class="section">
106 <:
107 sub coltable_hsv {
108         my ($dim, $rgbval, $greyramp) = @_;
109
110         my $hmax = 2 * $dim * 3;  # each face of the rgb cube
111         my $vmax = $dim - 1;
112         my $smax = $dim - 1;
113         $rgbval ||= sub { join('', @_), map { int $_ * 255 / $vmax } @_ };
114         $greyramp ||= [];
115
116         my %greymap;  # name => value
117         my @colmap;  # saturation => value => hue => [name, r,g,b]
118         my $offset = 16 * ($dim > 3);
119
120         for my $r (0 .. $dim - 1) {
121                 for my $g (0 .. $dim - 1) {
122                         for my $b (0 .. $dim - 1) {
123                                 my @rgb = ($r, $g, $b);
124
125                                 my $h = Shiar_Sheet::Colour->new(@rgb)->hue * $hmax;
126                                 my $v = max(@rgb);
127                                 my $s = abs(min(@rgb) - max(@rgb));
128
129                                 if (!$s) {
130                                         my ($index, $l) = $rgbval->(@rgb);
131                                         $greymap{$index} = $l;
132                                         next;
133                                 }
134
135                                 $v = $vmax - $v;
136                                 $s = $smax - $s - $v;
137
138                                 $colmap[$s][$v][$h] = [ $rgbval->(@rgb) ];
139                         }
140                 }
141         }
142
143         my $out = '';
144         $out .= sprintf '<colgroup span=%d>', 3 * @{$_} for @colmap;
145         my $huerow = $colmap[0][0]; # first {$_} map { @{$_} } @colmap;
146         for my $h (grep { $huerow->[$_] } 0 .. $#{$huerow}) {
147                 $out .= '<tr>';
148                 $out .= colcell(@$_) for map { $_->[$h] } map { @{$_} } @colmap;
149         }
150
151         $offset += $dim ** 3;
152         $greymap{$offset++} = $_ for @{$greyramp};
153
154         $out .= '<tbody>';
155         my $col = 0;
156         my $colbreak = scalar map { @$_ } @colmap;  # same width as hue rows
157         for my $num (sort { $greymap{$a} <=> $greymap{$b} } keys %greymap) {
158                 $out .= '<tr>' unless $col++ % $colbreak;
159                 $out .= colcell($num, ($greymap{$num}) x 3);
160         }
161
162         return $out;
163 }
164
165 {
166         print "<h2>88-colour space</h2>\n";
167         print "<table class=mapped>\n";
168         print coltable_hsv(4,
169                 sub {
170                         $_[2] + 4 * ($_[1] + 4 * $_[0]) + 16,
171                         map { (0, 139, 205, 255)[$_] } @_
172                 },
173                 [map { ($_ + 2 + ($_>0)) * 255/11 } 0 .. 7],
174         );
175         print "</table>\n";
176 }
177
178 if ($ENV{PATH_INFO} =~ /256/) {
179         print "<h2>256-colour space</h2>\n";
180         print "<table class=mapped>\n";
181         print coltable_hsv(6,
182                 sub {
183                         $_[2] + 6 * ($_[1] + 6 * $_[0]) + 16,
184                         map { $_ && $_*40 + 55 } @_
185                 },
186                 [ map { $_ * 10 + 8 } 0 .. 23 ],
187         );
188         print "</table>\n";
189 }
190 :></div>
191 <hr>
192