summary refs log tree commit diff
path: root/bin/scheme.c
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-03-31 13:17:02 -0400
committerJune McEnroe <programble@gmail.com>2018-03-31 13:17:02 -0400
commitb15ab83988237d896f299c301652323a81d7a589 (patch)
treeb921c3006c883914a341d6a116147954ae0665fa /bin/scheme.c
parentAdd color scheme PNG generator (diff)
downloadsrc-b15ab83988237d896f299c301652323a81d7a589.tar.gz
src-b15ab83988237d896f299c301652323a81d7a589.zip
Add hex output to scheme
Diffstat (limited to 'bin/scheme.c')
-rw-r--r--bin/scheme.c35
1 files changed, 30 insertions, 5 deletions
diff --git a/bin/scheme.c b/bin/scheme.c
index f1b12eae..9762a3bb 100644
--- a/bin/scheme.c
+++ b/bin/scheme.c
@@ -23,6 +23,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <sysexits.h>
+#include <unistd.h>
 #include <zlib.h>
 
 struct Hsv {
@@ -65,7 +66,7 @@ static void pngChunk(const char *type, uint32_t size) {
 }
 enum { NONE, SUB, UP, AVERAGE, PAETH };
 
-static void png(const struct Hsv *hsv, uint8_t len) {
+static void png(const struct Hsv *scheme, uint8_t len) {
     uint32_t swatchWidth = 64;
     uint32_t swatchHeight = 64;
     uint32_t columns = 8;
@@ -83,7 +84,7 @@ static void png(const struct Hsv *hsv, uint8_t len) {
 
     pngChunk("PLTE", 3 * len);
     for (uint8_t i = 0; i < len; ++i) {
-        struct Rgb rgb = toRgb(hsv[i]);
+        struct Rgb rgb = toRgb(scheme[i]);
         pngWrite(&rgb, 3);
     }
     pngInt(crc);
@@ -112,8 +113,26 @@ static void png(const struct Hsv *hsv, uint8_t len) {
     pngInt(crc);
 }
 
-int main() {
-    struct Hsv scheme[16] = {
+static void hex(const struct Hsv *scheme, uint8_t len) {
+    for (uint8_t i = 0; i < len; ++i) {
+        struct Rgb rgb = toRgb(scheme[i]);
+        printf("%02x%02x%02x\n", rgb.r, rgb.g, rgb.b);
+    }
+}
+
+int main(int argc, char *argv[]) {
+    enum { HEX, PNG } output = HEX;
+
+    int opt;
+    while (0 < (opt = getopt(argc, argv, "gx"))) {
+        switch (opt) {
+            case 'g': output = PNG; break;
+            case 'x': output = HEX; break;
+            default: return EX_USAGE;
+        }
+    }
+
+    struct Hsv scheme[] = {
         { 0.0,   1.0, 1.0 },
         { 45.0,  1.0, 1.0 },
         { 90.0,  1.0, 1.0 },
@@ -131,6 +150,12 @@ int main() {
         { 270.0, 0.5, 1.0 },
         { 315.0, 0.5, 1.0 },
     };
-    png(scheme, 16);
+    size_t len = sizeof(scheme) / sizeof(scheme[0]);
+
+    switch (output) {
+        case HEX: hex(scheme, len); break;
+        case PNG: png(scheme, len); break;
+    }
+
     return EX_OK;
 }