/* * diff.c - Schematics difference * * Written 2016 by Werner Almesberger * Copyright 2016 by Werner Almesberger * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include #include #include #include "util.h" #include "main.h" #include "cro.h" #include "file.h" #include "sch.h" #include "lib.h" #include "diff.h" #define DEFAULT_FRAME_RADIUS 30 struct area { int xa, ya, xb, yb; struct area *next; }; struct diff { void *cr_ctx; uint32_t *new_img; int w, h, stride; const char *output_name; int frame_radius; struct area *areas; }; /* ----- Wrappers ---------------------------------------------------------- */ static void diff_line(void *ctx, int sx, int sy, int ex, int ey, int color, unsigned layer) { const struct diff *diff = ctx; cro_img_ops.line(diff->cr_ctx, sx, sy, ex, ey, color, layer); } static void diff_poly(void *ctx, int points, const int x[points], const int y[points], int color, int fill_color, unsigned layer) { const struct diff *diff = ctx; cro_img_ops.poly(diff->cr_ctx, points, x, y, color, fill_color, layer); } static void diff_circ(void *ctx, int x, int y, int r, int color, int fill_color, unsigned layer) { const struct diff *diff = ctx; cro_img_ops.circ(diff->cr_ctx, x, y, r, color, fill_color, layer); } static void diff_arc(void *ctx, int x, int y, int r, int sa, int ea, int color, int fill_color, unsigned layer) { const struct diff *diff = ctx; cro_img_ops.arc(diff->cr_ctx, x, y, r, sa, ea, color, fill_color, layer); } static void diff_text(void *ctx, int x, int y, const char *s, unsigned size, enum text_align align, int rot, unsigned color, unsigned layer) { const struct diff *diff = ctx; cro_img_ops.text(diff->cr_ctx, x, y, s, size, align, rot, color, layer); } static unsigned diff_text_width(void *ctx, const char *s, unsigned size) { const struct diff *diff = ctx; return cro_img_ops.text_width(diff->cr_ctx, s, size); } /* ----- Initialization and termination ------------------------------------ */ static void *diff_init(int argc, char *const *argv) { struct diff *diff; char c; int arg; struct sch_ctx new_sch; struct file sch_file; struct lib new_lib; diff = alloc_type(struct diff); diff->areas = NULL; sch_init(&new_sch, 0); lib_init(&new_lib); diff->output_name = NULL; diff->frame_radius = DEFAULT_FRAME_RADIUS; while ((c = getopt(argc, argv, "o:s:")) != EOF) switch (c) { case 'o': diff->output_name = optarg; break; case 's': /* for cro_png */ break; default: usage(*argv); } if (argc - optind < 1) usage(*argv); if (!file_open(&sch_file, argv[argc - 1], NULL)) goto fail_open; for (arg = optind; arg != argc - 1; arg++) if (!lib_parse(&new_lib, argv[arg], &sch_file)) goto fail_parse; if (!sch_parse(&new_sch, &sch_file, &new_lib)) goto fail_parse; file_close(&sch_file); optind = 0; gfx_init(&cro_img_ops, argc, argv); diff->cr_ctx = gfx_ctx; sch_render(new_sch.sheets); diff->new_img = cro_img_end(gfx_ctx, &diff->w, &diff->h, &diff->stride); optind = 0; diff->cr_ctx = cro_img_ops.init(argc, argv); return diff; fail_parse: file_close(&sch_file); fail_open: sch_free(&new_sch); lib_free(&new_lib); free(diff); return NULL; } /* steal from schhist/ppmdiff.c */ #define ONLY_OLD 0xff0000 #define ONLY_NEW 0x00d000 #define BOTH 0x707070 #define AREA_FILL 0xffffc8 static void mark_area(struct diff *diff, int x, int y) { struct area *area; for (area = diff->areas; area; area = area->next) if (x >= area->xa && x <= area->xb && y >= area->ya && y <= area->yb) { if (area->xa > x - diff->frame_radius) area->xa = x - diff->frame_radius; if (area->xb < x + diff->frame_radius) area->xb = x + diff->frame_radius; if (area->ya > y - diff->frame_radius) area->ya = y - diff->frame_radius; if (area->yb < y + diff->frame_radius) area->yb = y + diff->frame_radius; return; } area = alloc_type(struct area); area->xa = x - diff->frame_radius; area->xb = x + diff->frame_radius; area->ya = y - diff->frame_radius; area->yb = y + diff->frame_radius; area->next = diff->areas; diff->areas = area; } #define MASK 0xffffff static void differences(struct diff *diff, uint32_t *a, const uint32_t *b) { int x, y; unsigned skip = diff->w * 4 - diff->stride; for (y = 0; y != diff->h; y++) { for (x = 0; x != diff->w; x++) { if (!((*a ^ *b) & MASK)) { *a = ((*a >> 3) & 0x1f1f1f) | 0xe0e0e0; // *a = ((*a >> 2) & 0x3f3f3f) | 0xc0c0c0; } else { mark_area(diff, x, y); //fprintf(stderr, "0x%06x 0x%06x", *a, *b); *a = (*a & MASK) == MASK ? ONLY_NEW : (*b & MASK) == MASK ? ONLY_OLD : BOTH; //fprintf(stderr, "-> 0x%06x\n", *a); } a++; b++; } a += skip; b += skip; } } static void show_areas(struct diff *diff, uint32_t *a) { const struct area *area; uint32_t *p; int x, y; for (area = diff->areas; area; area = area->next) for (y = area->ya; y != area->yb; y++) { if (y < 0 || y >= diff->h) continue; p = a + y * (diff->stride >> 2); for (x = area->xa; x != area->xb; x++) { if (x >= 0 && x < diff->w && (p[x] & MASK) == MASK) p[x] = AREA_FILL; } } } static void diff_end(void *ctx) { struct diff *diff = ctx; uint32_t *old_img; int w, h, stride; old_img = cro_img_end(diff->cr_ctx, &w, &h, &stride); if (diff->w != w || diff->h != h) { fprintf(stderr, "%d x %d vs. %d x %d image\n", w, h, diff->w, diff->h); exit(1); } differences(diff, old_img, diff->new_img); show_areas(diff, old_img); cro_img_write(diff->cr_ctx, diff->output_name); } /* ----- Operations -------------------------------------------------------- */ const struct gfx_ops diff_ops = { .name = "diff", .line = diff_line, .poly = diff_poly, .circ = diff_circ, .arc = diff_arc, .text = diff_text, .text_width = diff_text_width, .init = diff_init, .end = diff_end, };