1
0
Disbranĉigi 0
Ĉi tiu deponejo arĥiviĝis je 2024-01-28. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
unixchesscollection/render.sh

63 lines
1.4 KiB
Bash
Raw Normal View History

2017-03-26 16:03:29 -05:00
#!/bin/sh
file=$1
height=$(lib/json.sh -s height $file)
width=$(lib/json.sh -s width $file)
heighti=0
while [ $heighti -ne $height ]
do
heighti=$((heighti+1))
widthi=0
while [ $widthi -ne $width ]
do
widthi=$((widthi+1))
2017-03-27 07:04:52 -05:00
if grep "${widthi},${heighti}" $file > /dev/null
2017-03-26 16:03:29 -05:00
then
2017-03-27 07:04:52 -05:00
point_data=$(sh lib/json.sh $file | grep board/pieces/${widthi},${heighti}/ | grep =)
point_data=$(echo $point_data | sed 's/ = /=/g' | sed 's/ /^/g')
echo $point_data
string_one=$(echo $point_data | sed 's/.*^//')
echo $string_one
string_two=$(echo $point_data | sed 's/^.*//')
echo $string_two
if echo $string_one | grep team=
then
team=$string_one
piece=$string_two
elif echo $string_one | grep piece=
then
piece=$string_one
team=$string_two
fi
echo $string_one
echo $string_two
echo $piece
echo $team
text=$(sh lib/json.sh -s ${team}/pieces/${piece}/text $file)
else
2017-03-26 16:03:29 -05:00
text=" "
fi
if [ $(echo "$heighti % 2" | bc) -eq 1 ]
then
if [ $(echo "$widthi % 2" | bc) -eq 1 ]
then
2017-03-26 16:08:42 -05:00
printf "$(tput setab 7)$(tput setaf 0) $text"
2017-03-26 16:03:29 -05:00
else
2017-03-26 16:08:42 -05:00
printf "$(tput setab 0)$(tput setaf 7) $text"
2017-03-26 16:03:29 -05:00
fi
else
if [ $(echo "$widthi % 2" | bc) -eq 0 ]
then
2017-03-26 16:08:42 -05:00
printf "$(tput setab 7)$(tput setaf 0) $text"
2017-03-26 16:03:29 -05:00
else
2017-03-26 16:08:42 -05:00
printf "$(tput setab 0)$(tput setaf 7) $text"
2017-03-26 16:03:29 -05:00
fi
fi
done
printf "\033[m\n"
done
printf '\033[m\n'