figlet-maison

Du figlet artisanal - retour accueil

git clone git://bebou.netlib.re/figlet-maison

Log | Files | Refs |

commit 95fcd8fef529a0a25c29e1f5024047a3e4f5fb1a
parent 5b5c7dced77b45b647b3b8110b6335d48f402693
Auteurice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Tue, 12 Nov 2024 11:01:58 +0100

Simpl figlet-maison, introduction bdf2txt, txt2flf

bdf2txt créé un dossier avec un .txt par glyph
txt2flf tente de créer une font figlet depuis les .txt

On pourrait passer de bdf à flf direct mais y'a aussi figlet maison
qu'on veut utiliser et ça se base sur du txt

Diffstat:
Abdf2txt | 41+++++++++++++++++++++++++++++++++++++++++
Mfiglet-maison | 20+++++++++++---------
Amakefile | 18++++++++++++++++++
Atxt2flf | 39+++++++++++++++++++++++++++++++++++++++
4 files changed, 109 insertions(+), 9 deletions(-)

diff --git a/bdf2txt b/bdf2txt @@ -0,0 +1,41 @@ +dir="${1%.bdf}" +mkdir -p "$dir" +cd $dir +< "../$1" awk ' + # On créé le fichier du caractère en cours de construction + function printchar(char){ + if (enc<21) next + printf "création du caractère : %c\n", enc + # Création du fichier "/.txt" impossible, trouver une solution de contournement + if(enc!=47) { print char ypad > sprintf("%c.txt", enc) } + } + # Le caractère à encoder en décimal + /^ENCODING/ { enc=$2 } + # La bounding box et les offsets + /^BBX/ { + bbw=$2;bbh=$3;llox=$4;llyx=$5;xpad="";ypad="" + # Ajouter des caractères au début si offset horizontal + for(i=0;i<llox;i++){ xpad="."xpad } + # Afficher des lignes vides à la fin si offset vertical (pour " typiquement) + for(i=0;i<llyx;i++){ + for(j=0;j<bbw+llox;j++){ ypad=ypad"." } + ypad=ypad"\n" + } + } + # On commence un nouveau caractère + /^BITMAP/ { char="" } + # Affichage des car en bitmap + /^[0-9A-F]+$/ { + # Créer la représentation binaire bitmap + gsub("0","....");gsub("1","...#");gsub("2","..#.") + gsub("3",".###");gsub("4",".#..");gsub("5",".#.#") + gsub("6",".##.");gsub("7",".###");gsub("8","#...") + gsub("9","#..#");gsub("A","#.#.");gsub("B","#.##") + gsub("C","##..");gsub("D","##.#");gsub("E","###.") + gsub("F","####") + # Retirer les 0 inutiles à la fin + char=char"\n"xpad""substr($0,0,bbw) + } + /^ENDCHAR/ { printchar(char) } +' +cd - diff --git a/figlet-maison b/figlet-maison @@ -1,14 +1,16 @@ #! /bin/sh -string="${1:-hallo}" -char="${2:-X}" -path="/home/milly/Etc/fonts/glyphsBitMap/" -echo "$string" | - gsed "s,.,${path}&.txt\n,g" | - xargs paste -d '\0 ' - | - sed 's/\./ /g' | - sed "s/#/$char/g" +path="${1:?missing path to font dir}" +[ ! -d "$path" ] \ + && { printf "%s not a directory\n" "$path"; + exit 1; } + +cat | + grep -o . | + sed -E "s,.,$path/&.txt," | + tr '\n' '\0' | + xargs -0 paste -d'\0' +# column -ts ' ' -o '' #find -name "a.txt" | xargs -n4 paste #paste 1.txt 2.txt -: diff --git a/makefile b/makefile @@ -0,0 +1,18 @@ +fontfiles != find -type f -name '*.otf' +bdffiles = ${fontfiles:%.otf=%.bdf} +flffiles = ${fontfiles:%.otf=%.flf} +fontdirs = ${fontfiles:%.otf=%} + +all: ${bdffiles} ${fontdirs} ${flffiles} + +%.bdf: %.otf + -otf2bdf -r 100 $< > $@ + +%: %.bdf bdf2txt + ./bdf2txt $< + +%.flf: % txt2flf + ./txt2flf $< > $@ + + + diff --git a/txt2flf b/txt2flf @@ -0,0 +1,39 @@ +#! /bin/sh + +path="${1:?missing path to font dir}" +[ ! -d "$path" ] \ + && { printf "%s not a directory\n" "$path"; + exit 1; } + +tmpd=$(mktemp -d) +height="$(< $path/a.txt wc -l)" +width=$(( $(< $path/a.txt tail -n1 | wc -c) + 1 )) + +createcar() { + local car;car="$1" + if [ -f "$path/$car.txt" ];then + < "$path/$car.txt" sed '1d;s/$/@/' + endline="$(yes ' ' | head -n$(( $width-2 )) | tr -d '\n')" + else + yes '@' | head -n$(( $height - 1 )) + fi + printf "%s@@\n" "$endline" +} + +<<. grep -o . > $tmpd/cars +!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_\`abcdefghijklmnopqrstuvwxyz{|}~ÄÖÜäöüß +. + +<<. cat +flf2a$ $height $height $width 0 3 0 64 0 +From font: $path + +Font created with txt2tlf: http://bebou.netlib.re +. + +createcar +cat $tmpd/cars | while read car;do + createcar "$car" +done + +rm -rf $tmpd