J’essaie depuis un petit bout de temps de configurer Taito Type X2 sous HL2.
J'avais ******************************************************************************.
(J'arrive à lancer et jouer au jeux sans passer par hyperspin donc ça doit surement venir de la config)
Ensuite sous HyperHQ j'ai créé le System sous le nom de "Taito Type X2"
Et configuré comme ceci ci-dessous :

Le dossier "Modules" ci-dessous :

Le .ahk "Taito Type X2" que l'on voit sur l'image :
Code : Tout sélectionner
;--------------------------------------------------------------------------------------------------------------------
; Taito Type X
; PCLauncher.exe
; by djvj
; 1.1
;
; About the script:
; - Vertical games are windowed, rotated, windows hidden (taskbar/start button/desktop), then the correct resolution is calculated and the game's window is maximized. This gives the look of a fullscreen game, but it's actually in a window.
; - Arcana Heart 3 changes your windows res and does not restore it after you exit the game, my script records your res, then restores it after the game closes.
; - Raiden 4 requires a trick to get it to work correctly, otherwise it crashes everytime. I hope someone finds a better hack one day as the one I use I feel like it might not work everytime. There have been reports it doesn't work on every PC...
;
; Taito Type X Instructions:
; 1. Backup your game.exe and typex_bindings.bin for each game (only if you want to have a backup)
; 2. In HyperHQ, use the Wizard to create a new wheel, name it Taito Type X
; 3. Download everything you see on the FTP, keeping dir names/structure and empty "sv" dirs.
;
; Notes:
; - IMPORTANT *** Requires files located in my user dir on the ftp at /Upload Here/djvj/Taito Type X/. I hacked every exe to save its config/logs into the sv subdir. If you use my exes, make sure you create an sv dir so the game can save its settings. ***
; - IMPORTANT *** Edit the lnks\dxwnd.ini file and update the dirs to where your games are located, or update the paths in dxwnd itself. ***
; - PCLauncher.exe is just a dummy exe, it can be 0-byte if you don't have one.
; - Make sure the game's folder and bat files in each game's dir are named the same as the database's game name
; - Every game, except Arcana Hearts, saves config and logs to a D or Z partition. Arcana saves everything in the registry . I hacked every game.exe so you do not need D or Z drives. Instead you just create an sv dir inside each game's root folder and it will save all configs/logs in there instead.
; - The controls bin only needs to be made once, then copy/paste your control bin into each game's dir, overwriting the existing one.
; - Arcana Hearts I had to hex edit the controls into the exe. I provided a txt with info where (in hex) and what the controls are (CHANGE KEYS.txt).
; - Raiden 4 is very buggy, but I finally got it working 100% everytime on my PC. If it starts crashing when it worked prior, reboot your PC.
; - Taisen has no way to change the keys afaik, you are out of luck on this one until a solution surfaces.
; - All the games should exit with the ESC key except for Arcana Hearts which the script will send Alt+F4
; - Some systems iRotate might not work, try commenting the iRotate.exe lines and uncomment the display.exe lines instead
;
; - Homura and Shikigami no Shiro III use custom d3d8 and d3d9 dll files, these fix the the games from going hyperfast. I did not make them and they create a wahwahwah.arc file when you launch the game. Edit this file in notepad and change InitProxyFunctions to 0 and PartOfENBSeries to localhost. Save the file, then change it to read-only so it doesn't get restored.
; - If SF4 is locking up during the intro movie, copy the 2 d3d dlls to your SF4 dir. This will fix it.
;
; - If your KOF98 UM came with d3d9.dll, d3d9d.dll, or d3dx9_36.dll in its root folder, remove all these for the game to work.
;
; - Lastly, every PC is different, so results will vary. Try playing with sleep timers if you think the script is working too fast for your PC.
; - Also if you have video issues or odd things are happening in game, play with vsync and try updating to the latest video card driver, or revert to an older one.
;
; - If you have any further issues, please consult the discussion thread at http://www.hyperspin-fe.com/forum/showthread.php?t=13627
;--------------------------------------------------------------------------------------------------------------------
Run, "C:\Hyperspin\emulators\Taito Type X2\allinone.exe"
Run, "C:\Hyperspin\Pantallas de Espera\Taito Type X2\hypersplash.exe"
Run, %rompath%%romname%%romextension%
;fix for runing .lnk files - see above
executable = %romname%.exe
Gui, Color, 000000
Gui, -Caption +ToolWindow
Gui, Show, x0 y0 W%A_ScreenHeight% H%A_ScreenWidth%, BlackScreen
sleep, 3600
Process, Close, hypersplash.exe
Process, WaitClose, game.exe
CloseProcess:
ControlSend, , {Esc}, ahk_pid %Errorlevel%
Process, Exist, %Executable%
WinKill, ahk_pid %Errorlevel%
sleep, 100
Process, WaitClose, %Executable%
Run, "C:\Hyperspin\Pantallas de Espera\Taito Type X2\hypersplash.exe"
Gui, Color, 000000
Gui +AlwaysOnTop -Caption +ToolWindow
Gui, Show, x0 y0 W%A_ScreenWidth% H%A_ScreenHeight%, BlackScreen
colorDepth = 32 ; bits (quality)
screenWidth = 1024 ; pixels
screenHeight = 768 ; pixels
refreshRate = 60 ; Hz (frequency)
sleep, 2500
Process, Close, hypersplash.exe
WinActivate, HyperSpin
ExitApp
Return/
Code : Tout sélectionner
;--------------------------------------------------------------------------------------------------------------------
; Taito Type X
; PCLauncher.exe
; by djvj
; 1.1
;
; About the script:
; - Vertical games are windowed, rotated, windows hidden (taskbar/start button/desktop), then the correct resolution is calculated and the game's window is maximized. This gives the look of a fullscreen game, but it's actually in a window.
; - Arcana Heart 3 changes your windows res and does not restore it after you exit the game, my script records your res, then restores it after the game closes.
; - Raiden 4 requires a trick to get it to work correctly, otherwise it crashes everytime. I hope someone finds a better hack one day as the one I use I feel like it might not work everytime. There have been reports it doesn't work on every PC...
;
; Taito Type X Instructions:
; 1. Backup your game.exe and typex_bindings.bin for each game (only if you want to have a backup)
; 2. In HyperHQ, use the Wizard to create a new wheel, name it Taito Type X
; 3. Download everything you see on the FTP, keeping dir names/structure and empty "sv" dirs.
;
; Notes:
; - IMPORTANT *** Requires files located in my user dir on the ftp at /Upload Here/djvj/Taito Type X/. I hacked every exe to save its config/logs into the sv subdir. If you use my exes, make sure you create an sv dir so the game can save its settings. ***
; - IMPORTANT *** Edit the lnks\dxwnd.ini file and update the dirs to where your games are located, or update the paths in dxwnd itself. ***
; - PCLauncher.exe is just a dummy exe, it can be 0-byte if you don't have one.
; - Make sure the game's folder and bat files in each game's dir are named the same as the database's game name
; - Every game, except Arcana Hearts, saves config and logs to a D or Z partition. Arcana saves everything in the registry . I hacked every game.exe so you do not need D or Z drives. Instead you just create an sv dir inside each game's root folder and it will save all configs/logs in there instead.
; - The controls bin only needs to be made once, then copy/paste your control bin into each game's dir, overwriting the existing one.
; - Arcana Hearts I had to hex edit the controls into the exe. I provided a txt with info where (in hex) and what the controls are (CHANGE KEYS.txt).
; - Raiden 4 is very buggy, but I finally got it working 100% everytime on my PC. If it starts crashing when it worked prior, reboot your PC.
; - Taisen has no way to change the keys afaik, you are out of luck on this one until a solution surfaces.
; - All the games should exit with the ESC key except for Arcana Hearts which the script will send Alt+F4
; - Some systems iRotate might not work, try commenting the iRotate.exe lines and uncomment the display.exe lines instead
;
; - Homura and Shikigami no Shiro III use custom d3d8 and d3d9 dll files, these fix the the games from going hyperfast. I did not make them and they create a wahwahwah.arc file when you launch the game. Edit this file in notepad and change InitProxyFunctions to 0 and PartOfENBSeries to localhost. Save the file, then change it to read-only so it doesn't get restored.
; - If SF4 is locking up during the intro movie, copy the 2 d3d dlls to your SF4 dir. This will fix it.
;
; - If your KOF98 UM came with d3d9.dll, d3d9d.dll, or d3dx9_36.dll in its root folder, remove all these for the game to work.
;
; - Lastly, every PC is different, so results will vary. Try playing with sleep timers if you think the script is working too fast for your PC.
; - Also if you have video issues or odd things are happening in game, play with vsync and try updating to the latest video card driver, or revert to an older one.
;
; - If you have any further issues, please consult the discussion thread at http://www.hyperspin-fe.com/forum/showthread.php?t=13627
;--------------------------------------------------------------------------------------------------------------------
Run, "C:\hyperspin1.0\emulators\Taito Type X2\allinone.exe"
Run, "C:\hyperspin1.0\Pantallas de Espera\Taito Type X2\hypersplash.exe"
Run, %rompath%%romname%%romextension%
;fix for runing .lnk files - see above
executable = %romname%.exe
Gui, Color, 000000
Gui, -Caption +ToolWindow
Gui, Show, x0 y0 W%A_ScreenHeight% H%A_ScreenWidth%, BlackScreen
sleep, 3800
Process, Close, hypersplash.exe
Process, WaitClose, game.exe
CloseProcess:
ControlSend, , {Esc}, ahk_pid %Errorlevel%
Process, Exist, %Executable%
WinKill, ahk_pid %Errorlevel%
sleep, 3000
Process, WaitClose, %Executable%
Run, "C:\hyperspin1.0\Pantallas de Espera\Taito Type X2\hypersplash.exe"
Gui, Color, 000000
Gui +AlwaysOnTop -Caption +ToolWindow
Gui, Show, x0 y0 W%A_ScreenWidth% H%A_ScreenHeight%, BlackScreen
colorDepth = 32 ; bits (quality)
screenWidth = 1024 ; pixels
screenHeight = 768 ; pixels
refreshRate = 60 ; Hz (frequency)
sleep, 2500
Process, Close, hypersplash.exe
WinActivate, HyperSpin
ExitApp
Return
https://mega.co.nz/#F!eYokWaLT!wL3BaVne8HDx-cAcbuUXbA" onclick="window.open(this.href);return false;
Le dossier "Emulators" :

Voilà , je ne voie vraiment pas où est le souci , car quand je suis dans le menu je clic sur la wheel systhem "Taito Type X2" , la liste des jeux s'affiche bien, mais quand je veux lancer un jeux rien ne ce passe.
En espérant que quelqu'un trouvera la solution
