summaryrefslogtreecommitdiff
path: root/tictactoe/game.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tictactoe/game.sh')
-rwxr-xr-xtictactoe/game.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/tictactoe/game.sh b/tictactoe/game.sh
deleted file mode 100755
index 1d3737c..0000000
--- a/tictactoe/game.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-turn=$( expr $RANDOM % 2)
-echo "go. player: $turn"
-stdbuf -oL uniq \
- | grep --line-buffered action \
- | stdbuf -oL cut '-d ' -f1,3 | while read user group;do
- if grep "_reset" <<<$group >/dev/null;then
- printf "%s deleteallexcept .\n" "$user"
- cat board
- continue
- elif grep "_" <<<$group >/dev/null;then
-# xmessage "CUT IT OUT"
- echo CUT IT OUT > /dev/stderr
- continue
- else
- turn=$(expr \( $turn + 1 \) % 2)
- #printf "# turn: %d\n" "$turn" > /dev/stderr
- printf "$user deletegroup %s\n" "$group"
- #printf "$user deletegroup %s\n" "$group" > /dev/stderr
-#need to get the first point of the group clicked and translate the new shape by that much
- translatex="$(grep "$group" board | grep -v '^#' | tr -s ' ' | cut '-d ' -f5)"
- translatey="$(grep "$group" board | grep -v '^#' | tr -s ' ' | cut '-d ' -f6)"
- cat "marker$turn"
- printf "%s move %s %s 2\n" "_marker" "$(expr "$translatex")" "$(expr "$translatey" - 2 )"
- #printf "%s move %s %s 2\n" "_marker" "$(expr "$translatex")" "$(expr "$translatey" - 2 )" >/dev/stderr
- grep "$group" board | sed "s/$group/_marker2/g" #this is to make it still show the square around it.
- printf "%s renamegroup _marker _marker%s%s\n" "$user" "$(date +%s)" "$RANDOM"
- fi
- done