1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-04 11:33:01 +02:00

Faster path discovery

This commit is contained in:
aclist 2022-11-25 05:53:35 +09:00
parent b4aa8fbb6d
commit 913140c22c
3 changed files with 160 additions and 177 deletions

View file

@ -5,6 +5,21 @@
- Custom query API - Custom query API
- Standardize dialogs - Standardize dialogs
## [3.1.0-rc.15] 2022-11-24
### Fixed
- Faster path discovery on initial setup
- Handle whitelist deletion when only one entry present
- Return to main menu from recent servers list
- Unset delete menu flags after deletion
### Added
- Add python to deps
- Add Steam API key requirement to initial setup
### Dropped
- Drop mandatory server IDs on initial setup
- Old functions and files pertaining to headless mode
### Changed
- Allow My Servers list to be initially empty
## [3.1.0-rc.14] 2022-11-24 ## [3.1.0-rc.14] 2022-11-24
### Changed ### Changed
- Rename "History" to "Recent" - Rename "History" to "Recent"

259
dzgui.sh
View file

@ -32,11 +32,15 @@ km_helper_url="$releases_url/latlon"
db_file="$releases_url/ips.csv.gz" db_file="$releases_url/ips.csv.gz"
sums_url="$testing_url/helpers/sums.md5" sums_url="$testing_url/helpers/sums.md5"
scmd_url="$testing_url/helpers/scmd.sh" scmd_url="$testing_url/helpers/scmd.sh"
vdf2json_url="$testing_url/helpers/vdf2json.py"
notify_url="$testing_url/helpers/d.html" notify_url="$testing_url/helpers/d.html"
notify_img_url="$testing_url/helpers/d.webp" notify_img_url="$testing_url/helpers/d.webp"
forum_url="https://github.com/aclist/dztui/discussions" forum_url="https://github.com/aclist/dztui/discussions"
version_file="$config_path/versions" version_file="$config_path/versions"
#TODO: prevent connecting to offline servers
#TODO: abstract zenity title params and dimensions
update_last_seen(){ update_last_seen(){
mv $config_file ${config_path}dztuirc.old mv $config_file ${config_path}dztuirc.old
nr=$(awk '/seen_news=/ {print NR}' ${config_path}dztuirc.old) nr=$(awk '/seen_news=/ {print NR}' ${config_path}dztuirc.old)
@ -53,7 +57,7 @@ check_news(){
} }
print_news(){ print_news(){
check_news check_news
if [[ $sum == $seen_news || -z $result ]]; then if [[ $sum == $seen_news || -z $result ]]; then
hchar="" hchar=""
news="" news=""
else else
@ -62,11 +66,9 @@ print_news(){
update_last_seen update_last_seen
fi fi
} }
#TODO: prevent connecting to offline servers
#TODO: abstract zenity title params and dimensions
declare -A deps declare -A deps
deps=([awk]="5.1.1" [curl]="7.80.0" [jq]="1.6" [tr]="9.0" [zenity]="3.42.1" [steam]="1.0.0") deps=([awk]="5.1.1" [curl]="7.80.0" [jq]="1.6" [tr]="9.0" [zenity]="3.42.1" [steam]="1.0.0" [python]="3.0")
changelog(){ changelog(){
if [[ $branch == "stable" ]]; then if [[ $branch == "stable" ]]; then
md="https://raw.githubusercontent.com/aclist/dztui/dzgui/changelog.md" md="https://raw.githubusercontent.com/aclist/dztui/dzgui/changelog.md"
@ -111,7 +113,7 @@ items=(
"[Help]" "[Help]"
" Help file ⧉" " Help file ⧉"
" Report bug ⧉" " Report bug ⧉"
" Become a beta tester ⧉" " Forum ⧉"
) )
} }
warn_and_exit(){ warn_and_exit(){
@ -136,11 +138,7 @@ query_api(){
if [[ $one_shot_launch -eq 1 ]]; then if [[ $one_shot_launch -eq 1 ]]; then
list_of_ids="$fav" list_of_ids="$fav"
else else
if [[ -n $fav ]]; then list_of_ids="$whitelist"
list_of_ids="$whitelist,$fav"
else
list_of_ids="$whitelist"
fi
fi fi
set_api_params set_api_params
if [[ "$(jq -r 'keys[]' <<< "$response")" == "errors" ]]; then if [[ "$(jq -r 'keys[]' <<< "$response")" == "errors" ]]; then
@ -230,68 +228,57 @@ freedesktop_dirs(){
write_desktop_file > "$HOME/Desktop/dzgui.desktop" write_desktop_file > "$HOME/Desktop/dzgui.desktop"
fi fi
} }
find_library_folder(){
steam_path=$(python $helpers_path/vdf2json.py -i $default_steam_path/steamapps/libraryfolders.vdf | jq -r '.libraryfolders[]|select(.apps|has("221100")).path')
}
file_picker(){ file_picker(){
while true; do while true; do
local path=$(zenity --file-selection --directory 2>/dev/null) local path=$(zenity --file-selection --directory 2>/dev/null)
if [[ -z "$path" ]]; then if [[ -z "$path" ]]; then
return return
else else
echo "[DZGUI]" Set mod staging path to "$path" default_steam_path="$path"
staging_dir="$path" find_library_folder
write_config > $config_file fi
if [[ -z $steam_path ]]; then
warn "DayZ not found at this path."
else
return return
fi fi
done done
} }
guess_path(){
echo "# Checking for default DayZ path"
path=$(find $HOME -type d -regex ".*/steamapps/common/DayZ$" -print -quit)
if [[ -n "$path" ]]; then
clean_path=$(echo -e "$path" | awk -F"/steamapps" '{print $1}')
steam_path="$clean_path"
else
echo "# Searching for alternate DayZ path. This may take some time."
path=$(find / -type d \( -path "/proc" -o -path "*/timeshift" -o -path "/tmp" -o -path "/usr" -o -path "/boot" -o -path "/proc" -o -path "/root" -o -path "/sys" -o -path "/etc" -o -path "/var" -o -path "/lost+found" \) -prune -o -regex ".*/steamapps/common/DayZ$" -print -quit 2>/dev/null)
clean_path=$(echo -e "$path" | awk -F"/steamapps" '{print $1}')
steam_path="$clean_path"
fi
}
create_config(){ create_config(){
while true; do while true; do
player_input="$(zenity --forms --add-entry="Player name (required for some servers)" --add-entry="API key" --add-entry="Server 1 (you can add more later)" --title="DZGUI" --text="DZGUI" --add-entry="Server 2" --add-entry="Server 3" --add-entry="Server 4" $sd_res --separator="│" 2>/dev/null)" player_input="$(zenity --forms --add-entry="Player name (required for some servers)" --add-entry="BattleMetrics API key" --add-entry="Steam API key" --title="DZGUI" --text="DZGUI" $sd_res --separator="│" 2>/dev/null)"
#explicitly setting IFS crashes zenity in loop #explicitly setting IFS crashes zenity in loop
#and mapfile does not support high ascii delimiters #and mapfile does not support high ascii delimiters
#so split fields with newline #so split fields with newline
readarray -t args < <(echo "$player_input" | sed 's/│/\n/g') readarray -t args < <(echo "$player_input" | sed 's/│/\n/g')
name="${args[0]}" name="${args[0]}"
api_key="${args[1]}" api_key="${args[1]}"
server_1="${args[2]}" steam_api="${args[2]}"
server_2="${args[3]}"
server_3="${args[4]}"
server_4="${args[5]}"
[[ -z $player_input ]] && exit [[ -z $player_input ]] && exit
if [[ -z $api_key ]]; then if [[ -z $api_key ]] || [[ -z $steam_api ]]; then
warn "API key: invalid value" warn "API key: invalid value"
elif [[ -z $server_1 ]]; then #TODO: test BM key
warn "Server 1: cannot be empty" elif [[ $(test_steam_api) -eq 1 ]]; then
elif [[ ! $server_1 =~ ^[0-9]+$ ]]; then warn "Invalid Steam API key"
warn "Server 1: only numeric IDs" else
elif [[ -n $server_2 ]] && [[ ! $server_2 =~ ^[0-9]+$ ]]; then while true; do
warn "Server 2: only numeric IDs" find_default_path
elif [[ -n $server_3 ]] && [[ ! $server_3 =~ ^[0-9]+$ ]]; then find_library_folder
warn "Server 3: only numeric IDs" if [[ -z $steam_path ]]; then
elif [[ -n $server_4 ]] && [[ ! $server_3 =~ ^[0-9]+$ ]]; then return
warn "Server 4: only numeric IDs" else
else mkdir -p $config_path
whitelist=$(echo "$player_input" | awk -F"│" '{OFS=","}{print $3,$4,$5,$6}' | sed 's/,*$//g' | sed 's/^,*//g') write_config > $config_file
guess_path > >(zenity --width 500 --progress --auto-close --pulsate 2>/dev/null) && info "Config file created at $config_file."
echo "[DZGUI] Set path to $steam_path" source $config_file
#FIXME: tech debt: gracefully exit if user cancels search process return
mkdir -p $config_path; write_config > $config_file fi
info "Config file created at $config_file." done
return fi
fi
done done
} }
@ -300,9 +287,7 @@ err(){
} }
varcheck(){ varcheck(){
[[ -z $api_key ]] && (err "Error in key: 'api_key'") [[ -z $api_key ]] && (err "Error in key: 'api_key'")
[[ -z $whitelist ]] && (err "Error in key: 'whitelist'")
[[ ! -d "$game_dir" ]] && (err "Malformed game path") [[ ! -d "$game_dir" ]] && (err "Malformed game path")
[[ $whitelist =~ [[:space:]] ]] && (err "Separate whitelist values with commas")
} }
run_depcheck(){ run_depcheck(){
if [[ -z $(depcheck) ]]; then if [[ -z $(depcheck) ]]; then
@ -327,13 +312,14 @@ run_varcheck(){
if [[ $code -eq 1 ]]; then if [[ $code -eq 1 ]]; then
exit exit
else else
echo "100" #echo "100"
create_config create_config
fi fi
fi fi
} }
config(){ config(){
if [[ ! -f $config_file ]]; then if [[ ! -f $config_file ]]; then
#echo "100"
zenity --width 500 --info --text="Config file not found. Click OK to proceed to first-time setup." 2>/dev/null zenity --width 500 --info --text="Config file not found. Click OK to proceed to first-time setup." 2>/dev/null
code=$? code=$?
#prevent progress if user hits ESC #prevent progress if user hits ESC
@ -377,61 +363,12 @@ steam_deck_mods(){
compare compare
done done
} }
set_term(){
local term="$1"
local tterm="term=\"$term\""
mv $config_file ${config_path}dztuirc.old
nr=$(awk '/term=/ {print NR}' ${config_path}dztuirc.old)
awk -v "var=$tterm" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > $config_file
printf "[DZGUI] Set term to '$term'\n"
source $config_file
}
sel_term(){
#only terminals known to support -e flag
for i in "$TERMINAL" urxvt alacritty konsole gnome-terminal terminator xfce4-terminal xterm tilix; do
[[ $(command -v $i) ]] && terms+=($i)
done
#FIXME: if no terms, error
local terms=$(printf "%s\n" "${terms[@]}" | sort -u)
term=$(echo "$terms" | zenity --list --column=Terminal --height=800 --width=1200 --text="Select your preferred terminal emulator to run steamcmd (setting will be saved)" --title=DZGUI 2>/dev/null)
}
calc_mod_sizes(){ calc_mod_sizes(){
for i in "$diff"; do for i in "$diff"; do
local mods+=$(grep -w "$i" /tmp/modsizes | awk '{print $1}') local mods+=$(grep -w "$i" /tmp/modsizes | awk '{print $1}')
done done
totalmodsize=$(echo -e "${mods[@]}" | awk '{s+=$1}END{print s}') totalmodsize=$(echo -e "${mods[@]}" | awk '{s+=$1}END{print s}')
} }
term_params(){
case $term in
konsole) $term --hold -e "bash $helpers_path/scmd.sh $totalmodsize $1";;
urxvt) $term -e bash -c "/$helpers_path/scmd.sh $totalmodsize $1";;
alacritty) $term -e bash -c "/$helpers_path/scmd.sh $totalmodsize $1";;
terminator|xterm|tilix|xfce4-terminal) $term -e "bash $helpers_path/scmd.sh $totalmodsize $1";;
esac
}
headless_mod_install(){
cmd=$(printf "%q " "$@")
if [[ -z "$term" ]]; then
if [[ $is_steam_deck -eq 1 ]]; then
set_term konsole
return 0
else
sel_term && set_term "$term"
fi
fi
[[ -z "$term" ]] && return 1
echo "[DZGUI] Kicking off auto mod script"
calc_mod_sizes
term_params "$cmd"
compare
if [[ -z $diff ]]; then
passed_mod_check > >(zenity --pulsate --progress --auto-close --width=500 2>/dev/null)
launch
else
warn "Auto mod installation failed or some mods missing.\nReverting to manual mode."
return 1
fi
}
test_display_mode(){ test_display_mode(){
pgrep -a gamescope | grep -q "generate-drm-mode" pgrep -a gamescope | grep -q "generate-drm-mode"
[[ $? -eq 0 ]] && gamemode=1 [[ $? -eq 0 ]] && gamemode=1
@ -719,7 +656,7 @@ prepare_ip_list(){
} }
history_table(){ history_table(){
for i in $(cat $hist_file); do for i in $(cat $hist_file); do
echo "# Getting metadata for $i" echo "# Getting metadata for $i"
local meta_file=$(mktemp) local meta_file=$(mktemp)
source $config_file source $config_file
local url="https://api.steampowered.com/IGameServersService/GetServerList/v1/?filter=\appid\221100\gameaddr\\$i&key=$steam_api" local url="https://api.steampowered.com/IGameServersService/GetServerList/v1/?filter=\appid\221100\gameaddr\\$i&key=$steam_api"
@ -727,9 +664,10 @@ history_table(){
json=$(mktemp) json=$(mktemp)
< $meta_file jq '.response' > $json < $meta_file jq '.response' > $json
res=$(< $meta_file jq -er '.response.servers[]' 2>/dev/null) res=$(< $meta_file jq -er '.response.servers[]' 2>/dev/null)
prepare_ip_list "$meta_file" >> /tmp/dz.hist prepare_ip_list "$meta_file" >> /tmp/dz.hist
sleep 1s sleep 0.5s
done > >(zenity --pulsate --progress --auto-close --title=DZGUI --width=500 2>/dev/null) done | zenity --pulsate --progress --auto-close --title=DZGUI --width=500 --no-cancel 2>/dev/null
[[ $? -eq 1 ]] && return
while true; do while true; do
sel=$(cat /tmp/dz.hist | zenity --width 1200 --height 800 --title=DZGUI --text="Recent servers" --list --column=Name --column=IP --column=Players --column=Gametime --print-column=2 --separator=%% 2>/dev/null) sel=$(cat /tmp/dz.hist | zenity --width 1200 --height 800 --title=DZGUI --text="Recent servers" --list --column=Name --column=IP --column=Players --column=Gametime --print-column=2 --separator=%% 2>/dev/null)
if [[ $? -eq 1 ]]; then if [[ $? -eq 1 ]]; then
@ -750,7 +688,6 @@ history_table(){
fi fi
done done
rm /tmp/dz.hist rm /tmp/dz.hist
} }
ip_table(){ ip_table(){
@ -958,7 +895,7 @@ set_mode(){
fi fi
} }
delete_by_id(){ delete_by_id(){
new_whitelist="whitelist=\"$(echo "$whitelist" | sed "s/,$server_id$//;s/^$server_id,//;s/,$server_id,/,/")\"" new_whitelist="whitelist=\"$(echo "$whitelist" | sed "s/,$server_id$//;s/^$server_id,//;s/,$server_id,/,/;s/^$server_id$//")\""
mv $config_file ${config_path}dztuirc.old mv $config_file ${config_path}dztuirc.old
nr=$(awk '/whitelist=/ {print NR}' ${config_path}dztuirc.old) nr=$(awk '/whitelist=/ {print NR}' ${config_path}dztuirc.old)
awk -v "var=$new_whitelist" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > ${config_path}dztuirc awk -v "var=$new_whitelist" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > ${config_path}dztuirc
@ -970,10 +907,12 @@ delete_or_connect(){
if [[ $delete -eq 1 ]]; then if [[ $delete -eq 1 ]]; then
server_name=$(echo "$sel" | awk -F"%%" '{print $1}') server_name=$(echo "$sel" | awk -F"%%" '{print $1}')
server_id=$(echo "$sel" | awk -F"%%" '{print $2}') server_id=$(echo "$sel" | awk -F"%%" '{print $2}')
zenity --question --text="Delete this server? \n$server_name" zenity --question --text="Delete this server? \n$server_name" --title=DZGUI --width=500 2>/dev/null
if [[ $? -eq 0 ]]; then if [[ $? -eq 0 ]]; then
delete_by_id $server_id delete_by_id $server_id
fi fi
source $config_file
unset delete
else else
#hotfix for bug #36 #hotfix for bug #36
local lookup_ip=$(echo "$sel" | awk -F%% '{print $1}') local lookup_ip=$(echo "$sel" | awk -F%% '{print $1}')
@ -1130,26 +1069,31 @@ console_dl(){
done done
} }
find_default_path(){ find_default_path(){
[[ -n $default_steam_path ]] && return discover(){
echo "# Searching for Steam"
default_steam_path=$(find / -type d \( -path "/proc" -o -path "*/timeshift" -o -path \
"/tmp" -o -path "/usr" -o -path "/boot" -o -path "/run" -o -path "/proc" -o -path "/root" \
-o -path "/sys" -o -path "/etc" -o -path "/var" -o -path "/lost+found" \) -prune \
-o -regex ".*/Steam/ubuntu12_32$" -print -quit 2>/dev/null | sed 's@/ubuntu12_32@@')
echo "100"
}
if [[ $is_steam_deck -eq 1 ]]; then if [[ $is_steam_deck -eq 1 ]]; then
default_steam_path="$HOME/.local/share/Steam" default_steam_path="$HOME/.local/share/Steam"
else else
#default
if [[ -d "$HOME/.local/share/Steam" ]]; then if [[ -d "$HOME/.local/share/Steam" ]]; then
default_steam_path="$HOME/.local/share/Steam" default_steam_path="$HOME/.local/share/Steam"
#ubuntu
elif [[ -d "$HOME/.steam/steam" ]]; then
default_steam_path="$HOME/.steam/steam"
else else
# ubuntu .steam local res=$(echo -e "Let DZGUI auto-discover Steam path (accurate, slower)\nSelect the Steam path manually (less accurate, faster)" | zenity --list --column="Choice" --title=DZGUI --hide-header --text="Steam is not installed in a standard location." $sd_res)
default_steam_path=$(find / -type d \( -path "/proc" -o -path "*/timeshift" -o -path \ case "$res" in
"/tmp" -o -path "/usr" -o -path "/boot" -o -path "/run" -o -path "/proc" -o -path "/root" \ *auto*) discover > >(zenity --width 500 --progress --auto-close --title="DZGUI" --pulsate --no-cancel 2>/dev/null) ;;
-o -path "/sys" -o -path "/etc" -o -path "/var" -o -path "/lost+found" \) -prune \ *manual*) file_picker ;;
-o -regex ".*/Steam/ubuntu12_32$" -print -quit 2>/dev/null | sed 's@/ubuntu12_32@@') esac
fi fi
fi fi
default_steam_path="default_steam_path=\"$default_steam_path\""
mv $config_file ${config_path}dztuirc.old
local nr=$(awk '/default_steam_path=/ {print NR}' ${config_path}dztuirc.old)
awk -v "var=$default_steam_path" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > $config_file
printf "[DZGUI] Set default Steam path to $default_steam_path\n"
source $config_file
} }
popup(){ popup(){
pop(){ pop(){
@ -1161,6 +1105,7 @@ popup(){
300) pop "\nThe Steam console will now open and briefly issue commands to\ndownload the workshop files, then return to the download progress page.\n\nEnsure that the Steam console has keyboard and mouse focus\n(keep hands off keyboard) while the commands are being issued.\n\nDepending on the number if mods, it may take some time to queue the downloads,\nbut if a popup or notification window steals focus, it could obstruct\nthe process." ;; 300) pop "\nThe Steam console will now open and briefly issue commands to\ndownload the workshop files, then return to the download progress page.\n\nEnsure that the Steam console has keyboard and mouse focus\n(keep hands off keyboard) while the commands are being issued.\n\nDepending on the number if mods, it may take some time to queue the downloads,\nbut if a popup or notification window steals focus, it could obstruct\nthe process." ;;
400) pop "Automod install enabled. Auto-downloaded mods will not appear\nin your Steam Workshop subscriptions, but DZGUI will\ntrack the version number of downloaded mods internally\nand trigger an update if necessary." ;; 400) pop "Automod install enabled. Auto-downloaded mods will not appear\nin your Steam Workshop subscriptions, but DZGUI will\ntrack the version number of downloaded mods internally\nand trigger an update if necessary." ;;
500) pop "Automod install disabled.\nSwitched to manual mode." ;; 500) pop "Automod install disabled.\nSwitched to manual mode." ;;
600) pop "No preferred servers set." ;;
esac esac
} }
requires_xdo(){ requires_xdo(){
@ -1229,6 +1174,7 @@ options_menu(){
fi fi
} }
query_and_connect(){ query_and_connect(){
[[ -z $whitelist ]] && { popup 600; return; }
query_api query_api
parse_json parse_json
#TODO: create logger function #TODO: create logger function
@ -1641,7 +1587,6 @@ create_array(){
for i in "${rows[@]}"; do echo -e "$i"; done > $tmp for i in "${rows[@]}"; do echo -e "$i"; done > $tmp
} }
set_fav(){ set_fav(){
#TODO: test API key here and return errors
echo "[DZGUI] Querying favorite server" echo "[DZGUI] Querying favorite server"
query_api query_api
fav_label=$(curl -s "$api" -H "Authorization: Bearer "$api_key"" -G -d "filter[game]=$game" -d "filter[ids][whitelist]=$fav" \ fav_label=$(curl -s "$api" -H "Authorization: Bearer "$api_key"" -G -d "filter[game]=$game" -d "filter[ids][whitelist]=$fav" \
@ -1757,7 +1702,8 @@ add_by_id(){
if [[ ! $id =~ ^[0-9]+$ ]]; then if [[ ! $id =~ ^[0-9]+$ ]]; then
zenity --warning --title="DZGUI" --text="Invalid ID" 2>/dev/null zenity --warning --title="DZGUI" --text="Invalid ID" 2>/dev/null
else else
new_whitelist="whitelist=\"$whitelist,$id\"" [[ -z $whitelist ]] && new_whitelist="whitelist=\"$id\""
[[ -n $whitelist ]] && new_whitelist="whitelist=\"$whitelist,$id\""
mv $config_file ${config_path}dztuirc.old mv $config_file ${config_path}dztuirc.old
nr=$(awk '/whitelist=/ {print NR}' ${config_path}dztuirc.old) nr=$(awk '/whitelist=/ {print NR}' ${config_path}dztuirc.old)
awk -v "var=$new_whitelist" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > ${config_path}dztuirc awk -v "var=$new_whitelist" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > ${config_path}dztuirc
@ -1844,48 +1790,9 @@ lock(){
echo $$ > $config_path/.lockfile echo $$ > $config_path/.lockfile
fi fi
} }
fetch_scmd_helper(){ fetch_helpers(){
mkdir -p "$helpers_path" mkdir -p "$helpers_path"
curl -Ls "$scmd_url" > "$helpers_path/scmd.sh" [[ ! -f "$helpers_path/vdf2json.py" ]] && curl -Ls "$vdf2json_url" > "$helpers_path/vdf2json.py"
chmod +x "$helpers_path/scmd.sh"
[[ ! -f "$helpers_path/d.html" ]] && curl -Ls "$notify_url" > "$helpers_path/d.html"
[[ ! -f "$helpers_path/d.webp" ]] && curl -Ls "$notify_img_url" > "$helpers_path/d.webp"
}
deprecation_warning(){
warn_big(){
cat <<- HERE
IMPORTANT ANNOUNCEMENT
(Steam API key not found)
A Steam API key is now mandatory to run the app.
The BM API returns incorrect mod data on some servers
and cannot be relied upon for up to date information.
Going forward, we will only use the BM API as a convenience
function to manage server names and your favorite servers list,
and migrate to indexing servers on an IP basis.
This is a backend change. You can continue adding servers by ID,
but we will retrieve information from Valve instead, as we do for the
server browser and connect-by-ip methods.
Click [OK] to open the help page describing how to set up your key.
After you input a valid key, the app will resume.
HERE
}
if [[ -z $steam_api ]]; then
echo "100"
local big_prompt
[[ $is_steam_deck -eq 1 ]] && big_prompt="--width=800"
zenity --info --text="$(warn_big)" $big_prompt
key_setup_url="https://aclist.github.io/dzgui/dzgui.html#_api_key_server_ids"
browser "$key_setup_url" 2>/dev/null &
while true; do
if [[ $(check_steam_api) ]]; then
break
fi
done
fi
} }
initial_setup(){ initial_setup(){
echo "# Initial setup" echo "# Initial setup"
@ -1894,19 +1801,17 @@ initial_setup(){
check_architecture check_architecture
check_version check_version
check_map_count check_map_count
fetch_helpers
config config
find_default_path
fetch_scmd_helper
run_varcheck run_varcheck
stale_symlinks stale_symlinks
init_items init_items
setup setup
deprecation_warning
echo "100" echo "100"
} }
main(){ main(){
lock lock
initial_setup > >(zenity --pulsate --progress --auto-close --title="DZGUI" --width=500 2>/dev/null) initial_setup > >(zenity --pulsate --progress --auto-close --title="DZGUI" --no-cancel --width=500 2>/dev/null)
main_menu main_menu
#cruddy handling for steam forking #cruddy handling for steam forking
[[ $? -eq 1 ]] && pkill -f dzgui.sh [[ $? -eq 1 ]] && pkill -f dzgui.sh

63
helpers/vdf2json.py Normal file
View file

@ -0,0 +1,63 @@
#!/usr/bin/env python
from shlex import shlex
def vdf2json(stream):
"""
Read a Steam vdf file and return a string in json format
"""
def _istr(ident, string):
return (ident * ' ') + string
jbuf = '{\n'
lex = shlex(stream)
indent = 1
while True:
tok = lex.get_token()
if not tok:
return jbuf + '}\n'
if tok == '}':
indent -= 1
jbuf += _istr(indent, '}')
ntok = lex.get_token()
lex.push_token(ntok)
if ntok and ntok != '}':
jbuf += ','
jbuf += '\n'
else:
ntok = lex.get_token()
if ntok == '{':
jbuf += _istr(indent, tok + ': {\n')
indent += 1
else:
jbuf += _istr(indent, tok + ': ' + ntok)
ntok = lex.get_token()
lex.push_token(ntok)
if ntok != '}':
jbuf += ','
jbuf += '\n'
def main():
"""
Read Steam vdf and write json compatible conversion
"""
import sys
import argparse
parser = argparse.ArgumentParser(prog='vdf2json', description=main.__doc__)
parser.add_argument('-i', '--input',
default=sys.stdin,
type=argparse.FileType('r'),
help='input vdf file (stdin if not specified)')
parser.add_argument('-o', '--output',
default=sys.stdout,
type=argparse.FileType('w'),
help='output json file (stdout if not specified)')
args = parser.parse_args()
args.output.write(vdf2json(args.input))
if __name__ == '__main__':
main()