#!/usr/bin/env bash
log=/var/log/log.hackvr
button="-2 2 1 2 2 1 2 -2 1 -2 -2 1"
printf " addshape 6 4 %s\n" "$button"
printf " move -5 5 0\n"
# |>
name=play
printf "%s addshape 4 4 %s\n" "$name" "$button"
printf "play addshape 4 3 -1 1 0 1 0 0 -1 -1 0\n"
printf "play move 0 0 0\n"
# ||
name=pause
printf "%s addshape 4 4 %s\n" "$name" "$button"
printf "pause addshape 4 4 -1 1 0 -.5 1 0 -.5 -1 0 -1 -1 0\n"
printf "pause addshape 4 4 .5 1 0 1 1 0 1 -1 0 .5 -1 0\n"
printf "pause move 0 4 0\n"
# []
name=stop
printf "%s addshape 4 4 %s\n" "$name" "$button"
printf "stop addshape 4 4 -1 1 0 1 1 0 1 -1 0 -1 -1 0\n"
printf "stop move 0 -4 0\n"
# |>|
name=next
printf "%s addshape 4 4 %s\n" "$name" "$button"
printf "next addshape 4 3 -1 1 0 .75 0 0 -1 -1 0\n"
printf "next addshape 4 4 .75 1 0 1 1 0 1 -1 0 .75 -1 0\n"
printf "next move 4 0 0\n"
# |<|
name=prev
printf "%s addshape 4 4 %s\n" "$name" "$button"
printf "prev addshape 4 3 -.75 0 0 1 1 0 1 -1 0\n"
printf "prev addshape 4 4 -1 1 0 -.75 1 0 -.75 -1 0 -1 -1 0\n"
printf "prev move -4 0 0\n"
printf "exit addshape 4 4 %s\n" "$button"
printf "exit move 5 5 0\n"
# a "listen" link to the http stream
# so anyone using hackvr_uri can open it from inside hackvr. :)
while read group action target args;do
printf "hackvr line: %s\n" "$group $action $target" >> $log
if [ "$group" = "$USER" -a "$action" = "quit" ];then
break
fi
if [ "$action" = "action" ];then
if [ $target = "pause" ];then
mpc --host=21.41.41.4 --port=61666 pause 2>&1 >/dev/null 2>&1
fi
if [ $target = "play" ];then
mpc --host=21.41.41.4 --port=61666 play 2>&1 >/dev/null 2>&1
fi
if [ $target = "prev" ];then
mpc --host=21.41.41.4 --port=61666 prev 2>&1 >/dev/null 2>&1
fi
if [ $target = "next" ];then
mpc --host=21.41.41.4 --port=61666 next 2>&1 >/dev/null 2>&1
fi
if [ $target = "stop" ];then
mpc --host=21.41.41.4 --port=61666 stop 2>&1 >/dev/null 2>&1
fi
if [ $target = "exit" ];then
break;
fi
fi
done