1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 12:03:00 +02:00

Fix Steam forking

This commit is contained in:
aclist 2022-09-23 19:52:22 +09:00
parent d70aaadf08
commit aa641d596f

View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -o pipefail set -o pipefail
version=2.7.0-rc.9 version=2.7.0-rc.10
aid=221100 aid=221100
game="dayz" game="dayz"
@ -864,15 +864,15 @@ pagination(){
else else
entry=servers entry=servers
fi fi
printf "DZGUI $version" printf "DZGUI | " "$version"
printf "Mode: $mode" printf "Mode: |" "$mode"
printf "Fav: $fav_label " printf "Fav: " "$fav_label"
printf "\nIncluded: %s " "$filters" printf "\nIncluded: %s | " "$filters"
printf "Excluded: %s " "$(disabled)" printf "Excluded: %s " "$(disabled)"
if [[ -n $search ]]; then if [[ -n $search ]]; then
printf " Keyword: %s " "$search" printf "| Keyword: %s " "$search"
fi fi
printf "\nReturned: %s %s of %s " "${#qport[@]}" "$entry" "$total_servers" printf "\nReturned: %s %s of %s | " "${#qport[@]}" "$entry" "$total_servers"
printf "Players online: %s" "$players_online" printf "Players online: %s" "$players_online"
} }
check_geo_file(){ check_geo_file(){
@ -936,6 +936,13 @@ prepare_filters(){
strip_null strip_null
echo "100" echo "100"
} }
write_fifo(){
mkfifo /tmp/table.tmp
for((i=0;i<${#qport[@]};i++)); do
printf "%s\n%s\n%s\n%03d\n%03d\n%s\n%s:%s\n%s\n" "${map[$i]}" "${name[$i]}" "${gametime[$i]}" \
"${players[$i]}" "${max[$i]}" "$(get_dist ${addr[$i]})" "${addr[$i]}" "${gameport[$i]}" "${qport[$i]}" >> /tmp/table.tmp
done
}
munge_servers(){ munge_servers(){
if [[ ! "$sels" =~ "All maps" ]]; then if [[ ! "$sels" =~ "All maps" ]]; then
filter_maps > >(zenity --pulsate --progress --auto-close --width=500 2>/dev/null) filter_maps > >(zenity --pulsate --progress --auto-close --width=500 2>/dev/null)
@ -970,10 +977,14 @@ munge_servers(){
sd_res="--width=1920 --height=1080" sd_res="--width=1920 --height=1080"
fi fi
for((i=0;i<${#qport[@]};i++)); do write_fifo &
printf "%s\n%s\n%s\n%03d\n%03d\n%s\n%s:%s\n%s\n" "${map[$i]}" "${name[$i]}" "${gametime[$i]}" \ pid=$!
"${players[$i]}" "${max[$i]}" "$(get_dist ${addr[$i]})" "${addr[$i]}" "${gameport[$i]}" "${qport[$i]}" local sel=$(zenity --text="$(pagination)" --title=DZGUI --list --column=Map --column=Name --column=Gametime --column=Players --column=Max --column=Distance --column=IP --column=Qport $sd_res --print-column=7,8 --separator=%% 2>/dev/null < <(while true; do cat /tmp/table.tmp; done))
done | zenity --text="$(pagination)" --title=DZGUI --list --column=Map --column=Name --column=Gametime --column=Players --column=Max --column=Distance --column=IP --column=Qport $sd_res --print-column=7,8 --separator=%% 2>/dev/null if [[ -z $sel ]]; then
rm /tmp/table.tmp
kill -9 $pid
return
fi
} }
server_browser(){ server_browser(){
check_steam_api check_steam_api
@ -1343,6 +1354,8 @@ main(){
init_items init_items
setup setup
main_menu main_menu
#cruddy handling for steam forking
[[ $? -eq 1 ]] && pkill -f dzgui.sh
} }
main main