summary refs log tree commit diff
path: root/bin/glitch.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-07-16 14:14:52 -0400
committerJune McEnroe <june@causal.agency>2018-07-16 14:14:52 -0400
commit3bdbfdc1c86bdb72ce4ee33160abedd7cc128ce2 (patch)
treef1e2282a0ba835f0227d782fa4f054ac8d27655c /bin/glitch.c
parentmalloc deflate buffer in glitch (diff)
downloadsrc-3bdbfdc1c86bdb72ce4ee33160abedd7cc128ce2.tar.gz
src-3bdbfdc1c86bdb72ce4ee33160abedd7cc128ce2.zip
Add -m option to glitch
Diffstat (limited to 'bin/glitch.c')
-rw-r--r--bin/glitch.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/bin/glitch.c b/bin/glitch.c
index 3d58fa33..f62ee1fc 100644
--- a/bin/glitch.c
+++ b/bin/glitch.c
@@ -276,6 +276,7 @@ static struct {
 	uint8_t applyFilter;
 	enum Filter declareFilters[255];
 	enum Filter applyFilters[255];
+	bool mirror;
 } options;
 
 struct Bytes {
@@ -396,6 +397,16 @@ static void filterData(void) {
 	}
 }
 
+static void mirror(void) {
+	for (uint32_t y = 0; y < header.height; ++y) {
+		for (size_t i = 0, j = lineSize() - 1; i < j; ++i, --j) {
+			uint8_t t = lines[y]->data[i];
+			lines[y]->data[i] = lines[y]->data[j];
+			lines[y]->data[j] = t;
+		}
+	}
+}
+
 static void glitch(const char *inPath, const char *outPath) {
 	if (inPath) {
 		path = inPath;
@@ -415,6 +426,7 @@ static void glitch(const char *inPath, const char *outPath) {
 	scanlines();
 	reconData();
 	filterData();
+	if (options.mirror) mirror();
 	free(lines);
 
 	if (outPath) {
@@ -462,7 +474,7 @@ int main(int argc, char *argv[]) {
 	char *output = NULL;
 
 	int opt;
-	while (0 < (opt = getopt(argc, argv, "a:cd:fo:pr"))) {
+	while (0 < (opt = getopt(argc, argv, "a:cd:fmo:pr"))) {
 		switch (opt) {
 			break; case 'a':
 				options.applyFilter = parseFilters(options.applyFilters, optarg);
@@ -470,6 +482,7 @@ int main(int argc, char *argv[]) {
 			break; case 'd':
 				options.declareFilter = parseFilters(options.declareFilters, optarg);
 			break; case 'f': options.filt = true;
+			break; case 'm': options.mirror = true;
 			break; case 'o': output = optarg;
 			break; case 'p': options.brokenPaeth = true;
 			break; case 'r': options.recon = true;