aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-hexagon-tessellation.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-07-13 04:50:57 +0200
committerMattias Andrée <maandree@kth.se>2017-07-13 04:50:57 +0200
commitab3fc0fa703bc112938360c77200bd4ecb6bd503 (patch)
treed9e5299e2a01e254f8d89e48e897ee05bf96382f /src/blind-hexagon-tessellation.c
parentSmall improvements to the makefile (diff)
downloadblind-ab3fc0fa703bc112938360c77200bd4ecb6bd503.tar.gz
blind-ab3fc0fa703bc112938360c77200bd4ecb6bd503.tar.bz2
blind-ab3fc0fa703bc112938360c77200bd4ecb6bd503.tar.xz
Add blind-rectangle-tessellation, blind-triangle-tessellation, and blind-hexagon-tessellation
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/blind-hexagon-tessellation.c')
-rw-r--r--src/blind-hexagon-tessellation.c108
1 files changed, 108 insertions, 0 deletions
diff --git a/src/blind-hexagon-tessellation.c b/src/blind-hexagon-tessellation.c
new file mode 100644
index 0000000..f7a4c46
--- /dev/null
+++ b/src/blind-hexagon-tessellation.c
@@ -0,0 +1,108 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+USAGE("[-F pixel-format] block-diameter")
+
+#define SET_XYZA(TYPE)\
+ (pixwidth *= sizeof(double),\
+ colours = alloca(4 * pixwidth),\
+ ((TYPE *)colours)[ 0] = (TYPE)(0.0000 * D65_XYZ_X),\
+ ((TYPE *)colours)[ 1] = (TYPE)(0.0000),\
+ ((TYPE *)colours)[ 2] = (TYPE)(0.0000 * D65_XYZ_Z),\
+ ((TYPE *)colours)[ 3] = (TYPE)1,\
+ ((TYPE *)colours)[ 4] = (TYPE)(0.3333 * D65_XYZ_X),\
+ ((TYPE *)colours)[ 5] = (TYPE)(0.3333),\
+ ((TYPE *)colours)[ 6] = (TYPE)(0.3333 * D65_XYZ_Z),\
+ ((TYPE *)colours)[ 7] = (TYPE)1,\
+ ((TYPE *)colours)[ 8] = (TYPE)(0.6667 * D65_XYZ_X),\
+ ((TYPE *)colours)[ 9] = (TYPE)(0.6667),\
+ ((TYPE *)colours)[10] = (TYPE)(0.6667 * D65_XYZ_Z),\
+ ((TYPE *)colours)[11] = (TYPE)1,\
+ ((TYPE *)colours)[12] = (TYPE)(1.0000 * D65_XYZ_X),\
+ ((TYPE *)colours)[13] = (TYPE)(1.0000),\
+ ((TYPE *)colours)[14] = (TYPE)(1.0000 * D65_XYZ_Z),\
+ ((TYPE *)colours)[15] = (TYPE)1)
+
+static struct stream stream = { .width = 0, .height = 0, .frames = 1 };
+
+int
+main(int argc, char *argv[])
+{
+ size_t diameter;
+ const char *pixfmt = "xyza";
+ size_t pixwidth = 4;
+ char *colours;
+ size_t x, y, y2;
+ int k;
+
+ ARGBEGIN {
+ case 'F':
+ pixfmt = UARGF();
+ break;
+ default:
+ usage();
+ } ARGEND;
+
+ if (argc != 1)
+ usage();
+
+ diameter = etozu_arg("block-diameter", argv[0], 1, SIZE_MAX);
+
+ pixfmt = get_pixel_format(pixfmt, "xyza");
+ if (!strcmp(pixfmt, "xyza"))
+ SET_XYZA(double);
+ else if (!strcmp(pixfmt, "xyza f"))
+ SET_XYZA(float);
+ else
+ eprintf("pixel format %s is not supported, try xyza\n", pixfmt);
+
+ strcpy(stream.pixfmt, pixfmt);
+ stream.width = (size_t)(diameter * sqrt(3.));
+ stream.height = diameter * 3 / 2;
+ fprint_stream_head(stdout, &stream);
+ efflush(stdout, "<stdout>");
+
+ for (y = 0; y < stream.height; y++) {
+ for (x = 0; x < stream.width; x++) {
+ if (y * 4 < diameter) {
+ switch (x * 4 / stream.width) {
+ case 0:
+ k = 2 * (4 * x * diameter < stream.width * diameter - 4 * y * stream.width);
+ break;
+ case 1:
+ k = 3 * (4 * x * diameter - stream.width * diameter > 4 * y * stream.width);
+ break;
+ case 2:
+ k = 1 + 2 * (3 * diameter * stream.width - 4 * x * diameter > 4 * y * stream.width);
+ break;
+ default:
+ k = 1 + (4 * x * diameter - 3 * stream.width * diameter > 4 * y * stream.width);
+ break;
+ }
+ } else if (y * 4 < diameter * 3) {
+ k = (x * 2 >= stream.width);
+ } else if (y < diameter) {
+ y2 = diameter - y;
+ switch (x * 4 / stream.width) {
+ case 0:
+ k = 2 * (4 * x * diameter < stream.width * diameter - 4 * y2 * stream.width);
+ break;
+ case 1:
+ k = 3 * (4 * x * diameter - stream.width * diameter > 4 * y2 * stream.width);
+ break;
+ case 2:
+ k = 1 + 2 * (3 * diameter * stream.width - 4 * x * diameter > 4 * y2 * stream.width);
+ break;
+ default:
+ k = 1 + (4 * x * diameter - 3 * stream.width * diameter > 4 * y2 * stream.width);
+ break;
+ }
+ } else {
+ k = (stream.width <= x * 4 && x * 4 < stream.width * 3) + 2;
+ }
+ ewriteall(STDOUT_FILENO, colours + k * pixwidth, pixwidth, "<stdout>");
+ }
+ }
+
+ return 0;
+}