mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 03:53:01 +02:00
Fix progress bar
This commit is contained in:
parent
206656b675
commit
4b531a8dca
1 changed files with 30 additions and 23 deletions
53
dzgui.sh
53
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -eo pipefail
|
set -eo pipefail
|
||||||
version=1.0.1
|
version=1.0.2
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
workshop="https://steamcommunity.com/sharedfiles/filedetails/?id="
|
workshop="https://steamcommunity.com/sharedfiles/filedetails/?id="
|
||||||
|
@ -37,24 +37,24 @@ warn(){
|
||||||
info(){
|
info(){
|
||||||
zenity --info --title="DZGUI" --text="$1" --icon-name="network-wireless" 2>/dev/null
|
zenity --info --title="DZGUI" --text="$1" --icon-name="network-wireless" 2>/dev/null
|
||||||
}
|
}
|
||||||
launch_in_bg(){
|
#launch_in_bg(){
|
||||||
info "$msg" &
|
# info "$msg" &
|
||||||
#TODO: use less brittle method
|
# #TODO: use less brittle method
|
||||||
msg_pid=$(pgrep zenity)
|
# msg_pid=$(pgrep zenity)
|
||||||
${1} &
|
# ${1} &
|
||||||
pid=$!
|
# pid=$!
|
||||||
while kill -0 $pid; do
|
# while kill -0 $pid; do
|
||||||
:
|
# :
|
||||||
done
|
# done
|
||||||
#TODO: suppress output
|
# #TODO: suppress output
|
||||||
#TODO: pid could be released to other process
|
# #TODO: pid could be released to other process
|
||||||
if [[ -n $msd_pid ]]; then
|
# if [[ -n $msd_pid ]]; then
|
||||||
kill -9 $msg_pid 1 >/dev/null 2>&1
|
# kill -9 $msg_pid 1 >/dev/null 2>&1
|
||||||
else
|
# else
|
||||||
:
|
# :
|
||||||
fi
|
# fi
|
||||||
|
#
|
||||||
}
|
#}
|
||||||
query_api(){
|
query_api(){
|
||||||
response=$(curl -s "$api" -H "Authorization: Bearer "$api_key"" -G -d "sort=-players" \
|
response=$(curl -s "$api" -H "Authorization: Bearer "$api_key"" -G -d "sort=-players" \
|
||||||
-d "filter[game]=$game" -d "filter[ids][whitelist]=$whitelist")
|
-d "filter[game]=$game" -d "filter[ids][whitelist]=$whitelist")
|
||||||
|
@ -197,7 +197,7 @@ main_menu(){
|
||||||
query_api
|
query_api
|
||||||
parse_json <<< "$response"
|
parse_json <<< "$response"
|
||||||
msg="Retrieving server list. This may take some time.\nThis window will close automatically if left open."
|
msg="Retrieving server list. This may take some time.\nThis window will close automatically if left open."
|
||||||
launch_in_bg "create_array"
|
create_array | zenity --progress
|
||||||
populate
|
populate
|
||||||
return
|
return
|
||||||
elif [[ $sel == "Open mod page (TEST)" ]]; then
|
elif [[ $sel == "Open mod page (TEST)" ]]; then
|
||||||
|
@ -226,7 +226,7 @@ populate(){
|
||||||
while true; do
|
while true; do
|
||||||
#TODO: add boolean statement for ping flag; affects all column ordinal output
|
#TODO: add boolean statement for ping flag; affects all column ordinal output
|
||||||
cols="--column="Server" --column="IP" --column="Players" --column="Status" --column="ID" --column="Ping""
|
cols="--column="Server" --column="IP" --column="Players" --column="Status" --column="ID" --column="Ping""
|
||||||
sel=$(cat $tmp | zenity $sd_res --list $cols --separator=$separator --print-column=2,5 2>/dev/null)
|
sel=$(cat $tmp | zenity $sd_res --list $cols --separator="$separator" --print-column=2,5 2>/dev/null)
|
||||||
if [[ $? -eq 1 ]]; then
|
if [[ $? -eq 1 ]]; then
|
||||||
echo "should return to main menu"
|
echo "should return to main menu"
|
||||||
#TODO: drop back to main menu
|
#TODO: drop back to main menu
|
||||||
|
@ -242,6 +242,7 @@ populate(){
|
||||||
create_array(){
|
create_array(){
|
||||||
list=$(cat $tmp)
|
list=$(cat $tmp)
|
||||||
#TODO: improve error handling for null values
|
#TODO: improve error handling for null values
|
||||||
|
lc=1
|
||||||
while read line; do
|
while read line; do
|
||||||
name=$(echo "$line" | awk -F'\t' '{print $1}')
|
name=$(echo "$line" | awk -F'\t' '{print $1}')
|
||||||
#truncate names
|
#truncate names
|
||||||
|
@ -257,10 +258,16 @@ create_array(){
|
||||||
#[[ $stat == "online" ]] && stat="<span color='#77ff33'>online</span>" || :
|
#[[ $stat == "online" ]] && stat="<span color='#77ff33'>online</span>" || :
|
||||||
#TODO: probe offline return codes
|
#TODO: probe offline return codes
|
||||||
id=$(echo "$line" | awk -F'\t' '{print $5}')
|
id=$(echo "$line" | awk -F'\t' '{print $5}')
|
||||||
|
tc=$(awk 'END{print NR}' $tmp)
|
||||||
|
echo "$lc/$tc"
|
||||||
|
echo "# Checking ping: $lc/$tc"
|
||||||
ping=$(check_ping "$line")
|
ping=$(check_ping "$line")
|
||||||
declare -g -a rows=("${rows[@]}" "$name" "$ip" "$players" "$stat" "$id" "$ping")
|
declare -g -a rows=("${rows[@]}" "$name" "$ip" "$players" "$stat" "$id" "$ping")
|
||||||
done <<< "$list"
|
let lc++
|
||||||
for i in "${rows[@]}"; do echo -e "$i"; done > $tmp
|
done <<< "$list"
|
||||||
|
|
||||||
|
echo "# Server list ready"
|
||||||
|
for i in "${rows[@]}"; do echo -e "$i"; done > $tmp
|
||||||
}
|
}
|
||||||
main(){
|
main(){
|
||||||
#TODO: check for upstream version and prompt to download
|
#TODO: check for upstream version and prompt to download
|
||||||
|
|
Loading…
Reference in a new issue