diff options
author | epoch <epoch@hacking.allowed.org> | 2018-03-29 19:48:58 -0500 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2018-03-29 19:48:58 -0500 |
commit | 9e49dcb25e7ccea65948adb07be6206f867b79f5 (patch) | |
tree | fffcb9db8d1aa001696dccfdbee0fe75f14c3c5e /examples/tictactoe | |
parent | bd406f6b15bc13861d235615fac3c7cbfee31a76 (diff) | |
download | hackvr-9e49dcb25e7ccea65948adb07be6206f867b79f5.tar.gz hackvr-9e49dcb25e7ccea65948adb07be6206f867b79f5.zip |
moved tictactoe and made the reset button not move user back to default position
Diffstat (limited to 'examples/tictactoe')
-rw-r--r-- | examples/tictactoe/board | 13 | ||||
-rw-r--r-- | examples/tictactoe/camera.pos | 5 | ||||
-rwxr-xr-x | examples/tictactoe/game.sh | 30 | ||||
-rwxr-xr-x | examples/tictactoe/listen.sh | 19 | ||||
-rw-r--r-- | examples/tictactoe/marker0 | 2 | ||||
-rw-r--r-- | examples/tictactoe/marker1 | 1 | ||||
-rwxr-xr-x | examples/tictactoe/run | 6 |
7 files changed, 76 insertions, 0 deletions
diff --git a/examples/tictactoe/board b/examples/tictactoe/board new file mode 100644 index 0000000..2d8a0e5 --- /dev/null +++ b/examples/tictactoe/board @@ -0,0 +1,13 @@ +_reset addshape 2 3 -4 -4 4 -5 -4 4 -4 -5 4 + +topleft addshape 2 4 -3 3 4 -1 3 4 -1 1 4 -3 1 4 +topcenter addshape 2 4 -1 3 4 1 3 4 1 1 4 -1 1 4 +topright addshape 2 4 1 3 4 3 3 4 3 1 4 1 1 4 + +middleleft addshape 2 4 -3 1 4 -1 1 4 -1 -1 4 -3 -1 4 +middlecenter addshape 2 4 -1 1 4 1 1 4 1 -1 4 -1 -1 4 +middleright addshape 2 4 1 1 4 3 1 4 3 -1 4 1 -1 4 + +bottomleft addshape 2 4 -3 -1 4 -1 -1 4 -1 -3 4 -3 -3 4 +bottomcenter addshape 2 4 -1 -1 4 1 -1 4 1 -3 4 -1 -3 4 +bottomright addshape 2 4 1 -1 4 3 -1 4 3 -3 4 1 -3 4 diff --git a/examples/tictactoe/camera.pos b/examples/tictactoe/camera.pos new file mode 100644 index 0000000..0dc5404 --- /dev/null +++ b/examples/tictactoe/camera.pos @@ -0,0 +1,5 @@ +junk set global.zoom 64 +junk set camera.p.z -7 +junk set camera.p.y -1 +junk set camera.p.x 0 + diff --git a/examples/tictactoe/game.sh b/examples/tictactoe/game.sh new file mode 100755 index 0000000..e10b452 --- /dev/null +++ b/examples/tictactoe/game.sh @@ -0,0 +1,30 @@ +#!/bin/bash +turn=$( expr $RANDOM % 2) +cat camera.pos +echo "go. player: $turn" >&2 +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 diff --git a/examples/tictactoe/listen.sh b/examples/tictactoe/listen.sh new file mode 100755 index 0000000..0318cd2 --- /dev/null +++ b/examples/tictactoe/listen.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +#mabe not. might be buggier. +#cat board p1out | ncat -lp 1050 > p1in & +#cat board p2out | ncat -lp 1051 > p2in & +echo listening in port 1050 for player 1 and 1051 for player 2 + +mknod pin p +mknod p1out p +mknod p2out p + +cat board p1out | ncat -lp 1050 > pin & +cat board p2out | ncat -lp 1051 > pin & + +cat pin | ./game.sh | tee p1out p2out + +rm pin +rm p1out +rm p2out diff --git a/examples/tictactoe/marker0 b/examples/tictactoe/marker0 new file mode 100644 index 0000000..5bc0c5c --- /dev/null +++ b/examples/tictactoe/marker0 @@ -0,0 +1,2 @@ +_marker addshape 1 2 .5 .5 2 1.5 1.5 2 +_marker addshape 1 2 1.5 .5 2 .5 1.5 2 diff --git a/examples/tictactoe/marker1 b/examples/tictactoe/marker1 new file mode 100644 index 0000000..e7aa5a7 --- /dev/null +++ b/examples/tictactoe/marker1 @@ -0,0 +1 @@ +_marker addshape 3 4 1.5 1.5 2 .5 1.5 2 .5 .5 2 1.5 .5 2 diff --git a/examples/tictactoe/run b/examples/tictactoe/run new file mode 100755 index 0000000..8dddc99 --- /dev/null +++ b/examples/tictactoe/run @@ -0,0 +1,6 @@ +#!/bin/bash +turn=$( expr $RANDOM % 2) +echo "go. player: $turn" +mknod p p +stdbuf -oL cat board p | hackvr "$USER" | ./game.sh > p +rm p |