From 6492ba6b4107a4da228e18db4fc5fc871bfb0579 Mon Sep 17 00:00:00 2001 From: epoch Date: Wed, 17 Aug 2022 21:34:02 -0500 Subject: updated README to show that everything that got deleted went to an -extras repo. also, hackvr script updated to be better bash --- share/hackvr/examples/tictactoe/game.sh | 37 --------------------------------- 1 file changed, 37 deletions(-) delete mode 100755 share/hackvr/examples/tictactoe/game.sh (limited to 'share/hackvr/examples/tictactoe/game.sh') diff --git a/share/hackvr/examples/tictactoe/game.sh b/share/hackvr/examples/tictactoe/game.sh deleted file mode 100755 index a2adeb1..0000000 --- a/share/hackvr/examples/tictactoe/game.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env bash -turn=$( expr $RANDOM % 2) -BOARDFILE=board_orig -cat camera.pos $BOARDFILE -echo "go. player: $turn" >&2 -grep --line-buffered action \ - | while read user action group;do - if [ $action = "action" ];then - if grep "_reset" <<<$group >/dev/null;then - printf "%s deleteallexcept %s\n" "$user" "$user" - cat $BOARDFILE - continue - elif grep "_exit" <<<$group >/dev/null;then - #if a program wants to exit, it should just exit. - #the program may have been ran by some other program. - #maybe just filter out server-side quit messages for your own username? - #any user quit will cause any hackvr to quit? - #printf "%s quit\n" "$user" - exit 0 - elif grep "_" <<<$group >/dev/null;then - echo CUT IT OUT > /dev/stderr - continue - elif grep "^board" <<<$group >/dev/null;then - turn=$(expr \( $turn + 1 \) % 2) - #printf "# turn: %d\n" "$turn" > /dev/stderr - printf "%s deletegroup %s\n" "$user" "$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" $BOARDFILE | grep -v '^#' | tr -s ' ' | cut '-d ' -f5)" - translatey="$(grep "$group" $BOARDFILE | grep -v '^#' | tr -s ' ' | cut '-d ' -f6)" - cat "marker$turn" | offsetshape.sh $translatex "$(expr "$translatey" - 2 )" 0 - grep "$group" $BOARDFILE | sed "s/$group/_marked/g" - else - printf "# clicked outside of the game board.\n" >&2 - fi - fi - done -- cgit v1.2.3