aboutsummaryrefslogtreecommitdiff
path: root/old/moves_trans/genmovecode.sh
diff options
context:
space:
mode:
Diffstat (limited to 'old/moves_trans/genmovecode.sh')
-rwxr-xr-xold/moves_trans/genmovecode.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/old/moves_trans/genmovecode.sh b/old/moves_trans/genmovecode.sh
new file mode 100755
index 0000000..0857f31
--- /dev/null
+++ b/old/moves_trans/genmovecode.sh
@@ -0,0 +1,19 @@
1#!/bin/sh
2
3type="${1:-src}"
4
5gcc -DDEBUG h48_to_"$type".c ../cube.c -o h48_to_"$type"
6
7genfuncs() {
8 for f in move_??_*.txt; do
9 move="$(echo $f | sed 's/.*_// ; s/\.txt//')"
10 printf 'static inline cube_fast_t\n_move_%s' "$move"
11 printf '(cube_fast_t c)\n{\n'
12 printf '\tcube_fast_t m = '
13 ./h48_to_"$type" <"$f" | sed '2,4s/^/\t/'
14 printf ';\n\n\treturn compose_fast(c, m);\n}\n\n'
15 done
16}
17
18genfuncs
19rm -f h48_to_"$type" invert

Generated with cgit - Back to sebastiano.tronto.net