2018-10-05 17:51:21 +02:00
|
|
|
#!/usr/bin/env python3
|
2018-01-18 21:00:48 +01:00
|
|
|
|
|
|
|
#script to launch Wine with the correct environment
|
|
|
|
|
2018-08-24 09:18:36 +02:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2018-01-19 18:03:54 +01:00
|
|
|
import filecmp
|
2018-01-18 21:00:48 +01:00
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import shutil
|
2018-02-15 15:49:56 +01:00
|
|
|
import struct
|
2018-01-18 21:00:48 +01:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2018-01-19 18:03:54 +01:00
|
|
|
import tarfile
|
2018-01-18 21:00:48 +01:00
|
|
|
|
2018-10-24 21:22:22 +02:00
|
|
|
from filelock import FileLock
|
2018-03-16 16:08:29 +01:00
|
|
|
|
2018-06-21 16:09:10 +02:00
|
|
|
#To enable debug logging, copy "user_settings.sample.py" to "user_settings.py"
|
|
|
|
#and edit it if needed.
|
2018-03-16 17:02:04 +01:00
|
|
|
|
2018-09-07 20:27:10 +02:00
|
|
|
CURRENT_PREFIX_VERSION="3.16-1"
|
2018-02-15 19:53:47 +01:00
|
|
|
|
2018-01-18 21:00:48 +01:00
|
|
|
PFX="Proton: "
|
2018-10-11 15:50:23 +02:00
|
|
|
ld_path_var = "LD_LIBRARY_PATH"
|
2018-03-06 19:13:24 +01:00
|
|
|
|
2018-01-18 21:00:48 +01:00
|
|
|
def log(msg):
|
2018-03-13 15:57:35 +01:00
|
|
|
sys.stderr.write(PFX + msg + os.linesep)
|
|
|
|
sys.stderr.flush()
|
2018-02-15 19:53:47 +01:00
|
|
|
|
2018-10-09 17:33:41 +02:00
|
|
|
def remove_tracked_files(prefix):
|
|
|
|
if not os.path.exists(prefix + "/tracked_files"):
|
|
|
|
log("Prefix has no tracked_files??")
|
|
|
|
return
|
|
|
|
|
|
|
|
with open(prefix + "/tracked_files", "r") as tracked_files:
|
|
|
|
dirs = []
|
|
|
|
for f in tracked_files:
|
|
|
|
path = prefix + "/pfx/" + f.strip()
|
|
|
|
if os.path.exists(path):
|
|
|
|
if os.path.isfile(path) or os.path.islink(path):
|
|
|
|
os.remove(path)
|
|
|
|
else:
|
|
|
|
dirs.append(path)
|
|
|
|
for d in dirs:
|
|
|
|
try:
|
|
|
|
os.rmdir(d)
|
|
|
|
except OSError:
|
|
|
|
#not empty
|
|
|
|
pass
|
|
|
|
|
|
|
|
os.remove(prefix + "/tracked_files")
|
|
|
|
os.remove(prefix + "/version")
|
|
|
|
|
2018-02-15 19:53:47 +01:00
|
|
|
def upgrade_pfx(old_ver):
|
|
|
|
if old_ver == CURRENT_PREFIX_VERSION:
|
|
|
|
return
|
2018-08-23 16:01:32 +02:00
|
|
|
|
2018-04-20 17:11:19 +02:00
|
|
|
log("Upgrading prefix from " + str(old_ver) + " to " + CURRENT_PREFIX_VERSION + " (" + os.environ["STEAM_COMPAT_DATA_PATH"] + ")")
|
2018-08-23 16:42:18 +02:00
|
|
|
|
2018-10-24 21:22:22 +02:00
|
|
|
if old_ver is None:
|
2018-08-23 16:42:18 +02:00
|
|
|
return
|
|
|
|
|
2018-08-23 16:01:32 +02:00
|
|
|
old_proton_ver, old_prefix_ver = old_ver.split('-')
|
2018-10-09 17:33:41 +02:00
|
|
|
old_proton_maj, old_proton_min = old_proton_ver.split('.')
|
|
|
|
new_proton_ver, new_prefix_ver = CURRENT_PREFIX_VERSION.split('-')
|
|
|
|
new_proton_maj, new_proton_min = new_proton_ver.split('.')
|
|
|
|
|
|
|
|
if int(new_proton_maj) < int(old_proton_maj) or \
|
|
|
|
(int(new_proton_maj) == int(old_proton_maj) and \
|
|
|
|
int(new_proton_min) < int(old_proton_min)):
|
|
|
|
log("Removing newer prefix")
|
|
|
|
if old_proton_ver == "3.7" and not os.path.exists(os.environ["STEAM_COMPAT_DATA_PATH"] + "/tracked_files"):
|
|
|
|
#proton 3.7 did not generate tracked_files, so copy it into place first
|
|
|
|
shutil.copy(basedir + "/proton_3.7_tracked_files", os.environ["STEAM_COMPAT_DATA_PATH"] + "/tracked_files")
|
|
|
|
remove_tracked_files(os.environ["STEAM_COMPAT_DATA_PATH"])
|
|
|
|
return
|
2018-08-23 16:01:32 +02:00
|
|
|
|
|
|
|
if old_proton_ver == "3.7" and old_prefix_ver == "1":
|
|
|
|
if not os.path.exists(prefix + "/drive_c/windows/syswow64/kernel32.dll"):
|
|
|
|
#shipped a busted 64-bit-only installation on 20180822. detect and wipe clean
|
|
|
|
log("Detected broken 64-bit-only installation, re-creating prefix.")
|
|
|
|
shutil.rmtree(prefix)
|
2018-10-09 17:33:41 +02:00
|
|
|
return
|
2018-01-18 21:00:48 +01:00
|
|
|
|
2018-01-19 20:03:51 +01:00
|
|
|
def run_wine(args):
|
2018-03-30 15:46:34 +02:00
|
|
|
subprocess.call(args, env=env, stderr=lfile)
|
2018-01-19 20:03:51 +01:00
|
|
|
|
2018-01-23 15:03:43 +01:00
|
|
|
def makedirs(path):
|
|
|
|
try:
|
|
|
|
os.makedirs(path)
|
2018-10-11 15:50:23 +02:00
|
|
|
except OSError:
|
2018-01-23 15:03:43 +01:00
|
|
|
#already exists
|
|
|
|
pass
|
|
|
|
|
2018-07-20 15:26:15 +02:00
|
|
|
def real_copy(src, dst):
|
|
|
|
if os.path.islink(src):
|
|
|
|
os.symlink(os.readlink(src), dst)
|
|
|
|
else:
|
|
|
|
shutil.copy(src,dst)
|
|
|
|
|
2018-10-09 17:33:41 +02:00
|
|
|
def mergedirs(src, dst, tracked_files):
|
2018-07-20 15:26:15 +02:00
|
|
|
for src_dir, dirs, files in os.walk(src):
|
2018-10-09 17:33:41 +02:00
|
|
|
rel_dir = src_dir.replace(src, "", 1).lstrip('/')
|
|
|
|
if len(rel_dir) > 0:
|
|
|
|
rel_dir = rel_dir + "/"
|
2018-07-20 15:26:15 +02:00
|
|
|
dst_dir = src_dir.replace(src, dst, 1)
|
|
|
|
if not os.path.exists(dst_dir):
|
|
|
|
os.makedirs(dst_dir)
|
2018-10-09 17:33:41 +02:00
|
|
|
tracked_files.write(rel_dir + "\n")
|
2018-07-20 15:26:15 +02:00
|
|
|
for dir_ in dirs:
|
|
|
|
src_file = os.path.join(src_dir, dir_)
|
|
|
|
dst_file = os.path.join(dst_dir, dir_)
|
|
|
|
if os.path.islink(src_file) and not os.path.exists(dst_file):
|
|
|
|
real_copy(src_file, dst_file)
|
|
|
|
for file_ in files:
|
|
|
|
src_file = os.path.join(src_dir, file_)
|
|
|
|
dst_file = os.path.join(dst_dir, file_)
|
|
|
|
if not os.path.exists(dst_file):
|
|
|
|
real_copy(src_file, dst_file)
|
2018-10-09 17:33:41 +02:00
|
|
|
tracked_files.write(rel_dir + file_ + "\n")
|
2018-07-20 15:26:15 +02:00
|
|
|
|
2018-10-24 21:22:22 +02:00
|
|
|
if not "STEAM_COMPAT_DATA_PATH" in os.environ:
|
2018-01-18 21:00:48 +01:00
|
|
|
log("No compat data path?")
|
|
|
|
sys.exit(1)
|
|
|
|
|
2018-01-19 18:03:54 +01:00
|
|
|
basedir = os.path.dirname(sys.argv[0])
|
|
|
|
bindir = basedir + "/dist/bin/"
|
2018-02-14 20:59:35 +01:00
|
|
|
libdir = basedir + "/dist/lib"
|
|
|
|
lib64dir = basedir + "/dist/lib64"
|
2018-10-12 13:20:49 +02:00
|
|
|
fontsdir = basedir + "/dist/share/fonts"
|
2018-09-24 18:18:42 +02:00
|
|
|
wine_path = bindir + "/wine"
|
2018-01-18 21:00:48 +01:00
|
|
|
|
2018-01-19 18:03:54 +01:00
|
|
|
#extract if needed
|
2018-03-16 16:08:29 +01:00
|
|
|
dist_lock = FileLock(basedir + "/dist.lock", timeout=-1)
|
|
|
|
with dist_lock:
|
|
|
|
if not os.path.exists(basedir + "/dist") or \
|
|
|
|
not os.path.exists(basedir + "/dist/version") or \
|
|
|
|
not filecmp.cmp(basedir + "/version", basedir + "/dist/version"):
|
|
|
|
if os.path.exists(basedir + "/dist"):
|
|
|
|
shutil.rmtree(basedir + "/dist")
|
|
|
|
tar = tarfile.open(basedir + "/proton_dist.tar.gz", mode="r:gz")
|
|
|
|
tar.extractall(path=basedir + "/dist")
|
|
|
|
tar.close()
|
|
|
|
shutil.copy(basedir + "/version", basedir + "/dist/")
|
2018-01-19 18:03:54 +01:00
|
|
|
|
2018-01-18 21:00:48 +01:00
|
|
|
env = dict(os.environ)
|
2018-03-28 17:27:56 +02:00
|
|
|
dlloverrides = {}
|
2018-01-18 21:00:48 +01:00
|
|
|
|
2018-06-21 16:09:10 +02:00
|
|
|
#for performance, logging is disabled by default; override with user_settings.py
|
|
|
|
env["DXVK_LOG_LEVEL"] = "none"
|
|
|
|
env["WINEDEBUG"] = "-all"
|
2018-08-22 17:11:30 +02:00
|
|
|
env.pop("WINEARCH", "")
|
2018-05-11 14:14:04 +02:00
|
|
|
|
2018-03-06 19:13:24 +01:00
|
|
|
if ld_path_var in os.environ:
|
2018-03-13 15:55:05 +01:00
|
|
|
env[ld_path_var] = lib64dir + ":" + libdir + ":" + os.environ[ld_path_var]
|
2018-01-18 21:00:48 +01:00
|
|
|
else:
|
2018-03-06 19:13:24 +01:00
|
|
|
env[ld_path_var] = lib64dir + ":" + libdir
|
2018-02-14 20:59:35 +01:00
|
|
|
|
|
|
|
env["WINEDLLPATH"] = lib64dir + "/wine:" + libdir + "/wine"
|
|
|
|
|
|
|
|
if "PATH" in os.environ:
|
2018-03-13 15:55:05 +01:00
|
|
|
env["PATH"] = bindir + ":" + os.environ["PATH"]
|
2018-02-14 20:59:35 +01:00
|
|
|
else:
|
|
|
|
env["PATH"] = bindir
|
2018-01-18 21:00:48 +01:00
|
|
|
|
2018-03-16 16:08:29 +01:00
|
|
|
with dist_lock:
|
|
|
|
if not os.path.isdir(basedir + "/dist/share/default_pfx"):
|
|
|
|
#make default prefix
|
|
|
|
env["WINEPREFIX"] = basedir + "/dist/share/default_pfx"
|
|
|
|
run_wine([wine_path, "wineboot"])
|
|
|
|
run_wine([bindir + "/wineserver", "-w"])
|
2018-01-25 20:22:24 +01:00
|
|
|
|
|
|
|
prefix = os.environ["STEAM_COMPAT_DATA_PATH"] + "/pfx/"
|
|
|
|
env["WINEPREFIX"] = prefix
|
2018-01-18 21:00:48 +01:00
|
|
|
|
2018-08-22 21:43:40 +02:00
|
|
|
if "PROTON_LOG" in env:
|
|
|
|
env["WINEDEBUG"] = "+timestamp,+pid,+tid,+seh,+debugstr,+module"
|
|
|
|
|
2018-06-21 16:09:10 +02:00
|
|
|
#load environment overrides
|
|
|
|
if os.path.exists(basedir + "/user_settings.py"):
|
2018-07-11 20:44:52 +02:00
|
|
|
try:
|
|
|
|
import user_settings
|
|
|
|
env.update(user_settings.user_settings)
|
2018-10-24 21:22:22 +02:00
|
|
|
except:
|
2018-07-11 20:44:52 +02:00
|
|
|
log("************************************************")
|
|
|
|
log("THERE IS AN ERROR IN YOUR user_settings.py FILE:")
|
|
|
|
log("%s" % sys.exc_info()[1])
|
|
|
|
log("************************************************")
|
2018-06-21 16:09:10 +02:00
|
|
|
|
|
|
|
def check_environment(env_name, config_name):
|
|
|
|
if not env_name in env:
|
2018-10-15 18:40:33 +02:00
|
|
|
return False
|
2018-06-21 16:09:10 +02:00
|
|
|
if env[env_name] == "0" or len(env[env_name]) == 0:
|
|
|
|
config_opts.discard(config_name)
|
|
|
|
else:
|
|
|
|
config_opts.add(config_name)
|
2018-10-15 18:40:33 +02:00
|
|
|
return True
|
2018-06-21 16:09:10 +02:00
|
|
|
|
|
|
|
if "STEAM_COMPAT_CONFIG" in os.environ:
|
|
|
|
config_opts = set(os.environ["STEAM_COMPAT_CONFIG"].split(","))
|
|
|
|
else:
|
|
|
|
config_opts = set()
|
|
|
|
|
2018-10-15 18:40:33 +02:00
|
|
|
if "wined3d11" in config_opts:
|
|
|
|
config_opts.add("wined3d")
|
|
|
|
|
|
|
|
if not check_environment("PROTON_USE_WINED3D", "wined3d"):
|
|
|
|
check_environment("PROTON_USE_WINED3D11", "wined3d")
|
2018-06-21 16:09:10 +02:00
|
|
|
check_environment("PROTON_NO_D3D11", "nod3d11")
|
|
|
|
check_environment("PROTON_NO_ESYNC", "noesync")
|
|
|
|
|
|
|
|
if not "noesync" in config_opts:
|
|
|
|
env["WINEESYNC"] = "1"
|
|
|
|
|
|
|
|
lfile = None
|
2018-06-27 14:42:10 +02:00
|
|
|
if "SteamGameId" in env:
|
|
|
|
if env["WINEDEBUG"] != "-all":
|
|
|
|
lfile_path = os.environ["HOME"] + "/steam-" + os.environ["SteamGameId"] + ".log"
|
|
|
|
if os.path.exists(lfile_path):
|
|
|
|
os.remove(lfile_path)
|
|
|
|
lfile = open(lfile_path, "w+")
|
|
|
|
else:
|
|
|
|
env["WINEDEBUG"] = "-all"
|
2018-06-21 16:09:10 +02:00
|
|
|
|
2018-10-12 13:20:49 +02:00
|
|
|
def create_fonts_symlinks(prefix_path):
|
|
|
|
fontsmap = [
|
|
|
|
( "LiberationSans-Regular.ttf", "arial.ttf" ),
|
|
|
|
( "LiberationSans-Bold.ttf", "arialbd.ttf" ),
|
|
|
|
( "LiberationSerif-Regular.ttf", "times.ttf" ),
|
|
|
|
( "LiberationMono-Regular.ttf", "cour.ttf" ),
|
|
|
|
]
|
|
|
|
|
|
|
|
windowsfonts = prefix_path + "/drive_c/windows/Fonts"
|
|
|
|
for p in fontsmap:
|
|
|
|
lname = os.path.join(windowsfonts, p[1])
|
|
|
|
fname = os.path.join(fontsdir, p[0])
|
|
|
|
if os.path.lexists(lname):
|
|
|
|
if os.path.islink(lname):
|
|
|
|
os.remove(lname)
|
|
|
|
os.symlink(fname, lname)
|
|
|
|
else:
|
|
|
|
os.symlink(fname, lname)
|
|
|
|
|
2018-03-16 16:39:04 +01:00
|
|
|
prefix_lock = FileLock(os.environ["STEAM_COMPAT_DATA_PATH"] + "/pfx.lock", timeout=-1)
|
|
|
|
with prefix_lock:
|
|
|
|
version_file = os.environ["STEAM_COMPAT_DATA_PATH"] + "/version"
|
|
|
|
if os.path.exists(version_file):
|
|
|
|
with open(version_file, "r") as f:
|
|
|
|
upgrade_pfx(f.readline().strip())
|
|
|
|
else:
|
|
|
|
upgrade_pfx(None)
|
|
|
|
|
2018-08-23 16:01:32 +02:00
|
|
|
if not os.path.exists(prefix + "/user.reg"):
|
|
|
|
#copy default prefix into place
|
2018-10-11 15:50:23 +02:00
|
|
|
with open(os.environ["STEAM_COMPAT_DATA_PATH"] + "/tracked_files", "w") as tfiles:
|
|
|
|
mergedirs(basedir + "/dist/share/default_pfx", prefix, tfiles)
|
2018-08-23 16:01:32 +02:00
|
|
|
|
2018-03-16 16:39:04 +01:00
|
|
|
with open(version_file, "w") as f:
|
|
|
|
f.write(CURRENT_PREFIX_VERSION + "\n")
|
|
|
|
|
2018-10-12 13:20:49 +02:00
|
|
|
#create font files symlinks
|
|
|
|
create_fonts_symlinks(prefix)
|
|
|
|
|
2018-03-16 16:39:04 +01:00
|
|
|
#copy steam files into place
|
|
|
|
if "STEAM_COMPAT_CLIENT_INSTALL_PATH" in os.environ:
|
|
|
|
#modern steam client sets this
|
|
|
|
steamdir = os.environ["STEAM_COMPAT_CLIENT_INSTALL_PATH"]
|
|
|
|
else:
|
|
|
|
#linux-only fallback, really shouldn't get here
|
|
|
|
steamdir = os.environ["HOME"] + ".steam/root/"
|
|
|
|
dst = prefix + "/drive_c/Program Files (x86)/"
|
|
|
|
makedirs(dst + "Steam")
|
|
|
|
filestocopy = ["steamclient.dll",
|
|
|
|
"steamclient64.dll",
|
|
|
|
"Steam.dll"]
|
|
|
|
for f in filestocopy:
|
|
|
|
if os.path.isfile(steamdir + "/legacycompat/" + f):
|
|
|
|
dstfile = dst + "Steam/" + f
|
|
|
|
if os.path.isfile(dstfile):
|
|
|
|
os.remove(dstfile)
|
|
|
|
shutil.copy(steamdir + "/legacycompat/" + f, dstfile)
|
|
|
|
|
|
|
|
#copy openvr files into place
|
|
|
|
dst = prefix + "/drive_c/vrclient/bin/"
|
|
|
|
makedirs(dst)
|
|
|
|
shutil.copy(basedir + "/dist/lib/wine/fakedlls/vrclient.dll", dst)
|
|
|
|
shutil.copy(basedir + "/dist/lib64/wine/fakedlls/vrclient_x64.dll", dst)
|
|
|
|
|
2018-10-15 18:04:58 +02:00
|
|
|
shutil.copy(basedir + "/dist/lib/wine/dxvk/openvr_api_dxvk.dll", prefix + "/drive_c/windows/syswow64/")
|
|
|
|
shutil.copy(basedir + "/dist/lib64/wine/dxvk/openvr_api_dxvk.dll", prefix + "/drive_c/windows/system32/")
|
|
|
|
|
2018-03-16 16:39:04 +01:00
|
|
|
#parse linux openvr config and present it in win32 format to the app.
|
|
|
|
#logic from openvr's CVRPathRegistry_Public::GetPaths
|
|
|
|
|
|
|
|
#check environment for overrides
|
|
|
|
vr_runtime = None
|
|
|
|
if "VR_OVERRIDE" in env:
|
|
|
|
vr_runtime = env["VR_OVERRIDE"]
|
|
|
|
env.pop("VR_OVERRIDE")
|
|
|
|
|
|
|
|
vr_config = None
|
|
|
|
if "VR_CONFIG_PATH" in env:
|
|
|
|
vr_config = env["VR_CONFIG_PATH"]
|
|
|
|
env.pop("VR_CONFIG_PATH")
|
|
|
|
|
|
|
|
vr_log = None
|
|
|
|
if "VR_LOG_PATH" in env:
|
|
|
|
vr_log = env["VR_LOG_PATH"]
|
|
|
|
env.pop("VR_LOG_PATH")
|
|
|
|
|
|
|
|
#load from json if needed
|
|
|
|
if vr_runtime is None or \
|
|
|
|
vr_config is None or \
|
|
|
|
vr_log is None:
|
|
|
|
try:
|
2018-10-15 16:51:29 +02:00
|
|
|
path = os.environ.get("XDG_CONFIG_HOME", os.environ["HOME"] + "/.config")
|
2018-03-16 16:39:04 +01:00
|
|
|
path = path + "/openvr/openvrpaths.vrpath"
|
|
|
|
|
2018-10-11 15:50:23 +02:00
|
|
|
with open(path, "r") as jfile:
|
|
|
|
j = json.load(jfile)
|
2018-03-16 16:39:04 +01:00
|
|
|
|
|
|
|
if vr_runtime is None:
|
|
|
|
vr_runtime = j["runtime"][0]
|
|
|
|
|
|
|
|
if vr_config is None:
|
|
|
|
vr_config = j["config"][0]
|
|
|
|
|
|
|
|
if vr_log is None:
|
|
|
|
vr_log = j["log"][0]
|
2018-10-11 15:50:23 +02:00
|
|
|
except (ValueError, OSError):
|
2018-03-16 16:39:04 +01:00
|
|
|
pass
|
|
|
|
|
2018-08-20 17:45:26 +02:00
|
|
|
makedirs(prefix + "/drive_c/users/steamuser/Local Settings/Application Data/openvr")
|
2018-03-16 16:39:04 +01:00
|
|
|
|
|
|
|
#remove existing file
|
2018-08-20 17:45:26 +02:00
|
|
|
vrpaths_name = prefix + "/drive_c/users/steamuser/Local Settings/Application Data/openvr/openvrpaths.vrpath"
|
2018-03-16 16:39:04 +01:00
|
|
|
if os.path.exists(vrpaths_name):
|
|
|
|
os.remove(vrpaths_name)
|
|
|
|
|
|
|
|
#dump new file
|
|
|
|
if not vr_runtime is None:
|
|
|
|
try:
|
|
|
|
env["PROTON_VR_RUNTIME"] = vr_runtime
|
|
|
|
|
|
|
|
j = { "runtime": [ "C:\\vrclient\\", "C:\\vrclient" ] }
|
|
|
|
|
|
|
|
if not vr_config is None:
|
2018-08-31 15:40:31 +02:00
|
|
|
win_vr_config = subprocess.check_output([wine_path, "winepath", "-w", vr_config], env=env, stderr=lfile).decode("utf-8")
|
2018-03-16 16:39:04 +01:00
|
|
|
j["config"] = [ win_vr_config.strip() ]
|
|
|
|
|
|
|
|
if not vr_log is None:
|
2018-08-31 15:40:31 +02:00
|
|
|
win_vr_log = subprocess.check_output([wine_path, "winepath", "-w", vr_log], env=env, stderr=lfile).decode("utf-8")
|
2018-03-16 16:39:04 +01:00
|
|
|
j["log"] = [ win_vr_log.strip() ]
|
|
|
|
|
|
|
|
j["version"] = 1
|
|
|
|
j["jsonid"] = "vrpathreg"
|
|
|
|
|
2018-10-11 15:50:23 +02:00
|
|
|
with open(vrpaths_name, "w") as vfile:
|
|
|
|
json.dump(j, vfile, indent=2)
|
|
|
|
except (ValueError, OSError):
|
2018-08-31 15:40:31 +02:00
|
|
|
log("Unable to write VR config! " + str(sys.exc_info()[1]))
|
2018-03-16 16:39:04 +01:00
|
|
|
|
2018-10-15 18:40:33 +02:00
|
|
|
dxvkfiles = ("d3d11", "d3d10", "d3d10core", "d3d10_1", "dxgi")
|
2018-10-15 18:04:58 +02:00
|
|
|
def make_dxvk_links(dll_dir, link_dir):
|
2018-10-15 18:40:33 +02:00
|
|
|
for f in dxvkfiles:
|
|
|
|
dst = link_dir + "/" + f + ".dll"
|
|
|
|
src = dll_dir + "/" + f + ".dll"
|
|
|
|
if os.path.lexists(dst):
|
|
|
|
os.remove(dst)
|
|
|
|
os.symlink(src, dst)
|
|
|
|
|
|
|
|
if "wined3d" in config_opts:
|
|
|
|
#use gl-based wined3d for d3d11 and d3d10
|
2018-10-06 01:10:01 +02:00
|
|
|
make_dxvk_links(basedir + "/dist/lib64/wine/fakedlls/",
|
2018-10-15 18:04:58 +02:00
|
|
|
prefix + "drive_c/windows/system32")
|
2018-10-06 01:10:01 +02:00
|
|
|
make_dxvk_links(basedir + "/dist/lib/wine/fakedlls/",
|
2018-10-15 18:04:58 +02:00
|
|
|
prefix + "drive_c/windows/syswow64")
|
|
|
|
else:
|
2018-10-15 18:40:33 +02:00
|
|
|
#use vulkan-based dxvk for d3d11 and d3d10
|
2018-10-15 18:04:58 +02:00
|
|
|
make_dxvk_links(basedir + "/dist/lib64/wine/dxvk/",
|
|
|
|
prefix + "drive_c/windows/system32")
|
|
|
|
make_dxvk_links(basedir + "/dist/lib/wine/dxvk/",
|
|
|
|
prefix + "drive_c/windows/syswow64")
|
2018-10-15 18:40:33 +02:00
|
|
|
for f in dxvkfiles:
|
|
|
|
dlloverrides[f] = "n"
|
2018-10-15 18:04:58 +02:00
|
|
|
|
2018-03-28 17:27:56 +02:00
|
|
|
if "nod3d11" in config_opts:
|
|
|
|
dlloverrides["d3d11"] = ""
|
|
|
|
if "dxgi" in dlloverrides:
|
|
|
|
del dlloverrides["dxgi"]
|
|
|
|
|
|
|
|
s = ""
|
2018-08-23 13:21:22 +02:00
|
|
|
for dll in dlloverrides:
|
|
|
|
setting = dlloverrides[dll]
|
2018-03-28 17:27:56 +02:00
|
|
|
if len(s) > 0:
|
|
|
|
s = s + ";" + dll + "=" + setting
|
|
|
|
else:
|
|
|
|
s = dll + "=" + setting
|
2018-10-07 15:16:54 +02:00
|
|
|
if "WINEDLLOVERRIDES" in os.environ:
|
|
|
|
env["WINEDLLOVERRIDES"] = os.environ["WINEDLLOVERRIDES"] + ";" + s
|
|
|
|
else:
|
|
|
|
env["WINEDLLOVERRIDES"] = s
|
2018-03-28 17:27:56 +02:00
|
|
|
|
2018-02-15 15:49:56 +01:00
|
|
|
ARCH_UNKNOWN=0
|
|
|
|
ARCH_I386=1
|
|
|
|
ARCH_X86_64=2
|
|
|
|
def determine_architecture(path):
|
|
|
|
#algorithm from file's msdos magic file
|
2018-03-30 16:10:48 +02:00
|
|
|
try:
|
|
|
|
with open(path, "rb") as f:
|
|
|
|
magic = f.read(2)
|
2018-08-24 20:48:57 +02:00
|
|
|
if magic != b"MZ":
|
2018-03-30 16:10:48 +02:00
|
|
|
return ARCH_UNKNOWN
|
|
|
|
f.seek(0x18)
|
|
|
|
reloc = struct.unpack('<H', f.read(2))[0]
|
|
|
|
if reloc < 0x40:
|
|
|
|
#DOS
|
|
|
|
return ARCH_I386
|
|
|
|
f.seek(0x3c)
|
|
|
|
pe_offs = struct.unpack('<L', f.read(4))[0]
|
|
|
|
f.seek(pe_offs)
|
|
|
|
magic = f.read(4)
|
2018-08-24 20:48:57 +02:00
|
|
|
if magic != b"PE\0\0":
|
2018-03-30 16:10:48 +02:00
|
|
|
return ARCH_UNKNOWN
|
|
|
|
f.seek(pe_offs + 4)
|
|
|
|
arch = struct.unpack('<H', f.read(2))[0]
|
|
|
|
if arch == 0x8664:
|
|
|
|
return ARCH_X86_64
|
|
|
|
if arch == 0x014c:
|
|
|
|
return ARCH_I386
|
2018-02-15 15:49:56 +01:00
|
|
|
return ARCH_UNKNOWN
|
2018-10-11 15:50:23 +02:00
|
|
|
except OSError:
|
2018-02-15 15:49:56 +01:00
|
|
|
return ARCH_UNKNOWN
|
|
|
|
|
2018-03-30 16:10:48 +02:00
|
|
|
game_arch = determine_architecture(sys.argv[2])
|
|
|
|
|
2018-03-14 19:58:11 +01:00
|
|
|
def dump_dbg_env(f):
|
2018-03-16 17:02:04 +01:00
|
|
|
f.write("PATH=\"" + env["PATH"] + "\" \\\n")
|
2018-03-14 19:58:11 +01:00
|
|
|
f.write("\tTERM=\"xterm\" \\\n") #XXX
|
|
|
|
f.write("\tWINEDEBUG=\"-all\" \\\n")
|
2018-02-15 17:13:33 +01:00
|
|
|
f.write("\tWINEDLLPATH=\"" + env["WINEDLLPATH"] + "\" \\\n")
|
2018-03-06 19:13:24 +01:00
|
|
|
f.write("\t" + ld_path_var + "=\"" + env[ld_path_var] + "\" \\\n")
|
2018-02-15 17:13:33 +01:00
|
|
|
f.write("\tWINEPREFIX=\"" + env["WINEPREFIX"] + "\" \\\n")
|
2018-09-17 22:01:50 +02:00
|
|
|
if "WINEESYNC" in env:
|
|
|
|
f.write("\tWINEESYNC=\"" + env["WINEESYNC"] + "\" \\\n")
|
2018-03-16 17:02:04 +01:00
|
|
|
if "SteamGameId" in env:
|
|
|
|
f.write("\tSteamGameId=\"" + env["SteamGameId"] + "\" \\\n")
|
|
|
|
if "SteamAppId" in env:
|
|
|
|
f.write("\tSteamAppId=\"" + env["SteamAppId"] + "\" \\\n")
|
2018-02-15 17:13:33 +01:00
|
|
|
if "PROTON_VR_RUNTIME" in env:
|
|
|
|
f.write("\tPROTON_VR_RUNTIME=\"" + env["PROTON_VR_RUNTIME"] + "\" \\\n")
|
|
|
|
if "WINEDLLOVERRIDES" in env:
|
|
|
|
f.write("\tWINEDLLOVERRIDES=\"" + env["WINEDLLOVERRIDES"] + "\" \\\n")
|
2018-05-15 21:58:49 +02:00
|
|
|
if "STEAM_COMPAT_CLIENT_INSTALL_PATH" in env:
|
|
|
|
f.write("\tSTEAM_COMPAT_CLIENT_INSTALL_PATH=\"" + env["STEAM_COMPAT_CLIENT_INSTALL_PATH"] + "\" \\\n")
|
2018-03-14 19:58:11 +01:00
|
|
|
|
|
|
|
def dump_dbg_scripts():
|
|
|
|
exe_name = os.path.basename(sys.argv[2])
|
|
|
|
|
2018-10-24 21:22:22 +02:00
|
|
|
tmpdir = env.get("PROTON_DEBUG_DIR", "/tmp") + "/proton_" + os.environ["USER"] + "/"
|
|
|
|
makedirs(tmpdir)
|
2018-08-22 21:55:38 +02:00
|
|
|
|
2018-10-24 21:22:22 +02:00
|
|
|
with open(tmpdir + "winedbg", "w") as f:
|
2018-03-14 19:58:11 +01:00
|
|
|
f.write("#!/bin/bash\n")
|
|
|
|
f.write("#Run winedbg with args\n\n")
|
|
|
|
f.write("cd \"" + os.getcwd() + "\"\n")
|
|
|
|
dump_dbg_env(f)
|
2018-06-18 17:25:04 +02:00
|
|
|
f.write("\t\"" + wine_path + "\" winedbg \"$@\"\n")
|
2018-10-24 21:22:22 +02:00
|
|
|
os.chmod(tmpdir + "winedbg", 0o755)
|
2018-03-14 19:58:11 +01:00
|
|
|
|
2018-10-24 21:22:22 +02:00
|
|
|
with open(tmpdir + "winedbg_run", "w") as f:
|
2018-03-14 19:58:11 +01:00
|
|
|
f.write("#!/bin/bash\n")
|
|
|
|
f.write("#Run winedbg and prepare to run game or given program\n\n")
|
|
|
|
f.write("cd \"" + os.getcwd() + "\"\n")
|
|
|
|
f.write("DEF_CMD=(")
|
|
|
|
first = True
|
|
|
|
for arg in sys.argv[2:]:
|
|
|
|
if first:
|
|
|
|
f.write("\"" + arg + "\"")
|
|
|
|
first = False
|
|
|
|
else:
|
|
|
|
f.write(" \"" + arg + "\"")
|
|
|
|
f.write(")\n")
|
|
|
|
dump_dbg_env(f)
|
2018-06-18 17:25:04 +02:00
|
|
|
f.write("\t\"" + wine_path + "\" winedbg \"${@:-${DEF_CMD[@]}}\"\n")
|
2018-10-24 21:22:22 +02:00
|
|
|
os.chmod(tmpdir + "winedbg_run", 0o755)
|
2018-03-14 19:58:11 +01:00
|
|
|
|
2018-10-24 21:22:22 +02:00
|
|
|
with open(tmpdir + "gdb_attach", "w") as f:
|
2018-03-14 19:58:11 +01:00
|
|
|
f.write("#!/bin/bash\n")
|
|
|
|
f.write("#Run winedbg in gdb mode and auto-attach to already-running program\n\n")
|
|
|
|
f.write("cd \"" + os.getcwd() + "\"\n")
|
|
|
|
f.write("EXE_NAME=${1:-\"" + exe_name + "\"}\n")
|
2018-10-24 21:22:22 +02:00
|
|
|
f.write("WPID_HEX=$(\"" + tmpdir + "winedbg\" --command 'info process' | grep -i \"$EXE_NAME\" | cut -f2 -d' ' | tr -d '0')\n")
|
2018-03-14 19:58:11 +01:00
|
|
|
f.write("if [ -z \"$WPID_HEX\" ]; then \n")
|
|
|
|
f.write(" echo \"Program does not appear to be running: \\\"$EXE_NAME\\\"\"\n")
|
|
|
|
f.write(" exit 1\n")
|
|
|
|
f.write("fi\n")
|
|
|
|
f.write("WPID_DEC=$(printf %d 0x$WPID_HEX)\n")
|
|
|
|
dump_dbg_env(f)
|
2018-06-18 17:25:04 +02:00
|
|
|
f.write("\t\"" + wine_path + "\" winedbg --gdb $WPID_DEC\n")
|
2018-10-24 21:22:22 +02:00
|
|
|
os.chmod(tmpdir + "gdb_attach", 0o755)
|
2018-03-14 19:58:11 +01:00
|
|
|
|
2018-10-24 21:22:22 +02:00
|
|
|
with open(tmpdir + "gdb_run", "w") as f:
|
2018-03-14 19:58:11 +01:00
|
|
|
f.write("#!/bin/bash\n")
|
|
|
|
f.write("#Run winedbg in gdb mode and prepare to run game or given program\n\n")
|
|
|
|
f.write("cd \"" + os.getcwd() + "\"\n")
|
|
|
|
f.write("DEF_CMD=(")
|
|
|
|
first = True
|
|
|
|
for arg in sys.argv[2:]:
|
|
|
|
if first:
|
|
|
|
f.write("\"" + arg + "\"")
|
|
|
|
first = False
|
|
|
|
else:
|
|
|
|
f.write(" \"" + arg + "\"")
|
|
|
|
f.write(")\n")
|
|
|
|
dump_dbg_env(f)
|
2018-06-18 17:25:04 +02:00
|
|
|
f.write("\t\"" + wine_path + "\" winedbg --gdb \"${@:-${DEF_CMD[@]}}\"\n")
|
2018-10-24 21:22:22 +02:00
|
|
|
os.chmod(tmpdir + "gdb_run", 0o755)
|
2018-03-14 19:58:11 +01:00
|
|
|
|
2018-10-24 21:22:22 +02:00
|
|
|
with open(tmpdir + "run", "w") as f:
|
2018-03-14 19:58:11 +01:00
|
|
|
f.write("#!/bin/bash\n")
|
|
|
|
f.write("#Run game or given command in environment\n\n")
|
|
|
|
f.write("cd \"" + os.getcwd() + "\"\n")
|
|
|
|
f.write("DEF_CMD=(")
|
|
|
|
first = True
|
|
|
|
for arg in sys.argv[2:]:
|
|
|
|
if first:
|
|
|
|
f.write("\"" + arg + "\"")
|
|
|
|
first = False
|
|
|
|
else:
|
|
|
|
f.write(" \"" + arg + "\"")
|
|
|
|
f.write(")\n")
|
|
|
|
dump_dbg_env(f)
|
2018-03-30 16:10:48 +02:00
|
|
|
if game_arch == ARCH_UNKNOWN:
|
2018-06-18 17:25:04 +02:00
|
|
|
f.write("\t\"" + wine_path + "\" start \"${@:-${DEF_CMD[@]}}\"\n")
|
2018-03-30 16:10:48 +02:00
|
|
|
else:
|
2018-06-18 17:25:04 +02:00
|
|
|
f.write("\t\"" + wine_path + "\" \"${@:-${DEF_CMD[@]}}\"\n")
|
2018-10-24 21:22:22 +02:00
|
|
|
os.chmod(tmpdir + "run", 0o755)
|
2018-02-15 17:13:33 +01:00
|
|
|
|
2018-08-08 15:01:55 +02:00
|
|
|
def run():
|
2018-08-25 13:29:13 +02:00
|
|
|
if "PROTON_DUMP_DEBUG_COMMANDS" in env:
|
2018-08-22 21:51:45 +02:00
|
|
|
try:
|
|
|
|
dump_dbg_scripts()
|
2018-10-11 15:50:23 +02:00
|
|
|
except OSError:
|
2018-08-22 21:55:38 +02:00
|
|
|
log("Unable to write debug scripts! " + str(sys.exc_info()[1]))
|
2018-08-22 21:51:45 +02:00
|
|
|
if game_arch == ARCH_UNKNOWN:
|
|
|
|
#probably a batch script or something, hopefully start.exe can handle it
|
|
|
|
run_wine([wine_path, "start", "/unix"] + sys.argv[2:])
|
|
|
|
else:
|
|
|
|
run_wine([wine_path] + sys.argv[2:])
|
2018-08-08 15:01:55 +02:00
|
|
|
|
2018-08-23 13:21:22 +02:00
|
|
|
if sys.version_info[0] == 2:
|
|
|
|
binary_stdout = sys.stdout
|
|
|
|
elif sys.version_info[0] == 3:
|
|
|
|
binary_stdout = sys.stdout.buffer
|
|
|
|
else:
|
2018-08-26 22:52:05 +02:00
|
|
|
raise Exception("Unsupported python version")
|
2018-08-23 13:21:22 +02:00
|
|
|
|
2018-08-08 15:01:55 +02:00
|
|
|
#determine mode
|
|
|
|
if sys.argv[1] == "run":
|
|
|
|
#start target app
|
|
|
|
run()
|
|
|
|
elif sys.argv[1] == "waitforexitandrun":
|
|
|
|
#wait for wineserver to shut down
|
|
|
|
run_wine([bindir + "/wineserver", "-w"])
|
|
|
|
#then run
|
|
|
|
run()
|
2018-02-20 14:41:39 +01:00
|
|
|
elif sys.argv[1] == "getcompatpath":
|
|
|
|
#linux -> windows path
|
2018-02-27 18:00:55 +01:00
|
|
|
path = subprocess.check_output([wine_path, "winepath", "-w", sys.argv[2]], env=env, stderr=lfile)
|
2018-08-23 13:21:22 +02:00
|
|
|
binary_stdout.write(path)
|
2018-02-20 14:41:39 +01:00
|
|
|
elif sys.argv[1] == "getnativepath":
|
|
|
|
#windows -> linux path
|
2018-02-27 18:00:55 +01:00
|
|
|
path = subprocess.check_output([wine_path, "winepath", sys.argv[2]], env=env, stderr=lfile)
|
2018-08-23 13:21:22 +02:00
|
|
|
binary_stdout.write(path)
|
2018-02-02 21:21:35 +01:00
|
|
|
else:
|
2018-02-15 20:06:32 +01:00
|
|
|
log("Need a verb.")
|
2018-02-02 21:21:35 +01:00
|
|
|
sys.exit(1)
|
2018-01-18 21:00:48 +01:00
|
|
|
|
|
|
|
sys.exit(0)
|
2018-08-29 14:45:41 +02:00
|
|
|
|
|
|
|
# vim: set syntax=python:
|