From a204330db26a0c3f5b4e88bdc495af350e262ab4 Mon Sep 17 00:00:00 2001 From: epoch Date: Tue, 18 Apr 2017 01:33:44 -0500 Subject: the changes needed to get tictactoe running pretty. --- tictactoe/run | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 tictactoe/run (limited to 'tictactoe/run') diff --git a/tictactoe/run b/tictactoe/run new file mode 100755 index 0000000..4e06a75 --- /dev/null +++ b/tictactoe/run @@ -0,0 +1,22 @@ +#!/bin/bash +turn=$( expr $RANDOM % 2) +echo "go. player: $turn" +stdbuf -oL cat <(echo "$USER" move 0 -5 0) board p | ../src/hackvr_x11 "$USER" 2>/dev/null \ + | stdbuf -oL uniq \ + | grep --line-buffered clicked \ + | stdbuf -oL cut '-d ' -f5 | while read group;do + if grep "_" <<<$group >/dev/null;then +# xmessage "CUT IT OUT" + echo CUT IT OUT > /dev/stderr + else + turn=$(expr \( $turn + 1 \) % 2) + printf "# turn: %d\n" "$turn" > /dev/stderr + printf "$USER deletegroup %s\n" "$group" +#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 0 %s %s\n" "_marker" "$(expr "$translatex")" "$(expr -1 \* "$translatey" + 2)" + printf "%s renamegroup _marker _marker%s%s\n" "$USER" "$(date +%s)" "$RANDOM" + fi + done > p -- cgit v1.2.3