mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
39bf41f4eb
- Python static hello world now 1.8mb - Python static fully loaded now 10mb - Python HTTPS client now uses MbedTLS - Python REPL now completes import stmts - Increase stack size for Python for now - Begin synthesizing posixpath and ntpath - Restore Python \N{UNICODE NAME} support - Restore Python NFKD symbol normalization - Add optimized code path for Intel SHA-NI - Get more Python unit tests passing faster - Get Python help() pagination working on NT - Python hashlib now supports MbedTLS PBKDF2 - Make memcpy/memmove/memcmp/bcmp/etc. faster - Add Mersenne Twister and Vigna to LIBC_RAND - Provide privileged __printf() for error code - Fix zipos opendir() so that it reports ENOTDIR - Add basic chmod() implementation for Windows NT - Add Cosmo's best functions to Python cosmo module - Pin function trace indent depth to that of caller - Show memory diagram on invalid access in MODE=dbg - Differentiate stack overflow on crash in MODE=dbg - Add stb_truetype and tools for analyzing font files - Upgrade to UNICODE 13 and reduce its binary footprint - COMPILE.COM now logs resource usage of build commands - Start implementing basic poll() support on bare metal - Set getauxval(AT_EXECFN) to GetModuleFileName() on NT - Add descriptions to strerror() in non-TINY build modes - Add COUNTBRANCH() macro to help with micro-optimizations - Make error / backtrace / asan / memory code more unbreakable - Add fast perfect C implementation of μ-Law and a-Law audio codecs - Make strtol() functions consistent with other libc implementations - Improve Linenoise implementation (see also github.com/jart/bestline) - COMPILE.COM now suppresses stdout/stderr of successful build commands
133 lines
4.8 KiB
C
133 lines
4.8 KiB
C
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Copyright 2021 Justine Alexandra Roberts Tunney │
|
|
│ │
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
│ │
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
#include "dsp/scale/cdecimate2xuint8x8.h"
|
|
#include "libc/calls/ioctl.h"
|
|
#include "libc/calls/struct/winsize.h"
|
|
#include "libc/fmt/conv.h"
|
|
#include "libc/log/libfatal.internal.h"
|
|
#include "libc/log/log.h"
|
|
#include "libc/macros.internal.h"
|
|
#include "libc/mem/mem.h"
|
|
#include "libc/nexgen32e/bsr.h"
|
|
#include "libc/runtime/gc.internal.h"
|
|
#include "libc/runtime/runtime.h"
|
|
#include "libc/stdio/stdio.h"
|
|
#include "libc/str/str.h"
|
|
#include "libc/sysv/consts/termios.h"
|
|
#include "libc/x/x.h"
|
|
#include "third_party/getopt/getopt.h"
|
|
#include "third_party/stb/stb_truetype.h"
|
|
|
|
#define MAXCODE
|
|
|
|
int start;
|
|
int end = 0x03134A /* 0x10FFFD */;
|
|
int verbose;
|
|
|
|
struct winsize ws = {24, 80};
|
|
signed char kThePerfectKernel[8] = {-1, -3, 3, 17, 17, 3, -3, -1};
|
|
|
|
void PrintBar(unsigned char *p, size_t n) {
|
|
size_t i, j;
|
|
for (j = n; j > ws.ws_col - 32; j = (j + 1) >> 1) {
|
|
cDecimate2xUint8x8(j, p, kThePerfectKernel);
|
|
}
|
|
for (i = 0; i < j; ++i) {
|
|
if (p[i]) {
|
|
fputwc(u"░░▒▒▓▓██"[bsr(p[i])], stdout);
|
|
} else {
|
|
fputc(' ', stdout);
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(int argc, char *argv[]) {
|
|
size_t n, m;
|
|
float scale;
|
|
void *bitmap;
|
|
size_t ttfsize;
|
|
const char *dir;
|
|
unsigned char *ttf;
|
|
stbtt_fontinfo font;
|
|
unsigned char *present;
|
|
unsigned char *intotal;
|
|
int w, h, i, j, c, arg, opt, errs, line, count, maxcode, s = 40 * 4, rc = 0;
|
|
ShowCrashReports();
|
|
ioctl(0, TIOCGWINSZ, &ws);
|
|
while ((opt = getopt(argc, argv, "vs:e:")) != -1) {
|
|
switch (opt) {
|
|
case 'v':
|
|
++verbose;
|
|
break;
|
|
case 's':
|
|
start = strtol(optarg, 0, 16);
|
|
break;
|
|
case 'e':
|
|
end = strtol(optarg, 0, 16);
|
|
break;
|
|
default:
|
|
return 1;
|
|
}
|
|
}
|
|
n = end + 1 - start;
|
|
m = ROUNDUP(n, 16);
|
|
present = gc(malloc(m));
|
|
intotal = gc(calloc(1, m));
|
|
if (optind < argc) {
|
|
for (arg = optind; arg < argc; ++arg) {
|
|
ttf = xslurp(argv[arg], &ttfsize);
|
|
if (!(line = setjmp(stbtt_jmpbuf))) {
|
|
stbtt_InitFont(&font, ttf, stbtt_GetFontOffsetForIndex(ttf, 0));
|
|
} else {
|
|
rc = 1;
|
|
fprintf(stderr, "%s: error loading font (assert @ stb_truetype.c:%d\n",
|
|
argv[arg], line);
|
|
free(ttf);
|
|
continue;
|
|
}
|
|
bzero(present, m);
|
|
for (maxcode = errs = 0, c = start; c <= end; ++c) {
|
|
if (!(line = setjmp(stbtt_jmpbuf))) {
|
|
if ((i = stbtt_FindGlyphIndex(&font, c)) > 0) {
|
|
w = h = 0;
|
|
scale = stbtt_ScaleForPixelHeight(&font, s);
|
|
bitmap = stbtt_GetGlyphBitmap(&font, 0, scale, i, &w, &h, 0, 0);
|
|
if (w && h) {
|
|
intotal[c - start] = present[c - start] = 255;
|
|
maxcode = c;
|
|
}
|
|
free(bitmap);
|
|
}
|
|
} else {
|
|
++errs;
|
|
}
|
|
}
|
|
PrintBar(present, m);
|
|
if (errs) {
|
|
printf(" %s (%d errors)\n", basename(argv[arg]), errs);
|
|
} else {
|
|
printf(" %s (%,d kb)\n", basename(argv[arg]), ttfsize / 1024);
|
|
}
|
|
free(ttf);
|
|
}
|
|
PrintBar(intotal, m);
|
|
fputc('\n', stdout);
|
|
}
|
|
return rc;
|
|
}
|