https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 30d5b8becec8ff31ee76db5b25ddc81957653816 authored by hudson@kremvax on 18 April 2010, 17:20:33 UTC
More explicit logging of unknown events
Tip revision: 30d5b8b
generate-font
#!/usr/bin/perl
# This uses the bigtext program, which you must build separately.
use strict;
use warnings;

my $font = shift || '-*-helvetica-*-r-*-*-34-*-100-100-*-*-iso8859-*';
my $start = shift || 19;
my $width = shift || 25;

my @chars = (
	'A'..'Z',
	'a'..'z',
	'0'..'9',
	' ', '/', '#', ',', "'",
	qw/ < > { } @ \\ = : ! " $ % & ( ) * + - . [ ] ^ _ ` ~ /
);


for my $char (@chars)
{
	# The _ is to force a leading space and the Mj is to force
	# maximum ascender and descender
	my $str = "'_$char   |`Mj'";
	$str = q{"_'   |\\`Mj"} if $char eq "'";
	$str = q{"_\\   |\\`Mj"} if $char eq "\\";

	my @lines = `bigtext -font '$font' $str`;

	# Cut out just the second character worth of space
	my $text;
	for( @lines )
	{
		$text .= substr( $_, $start, $width ) . "\n";
	}

	print "$char =\n$text\n";
}

back to top