summaryrefslogtreecommitdiff
path: root/shape_maps.c
diff options
context:
space:
mode:
authoroxore <oxore@protonmail.com>2016-09-04 00:30:10 +0700
committeroxore <oxore@protonmail.com>2016-09-04 00:30:10 +0700
commit5a8b79c468578cd5226d8a543324835ca6978103 (patch)
treef0b2888f40d06e62f63d046d0eb8dd5c62376a3d /shape_maps.c
parent81a072addd62c6c796633ab456b02c586cf86570 (diff)
removed old files
Diffstat (limited to 'shape_maps.c')
-rw-r--r--shape_maps.c219
1 files changed, 0 insertions, 219 deletions
diff --git a/shape_maps.c b/shape_maps.c
deleted file mode 100644
index e96ea8f..0000000
--- a/shape_maps.c
+++ /dev/null
@@ -1,219 +0,0 @@
-/* Shapes maps */
-
-/*
- * L #1 tYellow
- * ..#. .#.. .... ##..
- * ###. .#.. ###. .#..
- * .... .##. #... .#..
- * .... .... .... ....
- */
-short arrShapeL_a1[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {1, 1, 1, 0},
- {0, 0, 1, 0}};
-
-short arrShapeL_a2[4][4] = {
- {0, 0, 0, 0},
- {0, 1, 1, 0},
- {0, 1, 0, 0},
- {0, 1, 0, 0}};
-
-short arrShapeL_a3[4][4] = {
- {0, 0, 0, 0},
- {1, 0, 0, 0},
- {1, 1, 1, 0},
- {0, 0, 0, 0}};
-
-short arrShapeL_a4[4][4] = {
- {0, 0, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 0, 0},
- {1, 1, 0, 0}};
-
-/*
- * RL #2 tBlue
- * #... .##. .... .#..
- * ###. .#.. ###. .#..
- * .... .#.. ..#. ##..
- * .... .... .... ....
- */
-
-short arrShapeRL_a1[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {1, 1, 1, 0},
- {1, 0, 0, 0}};
-
-short arrShapeRL_a2[4][4] = {
- {0, 0, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 1, 0}};
-
-short arrShapeRL_a3[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 1, 0},
- {1, 1, 1, 0},
- {0, 0, 0, 0}};
-
-short arrShapeRL_a4[4][4] = {
- {0, 0, 0, 0},
- {1, 1, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 0, 0}};
-
-/*
- * Z #3
- * ##.. ..#. .... .#..
- * .##. .##. ##.. ##..
- * .... .#.. .##. #...
- * .... .... .... ....
- */
-short arrShapeZ_a1[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {0, 1, 1, 0},
- {1, 1, 0, 0}};
-
-short arrShapeZ_a2[4][4] = {
- {0, 0, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 1, 0},
- {0, 0, 1, 0}};
-
-short arrShapeZ_a3[4][4] = {
- {0, 0, 0, 0},
- {0, 1, 1, 0},
- {1, 1, 0, 0},
- {0, 0, 0, 0}};
-
-short arrShapeZ_a4[4][4] = {
- {0, 0, 0, 0},
- {1, 0, 0, 0},
- {1, 1, 0, 0},
- {0, 1, 0, 0}};
-
-/*
- * S #4
- * .##. .#.. .... #...
- * ##.. .##. .##. ##..
- * .... ..#. ##.. .#..
- * .... .... .... ....
- */
-short arrShapeS_a1[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {1, 1, 0, 0},
- {0, 1, 1, 0}};
-
-short arrShapeS_a2[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 1, 0},
- {0, 1, 1, 0},
- {0, 1, 0, 0}};
-
-short arrShapeS_a3[4][4] = {
- {0, 0, 0, 0},
- {1, 1, 0, 0},
- {0, 1, 1, 0},
- {0, 0, 0, 0}};
-
-short arrShapeS_a4[4][4] = {
- {0, 0, 0, 0},
- {0, 1, 0, 0},
- {1, 1, 0, 0},
- {1, 0, 0, 0}};
-
-/*
- * B #5
- * ##.. ##.. ##.. ##..
- * ##.. ##.. ##.. ##..
- * .... .... .... ....
- * .... .... .... ....
- */
-short arrShapeB_a1[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {0, 1, 1, 0},
- {0, 1, 1, 0}};
-
-short arrShapeB_a2[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {0, 1, 1, 0},
- {0, 1, 1, 0}};
-
-short arrShapeB_a3[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {0, 1, 1, 0},
- {0, 1, 1, 0}};
-
-short arrShapeB_a4[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {0, 1, 1, 0},
- {0, 1, 1, 0}};
-
-/*
- * I #6
- * .#.. .... .#.. ....
- * .#.. #### .#.. ####
- * .#.. .... .#.. ....
- * .#.. .... .#.. ....
- */
-short arrShapeI_a1[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {1, 1, 1, 1},
- {0, 0, 0, 0}};
-
-short arrShapeI_a2[4][4] = {
- {0, 1, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 0, 0}};
-
-short arrShapeI_a3[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {1, 1, 1, 1},
- {0, 0, 0, 0}};
-
-short arrShapeI_a4[4][4] = {
- {0, 1, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 0, 0}};
-
-/*
- * T #7
- * .#.. .#.. .... .#..
- * ###. .##. ###. ##..
- * .... .#.. .#.. .#..
- * .... .... .... ....
- */
-short arrShapeT_a1[4][4] = {
- {0, 0, 0, 0},
- {0, 0, 0, 0},
- {1, 1, 1, 0},
- {0, 1, 0, 0}};
-
-short arrShapeT_a2[4][4] = {
- {0, 0, 0, 0},
- {0, 1, 0, 0},
- {0, 1, 1, 0},
- {0, 1, 0, 0}};
-
-short arrShapeT_a3[4][4] = {
- {0, 0, 0, 0},
- {0, 1, 0, 0},
- {1, 1, 1, 0},
- {0, 0, 0, 0}};
-
-short arrShapeT_a4[4][4] = {
- {0, 0, 0, 0},
- {0, 1, 0, 0},
- {1, 1, 0, 0},
- {0, 1, 0, 0}}; \ No newline at end of file