mirror of
https://github.com/aclist/dztui.git
synced 2025-04-06 04:23:00 +02:00
More performant path discovery
This commit is contained in:
parent
785fd1c77b
commit
a1b338c7ee
2 changed files with 36 additions and 23 deletions
10
changelog.md
10
changelog.md
|
@ -3,18 +3,24 @@
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
- Clean up logging
|
- Clean up logging
|
||||||
- Custom query API
|
- Custom query API
|
||||||
|
- Standardize dialogs
|
||||||
|
- Query and connect by IP/port
|
||||||
|
|
||||||
|
## [2.5.0-rc.1] 2022-08-14
|
||||||
|
### Changed
|
||||||
|
- More performant path discovery, skip extraneous prompts
|
||||||
|
|
||||||
## [2.4.2-rc.5] 2022-08-13
|
## [2.4.2-rc.5] 2022-08-13
|
||||||
### Fixed
|
### Fixed
|
||||||
- Cleaned typos and removed debug code
|
- Cleaned typos and removed debug code
|
||||||
|
|
||||||
## [2.4.2-rc.4] 2022-08-13
|
## [2.4.2-rc.4] 2022-08-13
|
||||||
### Changed
|
### Fixed
|
||||||
- Clean up legacy symlinks
|
- Clean up legacy symlinks
|
||||||
|
|
||||||
## [2.4.2-rc.3] 2022-08-13
|
## [2.4.2-rc.3] 2022-08-13
|
||||||
### Fixed
|
### Fixed
|
||||||
- Prevent collisions in symlink IDs
|
- Alternate symlink method to prevent collisions in IDs
|
||||||
|
|
||||||
## [2.4.2-rc.2] 2022-08-10
|
## [2.4.2-rc.2] 2022-08-10
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
47
dzgui.sh
47
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=2.4.2-rc.4
|
version=2.4.2-rc.6
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -45,7 +45,7 @@ print_news(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
#TODO: prevent connecting to offline servers
|
#TODO: prevent connecting to offline servers
|
||||||
#TODO: abstract zenity title params
|
#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")
|
||||||
|
@ -178,30 +178,35 @@ freedesktop_dirs(){
|
||||||
write_desktop_file > "$HOME/Desktop/dzgui.desktop"
|
write_desktop_file > "$HOME/Desktop/dzgui.desktop"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
guess_path(){
|
file_picker(){
|
||||||
echo "# Checking for default DayZ path"
|
#TODO: unimplemented
|
||||||
path=$(find $HOME -path "*.local/share/Steam/steamapps/common/DayZ" | wc -c)
|
while true; do
|
||||||
if [[ ! $path -eq 0 ]]; then
|
local path=$(zenity --file-selection --directory 2>/dev/null)
|
||||||
steam_path="$HOME/.local/share/Steam"
|
if [[ -z "$path" ]] || [[ ! -d "$path" ]] || [[ ! "$path" =~ steamapps/common/DayZ ]]; then
|
||||||
|
continue
|
||||||
else
|
else
|
||||||
echo "# Searching for alternate DayZ path (may take some time)"
|
echo "[DZGUI]" Set path to $path
|
||||||
path=$(find / -path "*/steamapps/common/DayZ" 2>/dev/null)
|
|
||||||
if [[ $(echo "$path" | wc -l) -gt 1 ]]; then
|
|
||||||
path_sel=$(echo -e "$path" | zenity --list --title="DZGUI" --text="Multiple paths found. Select correct DayZ path" --column="Paths" --width 1200 --height 800)
|
|
||||||
clean_path=$(echo -e "$path_sel" | awk -F"/steamapps" '{print $1}')
|
|
||||||
steam_path="$clean_path"
|
|
||||||
elif [[ ! $(echo $path | wc -c) -eq 0 ]]; then
|
|
||||||
clean_path=$(echo -e "$path" | awk -F"/steamapps" '{print $1}')
|
clean_path=$(echo -e "$path" | awk -F"/steamapps" '{print $1}')
|
||||||
steam_path="$clean_path"
|
steam_path="$clean_path"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
||||||
|
guess_path(){
|
||||||
|
echo "# Checking for default DayZ path"
|
||||||
|
path=$(find $HOME -type d -regex ".*/steamapps/common/DayZ$" -print -quit)
|
||||||
|
if [[ -n $path ]]; then
|
||||||
|
steam_path="$path"
|
||||||
else
|
else
|
||||||
steam_path=""
|
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 "/run" -o -path "/sys" -o -path "/etc" -o -path "/var" -o -path "/run" -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
|
fi
|
||||||
fi
|
|
||||||
echo "[DZGUI] Set Steam path to $steam_path"
|
|
||||||
}
|
}
|
||||||
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="│")"
|
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)"
|
||||||
#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
|
||||||
|
@ -228,7 +233,9 @@ create_config(){
|
||||||
warn "Server 4: only numeric IDs"
|
warn "Server 4: only numeric IDs"
|
||||||
else
|
else
|
||||||
whitelist=$(echo "$player_input" | awk -F"│" '{OFS=","}{print $3,$4,$5,$6}' | sed 's/,*$//g' | sed 's/^,*//g')
|
whitelist=$(echo "$player_input" | awk -F"│" '{OFS=","}{print $3,$4,$5,$6}' | sed 's/,*$//g' | sed 's/^,*//g')
|
||||||
guess_path > >(zenity --width 500 --progress --auto-close --pulsate)
|
guess_path > >(zenity --width 500 --progress --auto-close --pulsate 2>/dev/null) &&
|
||||||
|
echo "[DZGUI] Set path to $steam_path"
|
||||||
|
#FIXME: tech debt: gracefully exit if user cancels search process
|
||||||
mkdir -p $config_path; write_config > $config_file
|
mkdir -p $config_path; write_config > $config_file
|
||||||
info "Config file created at $config_file."
|
info "Config file created at $config_file."
|
||||||
return
|
return
|
||||||
|
@ -483,7 +490,7 @@ launch(){
|
||||||
|
|
||||||
else
|
else
|
||||||
echo "[DZGUI] All OK. Launching DayZ"
|
echo "[DZGUI] All OK. Launching DayZ"
|
||||||
zenity --title="DZGUI" --info --text="Launch conditions satisfied.\nDayZ will now launch after clicking [OK]." 2>/dev/null
|
zenity --width 500 --title="DZGUI" --info --text="Launch conditions satisfied.\nDayZ will now launch after clicking [OK]." 2>/dev/null
|
||||||
steam -applaunch $aid -connect=$ip -nolauncher -nosplash -skipintro -name=$name \"-mod=$mods\"
|
steam -applaunch $aid -connect=$ip -nolauncher -nosplash -skipintro -name=$name \"-mod=$mods\"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue