2023-12-30 10:22:50 +01:00
#!/bin/bash
2024-01-03 02:47:46 +01:00
# pixelfloot - a pixelflut client written in bash
# this script was made during the 37c3
# pixelflut.la10cy.net - 130.185.104.31
# my small pixelflut test server, feel free to have fun with it! :)
# You can watch the board by VNC at port 5900, max connections are 2
test -z " $IPFLOOT " && IPFLOOT = "130.185.104.31"
test -z " $FLOOTPORT " && FLOOTPORT = "1234"
2024-01-02 02:08:37 +01:00
########################################################################
FNAME = " $( echo $2 | sed -e 's/\..*$//' -e 's/^images\///' ) "
IMGFILE = " $2 "
PPMFILE = " $FNAME .ppm "
HEXPPM = " images/ $FNAME .hexppm "
2024-01-02 02:19:05 +01:00
PIXLIST = " /tmp/ $FNAME .pixlist "
2024-01-02 02:08:37 +01:00
SHUFMODE = " $3 "
2023-12-30 10:22:50 +01:00
2024-01-02 02:43:54 +01:00
FLOOTSRUNNING = 0
2024-01-02 02:19:05 +01:00
test -z " $FLOOTFORKS " && FLOOTFORKS = "2"
2024-01-01 07:42:04 +01:00
2023-12-30 10:22:50 +01:00
declare -a PIXMAP
declare -a LOL
declare -a LOLPID
2024-01-03 03:43:37 +01:00
# colors for colored output 8)
RED = "\e[31m"
GREEN = "\e[32m"
YELLOW = "\e[33m"
ENDCOLOR = "\e[0m"
function message( ) {
case $1 in
warn)
MESSAGE_TYPE = " ${ YELLOW } WARN ${ ENDCOLOR } "
; ;
error)
MESSAGE_TYPE = " ${ RED } ERROR ${ ENDCOLOR } "
; ;
info| *)
MESSAGE_TYPE = " ${ GREEN } INFO ${ ENDCOLOR } "
; ;
esac
if [ " $1 " = = "info" ] || [ " $1 " = = "warn" ] || [ " $1 " = = "error" ]
then
MESSAGE = $2
else
MESSAGE = $1
fi
echo -e " [ ${ MESSAGE_TYPE } ] $MESSAGE "
}
error ( )
{
message error " ${ RED } ERROR!! ${ ENDCOLOR } "
exit 1
}
###### OLDFOOO ######
2023-12-30 10:22:50 +01:00
# https://gist.github.com/nberlette/e3e303a81f2c41927bf4fe90fb89d97f
function hex( ) {
printf "%02X%02X%02X" ${ *// ',' / ' ' }
}
gen_pixmap( ) {
y = 0
while read -r LINE
do
if [ " $y " -gt 2 ]
then
for x in $( seq 1 $x_ppm )
do
REDindex = $(( x*3-2))
GREENindex = $(( x*3+1-2))
BLUEindex = $(( x*3+2-2))
REDvalue = " $( echo $LINE | cut -d ' ' -f${ REDindex } ) "
GREENvalue = " $( echo $LINE | cut -d ' ' -f${ GREENindex } ) "
BLUEvalue = " $( echo $LINE | cut -d ' ' -f${ BLUEindex } ) "
PIXELcolor = " $( hex ${ REDvalue } $GREENvalue $BLUEvalue ) "
PIXMAP[ $y ] = " ${ PIXMAP [ $y ] } $PIXELcolor "
done
echo "please wait"
echo ${ PIXMAP [ $y ] } >> $HEXPPM
elif [ " $y " -eq 1 ]
then
x_ppm = " $( echo " $LINE " | cut -d ' ' -f1) "
fi
y = $(( y+1))
#~ for col in $LINE
#~ do
#~ case $count in
#~ 0) RED="$(hex $col)"
#~ ;;
#~ 1) GREEN="$(hex $col)"
#~ ;;
#~ 2) BLUE="$(hex $col)"
#~ ;;
#~ esac
#~ count=$((count+1))
#~ test $count -ge 2 && count=0
#~ done
done < " $PPMFILE "
}
draw_pixmap( ) {
y = 1
2024-01-01 05:44:55 +01:00
test -z $x_ppm && echo "x_ppm missing" && exit 1
2023-12-30 10:22:50 +01:00
while read -r LINE
do
2024-01-01 05:44:55 +01:00
for x in $( seq 1 $x_ppm )
2023-12-30 10:22:50 +01:00
do
2024-01-01 05:44:55 +01:00
# when Color is FF00FE draw rainbow background
2023-12-30 11:37:49 +01:00
if [ [ " $( echo $LINE | cut -d ' ' -f$x ) " != "FF00FE" ] ]
then
echo "please wait"
2024-01-01 05:44:55 +01:00
echo " PX $x $y $( echo $LINE | cut -d ' ' -f$x ) " >> $PIXLIST
# magnify double size
#echo "PX $((x*2)) $((y*2)) $(echo $LINE | cut -d ' ' -f$x)" >> $PIXLIST
#echo "PX $((x*2+1)) $((y*2)) $(echo $LINE | cut -d ' ' -f$x)" >> $PIXLIST
#echo "PX $((x*2)) $((y*2+1)) $(echo $LINE | cut -d ' ' -f$x)" >> $PIXLIST
#echo "PX $((x*2+1)) $((y*2+1)) $(echo $LINE | cut -d ' ' -f$x)" >> $PIXLIST
2023-12-30 11:37:49 +01:00
else
2023-12-30 13:11:33 +01:00
2023-12-30 13:27:55 +01:00
if [ " $y " -lt 32 ]
2023-12-30 13:11:33 +01:00
then
RAINBOWCOLOR = " $( hex 0 0 255) "
2023-12-30 13:27:55 +01:00
elif [ " $y " -lt 64 ]
2023-12-30 13:11:33 +01:00
then
RAINBOWCOLOR = " $( hex 0 255 255) "
2023-12-30 13:27:55 +01:00
elif [ " $y " -lt 94 ]
2023-12-30 13:11:33 +01:00
then
RAINBOWCOLOR = " $( hex 0 255 0) "
2023-12-30 13:27:55 +01:00
elif [ " $y " -lt 126 ]
2023-12-30 13:11:33 +01:00
then
RAINBOWCOLOR = " $( hex 255 255 0) "
else
RAINBOWCOLOR = " $( hex 255 0 0) "
fi
#~ if [ "$y" -lt 16 ]
#~ then
#~ RAINBOWCOLOR="$(hex 0 0 $(((y+1)*16)))"
#~ elif [ "$y" -lt 32 ]
#~ then
#~ RAINBOWCOLOR="$(hex 0 $(((y-16)*16)) 255)"
#~ elif [ "$y" -lt 48 ]
#~ then
#~ RAINBOWCOLOR="$(hex 0 $((y*16)) $((16-(y-32)*16)))"
#~ elif [ "$y" -lt 64 ]
#~ then
#~ RAINBOWCOLOR="$(hex $((y*16)) $((y*16)) 0)"
#~ else
#~ RAINBOWCOLOR="$(hex $((y*16)) 0 0)"
#~ fi
2023-12-30 11:37:49 +01:00
echo "please wait for rainbow"
echo " PX $(( x*2)) $(( y*2)) $RAINBOWCOLOR " >> $PIXLIST
echo " PX $(( x*2+1)) $(( y*2)) $RAINBOWCOLOR " >> $PIXLIST
echo " PX $(( x*2)) $(( y*2+1)) $RAINBOWCOLOR " >> $PIXLIST
echo " PX $(( x*2+1)) $(( y*2+1)) $RAINBOWCOLOR " >> $PIXLIST
fi
2023-12-30 10:22:50 +01:00
done
y = $(( y+1))
done < " $HEXPPM "
}
2024-01-02 02:43:54 +01:00
###### END OLDFOOO ######
gen_field( ) {
test -z $W && W = 640
test -z $H && H = 480
test -z $COLOR && COLOR = "666999"
2024-01-03 03:43:37 +01:00
message " drawing ${ YELLOW } $W x $H - $COLOR ${ ENDCOLOR } " >& 2
2024-01-02 02:49:27 +01:00
for x in $( seq 0 $W )
2024-01-02 02:43:54 +01:00
do
2024-01-02 02:49:27 +01:00
for y in $( seq 0 $H )
2024-01-02 02:43:54 +01:00
do
echo " PX $x $y $COLOR "
done
done
}
2024-01-02 02:08:37 +01:00
convertimg( ) {
2024-01-03 04:07:49 +01:00
command -v convert || message error " ${ YELLOW } convert ${ ENDCOLOR } not found "
2024-01-02 02:08:37 +01:00
if [ -n " $RESIZE " ]
then
RESIZE = " -resize $RESIZE "
fi
while read -r LINE
do
echo " PX $LINE "
done < <( convert $IMGFILE $RESIZE txt: | tail -n +2 | awk '{print $1 $3}' | sed -e 's/\,/ /' -e 's/\:/ /' -e 's/\#//' )
}
2023-12-30 10:22:50 +01:00
sx = 0
sy = 0
shuf_xy( ) {
2024-01-01 07:42:04 +01:00
2023-12-30 21:55:03 +01:00
case $SHUFMODE in
2024-01-01 07:42:04 +01:00
chaos) test -z $H && H = 640
test -z $W && W = 480
echo " OFFSET $( shuf -i 0-$W -n 1) $( shuf -i 0-$H -n 1) "
2023-12-30 21:55:03 +01:00
; ;
2024-01-02 03:41:38 +01:00
shake) test -z $H && H = 0
test -z $W && W = 0
2024-01-01 07:42:04 +01:00
echo " OFFSET $( shuf -i $W -$(( $W + 10 )) -n 1) $( shuf -i $H -$(( $H + 10 )) -n 1) "
2023-12-30 21:55:03 +01:00
; ;
2024-01-03 04:07:49 +01:00
cursor) command -v xdotool || message error " ${ YELLOW } xdotool ${ ENDCOLOR } not found "
echo " OFFSET $( xdotool getmouselocation | tr ':' ' ' | awk '{print $2 " " $4}' ) "
2024-01-01 04:32:22 +01:00
; ;
2024-01-02 03:41:38 +01:00
static| *) test -z $H && H = 0
test -z $W && W = 0
echo " OFFSET $W $H "
; ;
2023-12-30 21:55:03 +01:00
esac
#
#
2023-12-30 10:22:50 +01:00
#echo "OFFSET $(shuf -i 0-1760 -n 1) 919"
2023-12-30 21:55:03 +01:00
2023-12-30 10:22:50 +01:00
#echo > /dev/null
#~ echo "OFFSET $sx $sy"
#~ sx=$((sx+1))
#~ sy=$((sy+1))
#~ test $sx -gt 1760 && sx=0
#~ test $sy -gt 920 && sy=0
}
2024-01-02 02:08:37 +01:00
flootworker( )
{
while true
do
2024-01-02 02:43:54 +01:00
#FLOOTSRUNNING=$((FLOOTSRUNNING+1))
#test $FLOOTSRUNNING -le $FLOOTFORKS &&
echo " $( shuf_xy)
2024-01-03 03:43:37 +01:00
${ LOL [ $i ] } " > /dev/tcp/ $IPFLOOT / $FLOOTPORT || message warn " transmission in worker ${ YELLOW } $1 ${ ENDCOLOR } ${ RED } failed${ ENDCOLOR } - maybe you need to decrease ${ YELLOW } FLOOTFORKS${ ENDCOLOR } or expand/tune your uplink"
2024-01-02 02:43:54 +01:00
#FLOOTSRUNNING=$((FLOOTSRUNNING-1))
2024-01-02 02:08:37 +01:00
#echo "${LOL[$i]}" > /dev/tcp/127.0.0.1/1337 &
#echo "worker $i PID ${LOLPID[$i]}"
done
}
2024-01-03 03:10:11 +01:00
checkfile( ) {
if [ ! -f $1 ]
then
2024-01-03 03:43:37 +01:00
message error " file ${ YELLOW } $1 ${ ENDCOLOR } does not exist. "
2024-01-03 03:10:11 +01:00
exit 1
fi
}
2023-12-30 10:22:50 +01:00
floot( ) {
2024-01-01 07:42:04 +01:00
# small stupid animation, two alternating images
2023-12-30 17:21:30 +01:00
if [ " $FNAME " = = "winketuxS" ]
then
2024-01-03 03:43:37 +01:00
message "drawing winketuxS animation"
2024-01-02 02:19:05 +01:00
LOL[ 1] = " $( cat pixlists/${ FNAME } 1.pixlist | shuf) "
LOL[ 2] = " $( cat pixlists/${ FNAME } 2.pixlist | shuf ) "
LOL[ 3] = " $( cat pixlists/${ FNAME } 2.pixlist | shuf ) "
2023-12-30 17:21:30 +01:00
#LOL[3]="$(cat $FNAME-mc.pixlist.2 | shuf)"
2024-01-01 05:44:55 +01:00
elif [ " $FNAME " = = "fill" ]
then
2024-01-03 03:43:37 +01:00
message " generating color field with ${ YELLOW } $FLOOTFORKS ${ ENDCOLOR } workers "
2024-01-01 07:42:04 +01:00
LOL_org = " $( gen_field) "
2024-01-01 05:44:55 +01:00
for i in $( seq 1 $FLOOTFORKS )
do
2024-01-01 07:42:04 +01:00
LOL[ $i ] = " $LOL_org "
2024-01-01 05:44:55 +01:00
done
2023-12-30 17:21:30 +01:00
else
2024-01-02 02:19:05 +01:00
# generate a tmp file, as i have trouble atm to figure out
# why free space get lost when i generate the pixlist directly
# in ram
2024-01-03 03:10:11 +01:00
if [ $USECACHE ]
then
checkfile $PIXLIST
2024-01-03 03:43:37 +01:00
message " using cache from ${ YELLOW } $PIXLIST ${ ENDCOLOR } "
2024-01-03 03:10:11 +01:00
else
checkfile $IMGFILE
2024-01-03 03:43:37 +01:00
message " generating tmp file ${ YELLOW } $PIXLIST ${ ENDCOLOR } "
2024-01-03 03:10:11 +01:00
convertimg > $PIXLIST
fi
2024-01-03 03:43:37 +01:00
message " shuffle pixels in ${ YELLOW } $PIXLIST ${ ENDCOLOR } for ${ YELLOW } $FLOOTFORKS ${ ENDCOLOR } workers "
2024-01-01 05:44:55 +01:00
for i in $( seq 1 $FLOOTFORKS )
2023-12-30 17:21:30 +01:00
do
#LOL[$i]="OFFSET 1 200"
#LOL[$i]="OFFSET $(shuf -i 0-1760 -n 1) $(shuf -i 0-920 -n 1)"
# LOL[$i]="$(shuf_xy)"
2024-01-02 02:08:37 +01:00
#LOL[$i]="$(cat $PIXLIST | shuf)"
2024-01-03 03:43:37 +01:00
message " prepare worker ${ YELLOW } $i ${ ENDCOLOR } .. "
2023-12-30 17:21:30 +01:00
2024-01-02 02:08:37 +01:00
if [ -z " $ALPHACOLOR " ]
then
2024-01-02 02:19:05 +01:00
LOL[ $i ] = " $( cat $PIXLIST | shuf) "
#LOL[$i]="$(convertimg | shuf)"
2024-01-02 02:08:37 +01:00
else
2024-01-02 02:19:05 +01:00
LOL[ $i ] = " $( grep -v $ALPHACOLOR $PIXLIST | shuf) "
#LOL[$i]="$(convertimg | grep -v $ALPHACOLOR | shuf)"
2024-01-02 02:08:37 +01:00
fi
2024-01-03 03:43:37 +01:00
message " ${ GREEN } DONE! ${ ENDCOLOR } "
2023-12-30 17:21:30 +01:00
done
fi
2023-12-30 11:37:49 +01:00
2024-01-03 03:43:37 +01:00
message " starting $FLOOTFORKS workers "
2024-01-02 02:08:37 +01:00
while true
do
for i in $( seq $FLOOTFORKS )
do
#echo "check worker $i PID ${LOLPID[$i]} if running "
if [ -z ${ LOLPID [ $i ] } ] || ! ps -p ${ LOLPID [ $i ] } > /dev/null
then
2024-01-03 03:43:37 +01:00
message " worker ${ YELLOW } $i ${ ENDCOLOR } is not running, starting it "
2024-01-02 02:43:54 +01:00
#if [ "$FLOOTSRUNNING" -le "$FLOOTFORKS" ]
#then
2024-01-03 03:43:37 +01:00
flootworker $i &
2024-01-02 02:43:54 +01:00
LOLPID[ $i ] = $!
#fi
2024-01-02 02:08:37 +01:00
fi
done
done
2023-12-30 10:22:50 +01:00
}
case $1 in
2024-01-02 03:24:52 +01:00
### DEPRECATED - JUST FOR TESTING
2023-12-30 10:22:50 +01:00
draw_pixmap) draw_pixmap
; ;
gen_pixmap) gen_pixmap
; ;
2024-01-02 03:24:52 +01:00
### END DEPRECATED - JUST FOR TESTING
2024-01-01 05:44:55 +01:00
convertimg)
2024-01-02 03:24:52 +01:00
# old way
2024-01-02 02:08:37 +01:00
##gen_pixmap
##draw_pixmap
2024-01-02 03:24:52 +01:00
# convert arbeitsplatz.jpg txt: | tail -n +2 | awk '{print $1 $3}'
# this is probably better
2024-01-02 02:08:37 +01:00
convertimg > $PIXLIST
2024-01-03 03:43:37 +01:00
message " file ${ YELLOW } $PIXLIST ${ ENDCOLOR } " generated
2024-01-01 05:44:55 +01:00
; ;
2024-01-03 03:43:37 +01:00
floot) message " flooting ${ YELLOW } ${ IPFLOOT } : ${ FLOOTPORT } ${ ENDCOLOR } "
2024-01-03 03:10:11 +01:00
if [ " $SHUFMODE " = = "static" ] && ( [ -z " $W " ] && [ -z " $H " ] )
2024-01-01 07:42:04 +01:00
then
echo " please specify coords with e.g. 'W=420 H=420 SHUFMODE=static $0 floot $FNAME " >& 2
exit 1
fi
floot
2023-12-30 10:22:50 +01:00
; ;
*)
2024-01-02 03:24:52 +01:00
echo " $0 [floot|convertimg] [FILENAME|fill] ([MODE]) "
2024-01-02 02:08:37 +01:00
echo "MODE: static (env \$H and \$W for position)"
echo " chaos (env \$H and \$W for position range)"
echo " shake (env \$H and \$W for position range)"
echo " cursor"
echo ""
echo "available env vars to configure:"
2024-01-02 03:22:42 +01:00
echo "RESIZE(int), ALPHACOLOR(hex), FLOOTFORKS(int), H(int), W(int)"
2024-01-03 03:10:11 +01:00
echo "IPFLOOT(string), FLOOTPORT(string), USECACHE(bool)"
2024-01-02 02:08:37 +01:00
exit 1
2023-12-30 10:22:50 +01:00
; ;
esac