[quote="Ony86"]
En espérant qu'une solution soit trouvée pour charger les jeux via mGalaxy et la dernière version de DTlite
[/quote]
Quand j'ai posté au sujet des updates à réaliser (post précédent) j'ai effectivement tout vérifié par moi même...et cela fonctionnait parfaitement (dernière version de SSF et DTlite)
Je viens de refaire le test et cela marche sans aucun soucis ici...donc difficile de savoir ce qui ne marche pas chez toi!?
SSF et deamon tool Lite version 10.6
Je ne comprend pas dans ce cas... Je viens de refaire tout le cheminement de ton tuto, et pas moyen de faire monter une ISO par DTlite via mGalaxy...
Lorsque tu parle des dernières versions, s'agit-il de la 0.12 Beta R4 pour SSF et de la 10.7 pour DTlite?
Si oui, j'ai du mal rentrer le code dans le script mais c'est la troisième fois que je vérifie et avec un copier-collé je pense que j'aurai du mal à faire une erreur... Est-ce bien cela?
;----------========== Parsing (common to every scripts) ==========----------
;
; There has been a call from mGalaxy to AutoIt and a commandline has been passed to it:
; Structure:/AutoIt3ExecuteScript "Path_to_script(between quotes)" Path_to_emu Emu_parameters(including a "Path_to_rom"(between quotes))
; Example:/AutoIt3ExecuteScript "C:\...\MESS [Script].au3" C:\...\mess64.exe a800 -flop1 "C:\...\Boulder_Dash.zip" -skip_gameinfo -nowindow
;
; 1. We don't need the part related to AutoiIt anymore [/AutoIt3ExecuteScript "Path to script (between quotes)"], the rest is assigned to '$commandline'
; 2. '$commandline' is then split in two: [Path_to_emu] goes to '$app', [parameters(including a "Path to rom" (between quotes))] goes to '$command'
; 3. Some apps (MESS for instance, when it searchs for a system Bios) need to know the path to their 'Working Directory'. We do 'extract' it from the full app path
;
; 1
Local $count = StringInStr($CmdLineRaw, '.au3"', 0 , 1, 1)
Local $commandline = StringTrimLeft( $CmdLineRaw, $count + 5 )
; 2
Local $count2 = StringInStr($commandline, '.exe', 0 , 1, 1)
local $app = StringLeft ($commandline, $count2 + 3 )
local $command = StringTrimLeft($commandline, $count2 + 4 )
if not $command then exit 0
; 3
Local $workingDir = StringRegExpReplace($app, "\\[^\\]*$", "")
FileChangeDir($workingDir)
;---------------------------------------------------------------------------
Local $openingCMD
Local $closingCMD
;Check path to DTLite.exe (way to detect and use DaemonTools v5)
Local $pathdaemon = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\DTLite.exe", "")
If not $pathdaemon Then
;Check path to DTAgent.exe (way to detect and use DaemonTools v10)
$pathdaemon = RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "DAEMON Tools Lite Automount")
If not $pathdaemon Then
MsgBox(4096, "Search error", "DAEMON Tools Lite not found. Please install it!")
exit 0
Endif
$pathdaemon = StringTrimRight ( $pathdaemon, 9 )
$openingCMD = $pathdaemon & ' -mount_to M, ' & $command
$closingCMD = $pathdaemon & ' -unmount M'
Else
$pathdaemon = '"' & $pathdaemon & '"'
$openingCMD = $pathdaemon & ' -mount_to M, ' & $command
$closingCMD = $pathdaemon & ' -unmount M'
Endif
RunWait($openingCMD)
RunWait('"' & $app & '"')
RunWait($closingCMD)
Exit 0
Lorsque tu parle des dernières versions, s'agit-il de la 0.12 Beta R4 pour SSF et de la 10.7 pour DTlite?
Si oui, j'ai du mal rentrer le code dans le script mais c'est la troisième fois que je vérifie et avec un copier-collé je pense que j'aurai du mal à faire une erreur... Est-ce bien cela?
;----------========== Parsing (common to every scripts) ==========----------
;
; There has been a call from mGalaxy to AutoIt and a commandline has been passed to it:
; Structure:/AutoIt3ExecuteScript "Path_to_script(between quotes)" Path_to_emu Emu_parameters(including a "Path_to_rom"(between quotes))
; Example:/AutoIt3ExecuteScript "C:\...\MESS [Script].au3" C:\...\mess64.exe a800 -flop1 "C:\...\Boulder_Dash.zip" -skip_gameinfo -nowindow
;
; 1. We don't need the part related to AutoiIt anymore [/AutoIt3ExecuteScript "Path to script (between quotes)"], the rest is assigned to '$commandline'
; 2. '$commandline' is then split in two: [Path_to_emu] goes to '$app', [parameters(including a "Path to rom" (between quotes))] goes to '$command'
; 3. Some apps (MESS for instance, when it searchs for a system Bios) need to know the path to their 'Working Directory'. We do 'extract' it from the full app path
;
; 1
Local $count = StringInStr($CmdLineRaw, '.au3"', 0 , 1, 1)
Local $commandline = StringTrimLeft( $CmdLineRaw, $count + 5 )
; 2
Local $count2 = StringInStr($commandline, '.exe', 0 , 1, 1)
local $app = StringLeft ($commandline, $count2 + 3 )
local $command = StringTrimLeft($commandline, $count2 + 4 )
if not $command then exit 0
; 3
Local $workingDir = StringRegExpReplace($app, "\\[^\\]*$", "")
FileChangeDir($workingDir)
;---------------------------------------------------------------------------
Local $openingCMD
Local $closingCMD
;Check path to DTLite.exe (way to detect and use DaemonTools v5)
Local $pathdaemon = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\DTLite.exe", "")
If not $pathdaemon Then
;Check path to DTAgent.exe (way to detect and use DaemonTools v10)
$pathdaemon = RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "DAEMON Tools Lite Automount")
If not $pathdaemon Then
MsgBox(4096, "Search error", "DAEMON Tools Lite not found. Please install it!")
exit 0
Endif
$pathdaemon = StringTrimRight ( $pathdaemon, 9 )
$openingCMD = $pathdaemon & ' -mount_to M, ' & $command
$closingCMD = $pathdaemon & ' -unmount M'
Else
$pathdaemon = '"' & $pathdaemon & '"'
$openingCMD = $pathdaemon & ' -mount_to M, ' & $command
$closingCMD = $pathdaemon & ' -unmount M'
Endif
RunWait($openingCMD)
RunWait('"' & $app & '"')
RunWait($closingCMD)
Exit 0
Ca fonctionne!
Vu que j'avais du temps je suis reparti à zéro en réinstallant (à nouveau) DTLite, puis en utilisant un backup du script original et j'ai refais toutes les modifs pour être certain de ne pas avoir fait d'erreur, puis j'ai rajouté la ligne de commande proposée par Aeliss.
J'ai fait une copie de ce qu'indique l'infobox (1ère pièce jointe). Maintenant, l'image se monte et tout fonctionne parfaitement (donc j'avais dû me gourrer quelque part lorsque j'avais modifié le script auparavant, même si j'avais vérifié plusieurs fois... Je comprend pas trop mais peu importe vu que ça fonctionne maintenant ^^)!
Seul problème désormais: j'ai une espèce de barre blanche due au passage au plein écran (voir seconde image en pièce jointe...). Y-a-t-il un moyen de supprimer cela? Après vérification ça le fait aussi lorsque je lance SSF en dehors de mGalaxy...
Vu que j'avais du temps je suis reparti à zéro en réinstallant (à nouveau) DTLite, puis en utilisant un backup du script original et j'ai refais toutes les modifs pour être certain de ne pas avoir fait d'erreur, puis j'ai rajouté la ligne de commande proposée par Aeliss.
J'ai fait une copie de ce qu'indique l'infobox (1ère pièce jointe). Maintenant, l'image se monte et tout fonctionne parfaitement (donc j'avais dû me gourrer quelque part lorsque j'avais modifié le script auparavant, même si j'avais vérifié plusieurs fois... Je comprend pas trop mais peu importe vu que ça fonctionne maintenant ^^)!
Seul problème désormais: j'ai une espèce de barre blanche due au passage au plein écran (voir seconde image en pièce jointe...). Y-a-t-il un moyen de supprimer cela? Après vérification ça le fait aussi lorsque je lance SSF en dehors de mGalaxy...
Perso, je pense que le prb venait plutot de ton install de DTlite, un reliquat d'une ancienne version par exemple.
Sinon j'ai aussi la barre blanche, jamais pu la cacher sans sortir l'artillerie lourde, et vu que c'est pas trop genant, j'ai laisse.
Sinon j'ai aussi la barre blanche, jamais pu la cacher sans sortir l'artillerie lourde, et vu que c'est pas trop genant, j'ai laisse.
Cette bande blanche (qui est donc en fait le bas de la fenêtre de SSF quand il est en mode fenêtré) semble liée à un soucis de compatibilité avec les systèmes récents (Windows 10)
Essaie ceci:
Clic-droit sur l'application SSF.exe > Propriétés > Compatibilité > Sélectionne "Désactiver les optimisations du mode plein écran"
Essaie ceci:
Clic-droit sur l'application SSF.exe > Propriétés > Compatibilité > Sélectionne "Désactiver les optimisations du mode plein écran"