blob: 8a28d45894e862455c664da31ccdc0fd27514ac7 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#!/bin/sh
# -----BEGIN EASILY CONFIGURABLE OPTIONS-------
bin='typhoon'
opts='--cpus 4 --hash 512m --logfile play.log --egtbpath /egtb/three;/egtb/four;/egtb/five'
dir='.'
ics='chessclub.com'
flags=''
# -----END EASILY CONFIGURABLE OPTIONS-------
usage() {
echo "Usage: $1 [--local | --icc | --fics] [--xdebug] [--edebug]"
echo ""
echo "--local and --icc toggle between playing locally against the engine and"
echo "playing the engine on an ICS server. Playing locally is the default."
echo ""
echo "--xdebug enables debugging of the xboard protocol. --edebug uses a debug"
echo "version of the chess engine."
echo ""
exit 1
}
play_locally() {
xboard -ponder -fcp "${bin} ${opts}" -fd ${dir} -xpopup -xexit -size medium \
-coords -highlight
}
attach_to_ics() {
while true; do
xboard -ics -icshost "${ics}" -ponder -fcp "${bin} ${opts}" -fd ${dir} \
-autoflag -xpopup -xexit -size medium -coords -highlight -zp \
${flags}
sleep 30
killall typhoon
done
}
mode='local'
for _switch ; do
case $_switch in
--xdebug)
flags='-debug'
shift
;;
--edebug)
bin='_typhoon'
shift
;;
--local)
mode='local'
shift
;;
--icc)
mode='ics'
shift
;;
--fics)
mode='fics'
ics='freechess.org'
shift
;;
*)
usage $0
;;
esac
done
case ${mode} in
local)
play_locally
;;
ics)
attach_to_ics
;;
fics)
attach_to_ics
;;
esac
exit 0
|