added random option and dropped chars not in fonts

This commit is contained in:
tater 2018-08-24 01:29:31 -04:00
parent b63560ab3e
commit ccc6e08596
2 changed files with 95 additions and 26 deletions

View File

@ -4,12 +4,14 @@ PREFIX ?= /usr/local
FONTS := fonts/* FONTS := fonts/*
FONTDIR := $(PREFIX)/share/$(PROG)/fonts FONTDIR := $(PREFIX)/share/$(PROG)/fonts
CC ?= cc CC ?= cc
CFLAGS += -DFONT_DIR=\"$(FONTDIR)\" -std=c99 -Wall -g CFLAGS += -DFONT_DIR=\"$(FONTDIR)\" -std=c99 -Wall
DFLAGS = -g
UNAME := $(shell sh -c 'uname -s 2>/dev/null') UNAME := $(shell sh -c 'uname -s 2>/dev/null')
ifeq ($(UNAME),Darwin) ifeq ($(UNAME), Darwin)
CC = clang
CFLAGS += -Wunused-result -Wunused-value CFLAGS += -Wunused-result -Wunused-value
DLAGS += -fsanitize=address -fsanitize=undefined -fsanitize=leak
LDFLAGS += -liconv LDFLAGS += -liconv
endif endif
@ -22,10 +24,12 @@ install:
test -d $(FONTDIR) || mkdir -p $(PREFIX)/bin test -d $(FONTDIR) || mkdir -p $(PREFIX)/bin
cp $(PROG) $(PREFIX)/bin cp $(PROG) $(PREFIX)/bin
test -d $(FONTDIR) || mkdir -p $(FONTDIR) test -d $(FONTDIR) || mkdir -p $(FONTDIR)
rm -f $(FONTDIR)/*.tdf
for i in $(FONTS) ; do cp -v $$i $(FONTDIR) ; done for i in $(FONTS) ; do cp -v $$i $(FONTDIR) ; done
chmod ugo+r $(FONTDIR)/*.tdf
debug: $(SRC) debug: $(SRC)
$(CC) -DDEBUG -g $(CFLAGS) $(LDFLAGS) $(SRC) -o $(PROG) $(CC) -DDEBUG $(CFLAGS) $(DFLAGS) $(LDFLAGS) $(SRC) -o $(PROG)
clean: clean:
rm -rf $(PROG) $(PROG).dSYM rm -rf $(PROG) $(PROG).dSYM

View File

@ -13,6 +13,7 @@
*/ */
#include <ctype.h> #include <ctype.h>
#include <dirent.h>
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <getopt.h> #include <getopt.h>
@ -23,9 +24,11 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <sysexits.h> #include <sysexits.h>
#include <time.h>
#include <unistd.h> #include <unistd.h>
#include <sys/mman.h> #include <sys/mman.h>
#include <sys/queue.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/types.h> #include <sys/types.h>
@ -71,6 +74,7 @@ typedef struct opt_s {
uint8_t width; uint8_t width;
uint8_t color; uint8_t color;
uint8_t encoding; uint8_t encoding;
bool random;
bool info; bool info;
} opt_t; } opt_t;
@ -97,9 +101,16 @@ typedef struct font_s {
uint8_t height; uint8_t height;
} font_t; } font_t;
struct dirname_s {
char *str;
SLIST_ENTRY(dirname_s) stuff;
};
const char *charlist = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNO" const char *charlist = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNO"
"PQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; "PQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
opt_t opt;
void usage(void); void usage(void);
font_t *loadfont(char *fn); font_t *loadfont(char *fn);
void readchar(int i, glyph_t *glyph, font_t *font); void readchar(int i, glyph_t *glyph, font_t *font);
@ -115,7 +126,7 @@ void printstr(const char *str, font_t *font);
void void
usage(void) usage(void)
{ {
fprintf(stderr, "usage: tdfiglet [options] -f [font] input\n"); fprintf(stderr, "usage: tdfiglet [options] input\n");
fprintf(stderr, "\n"); fprintf(stderr, "\n");
fprintf(stderr, " -f [font] Specify font file used.\n"); fprintf(stderr, " -f [font] Specify font file used.\n");
fprintf(stderr, " -j l|r|c Justify left, right, or center. Default is left.\n"); fprintf(stderr, " -j l|r|c Justify left, right, or center. Default is left.\n");
@ -123,14 +134,12 @@ usage(void)
fprintf(stderr, " -c a|m Color format ANSI or mirc. Default is ANSI.\n"); fprintf(stderr, " -c a|m Color format ANSI or mirc. Default is ANSI.\n");
fprintf(stderr, " -e u|a Encode as unicode or ASCII. Default is unicode.\n"); fprintf(stderr, " -e u|a Encode as unicode or ASCII. Default is unicode.\n");
fprintf(stderr, " -i Print font details.\n"); fprintf(stderr, " -i Print font details.\n");
fprintf(stderr, " -r Use random font.\n");
fprintf(stderr, " -h Print usage.\n"); fprintf(stderr, " -h Print usage.\n");
fprintf(stderr, "\n"); fprintf(stderr, "\n");
exit(EX_USAGE); exit(EX_USAGE);
} }
opt_t opt;
int int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
@ -141,9 +150,19 @@ main(int argc, char *argv[])
opt.width = 80; opt.width = 80;
opt.info = false; opt.info = false;
opt.encoding = ENC_UNICODE; opt.encoding = ENC_UNICODE;
opt.random = false;
char *fontfile = NULL; char *fontfile = NULL;
while((o = getopt(argc, argv, "f:w:j:c:e:i")) != -1) { DIR *d;
struct dirent *dir;
SLIST_HEAD(, dirname_s) head = SLIST_HEAD_INITIALIZER(dirname_s);
SLIST_INIT(&head);
struct dirname_s *dp;
int r = 0;
int dll = 0;
while((o = getopt(argc, argv, "f:w:j:c:e:ir")) != -1) {
switch (o) { switch (o) {
case 'f': case 'f':
fontfile = optarg; fontfile = optarg;
@ -193,6 +212,9 @@ main(int argc, char *argv[])
case 'i': case 'i':
opt.info = true; opt.info = true;
break; break;
case 'r':
opt.random = true;
break;
case 'h': case 'h':
/* fallthrough */ /* fallthrough */
default: default:
@ -208,16 +230,45 @@ main(int argc, char *argv[])
} }
if (!fontfile) { if (!fontfile) {
fontfile = DEFAULT_FONT; if (!opt.random) {
fontfile = DEFAULT_FONT;
} else {
d = opendir(FONT_DIR);
if (!d) {
fprintf(stderr, "Error: unable to read %s\n",
FONT_DIR);
exit(1);
}
while ((dir = readdir(d))) {
if (strstr(dir->d_name, FONT_EXT)) {
dp = malloc(sizeof(struct dirname_s));
dp->str = calloc(1, 1024);
strcpy(dp->str, dir->d_name);
SLIST_INSERT_HEAD(&head, dp, stuff);
dll++;
}
}
closedir(d);
srand(time(NULL));
r = dll ? rand() % dll : 0;
dp = SLIST_FIRST(&head);
for (int i = 0; i < r; i++) {
dp = SLIST_NEXT(dp, stuff);
}
if (dp && dp->str) {
fontfile = dp->str;
} else {
fontfile = DEFAULT_FONT;
}
}
} }
font = loadfont(fontfile); font = loadfont(fontfile);
/* TODO: add support for the others */
if (font->fonttype != COLOR_FNT) {
return 0;
}
printf("\n"); printf("\n");
for (int i = 0; i < argc; i++) { for (int i = 0; i < argc; i++) {
@ -229,7 +280,8 @@ main(int argc, char *argv[])
} }
font_t font_t
*loadfont(char *fn_arg) { *loadfont(char *fn_arg)
{
font_t *font; font_t *font;
uint8_t *map = NULL; uint8_t *map = NULL;
@ -243,11 +295,11 @@ font_t
if (!strchr(fn_arg, '/')) { if (!strchr(fn_arg, '/')) {
if (strchr(fn_arg, '.')) { if (strchr(fn_arg, '.')) {
fn = malloc(strlen(FONT_DIR) + strlen(fn_arg) + 1); fn = malloc(strlen(FONT_DIR) + strlen(fn_arg) + 2);
sprintf(fn, "%s/%s", FONT_DIR, fn_arg); sprintf(fn, "%s/%s", FONT_DIR, fn_arg);
} else { } else {
fn = malloc(strlen(FONT_DIR) + strlen(fn_arg) + \ fn = malloc(strlen(FONT_DIR) + strlen(fn_arg) + \
strlen(FONT_EXT) + 2); strlen(FONT_EXT) + 3);
sprintf(fn, "%s/%s.%s", FONT_DIR, fn_arg, FONT_EXT); sprintf(fn, "%s/%s.%s", FONT_DIR, fn_arg, FONT_EXT);
} }
} else { } else {
@ -278,8 +330,6 @@ font_t
exit(EX_OSERR); exit(EX_OSERR);
} }
free(fn);
len = st.st_size; len = st.st_size;
map = mmap(0, len, PROT_READ, MAP_PRIVATE, fd, 0); map = mmap(0, len, PROT_READ, MAP_PRIVATE, fd, 0);
@ -305,11 +355,13 @@ font_t
font->data = &map[233]; font->data = &map[233];
font->height = 0; font->height = 0;
if (strncmp(magic, (const char *)map, strlen(magic))) { if (strncmp(magic, (const char *)map, strlen(magic)) || font->fonttype != COLOR_FNT) {
perror("Invalid font file"); fprintf(stderr, "Invalid font file: %s\n", fn);
exit(EX_NOINPUT); exit(EX_NOINPUT);
} }
free(fn);
if (opt.info) { if (opt.info) {
printf("font: %s\nchar list: ", font->name); printf("font: %s\nchar list: ", font->name);
} }
@ -340,7 +392,7 @@ font_t
for (int i = 0; i < NUM_CHARS; i++) { for (int i = 0; i < NUM_CHARS; i++) {
if (lookupchar(charlist[i], font) > -1) { if (lookupchar(charlist[i], font) != -1) {
font->glyphs[i] = calloc(1, sizeof(glyph_t)); font->glyphs[i] = calloc(1, sizeof(glyph_t));
@ -437,7 +489,7 @@ int
lookupchar(char c, const font_t *font) lookupchar(char c, const font_t *font)
{ {
for (int i = 0; i < NUM_CHARS; i++) { for (int i = 0; i < NUM_CHARS; i++) {
if (c == charlist[i] && font->charlist[i] != 0xffff) if (charlist[i] == c && font->charlist[i] != 0xffff)
return i; return i;
} }
@ -520,11 +572,18 @@ printstr(const char *str, font_t *font)
int linewidth = 0; int linewidth = 0;
int len = strlen(str); int len = strlen(str);
int padding = 0; int padding = 0;
int n = 0;
for (int i = 0; i < len; i++) { for (int i = 0; i < len; i++) {
glyph_t *g; glyph_t *g;
g = font->glyphs[lookupchar(str[i], font)]; n = lookupchar(str[i], font);
if (n == -1) {
continue;
}
g = font->glyphs[n];
if (g->height > maxheight) { if (g->height > maxheight) {
maxheight = g->height; maxheight = g->height;
@ -548,7 +607,13 @@ printstr(const char *str, font_t *font)
} }
for (int c = 0; c < strlen(str); c++) { for (int c = 0; c < strlen(str); c++) {
glyph_t *g = font->glyphs[lookupchar(str[c], font)]; n = lookupchar(str[c], font);
if (n == -1) {
continue;
}
glyph_t *g = font->glyphs[n];
printrow(g, i); printrow(g, i);
if (opt.color == COLOR_ANSI) { if (opt.color == COLOR_ANSI) {