blob: a257a0a6bf2f3c9b59ad413b4b3ff573bdc69828 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
outdir="./generated_trans_tests"
mkdir -p "$outdir"
i=100
while read -r line; do
[ -z "$line" ] && continue
trans_piece="$(echo "$line" | awk '{print $1}' | tr -d 'rm')"
move1="$(echo "$line" | awk '{print $2}')"
move2="$(echo "$line" | awk '{print $3}')"
rotation="rotation $trans_piece"
file1="$(ls cubes | grep "move_.*_${move1}.txt")"
file2="$(ls cubes | grep "move_.*_${move2}.txt")"
echo "$rotation" >"$outdir/${i}_${trans_piece}r_${move1}.in"
cat "cubes/$file1" >>"$outdir/${i}_${trans_piece}r_${move1}.in"
cp "cubes/$file2" "$outdir/${i}_${trans_piece}r_${move1}.out"
i=$((i+1))
mirrored="mirrored $trans_piece"
move2m="$(echo "${move2}" | tr 'LR' 'RL')3"
file1="$(ls cubes | grep "move_.*_${move1}.txt")"
file2="$(ls cubes | grep "move_.*_${move2m}.txt")"
echo "$mirrored" >"$outdir/${i}_${trans_piece}m_${move1}.in"
cat "cubes/$file1" >>"$outdir/${i}_${trans_piece}m_${move1}.in"
cp "cubes/$file2" "$outdir/${i}_${trans_piece}m_${move1}.out"
i=$((i+1))
done <transform_moves.txt
|