Site Tools


jeuxvideo:s:shadowmanremastered

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
jeuxvideo:s:shadowmanremastered [2021/04/23 11:58] – created yahikojeuxvideo:s:shadowmanremastered [2024/10/09 15:34] (current) yahiko
Line 22: Line 22:
  
 Taper la commande suivante pour récupérer l'ID du processus thoth_x64.exe (PID) Taper la commande suivante pour récupérer l'ID du processus thoth_x64.exe (PID)
-<codedoc code:batch>+<code batch>
 tasklist | find "thoth_x64.exe" tasklist | find "thoth_x64.exe"
-</codedoc>+</code>
  
 Lancer l'émulateur de développement Intel et y attacher le processus avec la commande suivante :  Lancer l'émulateur de développement Intel et y attacher le processus avec la commande suivante : 
-<codedoc code:batch>+<code batch>
 C:\OU\EST\SDE\sde.exe -attach-pid NUMEROPID C:\OU\EST\SDE\sde.exe -attach-pid NUMEROPID
-</codedoc>+</code>
  
 Le jeu devrait se charger correctement. J'ai toutefois remarqué de petites saccades, peut-être dues à l'émulation, dans l'intro et le menu. Rien de méchant à priori. Le jeu devrait se charger correctement. J'ai toutefois remarqué de petites saccades, peut-être dues à l'émulation, dans l'intro et le menu. Rien de méchant à priori.
Line 36: Line 36:
 Il s'agira de modifier les variables steam_folder par votre dossier d'installation de Steam et sde_folder par l'endroit où vous avez décompressé l'Intel® Software Development Emulator. Il s'agira de modifier les variables steam_folder par votre dossier d'installation de Steam et sde_folder par l'endroit où vous avez décompressé l'Intel® Software Development Emulator.
  
-C'est sale mais ça fonctionne.+C'est sale mais ça fonctionne. Reste à espérer que Nightdive ponde un vrai patch.
  
-<codedoc code:batch>+<code batch>
 @ECHO OFF @ECHO OFF
 COLOR 70 COLOR 70
Line 45: Line 45:
 REM Steam install folder REM Steam install folder
 SET steam_folder="%programfiles(x86)%\Steam" SET steam_folder="%programfiles(x86)%\Steam"
 +
 REM Intel Emulator folder REM Intel Emulator folder
 SET sde_folder=C:\Utils\sde SET sde_folder=C:\Utils\sde
Line 60: Line 61:
 REM Find the process ID REM Find the process ID
 REM https://superuser.com/questions/597726/run-a-process-and-return-its-pid-as-chp-exe-for-a-batch-fi REM https://superuser.com/questions/597726/run-a-process-and-return-its-pid-as-chp-exe-for-a-batch-fi
 +
 FOR /F %%T IN ('Wmic process where^(Name^="%process_name%"^)get ProcessId^|more +1') DO ( FOR /F %%T IN ('Wmic process where^(Name^="%process_name%"^)get ProcessId^|more +1') DO (
 SET /A pid=%%T) &GOTO StartSDE SET /A pid=%%T) &GOTO StartSDE
 :StartSDE :StartSDE
-REM Attach the process to Instel SDK Emulator thing+REM Attach the process to Intel SDK Emulator thing
 START %sde_folder%\sde.exe -attach-pid %pid% START %sde_folder%\sde.exe -attach-pid %pid%
-</codedoc>+</code>
  
jeuxvideo/s/shadowmanremastered.1619179081.txt.gz · Last modified: 2021/04/23 11:58 by yahiko