686316cf8f8f1cb9b3cb6734913147991c001f9b
[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 ($info, @index) = @{ $palettes->{$term} };
79         my $caption = $info->{name} // $term;
80         $caption = sprintf('<%s %s>%s</%1$s>',
81                 $info->{href} ? 'a' : 'span',
82                 join(' ',
83                         map { sprintf '%s="%s"', $_, $info->{$_} }
84                         grep { defined $info->{$_} }
85                         qw( href title )
86                 ),
87                 $caption,
88         ) if $info->{href} or $info->{title};
89
90         print '<table>', "\n";
91         printf "<caption>%s</caption>\n", $caption;
92         for my $num (0 .. $#index) {
93                 my ($rgb, $name) = split /:/, $index[$num], 3;
94                 $name ||= $num;
95                 $name = [ $name, ['#333'] ] if $term eq 'xkcd';
96                 print '<tr>', colcell($name, $rgb);
97         }
98         print "</table>\n\n";
99 }
100
101 if (exists $get{v}) {
102         print "<table class=mapped>\n";
103         print "<caption>Amstrad CPC</caption>\n";
104         print coltable_hsv(3, sub {
105                 $_[2] + 3 * ($_[0] + 3 * $_[1]),
106                 map { $_ && $_ * 127 + 1 } @_
107         });
108         print "</table>\n\n";
109 }
110 :></div>
111
112 <hr>
113
114 <div class="section">
115 <:
116 sub coltable_hsv {
117         my ($dim, $rgbval, $greyramp) = @_;
118
119         my $hmax = 2 * $dim * 3;  # each face of the rgb cube
120         my $vmax = $dim - 1;
121         my $smax = $dim - 1;
122         $rgbval ||= sub { join('', @_), map { int $_ * 255 / $vmax } @_ };
123         $greyramp ||= [];
124
125         my %greymap;  # name => value
126         my @colmap;  # saturation => value => hue => [name, r,g,b]
127         my $offset = 16 * ($dim > 3);
128
129         for my $r (0 .. $dim - 1) {
130                 for my $g (0 .. $dim - 1) {
131                         for my $b (0 .. $dim - 1) {
132                                 my @rgb = ($r, $g, $b);
133
134                                 my $h = Shiar_Sheet::Colour->new(@rgb)->hue * $hmax;
135                                 my $v = max(@rgb);
136                                 my $s = abs(min(@rgb) - max(@rgb));
137
138                                 if (!$s) {
139                                         my ($index, $l) = $rgbval->(@rgb);
140                                         $greymap{$index} = $l;
141                                         next;
142                                 }
143
144                                 $v = $vmax - $v;
145                                 $s = $smax - $s - $v;
146
147                                 $colmap[$s][$v][$h] = [ $rgbval->(@rgb) ];
148                         }
149                 }
150         }
151
152         my $out = '';
153         $out .= sprintf '<colgroup span=%d>', 3 * @{$_} for @colmap;
154         my $huerow = $colmap[0][0]; # first {$_} map { @{$_} } @colmap;
155         for my $h (grep { $huerow->[$_] } 0 .. $#{$huerow}) {
156                 $out .= '<tr>';
157                 $out .= colcell(@$_) for map { $_->[$h] } map { @{$_} } @colmap;
158         }
159
160         $offset += $dim ** 3;
161         $greymap{$offset++} = $_ for @{$greyramp};
162
163         $out .= '<tbody>';
164         my $col = 0;
165         my $colbreak = scalar map { @$_ } @colmap;  # same width as hue rows
166         for my $num (sort { $greymap{$a} <=> $greymap{$b} } keys %greymap) {
167                 $out .= '<tr>' unless $col++ % $colbreak;
168                 $out .= colcell($num, ($greymap{$num}) x 3);
169         }
170
171         return $out;
172 }
173
174 {
175         print "<h2>88-colour space</h2>\n";
176         print "<table class=mapped>\n";
177         print coltable_hsv(4,
178                 sub {
179                         $_[2] + 4 * ($_[1] + 4 * $_[0]) + 16,
180                         map { (0, 139, 205, 255)[$_] } @_
181                 },
182                 [map { ($_ + 2 + ($_>0)) * 255/11 } 0 .. 7],
183         );
184         print "</table>\n";
185 }
186
187 if ($ENV{PATH_INFO} =~ /256/) {
188         print "<h2>256-colour space</h2>\n";
189         print "<table class=mapped>\n";
190         print coltable_hsv(6,
191                 sub {
192                         $_[2] + 6 * ($_[1] + 6 * $_[0]) + 16,
193                         map { $_ && $_*40 + 55 } @_
194                 },
195                 [ map { $_ * 10 + 8 } 0 .. 23 ],
196         );
197         print "</table>\n";
198 }
199 :></div>
200 <hr>
201