PW_WOSB 1.71 KB
Newer Older
castro-fidel's avatar
castro-fidel committed
1 2 3 4 5
#!/usr/bin/env bash
# Author: Cefeiko
########################################################################
export PW_PREFIX_NAME="DOTNET"
export PW_AUTOINSTALL_EXE="${PW_USER_TEMP}/wos_client.exe"
6
export LAUNCH_PARAMETERS=("/S")
castro-fidel's avatar
castro-fidel committed
7 8 9
export PW_DLL_INSTALL="faudio dotnet48"
export PW_VULKAN_USE=1

10
WOSB_VERSION="$(curl -s --list-only --connect-timeout 3 https://www.worldofseabattle.com/download2 2>/dev/null | grep 'installer.exe' | awk -F'xsolla-launcher-update/' '{print $2}' | awk -F'/' '{print $1}')"
11
[[ ! -z "$WOSB_VERSION" ]] && print_info "Found version: $WOSB_VERSION" || yad_error "Error while get version of WOSB INSTALLER."
12

castro-fidel's avatar
castro-fidel committed
13
start_portwine
14
if try_download_no_mirror "https://installer.launcher.xsolla.com/xlauncher-builds/xsolla-launcher-update/${WOSB_VERSION}/bin/installer.exe" "${PW_AUTOINSTALL_EXE}"
castro-fidel's avatar
castro-fidel committed
15
then
Mikhail Tergoev's avatar
Mikhail Tergoev committed
16
    pw_start_progress_bar_block "Installing World of Sea Battle. ${loc_gui_please_wait} "
castro-fidel's avatar
castro-fidel committed
17 18 19
    pw_run "${PW_AUTOINSTALL_EXE}" 
    try_remove_file "${PW_AUTOINSTALL_EXE}"
    pw_stop_progress_bar
20 21 22 23
    kill_portwine

    if [[ "${update_loc}" == "RUS" ]] ; then
        export portwine_exe="$WINEPREFIX/drive_c/users/$USER/AppData/Local/Wosb Launcher/launcher.exe"
24
        export PORTWINE_CREATE_SHORTCUT_NAME="World of Sea Battle RU"
25 26 27 28 29 30 31
        pw_create_unique_exe "wosb_launcher_ru"
        try_remove_file "${portwine_exe}.ppdb"
        export PW_SKIP_RESTART_STEAM=1
        portwine_create_shortcut block_name
    fi

    export portwine_exe="$WINEPREFIX/drive_c/users/$USER/AppData/Local/Wosb Launcher/launcher.exe"
32
    export PORTWINE_CREATE_SHORTCUT_NAME="World of Sea Battle EN"
33 34 35 36
    pw_create_unique_exe "wosb_launcher_en"
    try_remove_file "${portwine_exe}.ppdb"
    portwine_create_shortcut block_name

castro-fidel's avatar
castro-fidel committed
37 38
fi
stop_portwine