termcol: declare rgb maps in include data
[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 cpc ) if exists $get{v};
77 push @termlist, qw( ansi88 );
78 push @termlist, qw( ansi256 ) if $ENV{PATH_INFO} =~ /256/;
79
80 for my $term (@termlist) {
81         my $info = $palettes->{$term};
82         ref $info eq 'HASH' or next;
83         my $caption = $info->{name} // $term;
84         $caption = sprintf('<%s %s>%s</%1$s>',
85                 $info->{href} ? 'a' : 'span',
86                 join(' ',
87                         map { sprintf '%s="%s"', $_, $info->{$_} }
88                         grep { defined $info->{$_} }
89                         qw( href title )
90                 ),
91                 $caption,
92         ) if $info->{href} or $info->{title};
93
94         if (my $mapinfo = $info->{rgbmap}) {
95                 print '<table class="mapped">'."\n";
96                 printf "<caption>%s</caption>\n", $caption;
97                 print coltable_hsv(@{$mapinfo});
98                 print "</table>\n\n";
99         }
100
101         if (my $colours = $info->{list}) {
102                 print '<table>', "\n";
103                 printf "<caption>%s</caption>\n", $caption;
104                 for my $num (0 .. $#{$colours}) {
105                         my ($rgb, $name) = split /:/, $colours->[$num], 3;
106                         $name ||= $num;
107                         $name = [ $name, ['#333'] ] if $term eq 'xkcd';
108                         print '<tr>', colcell($name, $rgb);
109                 }
110                 print "</table>\n\n";
111         }
112 }
113
114 sub coltable_hsv {
115         my ($dim, $rgbval, $greyramp) = @_;
116
117         my $hmax = 2 * $dim * 3;  # each face of the rgb cube
118         my $vmax = $dim - 1;
119         my $smax = $dim - 1;
120         $rgbval ||= sub { join('', @_), map { int $_ * 255 / $vmax } @_ };
121         $greyramp ||= [];
122
123         my %greymap;  # name => value
124         my @colmap;  # saturation => value => hue => [name, r,g,b]
125         my $offset = 16 * ($dim > 3);
126
127         for my $r (0 .. $dim - 1) {
128                 for my $g (0 .. $dim - 1) {
129                         for my $b (0 .. $dim - 1) {
130                                 my @rgb = ($r, $g, $b);
131
132                                 my $h = Shiar_Sheet::Colour->new(@rgb)->hue * $hmax;
133                                 my $v = max(@rgb);
134                                 my $s = abs(min(@rgb) - max(@rgb));
135
136                                 if (!$s) {
137                                         my ($index, $l) = $rgbval->(@rgb);
138                                         $greymap{$index} = $l;
139                                         next;
140                                 }
141
142                                 $v = $vmax - $v;
143                                 $s = $smax - $s - $v;
144
145                                 $colmap[$s][$v][$h] = [ $rgbval->(@rgb) ];
146                         }
147                 }
148         }
149
150         my $out = '';
151         $out .= sprintf '<colgroup span=%d>', 3 * @{$_} for @colmap;
152         my $huerow = $colmap[0][0]; # first {$_} map { @{$_} } @colmap;
153         for my $h (grep { $huerow->[$_] } 0 .. $#{$huerow}) {
154                 $out .= '<tr>';
155                 $out .= colcell(@$_) for map { $_->[$h] } map { @{$_} } @colmap;
156         }
157
158         $offset += $dim ** 3;
159         $greymap{$offset++} = $_ for @{$greyramp};
160
161         $out .= '<tbody>';
162         my $col = 0;
163         my $colbreak = scalar map { @$_ } @colmap;  # same width as hue rows
164         for my $num (sort { $greymap{$a} <=> $greymap{$b} } keys %greymap) {
165                 $out .= '<tr>' unless $col++ % $colbreak;
166                 $out .= colcell($num, ($greymap{$num}) x 3);
167         }
168
169         return $out;
170 }
171
172 :></div>
173 <hr>
174