2020.12 FatFrank Font, red banner
this state was used from ~2018 to 2022.12
This commit is contained in:
parent
bd38bebf6e
commit
7157a4ebcf
BIN
FatFrank.otf
Normal file
BIN
FatFrank.otf
Normal file
Binary file not shown.
BIN
banner-input.jpg
BIN
banner-input.jpg
Binary file not shown.
Before Width: | Height: | Size: 745 KiB After Width: | Height: | Size: 838 KiB |
@ -7,17 +7,18 @@ uptime=$(awk '{printf "%.2f\n",$1/86400}' /proc/uptime)
|
|||||||
|
|
||||||
#Minecraft:
|
#Minecraft:
|
||||||
vanilla=$(netstat -tn | grep -i 25565 | grep ESTABLISHED | wc -l)
|
vanilla=$(netstat -tn | grep -i 25565 | grep ESTABLISHED | wc -l)
|
||||||
|
build=$(netstat -tn | grep -i 1234 | grep ESTABLISHED | wc -l)
|
||||||
wasteland=$(netstat -tn | grep -i 2222 | grep ESTABLISHED | wc -l)
|
wasteland=$(netstat -tn | grep -i 2222 | grep ESTABLISHED | wc -l)
|
||||||
#Minecraft=$(($vanilla+$wasteland)) #(simpel)
|
#Minecraft=$(($vanilla+$wasteland)) #(simpel)
|
||||||
|
|
||||||
#mit vergleich:
|
#mit vergleich:
|
||||||
last=$(<.minecraftlog)
|
last=$(<.minecraftlog)
|
||||||
#echo "last: $last"
|
#echo "last: $last"
|
||||||
if [ $(($vanilla+$wasteland)) -gt 0 ]; then
|
if [ $(($vanilla+$wasteland+$build)) -gt 0 ]; then
|
||||||
if [ "$last" == "1" ]; then
|
if [ "$last" == "1" ]; then
|
||||||
Minecraft=$(($vanilla+$wasteland))
|
Minecraft=$(($vanilla+$wasteland+$build))
|
||||||
else
|
else
|
||||||
echo "note: minecraft: $(($vanilla+$wasteland)) aber vorher 0 =>ignorieren"
|
echo "note: minecraft: $(($vanilla+$wasteland+$build)) aber vorher 0 =>ignorieren"
|
||||||
echo "1" > .minecraftlog
|
echo "1" > .minecraftlog
|
||||||
Minecraft=0
|
Minecraft=0
|
||||||
fi
|
fi
|
||||||
@ -59,35 +60,53 @@ telnet_teeworlds_vanilla () {
|
|||||||
expect -re ".*>"
|
expect -re ".*>"
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo "debug: fetching teeworlds players via telnet..."
|
||||||
tw_zcatch="$(telnet_teeworlds_zcatch | sed 's/^..//' | grep -o 'rver]: id=' | wc -l)"
|
tw_zcatch="$(telnet_teeworlds_zcatch | sed 's/^..//' | grep -o 'rver]: id=' | wc -l)"
|
||||||
tw_vanilla="$(telnet_teeworlds_vanilla | sed 's/^..//' | grep -o 'rver]: id=' | wc -l)"
|
tw_vanilla="$(telnet_teeworlds_vanilla | sed 's/^..//' | grep -o 'rver]: id=' | wc -l)"
|
||||||
Teeworlds=$(($tw_zcatch+$tw_vanilla))
|
Teeworlds=$(($tw_zcatch+$tw_vanilla))
|
||||||
|
|
||||||
|
|
||||||
|
###########################
|
||||||
#Urbanterror:
|
#######Urbanterror:########
|
||||||
|
echo "debug: fetching urbanterro players via lynx"
|
||||||
output="$(lynx -dump -nolist http://www.Urbanterror.info/servers/91.250.87.150:27960/ | grep Slots | cut -c 18-19)"
|
output="$(lynx -dump -nolist http://www.Urbanterror.info/servers/91.250.87.150:27960/ | grep Slots | cut -c 18-19)"
|
||||||
Urbanterror="${output// /}"
|
Urbanterror="${output// /}"
|
||||||
|
Urbanterror=0
|
||||||
|
|
||||||
|
|
||||||
#7daystodie:
|
|
||||||
output="$(lynx -dump -nolist https://7daystodie-servers.com/server/60948/ | grep Players | cut -c 21-22)"
|
|
||||||
daystodie="${output// /}"
|
|
||||||
|
|
||||||
|
##########################
|
||||||
|
###3####7daystodie:#######
|
||||||
|
###echo "debug: fetching 7daystodie players via lynx"
|
||||||
|
###output="$(lynx -dump -nolist https://7daystodie-servers.com/server/60948/ | grep Players | cut -c 21-22)"
|
||||||
|
###daystodie="${output// /}"
|
||||||
#echo $daystodie
|
#echo $daystodie
|
||||||
|
daystodie=0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#Factorio:
|
|
||||||
disconnected="$(grep -o "Disconnect notification" /home/factorio/factorio_0.15.31/factorio-current.log | wc -l)"
|
|
||||||
connected="$(grep -o "JoinGame" /home/factorio/factorio_0.15.31/factorio-current.log | wc -l)"
|
|
||||||
#echo "Factorio-disconnected: $disconnected"
|
#############################
|
||||||
#echo "Factorio-connected: $connected"
|
#######Factorio:#################
|
||||||
if [ $(($connected - $disconnected)) -gt 0 ]; then
|
### disconnected="$(grep -o "Disconnect notification" /home/factorio/factorio/factorio-current.log | wc -l)"
|
||||||
Factorio=$(($connected - $disconnected))
|
### connected="$(grep -o "JoinGame" /home/factorio/factorio/factorio-current.log | wc -l)"
|
||||||
else
|
### #echo "Factorio-disconnected: $disconnected"
|
||||||
Factorio=0
|
### #echo "Factorio-connected: $connected"
|
||||||
fi
|
### if [ $(($connected - $disconnected)) -gt 0 ]; then
|
||||||
#echo "=>Factorio-Players: $Factorio"
|
### Factorio=$(($connected - $disconnected))
|
||||||
|
### else
|
||||||
|
### Factorio=0
|
||||||
|
### fi
|
||||||
|
### ##echo "=>Factorio-Players: $Factorio"
|
||||||
|
|
||||||
|
|
||||||
|
Factorio=0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -97,16 +116,14 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#Minecraft=2
|
||||||
|
Minecraft=$((Minecraft+0))
|
||||||
|
#Teeworlds=12
|
||||||
#Minecraft=3
|
#Urbanterror=4
|
||||||
#Teeworlds=10
|
|
||||||
#Urbanterror=2
|
|
||||||
#daystodie=1
|
#daystodie=1
|
||||||
#Factorio=1
|
#Factorio=2
|
||||||
|
|
||||||
#player oder players function: (OLD)
|
#player or players function: (OLD)
|
||||||
players_function () { #./players_function input output
|
players_function () { #./players_function input output
|
||||||
if [ $1 -gt 1 ]; then
|
if [ $1 -gt 1 ]; then
|
||||||
echo "Players"
|
echo "Players"
|
||||||
@ -119,116 +136,96 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#text function (-game: number player/players) +exeptions (NEW)
|
||||||
|
|
||||||
#NEW mit schleifen
|
|
||||||
|
|
||||||
#text funktion (-game: number player/players) +ausnahmen (NEW)
|
|
||||||
game_players_function () { #./players_function input output
|
game_players_function () { #./players_function input output
|
||||||
if [ ${!1} -gt 1 ]; then
|
if [ ${!1} -gt 1 ]; then
|
||||||
if [ "$1" == "daystodie" ]; then
|
if [ "$1" == "daystodie" ]; then
|
||||||
echo "-7 Days to Die: ${!1} Players"
|
echo "-7 Days to Die: ${!1} Players"
|
||||||
else
|
else
|
||||||
echo "-$1: ${!1} Players"
|
echo "-$1:${!1} Players"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ "$1" == "daystodie" ]; then
|
if [ "$1" == "daystodie" ]; then
|
||||||
echo "-7 Days to Die: ${!1} Player"
|
echo "-7 Days to Die: ${!1} Player"
|
||||||
else
|
else
|
||||||
echo "-$1: ${!1} Player"
|
echo "-$1: ${!1}Player"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
A="null"
|
#text function (-game: number player/players) +exeptions (NEW)
|
||||||
B="null"
|
game_players_function_ohne_minus () { #./players_function input output
|
||||||
C="null"
|
if [ ${!1} -gt 1 ]; then
|
||||||
D="null"
|
if [ "$1" == "daystodie" ]; then
|
||||||
E="null"
|
echo "7 Days to Die: ${!1} Players"
|
||||||
F="null"
|
else
|
||||||
G="null"
|
echo "$1: ${!1} Players"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [ "$1" == "daystodie" ]; then
|
||||||
|
echo "7 Days to Die: ${!1} Player"
|
||||||
|
else
|
||||||
|
echo "$1: ${!1} Player"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#falls mind einer online ist in text in variable schreiben:
|
|
||||||
|
firstgame=1
|
||||||
|
text="null"
|
||||||
|
|
||||||
|
#when at least one player is online, write text to variable
|
||||||
|
echo "debug: checking if at least one player online"
|
||||||
for game in Minecraft Teeworlds Urbanterror daystodie Factorio #list of games
|
for game in Minecraft Teeworlds Urbanterror daystodie Factorio #list of games
|
||||||
do
|
do
|
||||||
#echo "$game: ${!game}"
|
#echo "$game: ${!game}"
|
||||||
if [ ${!game} -gt 0 ]; then
|
if [[ ${!game} -gt 0 ]]; then
|
||||||
if [ "$A" == "null" ]; then
|
if [ $firstgame -eq 1 ]; then
|
||||||
#B="-$game: ${!game} $(players_function ${!game})"
|
text=$(game_players_function_ohne_minus $game)
|
||||||
A=$(game_players_function $game)
|
firstgame=0
|
||||||
elif [ "$B" == "null" ]; then
|
else
|
||||||
#B="-$game: ${!game} $(players_function ${!game})"
|
text="$text | $(game_players_function_ohne_minus $game)"
|
||||||
B=$(game_players_function $game)
|
|
||||||
elif [ "$C" == "null" ]; then
|
|
||||||
#C="-$game: ${!game} $(players_function ${!game})"
|
|
||||||
C=$(game_players_function $game)
|
|
||||||
elif [ "$D" == "null" ]; then
|
|
||||||
#D="-$game: ${!game} $(players_function ${!game})"
|
|
||||||
D=$(game_players_function $game)
|
|
||||||
elif [ "$E" == "null" ]; then
|
|
||||||
#E="-$game: ${!game} $(players_function ${!game})"
|
|
||||||
E=$(game_players_function $game)
|
|
||||||
elif [ "$F" == "null" ]; then
|
|
||||||
#F="-$game: ${!game} $(players_function ${!game})"
|
|
||||||
F=$(game_players_function $game)
|
|
||||||
elif [ "$G" == "null" ]; then
|
|
||||||
#G="-$game: ${!game} $(players_function ${!game})"
|
|
||||||
G=$(game_players_function $game)
|
|
||||||
else
|
|
||||||
echo "Error: too many games => for erweitern"
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#echo "A$A"
|
|
||||||
#echo "B$B"
|
|
||||||
#echo "C$C"
|
|
||||||
#echo "D$D"
|
|
||||||
#echo "E$E"
|
|
||||||
#echo "F$F"
|
|
||||||
#echo "G$G"
|
|
||||||
|
|
||||||
|
|
||||||
#convert: text reinschreiben:
|
|
||||||
outputpath="/home/raidworld/www.raidworld.eu/secretfiles/other/banner-dynamic.jpg"
|
|
||||||
|
|
||||||
posx=80
|
|
||||||
textcolor="blue" #colorlist: showrgb
|
|
||||||
undercolor="gray70" #"none" for no color
|
#convert: add text:
|
||||||
|
#inputpath="/home/raidworld/www.raidworld.eu/secretfiles/other/Raidworld_Banner_meanwhile_default.jpg"
|
||||||
|
#outputpath="/home/raidworld/www.raidworld.eu/secretfiles/other/Raidworld_Banner_meanwhile_dynamic.jpg"
|
||||||
|
inputpath="/var/www/files.raidworld.net/teamspeak/Banner_original.jpg"
|
||||||
|
outputpath="/var/www/files.raidworld.net/teamspeak/Banner_dynamic.jpg"
|
||||||
|
#outputpath="/home/raidworld/www.raidworld.net/wordpress/wp-content/uploads/ts-banner/Raidworld_Banner_final-dynamic.jpg"
|
||||||
|
posx=78
|
||||||
|
posy=52
|
||||||
|
textcolor="gray49" #colorlist: showrgb
|
||||||
|
undercolor="none" #"none" for no color
|
||||||
line=0
|
line=0
|
||||||
for input in "$A" "$B" "$C" "$D" "$E" "$F" "$G"
|
|
||||||
do
|
|
||||||
if [ "$input" != "null" ]; then
|
if [ "$text" != "null" ]; then
|
||||||
#echo "$input accepted"
|
echo "debug: generating banner"
|
||||||
echo "line$line: $input"
|
echo "TEXT: $text"
|
||||||
posy=$((100+50*$line)) #####config: posy start position
|
gm convert -font /home/teamspeak/dynamic-banner/FatFrank.otf -undercolor $undercolor -pointsize 40 -fill black -draw "text $(($posx+1)), $(($posy+1)) \"$text" $inputpath "./banner-temp.jpg"
|
||||||
line=$(($line+1))
|
gm convert -font /home/teamspeak/dynamic-banner/FatFrank.otf -pointsize 40 -fill $textcolor -draw "text $posx, $posy \"$text" "./banner-temp.jpg" $outputpath
|
||||||
inputfile="./banner$line.jpg" ######config: input file path banner1.jpg
|
|
||||||
outputfile="./banner$(($line+1)).jpg"
|
|
||||||
#echo "inputfile: $inputfile"
|
|
||||||
#echo "outputfile: $outputfile"
|
|
||||||
|
|
||||||
gm convert -undercolor $undercolor -pointsize 40 -fill $textcolor -draw "text $posx, $posy \"$input" $inputfile $outputfile
|
|
||||||
elif [ "$line" == "0" ]; then
|
|
||||||
echo "=>noone playing... copying default image"
|
|
||||||
cp ./banner1.jpg $outputpath ######config: input file path banner1.jpg
|
|
||||||
sleep 2
|
|
||||||
echo "-----------------------------"
|
echo "-----------------------------"
|
||||||
break 1;
|
|
||||||
else
|
else
|
||||||
cp $outputfile $outputpath
|
echo "TEXT: $text"
|
||||||
|
echo "=>noone playing... copying default image"
|
||||||
|
cp $inputpath $outputpath
|
||||||
|
sleep 1
|
||||||
echo "-----------------------------"
|
echo "-----------------------------"
|
||||||
break 1;
|
|
||||||
fi
|
fi
|
||||||
done
|
|
||||||
|
|
||||||
chmod o+r $outputpath
|
chmod 666 $outputpath
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -239,6 +236,13 @@ chmod o+r $outputpath
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#/home/teamspeak/dynamic-banner/FatFrank-Free.otf
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<<"COMMENT"
|
<<"COMMENT"
|
||||||
if false
|
if false
|
||||||
then
|
then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user