latin: enwindow d'ni words in css
[sheet.git] / writing-latn.inc.pl
index 10b30cebe9c7ea67a19941cfb0e606125cdfb901..2c9b59f80ef842419fd04f54f589b0e060bd96e4 100644 (file)
@@ -1,14 +1,20 @@
 use 5.014;
 use utf8;
+use warnings;
 use List::Util qw( pairs pairmap sum );
 
-my %C = qw(red #EC1C24  blue #3953A3  yellow #F9EC31  black #231F20);
+my %C = (
+       red    => '#EC1C24',
+       blue   => '#3953A3',
+       yellow => '#F9EC31',
+       black  => '#231F20',
+);
 my $U = 0;  # optional unicode alternatives
 
 my @wrapstyle = (
-       'td { white-space: normal; word-spacing: 5em }', # force line break between words
+       'td { white-space: normal; word-spacing: 10em }', # force line break between words
        '.sample { word-spacing: 0 }',
-       '.sample span { margin-right: 1ex; white-space: nowrap }', # larger space between letters
+       '.sample span { margin-right: 1ex; white-space: nowrap; display: inline-block }', # larger space between letters
 );
 my $spacestyle = '.sample span { margin-right: 0.5ex }';  # separate multiple letters
 my @tapstyle = (
@@ -17,6 +23,23 @@ my @tapstyle = (
        '.sample { font-size: 80% }',
 );
 
+my @hueorder = (
+       2,11,20,19,18,21,24,15,6,7,8,5,13, # red .. magenta, grey
+       1,10,9,12,3,4,0, 14,23,22,25,16,17,26, # dark, light hues
+);
+
+# Order to put similar sounds close to each other:
+#        ┌ R Y G C B M X
+#       ┌┼──────────────
+#       W│ o e y h s f -
+#        │muaixqgkdtbp l
+#       K│ w n j c z v r
+
+my @hueletters = ((26) x 27);
+@hueletters[map { ord($_) - ord('a') } qw(
+       u a i x q g k d t b p m l   w n j c z v r   o e y h s f
+)] = @hueorder;
+
 sub disptap {
        my $code = shift;
        my ($prefix, @dots) = $code =~ m/\A(-?)(\d)(\d)/ or return $code;
@@ -49,6 +72,23 @@ sub dispbar {
        );
 }
 
+sub disphues {
+       my ($index, $hues, $opaque) = @_;
+       $index >= 0 or $index = 26;
+       my @lum = ($index % 3, $index / 3 % 3, $index / 9);  # hue opacities (0..2)x3
+       my @lumf = $opaque ? ('hsl(%s,100%%,50%%)', 'hsl(%s,100%%,25%%)') :
+               ('hsl(%s,100%%,50%%)', 'hsla(%s,100%%,50%%,.5)');
+       return sprintf(
+               '<svg width="16" height="16" viewBox="0 0 12 12">%s</svg>',
+               join '', map {
+                       my $colf = $lumf[ $lum[$_] ];
+                       !$colf ? () : sprintf('<circle cx="%d" cy="%d" r="%d" fill="%s"/>',
+                               5 + $_, $_ == 1 ? 7 : 5, 5, sprintf($colf, $hues->[$_])
+                       );
+               } 0 .. 2
+       );
+}
+
 (
 uppercase => {
        list => [qw{ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z }],
@@ -123,6 +163,7 @@ sutton => {
 },
 unistrokes => {
        title => 'Unistrokes',
+       url   => 'https://www.google.com/patents/US5596656', # by Xerox
        style => 'svg path { stroke-linecap: round; stroke-linejoin: round }',
        list => [
                map { '<svg width="14" height="16" viewBox="-1 -1 8 10">'.$_.'</svg>' }
@@ -159,6 +200,29 @@ unistrokes => {
                'M3,4',
        ],
 },
+edgewrite => {
+       title => 'EdgeWrite',
+       url   => 'http://depts.washington.edu/ewrite/', # patented US7729542
+       style => 'svg path { stroke-linecap: round; stroke-linejoin: round }',
+       list => [
+               map { '<svg width="14" height="14" viewBox="-1 -1 10 10">'.$_.'</svg>' }
+               map {
+                       my @route = split //;
+                       my @coords = map { $_ % 2 << 3, $_ >> 1 << 3 } @route; # x,y,
+                       sprintf('<circle cx="%s" cy="%s" r="1"/>', @coords[0, 1]) . # start point
+                       sprintf('<path d="M%s"/>', join ' ', map {
+                               my $pos = join(',', @coords[$_*2, $_*2 + 1]);
+                               $_ > 1 && $route[$_] == $route[$_ - 2] ? 'Q4,4 '.$pos.'L' : # curve back
+                               $pos
+                       } 0 .. $#route)
+               }
+               # corners (0..3) clockwise from top-left in order
+               qw(
+                       213 0232 1023 1323 103 102 10132 0213 02 132 02123 023 20313 2031
+                       10231 0102 10131 201 1032 013 0231 021 02131 0312 0313 0123  01
+               )
+       ],
+},
 #graffiti => {
 #      title => 'Palm Graffiti',
 #},
@@ -417,7 +481,7 @@ code128 => {
        list => [map { dispbar($_) } qw(
                111323 131123 131321 112313 132113 132311 211313 231113 231311 112133
                112331 132131 113123 113321 133121 313121 211331 231131 213113 213311
-               213131 311123 311321 331121 312113 312311        212222 0 211412 2331112
+               213131 311123 311321 331121 312113 312311        212222 0 211412 23311120
        )],
 },
 rm4scc => {
@@ -453,23 +517,34 @@ rgbmap => {
        style => [
                'svg { isolation: isolate }',
                'svg circle { mix-blend-mode: screen }',
+               '.sample { background: black }',
        ],
        list => [
-               map { '<svg width="16" height="16" viewBox="0 0 8 8">'.$_.'</svg>' }
-               map {
-                       my $circle = '<circle cx="%s" cy="%s" r="8" fill="#%X%X%X"/>';
-                       join '',
-                       sprintf($circle, 0, 0, [0, 8, 15]->[$_ % 3], 0, 0),
-                       sprintf($circle, 8, 0, 0, [0, 8, 15]->[$_ / 3 % 3], 0),
-                       sprintf($circle, 6, 8, 0, 0, [0, 8, 15]->[$_ / 9]),
-               } 1 .. 3*3*3
+               map { disphues($_, [0, 240, 120], 1) } # Red, Blue, Green
+               @hueorder[23..25,20..22, 12, 6..11,0..5, 16..18, 13..15, 19, 26],
+       ],
+},
+cmymap => {
+       title => 'CMYmap',
+       style => [
+               'svg { isolation: isolate }',  # mix on white
+               'svg circle { mix-blend-mode: multiply }',
+               '.sample { background: white }',
+       ],
+       list => [
+               map { disphues($_, [180, 60, 300]) } # Cyan, Yellow, Magenta
+#              @hueorder[13..18, 19, 0..11, 20..25, 12, 26],
+               @hueletters
        ],
 },
 dni => {
        title => "D'ni",
+       style => [
+               'svg { border: 1px solid #000 }',
+               '.sample span + span svg { border-left: 0 }',
+       ],
        list => [
                map {
-                       state $window = 'M-.5,-.5H8.5V8.5H-.5Z';
                        state $v = [
                                '',
                                'M0,4 8,4',
@@ -486,8 +561,8 @@ dni => {
                                'M4,-.5 0,4 4,8.5',
                                'M4,8 4,2 8,2',
                        ];
-                       sprintf '<svg width="16" height="16" viewBox="-.5 -.5 9 9"><path d="%s"/></svg>',
-                               $window . ($h->[$_ % 5] . $v->[$_ / 5] || $v->[6]);
+                       sprintf '<svg width="16" height="16" viewBox="0 0 8 8"><path d="%s"/></svg>',
+                               $h->[$_ % 5] . $v->[$_ / 5] || $v->[6];
                } 0 .. 5*5
        ],
 },
@@ -540,17 +615,18 @@ nyctographs => {
                # draw style (0=empty, 1=dot, 2=line connect) to right, down, left, up
                qw(
                        0010 0112 2022 2220 2000 2012 0122 0202 0020 0220 0012 0022 2202
-                       0222 2222 0102 0200 2201 2002 2200 0100 0110 0120 2001 2010 2020 0
+                       0222 2222 0102 0200 2201 2002 2200 0100 0110 0120 2001 2010 2020 0000
                ),
        ],
 },
 chromacons => {
+#      style => '.sample { word-break: break-all }',
        list => [
                # Colour Alphabet by Paul Green-Armytage (2010)
                map {
                        sprintf('<span%s>%s</span>',
                                !!$_ && sprintf(' style="background:#%s" title="%s"', split /:/),
-                               chr(8195), # em space
+                               chr(8195) . (!$_ && chr(8203)) # em space (plus zwsp for spaces)
                        );
                }
                qw{