1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
import decky # Old-style Decky import
import os
import subprocess
import json
import shutil
import re
from pathlib import Path
class Plugin:
async def _main(self):
decky.logger.info("Framegen plugin loaded")
async def _unload(self):
decky.logger.info("Framegen plugin unloaded.")
async def extract_static_optiscaler(self) -> dict:
"""Extract OptiScaler from the plugin's bin directory."""
try:
# Set up paths
bin_path = Path(decky.DECKY_PLUGIN_DIR) / "bin"
extract_path = Path(decky.HOME) / "fgmod"
# Find the OptiScaler archive in the bin directory
optiscaler_archive = None
for file in bin_path.glob("*.7z"):
if "OptiScaler" in file.name:
optiscaler_archive = file
break
if not optiscaler_archive:
return {"status": "error", "message": "OptiScaler archive not found in plugin bin directory"}
# Clean up existing directory
if extract_path.exists():
shutil.rmtree(extract_path)
extract_path.mkdir(exist_ok=True)
decky.logger.info(f"Extracting {optiscaler_archive.name} to {extract_path}")
# Extract the 7z file
extract_cmd = [
"7z",
"x",
"-y",
"-o" + str(extract_path),
str(optiscaler_archive)
]
extract_result = subprocess.run(
extract_cmd,
capture_output=True,
text=True,
check=False
)
if extract_result.returncode != 0:
decky.logger.error(f"Extraction failed: {extract_result.stderr}")
return {
"status": "error",
"message": f"Failed to extract OptiScaler archive: {extract_result.stderr}"
}
# Create renamed copies of OptiScaler.dll
try:
renames_dir = extract_path / "renames"
renames_dir.mkdir(exist_ok=True)
source_file = extract_path / "OptiScaler.dll"
rename_files = [
"dxgi.dll",
"winmm.dll",
"dbghelp.dll",
"version.dll",
"wininet.dll",
"winhttp.dll",
"OptiScaler.asi"
]
if source_file.exists():
for rename_file in rename_files:
dest_file = renames_dir / rename_file
shutil.copy2(source_file, dest_file)
decky.logger.info(f"Created renamed copy: {dest_file}")
else:
decky.logger.error(f"Source file {source_file} does not exist")
except Exception as e:
decky.logger.error(f"Failed to create renamed copies: {e}")
# Copy launcher scripts from assets
try:
assets_dir = Path(decky.DECKY_PLUGIN_DIR) / "assets"
# Copy fgmod script
fgmod_script_src = assets_dir / "fgmod.sh"
fgmod_script_dest = extract_path / "fgmod"
if fgmod_script_src.exists():
shutil.copy2(fgmod_script_src, fgmod_script_dest)
fgmod_script_dest.chmod(0o755)
decky.logger.info(f"Copied fgmod script to {fgmod_script_dest}")
# Copy uninstaller script
uninstaller_src = assets_dir / "fgmod-uninstaller.sh"
uninstaller_dest = extract_path / "fgmod-uninstaller.sh"
if uninstaller_src.exists():
shutil.copy2(uninstaller_src, uninstaller_dest)
uninstaller_dest.chmod(0o755)
decky.logger.info(f"Copied uninstaller script to {uninstaller_dest}")
except Exception as e:
decky.logger.error(f"Failed to copy launcher scripts: {e}")
# Extract version from filename
version_match = optiscaler_archive.name.replace('.7z', '')
if '_v' in version_match:
version = 'v' + version_match.split('_v')[1]
else:
version = version_match
# Create version file
version_file = extract_path / "version.txt"
try:
with open(version_file, 'w') as f:
f.write(version)
decky.logger.info(f"Created version file: {version}")
except Exception as e:
decky.logger.error(f"Failed to create version file: {e}")
# Modify OptiScaler.ini to set FGType=nukems
try:
ini_file = extract_path / "OptiScaler.ini"
if ini_file.exists():
with open(ini_file, 'r') as f:
content = f.read()
# Replace FGType=auto with FGType=nukems
updated_content = re.sub(r'FGType\s*=\s*auto', 'FGType=nukems', content)
with open(ini_file, 'w') as f:
f.write(updated_content)
decky.logger.info("Modified OptiScaler.ini to set FGType=nukems")
else:
decky.logger.warning(f"OptiScaler.ini not found at {ini_file}")
except Exception as e:
decky.logger.error(f"Failed to modify OptiScaler.ini: {e}")
return {
"status": "success",
"message": f"Successfully extracted OptiScaler {version} to ~/fgmod",
"version": version
}
except Exception as e:
decky.logger.error(f"Extract failed: {str(e)}")
return {"status": "error", "message": f"Extract failed: {str(e)}"}
async def run_uninstall_fgmod(self) -> dict:
try:
# Remove fgmod directory
fgmod_path = Path(decky.HOME) / "fgmod"
if fgmod_path.exists():
shutil.rmtree(fgmod_path)
decky.logger.info(f"Removed directory: {fgmod_path}")
return {
"status": "success",
"output": "Successfully removed fgmod directory"
}
else:
return {
"status": "success",
"output": "No fgmod directory found to remove"
}
except Exception as e:
decky.logger.error(f"Uninstall error: {str(e)}")
return {
"status": "error",
"message": f"Uninstall failed: {str(e)}",
"output": str(e)
}
async def run_install_fgmod(self) -> dict:
try:
decky.logger.info("Starting OptiScaler installation from static bundle")
# Extract the static OptiScaler bundle
extract_result = await self.extract_static_optiscaler()
if extract_result["status"] != "success":
return {
"status": "error",
"message": f"OptiScaler extraction failed: {extract_result.get('message', 'Unknown error')}"
}
# Handle Flatpak compatibility
try:
fgmod_path = Path(decky.HOME) / "fgmod"
# Check if Flatpak Steam is installed
flatpak_check = subprocess.run(
["flatpak", "list"],
capture_output=True,
text=True,
check=False
)
if flatpak_check.returncode == 0 and "com.valvesoftware.Steam" in flatpak_check.stdout:
decky.logger.info("Flatpak Steam detected, adding filesystem access")
subprocess.run([
"flatpak", "override", "--user",
f"--filesystem={fgmod_path}",
"com.valvesoftware.Steam"
], check=False)
decky.logger.info("Added Flatpak filesystem access")
except Exception as e:
decky.logger.warning(f"Flatpak setup had issues (this is OK): {e}")
return {
"status": "success",
"output": "Successfully installed OptiScaler with all necessary components! You can now replace DLSS with FSR Frame Gen!"
}
except Exception as e:
decky.logger.error(f"Unexpected error during installation: {str(e)}")
return {
"status": "error",
"message": f"Installation failed: {str(e)}"
}
async def check_fgmod_path(self) -> dict:
path = Path(decky.HOME) / "fgmod"
required_files = [
"OptiScaler.dll",
"dlssg_to_fsr3_amd_is_better.dll",
"fakenvapi.ini",
"nvapi64.dll",
"amdxcffx64.dll",
"amd_fidelityfx_dx12.dll",
"amd_fidelityfx_vk.dll",
"libxess.dll",
"fgmod",
"fgmod-uninstaller.sh"
]
if path.exists():
for file_name in required_files:
if not path.joinpath(file_name).exists():
return {"exists": False}
return {"exists": True}
else:
return {"exists": False}
async def list_installed_games(self) -> dict:
try:
steam_root = Path(decky.HOME) / ".steam" / "steam"
library_file = Path(steam_root) / "steamapps" / "libraryfolders.vdf"
if not library_file.exists():
return {"status": "error", "message": "libraryfolders.vdf not found"}
library_paths = []
with open(library_file, "r", encoding="utf-8", errors="replace") as file:
for line in file:
if '"path"' in line:
path = line.split('"path"')[1].strip().strip('"').replace("\\\\", "/")
library_paths.append(path)
games = []
for library_path in library_paths:
steamapps_path = Path(library_path) / "steamapps"
if not steamapps_path.exists():
continue
for appmanifest in steamapps_path.glob("appmanifest_*.acf"):
game_info = {"appid": "", "name": ""}
try:
with open(appmanifest, "r", encoding="utf-8") as file:
for line in file:
if '"appid"' in line:
game_info["appid"] = line.split('"appid"')[1].strip().strip('"')
if '"name"' in line:
game_info["name"] = line.split('"name"')[1].strip().strip('"')
except UnicodeDecodeError as e:
decky.logger.error(f"Skipping {appmanifest} due to encoding issue: {e}")
finally:
pass # Ensures loop continues even if an error occurs
if game_info["appid"] and game_info["name"]:
games.append(game_info)
# Filter out games whose name contains "Proton" or "Steam Linux Runtime"
filtered_games = [g for g in games if "Proton" not in g["name"] and "Steam Linux Runtime" not in g["name"]]
return {"status": "success", "games": filtered_games}
except Exception as e:
decky.logger.error(str(e))
return {"status": "error", "message": str(e)}
async def log_error(self, error: str) -> None:
decky.logger.error(f"FRONTEND: {error}")
|