From bf16b7b8593d4013adbd03838af5a2fb3bce34ee Mon Sep 17 00:00:00 2001 From: epoch Date: Wed, 6 Feb 2019 00:53:08 -0600 Subject: I forgot to add the examples dir somehow. they're back. tictactoe works again too. --- share/hackvr/examples/draw/draw.sh | 36 ++++++++++++++++++++++++++++++++++++ share/hackvr/examples/draw/run | 3 +++ 2 files changed, 39 insertions(+) create mode 100755 share/hackvr/examples/draw/draw.sh create mode 100755 share/hackvr/examples/draw/run (limited to 'share/hackvr/examples/draw') diff --git a/share/hackvr/examples/draw/draw.sh b/share/hackvr/examples/draw/draw.sh new file mode 100755 index 0000000..506d9ff --- /dev/null +++ b/share/hackvr/examples/draw/draw.sh @@ -0,0 +1,36 @@ +#!/bin/bash +echo "$USER move 0 0 -100" + +for y in $(seq 1 1 48);do + for x in $(seq 1 1 48);do + echo ${x}_${y} addshape 2 4 $x $y 0 $[x] $[y+1] 0 $[x+1] $[y+1] 0 $[x+1] $[y] 0 + done +done + +### color pallete +### 0-8 are ansi colors. +16 to make them not affected by "lighting" +for c in $(seq 0 8);do + echo color_${c} addshape $[c+16] 4 -2 ${c+2} 0 -1 ${c+2} 0 -1 $[c+3] 0 -2 $[c+3] 0 +done + +echo "derp" >&2 + +color=3 +echo color_${color} addshape $[color+16] 4 -2 0 0 -2 1 0 -1 1 0 -1 0 0 + +while read source command target;do + printf "target: %s command: %s\n" "$target" "$command" >&2 + if [ "$command" = "action" ];then + if echo "$target" | grep "^color_" 2>&1 >/dev/null;then + color=$(echo $target | cut -d_ -f2) + echo deletegroup $target + echo color_${color}_current addshape $[color+16] 4 -2 -2 0 -2 -1 0 -1 -1 0 -1 -2 0 + else + echo "derp" >&2 + x=$(echo $target | cut -d_ -f1) + y=$(echo $target | cut -d_ -f2) + echo $target deletegroup $target + echo $target addshape $[color + 16] 4 $x $y 0 $x $[y+1] 0 $[x+1] $[y+1] 0 $[x+1] $y 0 | tee /dev/stderr + fi + fi +done diff --git a/share/hackvr/examples/draw/run b/share/hackvr/examples/draw/run new file mode 100755 index 0000000..f14b415 --- /dev/null +++ b/share/hackvr/examples/draw/run @@ -0,0 +1,3 @@ +#!/bin/sh +mknod p p +cat p | tee /dev/stderr | ./draw.sh | hackvr $USER > p -- cgit v1.2.3