From fcc9bee6632a273dda5a363cfaed8793aafab88d Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Wed, 10 Oct 2018 21:44:32 -0400 Subject: Add PNG renderer --- Makefile | 7 ++- README | 31 +++++++---- default8x16.psfu | Bin 0 -> 4969 bytes image.c | 167 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ torus.7 | 57 +++++++++++++++++++ 5 files changed, 248 insertions(+), 14 deletions(-) create mode 100644 default8x16.psfu create mode 100644 image.c create mode 100644 torus.7 diff --git a/Makefile b/Makefile index 877a59b..6169e4d 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,8 @@ CHROOT_GROUP = $(CHROOT_USER) CFLAGS += -Wall -Wextra -Wpedantic LDFLAGS += -static -LDLIBS = -lcursesw -BINS = server client meta merge +LDLIBS = -lcursesw -lz +BINS = server client image meta merge OBJS = $(BINS:%=%.o) all: tags $(BINS) @@ -43,3 +43,6 @@ chroot.tar: server client clean: rm -f tags $(OBJS) $(BINS) chroot.tar + +README: torus.7 + mandoc torus.7 | col -b -x > README diff --git a/README b/README index eda30ad..e7f3e3b 100644 --- a/README +++ b/README @@ -1,15 +1,22 @@ -Welcome to ascii.town! +TORUS(7) FreeBSD Miscellaneous Information Manual TORUS(7) -This software targets FreeBSD and Darwin. +NAME + torus – welcome to ascii.town! - torus.h Shared structures and message protocol. - server.c Maps torus.dat and listens on torus.sock. - client.c Curses client. - help.c Automated client which redraws a helpful banner. - meta.c Exports metadata from data file to CSV. - merge.c Interactively merges two data files. - snapshot.sh Snapshots data file, appropriate for cron. +DESCRIPTION + This software targets FreeBSD and Darwin. - sshd_config Anonymous login to chrooted client. - termcap.diff Patch for bright colors in xterm and rxvt. - index.html Friendly directions. + torus.h Shared structures and message protocol. + server.c Maps torus.dat and listens on torus.sock. + client.c curses(3) client. + help.h Tile data for help page. + image.c Renders PNGs of tiles. + meta.c Exports metadata from data file to CSV. + merge.c Interactively merges two data files. + snapshot.sh Snapshots data file, appropriate for cron. + + sshd_config Anonymous login to chroot(8)'d client. + index.html Friendly directions. + default8x16.psfu Bitmap font from kbd: http://kbd-project.org. + +Causal Agency October 10, 2018 Causal Agency diff --git a/default8x16.psfu b/default8x16.psfu new file mode 100644 index 0000000..e789b77 Binary files /dev/null and b/default8x16.psfu differ diff --git a/image.c b/image.c new file mode 100644 index 0000000..66b359e --- /dev/null +++ b/image.c @@ -0,0 +1,167 @@ +/* Copyright (C) 2018 Curtis McEnroe + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "torus.h" + +static const uint8_t Palette[16][3] = { + { 0x00, 0x00, 0x00 }, + { 0xAA, 0x00, 0x00 }, + { 0x00, 0xAA, 0x00 }, + { 0xAA, 0x55, 0x00 }, + { 0x00, 0x00, 0xAA }, + { 0xAA, 0x00, 0xAA }, + { 0x00, 0xAA, 0xAA }, + { 0xAA, 0xAA, 0xAA }, + { 0x55, 0x55, 0x55 }, + { 0xFF, 0x55, 0x55 }, + { 0x55, 0xFF, 0x55 }, + { 0xFF, 0xFF, 0x55 }, + { 0x55, 0x55, 0xFF }, + { 0xFF, 0x55, 0xFF }, + { 0x55, 0xFF, 0xFF }, + { 0xFF, 0xFF, 0xFF }, +}; + +static uint32_t crc; +static void pngWrite(const void *ptr, size_t size) { + fwrite(ptr, size, 1, stdout); + if (ferror(stdout)) err(EX_IOERR, "(stdout)"); + crc = crc32(crc, ptr, size); +} +static void pngInt(uint32_t host) { + uint32_t net = htonl(host); + pngWrite(&net, 4); +} +static void pngChunk(char type[static 4], uint32_t size) { + pngInt(size); + crc = crc32(0, Z_NULL, 0); + pngWrite(type, 4); +} + +int main(int argc, char *argv[]) { + const char *fontPath = "default8x16.psfu"; + const char *dataPath = "torus.dat"; + uint32_t tileX = TileInitX; + uint32_t tileY = TileInitY; + + int opt; + while (0 < (opt = getopt(argc, argv, "d:f:x:y:"))) { + switch (opt) { + break; case 'd': dataPath = optarg; + break; case 'f': fontPath = optarg; + break; case 'x': tileX = strtoul(optarg, NULL, 0) % TileCols; + break; case 'y': tileY = strtoul(optarg, NULL, 0) % TileRows; + break; default: return EX_USAGE; + } + } + + FILE *file = fopen(fontPath, "r"); + if (!file) err(EX_NOINPUT, "%s", fontPath); + + struct { + uint32_t magic; + uint32_t version; + uint32_t size; + uint32_t flags; + struct { + uint32_t len; + uint32_t size; + uint32_t height; + uint32_t width; + } glyph; + } psf; + size_t len = fread(&psf, sizeof(psf), 1, file); + if (ferror(file)) err(EX_IOERR, "%s", fontPath); + if (len < 1) errx(EX_DATAERR, "%s: truncated header", fontPath); + + uint8_t glyphs[psf.glyph.len][psf.glyph.height][(psf.glyph.width + 7) / 8]; + len = fread(glyphs, psf.glyph.size, psf.glyph.len, file); + if (ferror(file)) err(EX_IOERR, "%s", fontPath); + if (len < 1) errx(EX_DATAERR, "%s: truncated glyphs", fontPath); + fclose(file); + + int fd = open(dataPath, O_RDONLY); + if (fd < 0) err(EX_NOINPUT, "%s", dataPath); + + struct Tile *tile = mmap( + NULL, sizeof(struct Tile), + PROT_READ, MAP_SHARED, + fd, sizeof(struct Tile) * (TileRows * tileY + tileX) + ); + if (tile == MAP_FAILED) err(EX_IOERR, "mmap"); + close(fd); + + pngWrite("\x89PNG\r\n\x1A\n", 8); + + uint32_t width = CellCols * psf.glyph.width; + uint32_t height = CellRows * psf.glyph.height; + + pngChunk("IHDR", 13); + pngInt(width); + pngInt(height); + pngWrite("\x08\x03\x00\x00\x00", 5); + pngInt(crc); + + pngChunk("PLTE", sizeof(Palette)); + pngWrite(Palette, sizeof(Palette)); + pngInt(crc); + + uint8_t data[height][1 + width]; + memset(data, 0, sizeof(data)); + + for (uint32_t y = 0; y < CellRows; ++y) { + for (uint32_t x = 0; x < CellCols; ++x) { + uint8_t cell = tile->cells[y][x]; + uint8_t fg = tile->colors[y][x] & 0x0F; + uint8_t bg = tile->colors[y][x] >> 4; + + uint32_t row = psf.glyph.height * y; + uint32_t col = psf.glyph.width * x; + for (uint8_t gy = 0; gy < psf.glyph.height; ++gy) { + for (uint8_t gx = 0; gx < psf.glyph.width; ++gx) { + uint8_t bit = glyphs[cell][gy][gx / 8] >> (7 - gx % 8) & 1; + data[row + gy][1 + col + gx] = (bit ? fg : bg); + } + } + } + } + + uLong size = compressBound(sizeof(data)); + uint8_t deflate[size]; + int error = compress(deflate, &size, (Byte *)data, sizeof(data)); + if (error != Z_OK) errx(EX_SOFTWARE, "compress: %d", error); + + pngChunk("IDAT", size); + pngWrite(deflate, size); + pngInt(crc); + + pngChunk("IEND", 0); + pngInt(crc); + + return EX_OK; +} diff --git a/torus.7 b/torus.7 new file mode 100644 index 0000000..256083c --- /dev/null +++ b/torus.7 @@ -0,0 +1,57 @@ +.Dd October 10, 2018 +.Dt TORUS 7 +.Os "Causal Agency" +. +.Sh NAME +.Nm torus +.Nd welcome to ascii.town! +. +.Sh DESCRIPTION +This software targets +.Fx +and Darwin. +. +.Pp +.Bl -tag -width "snapshot.sh" -compact +.It Pa torus.h +Shared structures and message protocol. +. +.It Pa server.c +Maps +.Pa torus.dat +and listens on +.Pa torus.sock . +. +.It Pa client.c +.Xr curses 3 +client. +. +.It Pa help.h +Tile data for help page. +. +.It Pa image.c +Renders PNGs of tiles. +. +.It Pa meta.c +Exports metadata from data file to CSV. +. +.It Pa merge.c +Interactively merges two data files. +. +.It Pa snapshot.sh +Snapshots data file, appropriate for cron. +.El +. +.Pp +.Bl -tag -width "default8x16.psfu" -compact +.It Pa sshd_config +Anonymous login to +.Xr chroot 8 Ap d client. +. +.It Pa index.html +Friendly directions. +. +.It Pa default8x16.psfu +Bitmap font from +.Lk http://kbd-project.org kbd . +.El -- cgit 1.4.1