hyperhq est un outil qui sert a lancer hyperlaunch.
dans ton repertoire module tu dois avoir pour chaques type de console émulé, un fichier module nomdelaconsole.ahk
peux tu nous faire un copier/coller de ton fichier ?
normalement il doit ressembler a ça :
;----------------------------------------------------------------------------
; Atari 7800
; MESS v0.143
; by djvj
; 1.3
;
; Notes:
; This module assumes you have a7800 bios in your MESS roms directory, which might be different than your actual roms directory.
; Exit fade will only work correctly if you don't have Esc, the default MESS exit key, as your exit key. If you use Esc, turn off the ExitScreen
;----------------------------------------------------------------------------
GUI_ID := FadeInStart()
7z1 := 7z(romPath, romName, romExtension, 7zExtractDir)
Run, "%executable%" a7800 -cart "%romPath%%romName%%romExtension%" -skip_gameinfo -nowindow, %emuPath%, Hide
WinWait, MESS
WinWaitActive, MESS
GUI_ID2 := FadeInExit()
Process, WaitClose, %executable%
7z2 := 7zCleanUp()
GUI_ID4 := FadeOutExit()
WinActivate, Hyperspin
ExitApp
CloseProcess:
GUI_ID3 := FadeOutStart()
WinClose, MESS
Return
ou ça pour la vectrex, je n'utilise pas mess mais ParaJVE v0.7.0 pour celle ci :
;----------------------------------------------------------------------------
; GCE Vectrex
; ParaJVE v0.7.0
; by djvj
; 1.3
;
; Notes:
; ParaJVE requires Java Runtime Environment 1.5.0+ - Get it here:
http://java.com/en/download/index.jsp
; Roms are not needed for this system, they come with the emu
; You must use the official database from HyperList for this module to work
; In order to use the built-in overlays, the romName is being converted to the emu's built in game id found in the configuration.xml. This avoids having to edit the xml manually to change it to HS naming standards. We also don't have to setup overlay files this way too!
; Place the Settings.ini from the ftp @ /Upload Here/djvj/GCE Vectrex/ in the folder with this module. It converts the romnames from the xml to what the emu understands.
;----------------------------------------------------------------------------
Fullscreen = true
Menu = false
Sound = true
;----------------------------------------------------------------------------
settingsFile := CheckFile(A_Scriptdir . "\Modules\" . systemName . "\Settings.ini")
GUI_ID := FadeInStart()
IniRead, gameID, %settingsFile%, %romName%, gameID
If ( gameID = "ERROR" )
ScriptError("Rom not found in Settings.ini`, please use the official database from HyperList" )
fullscreen := (If Fullscreen = "true" ? ("-Fullscreen=TRUE") : ("-Fullscreen=FALSE"))
menu := (If Menu = "true" ? ("-Menu=ON") : ("-Menu=OFF"))
sound := (If Sound = "true" ? ("-Sound=ON") : ("-Sound=OFF"))
RunEmu(executable, "-game=" . gameID, fullscreen, menu, sound, emuPath) ;, "Min")
WinWait, ParaJVE ahk_class SunAwtFrame
WinWaitActive, ParaJVE ahk_class SunAwtFrame
GUI_ID2 := FadeInExit()
Process, WaitClose, javaw.exe
GUI_ID4 := FadeOutExit()
WinActivate, Hyperspin