-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fixes for Flowers - Le Volume series
- Loading branch information
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
"""Game fix for Flowers - Le Volume Sur Ete | ||
Fixes in-game font. See umu-1697970811.py | ||
""" | ||
|
||
import os | ||
from hashlib import sha256 | ||
from subprocess import run | ||
|
||
import __main__ as protonmain | ||
from protonfixes import util | ||
from protonfixes.logger import log | ||
|
||
|
||
def main(): | ||
env = protonmain.g_session.env.copy() | ||
wine = f"{util.protondir()}/files/bin/wine64" | ||
install_dir = util.get_game_install_path() | ||
|
||
# Font installer inside the `fonts` subdir | ||
font_installer = "overlock_mod_font_installer.exe" | ||
|
||
# Digest of the font installer | ||
hashsum = "d3bd48162d91322c3d2861cdccc538955336eff7f0fe50eeafee1b7551a52152" | ||
|
||
if os.path.isfile(f"{util.protonprefix()}/drive_c/windows/Fonts/Overlock-Mod.ttf"): | ||
log.info("Font 'Overlock-Mod.ttf' already installed in prefix, skipping...") | ||
return | ||
|
||
if not os.path.isfile(f"{install_dir}/font/{font_installer}"): | ||
log.warn(f"Could not find '{font_installer}' in '{install_dir}', skipping...") | ||
return | ||
|
||
with open(f"{install_dir}/font/{font_installer}", mode="rb") as file: | ||
if sha256(file.read()).hexdigest() != hashsum: | ||
log.warn(f"Digest mismatched: {font_installer}") | ||
log.warn(f"Expected '{hashsum}', skipping...") | ||
return | ||
|
||
log.info("Installing font 'Overlock-Mod.ttf' in prefix...") | ||
retc = run( | ||
[wine, "start", "/unix", f"{install_dir}/font/{font_installer}", "/silent"], | ||
check=False, | ||
env=env, | ||
).returncode | ||
|
||
if retc: | ||
log.warn(f"Running '{font_installer}' exited with the status code: {retc}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
"""Game fix for Flowers - Le Volume Sur Automne | ||
Fixes in-game font. See umu-1697970811.py | ||
""" | ||
|
||
import os | ||
from hashlib import sha256 | ||
from subprocess import run | ||
|
||
import __main__ as protonmain | ||
from protonfixes import util | ||
from protonfixes.logger import log | ||
|
||
|
||
def main(): | ||
env = protonmain.g_session.env.copy() | ||
wine = f"{util.protondir()}/files/bin/wine64" | ||
install_dir = util.get_game_install_path() | ||
|
||
# Font installer inside the `fonts` subdir | ||
font_installer = "overlock_mod_font_installer.exe" | ||
|
||
# Digest of the font installer | ||
hashsum = "d3bd48162d91322c3d2861cdccc538955336eff7f0fe50eeafee1b7551a52152" | ||
|
||
if os.path.isfile(f"{util.protonprefix()}/drive_c/windows/Fonts/Overlock-Mod.ttf"): | ||
log.info("Font 'Overlock-Mod.ttf' already installed in prefix, skipping...") | ||
return | ||
|
||
if not os.path.isfile(f"{install_dir}/font/{font_installer}"): | ||
log.warn(f"Could not find '{font_installer}' in '{install_dir}', skipping...") | ||
return | ||
|
||
with open(f"{install_dir}/font/{font_installer}", mode="rb") as file: | ||
if sha256(file.read()).hexdigest() != hashsum: | ||
log.warn(f"Digest mismatched: {font_installer}") | ||
log.warn(f"Expected '{hashsum}', skipping...") | ||
return | ||
|
||
log.info("Installing font 'Overlock-Mod.ttf' in prefix...") | ||
retc = run( | ||
[wine, "start", "/unix", f"{install_dir}/font/{font_installer}", "/silent"], | ||
check=False, | ||
env=env, | ||
).returncode | ||
|
||
if retc: | ||
log.warn(f"Running '{font_installer}' exited with the status code: {retc}") |