aboutsummaryrefslogtreecommitdiff
path: root/src/gen_tiles.c
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2022-08-08 16:16:47 +0300
committerkartofen <mladenovnasko0@gmail.com>2022-08-08 16:16:47 +0300
commitf158268a0d59133b7cef538b3fa57ece16f2981d (patch)
tree846760a497a6c08d61adae96cbce6ffe4e6383c6 /src/gen_tiles.c
Big Bang
Diffstat (limited to 'src/gen_tiles.c')
-rw-r--r--src/gen_tiles.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/gen_tiles.c b/src/gen_tiles.c
new file mode 100644
index 0000000..87e50bd
--- /dev/null
+++ b/src/gen_tiles.c
@@ -0,0 +1,49 @@
+#include <stdio.h>
+#include <sys/stat.h>
+#include "ppm.h"
+
+int tile_0[9] = {
+ 0, 0, 0,
+ 0, 0, 0,
+ 0, 0, 0
+};
+
+int tile_1[9] = {
+ 0, 1, 0,
+ 1, 1, 1,
+ 0, 0, 0
+};
+
+int tile_2[9] = {
+ 0, 1, 0,
+ 0, 1, 1,
+ 0, 1, 0
+};
+
+int tile_3[9] = {
+ 0, 1, 0,
+ 1, 1, 0,
+ 0, 1, 0
+};
+
+int tile_4[9] = {
+ 0, 0, 0,
+ 1, 1, 1,
+ 0, 1, 0
+};
+
+void gen()
+{
+ mkdir("files/", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
+ save_as_ppm("files/tile_0.ppm", tile_0, 3, 3);
+ save_as_ppm("files/tile_1.ppm", tile_1, 3, 3);
+ save_as_ppm("files/tile_2.ppm", tile_2, 3, 3);
+ save_as_ppm("files/tile_3.ppm", tile_3, 3, 3);
+ save_as_ppm("files/tile_4.ppm", tile_4, 3, 3);
+}
+
+int main(void)
+{
+ gen();
+ return 0;
+}