[ac7c8d12] | 1 | #!/usr/bin/perl -w
|
---|
| 2 |
|
---|
| 3 | #
|
---|
| 4 | # Copyright (c) 2000 Dmitry Bolkhovityanov
|
---|
| 5 | # Copyright (c) 2009 Martin Decky
|
---|
| 6 | # All rights reserved.
|
---|
| 7 | #
|
---|
| 8 | # Redistribution and use in source and binary forms, with or without
|
---|
| 9 | # modification, are permitted provided that the following conditions
|
---|
| 10 | # are met:
|
---|
| 11 | #
|
---|
| 12 | # - Redistributions of source code must retain the above copyright
|
---|
| 13 | # notice, this list of conditions and the following disclaimer.
|
---|
| 14 | # - Redistributions in binary form must reproduce the above copyright
|
---|
| 15 | # notice, this list of conditions and the following disclaimer in the
|
---|
| 16 | # documentation and/or other materials provided with the distribution.
|
---|
| 17 | # - The name of the author may not be used to endorse or promote products
|
---|
| 18 | # derived from this software without specific prior written permission.
|
---|
| 19 | #
|
---|
| 20 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 21 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 22 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 23 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 24 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 25 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 26 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 27 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 28 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 29 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 30 | #
|
---|
| 31 |
|
---|
| 32 | use strict;
|
---|
| 33 |
|
---|
| 34 | my $skip;
|
---|
| 35 |
|
---|
| 36 | my $width;
|
---|
| 37 | my $height;
|
---|
| 38 | my $offset_x;
|
---|
| 39 | my $offset_y;
|
---|
| 40 |
|
---|
| 41 | my $gwidth;
|
---|
| 42 | my $gheight;
|
---|
| 43 | my $goffset_x;
|
---|
| 44 | my $goffset_y;
|
---|
| 45 |
|
---|
| 46 | my $index;
|
---|
| 47 | my @glyphs;
|
---|
| 48 | my @chars;
|
---|
| 49 |
|
---|
| 50 | open(BDF, "u_vga16.bdf") or die("Unable to open source font\n");
|
---|
| 51 |
|
---|
| 52 | READHEADER: while (<BDF>) {
|
---|
| 53 | /^FONTBOUNDINGBOX\s/ and do {
|
---|
| 54 | ($skip, $width, $height, $offset_x, $offset_y) = (split);
|
---|
[f1380b7] | 55 |
|
---|
[ac7c8d12] | 56 | die("Font width is not 8px\n") if ($width != 8);
|
---|
| 57 | die("Font height is not 16px\n") if ($height != 16);
|
---|
| 58 | };
|
---|
| 59 | /^CHARS\s/ && last READHEADER;
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | READCHARS: while (<BDF>) {
|
---|
| 63 | /^ENCODING\s+([0-9]+)\s*$/ && do {
|
---|
| 64 | $index = $1;
|
---|
| 65 | };
|
---|
| 66 | /^BBX\s/ && do {
|
---|
| 67 | ($skip, $gwidth, $gheight, $goffset_x, $goffset_y) = (split);
|
---|
| 68 | };
|
---|
| 69 | /^BITMAP/ && do {
|
---|
| 70 | my @glyph = ();
|
---|
| 71 | my $y;
|
---|
[f1380b7] | 72 |
|
---|
[ac7c8d12] | 73 | # Add empty lines at top
|
---|
| 74 | my $empties = $height + $offset_y - $goffset_y - $gheight;
|
---|
[f1380b7] | 75 |
|
---|
[ac7c8d12] | 76 | for ($y = 0; $y < $empties; $y++) {
|
---|
| 77 | $glyph[$y] = 0;
|
---|
| 78 | }
|
---|
[f1380b7] | 79 |
|
---|
[ac7c8d12] | 80 | # Scan the hex bitmap
|
---|
| 81 | for ($y = $empties; $y < $empties + $gheight; $y++) {
|
---|
| 82 | $_ = <BDF>;
|
---|
| 83 | $glyph[$y] = hex(substr($_, 0, 2)) >> $goffset_x;
|
---|
| 84 | }
|
---|
[f1380b7] | 85 |
|
---|
[ac7c8d12] | 86 | # Add empty lines at bottom
|
---|
| 87 | my $fill = $height - $gheight - $empties;
|
---|
| 88 | for ($y = $empties + $gheight; $y < $empties + $gheight + $fill; $y++) {
|
---|
| 89 | $glyph[$y] = 0;
|
---|
| 90 | }
|
---|
[f1380b7] | 91 |
|
---|
[ac7c8d12] | 92 | if ($index != 0) {
|
---|
| 93 | $glyphs[$index] = (\@glyph);
|
---|
| 94 | push(@chars, $index);
|
---|
| 95 | }
|
---|
| 96 | };
|
---|
| 97 | /^ENDFONT/ && last READCHARS;
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | close(BDF);
|
---|
| 101 |
|
---|
| 102 | @chars = sort { $a <=> $b } (@chars);
|
---|
| 103 |
|
---|
[98895c5c] | 104 | print "#define FONT_GLYPHS " . (@chars + 1). "\n";
|
---|
[ac7c8d12] | 105 | print "#define FONT_SCANLINES " . $height . "\n";
|
---|
| 106 |
|
---|
| 107 | print "\n";
|
---|
[28a5ebd] | 108 | print "uint16_t fb_font_glyph(const char32_t ch)\n";
|
---|
[98895c5c] | 109 | print "{\n";
|
---|
| 110 | print "\tif (ch == 0x0000)\n";
|
---|
| 111 | print "\t\treturn 0;\n\n";
|
---|
[ac7c8d12] | 112 |
|
---|
| 113 | my $pos = 0;
|
---|
| 114 | my $start = -1;
|
---|
| 115 | my $start_pos = 0;
|
---|
| 116 | my $prev = 0;
|
---|
| 117 | for $index (@chars) {
|
---|
| 118 | if ($prev + 1 < $index) {
|
---|
| 119 | if ($start != -1) {
|
---|
| 120 | if ($start == $prev) {
|
---|
| 121 | printf "\tif (ch == 0x%.4x)\n", $start;
|
---|
[98895c5c] | 122 | print "\t\treturn " . $start_pos . ";\n";
|
---|
[ac7c8d12] | 123 | } else {
|
---|
| 124 | printf "\tif ((ch >= 0x%.4x) && (ch <= 0x%.4x))\n", $start, $prev;
|
---|
[98895c5c] | 125 | print "\t\treturn (ch - " . ($start - $start_pos) . ");\n";
|
---|
[ac7c8d12] | 126 | }
|
---|
[f1380b7] | 127 |
|
---|
[ac7c8d12] | 128 | print "\t\n";
|
---|
| 129 | }
|
---|
[f1380b7] | 130 |
|
---|
[ac7c8d12] | 131 | $start = $index;
|
---|
| 132 | $start_pos = $pos;
|
---|
| 133 | }
|
---|
[f1380b7] | 134 |
|
---|
[ac7c8d12] | 135 | $pos++;
|
---|
| 136 | $prev = $index;
|
---|
| 137 | }
|
---|
| 138 |
|
---|
[98895c5c] | 139 | print "\treturn " . @chars . ";\n";
|
---|
[ac7c8d12] | 140 | print "}\n";
|
---|
| 141 |
|
---|
| 142 | print "\n";
|
---|
| 143 | print "uint8_t fb_font[FONT_GLYPHS][FONT_SCANLINES] = {";
|
---|
| 144 |
|
---|
| 145 | for $index (@chars) {
|
---|
| 146 | print "\n\t{";
|
---|
[f1380b7] | 147 |
|
---|
[ac7c8d12] | 148 | my $y;
|
---|
| 149 | for ($y = 0; $y < $height; $y++) {
|
---|
| 150 | print ", " if ($y > 0);
|
---|
| 151 | printf "0x%.2x", $glyphs[$index]->[$y];
|
---|
| 152 | }
|
---|
[f1380b7] | 153 |
|
---|
[98895c5c] | 154 | print "},";
|
---|
| 155 | }
|
---|
| 156 |
|
---|
| 157 | print "\n\t\n\t/* Special glyph for unknown character */\n\t{";
|
---|
| 158 | my $y;
|
---|
| 159 | for ($y = 0; $y < $height; $y++) {
|
---|
| 160 | print ", " if ($y > 0);
|
---|
| 161 | printf "0x%.2x", $glyphs[63]->[$y];
|
---|
[ac7c8d12] | 162 | }
|
---|
| 163 |
|
---|
[98895c5c] | 164 | print "}\n};\n";
|
---|