[RESOLU] Felix Fix it :modifier les touches de controles ?
Modérateurs : Porko, Modérateurs
[RESOLU] Felix Fix it :modifier les touches de controles ?
Je suis en train d'intégrer Felix Fix IT à ma Heavybox. J'ai récupérer le thème, j'arrive à le lancer et à jouer au clavier, mais les touches de contrôles ne correspondent pas du tout aux touches de mon panel... Une solution ???
Merci !
Merci !
- DarkEagle37
- Maître
- Messages : 3318
- Inscription : 07 mars 2013 - 00:00
- Localisation : Tours (37)
- A remercié : 78 fois
- A été remercié : 113 fois
Re: Felix Fix it : comment modifier les touches de controles ?
Utiliser un script AHk
gamePath=.\fix_it_felix_jr\FixitFelixJr.exe ; the full path and exe of FixitFelixJr.exe
BezelPath=F:\MUGEN\fix_it_felix_jr\Bezel.jpg ; the full path and extension to bezel file
zoom=200 ; Frame Resolution-Only 33,50,100,200 are supported
YAdjust=-5 ; adjusts vertically how far off center from the middle of the screen, 0=center, negative value moves up, positive value moves down
XAdjust=0 ; adjusts horizontally how far off center from the middle of the screen, 0=center, negative value moves to left, positive value moves to right
title=ahk_class FOCAL Test Shell
exitkey=Esc
ShowBezel=true
BackgroundColor=black ; changes background color, see here for available colors: http://www.autohotkey.com/docs/commands ... htm#colors
rotation=90 ; still need to rotate monitor, no point in having enabled
;----------------------------------------------------------------------------------------------------
Hotkey, ~%exitkey%, Close
WinHide ahk_class Shell_TrayWnd
WinHide, ahk_class Button
SplitPath,gamePath,fileName,fileDir
Gui, GUI1: New, -Caption +ToolWindow +OwnDialogs
Gui, GUI1: Color, %BackgroundColor%
If ShowBezel = true
Gui, GUI1: Add, Picture, W%A_ScreenWidth% H%A_ScreenHeight%, %BezelPath%
Gui, GUI1: Show, x0 y0 h%A_ScreenHeight% w%A_ScreenWidth%
; rotation := If (rotation=90 || rotation=180 || rotation=270) ? " -rotate=" . rotation . " fullscreen" : ""
zoom := If (zoom=33 || zoom=50 || zoom=100 || zoom=200) ? " -zoom=" . zoom : ""
Run, %fileName% %zoom% %rotation%, %fileDir%
WinWait, %title%
WinActivate, %title%
winHwnd:=WinActive(title)
WinSet,AlwaysOnTop, On, %title%
WinSet, Style, -0xC00000, %title% ; Remove border and titlebar
DllCall("SetMenu", uint, winHwnd, uint, 0) ; Remove the MenuBar
CenterWindow(title)
Process, WaitClose, %fileName%
ExitApp
;-----Control Remaps-----
;BackSpace::c ;Insert Coin
;Enter::1 ;Start Player 1
;~?::2 ;Start Player 2
;q::Left ;Move Left
;d::Right ;Move Right
;z::Up ;Jump Up a Level
;s::Down ;Jump Down a Level
;?::{LButton} ;Jump
;Numpad1::Shift ;Fix-It
;?::{F5} ;save
;?::{F6} ;FrameSkip
;?::{F7} ;ScreenShot
;?::{scrlk} ;lock mouse crosshairs to center of screen
;------------------------
CenterWindow(class) {
Global YAdjust
Global XAdjust
WinGetPos, appX, appY, appWidth, appHeight, %class%
appXPos := ( A_ScreenWidth / 2 ) - ( appWidth / 2 )
appYPos := ( A_ScreenHeight / 2 ) - ( appHeight / 2 )
WinMove, %class%,, % (appXPos+XAdjust), % (appYPos+YAdjust), appWidthNew, appHeightNew
}
Close:
WinClose, ahk_class FOCAL Test Shell
WinShow, ahk_class Shell_TrayWnd
WinShow, ahk_class Button
Return

gamePath=.\fix_it_felix_jr\FixitFelixJr.exe ; the full path and exe of FixitFelixJr.exe
BezelPath=F:\MUGEN\fix_it_felix_jr\Bezel.jpg ; the full path and extension to bezel file
zoom=200 ; Frame Resolution-Only 33,50,100,200 are supported
YAdjust=-5 ; adjusts vertically how far off center from the middle of the screen, 0=center, negative value moves up, positive value moves down
XAdjust=0 ; adjusts horizontally how far off center from the middle of the screen, 0=center, negative value moves to left, positive value moves to right
title=ahk_class FOCAL Test Shell
exitkey=Esc
ShowBezel=true
BackgroundColor=black ; changes background color, see here for available colors: http://www.autohotkey.com/docs/commands ... htm#colors
rotation=90 ; still need to rotate monitor, no point in having enabled
;----------------------------------------------------------------------------------------------------
Hotkey, ~%exitkey%, Close
WinHide ahk_class Shell_TrayWnd
WinHide, ahk_class Button
SplitPath,gamePath,fileName,fileDir
Gui, GUI1: New, -Caption +ToolWindow +OwnDialogs
Gui, GUI1: Color, %BackgroundColor%
If ShowBezel = true
Gui, GUI1: Add, Picture, W%A_ScreenWidth% H%A_ScreenHeight%, %BezelPath%
Gui, GUI1: Show, x0 y0 h%A_ScreenHeight% w%A_ScreenWidth%
; rotation := If (rotation=90 || rotation=180 || rotation=270) ? " -rotate=" . rotation . " fullscreen" : ""
zoom := If (zoom=33 || zoom=50 || zoom=100 || zoom=200) ? " -zoom=" . zoom : ""
Run, %fileName% %zoom% %rotation%, %fileDir%
WinWait, %title%
WinActivate, %title%
winHwnd:=WinActive(title)
WinSet,AlwaysOnTop, On, %title%
WinSet, Style, -0xC00000, %title% ; Remove border and titlebar
DllCall("SetMenu", uint, winHwnd, uint, 0) ; Remove the MenuBar
CenterWindow(title)
Process, WaitClose, %fileName%
ExitApp
;-----Control Remaps-----
;BackSpace::c ;Insert Coin
;Enter::1 ;Start Player 1
;~?::2 ;Start Player 2
;q::Left ;Move Left
;d::Right ;Move Right
;z::Up ;Jump Up a Level
;s::Down ;Jump Down a Level
;?::{LButton} ;Jump
;Numpad1::Shift ;Fix-It
;?::{F5} ;save
;?::{F6} ;FrameSkip
;?::{F7} ;ScreenShot
;?::{scrlk} ;lock mouse crosshairs to center of screen
;------------------------
CenterWindow(class) {
Global YAdjust
Global XAdjust
WinGetPos, appX, appY, appWidth, appHeight, %class%
appXPos := ( A_ScreenWidth / 2 ) - ( appWidth / 2 )
appYPos := ( A_ScreenHeight / 2 ) - ( appHeight / 2 )
WinMove, %class%,, % (appXPos+XAdjust), % (appYPos+YAdjust), appWidthNew, appHeightNew
}
Close:
WinClose, ahk_class FOCAL Test Shell
WinShow, ahk_class Shell_TrayWnd
WinShow, ahk_class Button
Return
- DarkEagle37
- Maître
- Messages : 3318
- Inscription : 07 mars 2013 - 00:00
- Localisation : Tours (37)
- A remercié : 78 fois
- A été remercié : 113 fois
Re: Felix Fix it : comment modifier les touches de controles ?
Si tu veux j'ai un dossier avec tout, le jeu MAME, le bezel, le thème HS et le AHK qui permet de changer les touches et afficher le BEZEL

- undertaker
- Gourou
- Messages : 773
- Inscription : 15 oct. 2013 - 01:00
- Localisation : Sur le Peurt du Hav'
- A remercié : 202 fois
- A été remercié : 31 fois
Re: Felix Fix it : comment modifier les touches de controles ?
ça m’intéresse aussi dark,
j'ai la version sega 32x et version PC, mais pas la version MAME
j'ai la version sega 32x et version PC, mais pas la version MAME

- DarkEagle37
- Maître
- Messages : 3318
- Inscription : 07 mars 2013 - 00:00
- Localisation : Tours (37)
- A remercié : 78 fois
- A été remercié : 113 fois
Re: Felix Fix it : comment modifier les touches de controles ?
Ouai fin c'est une version PC façon MAME...
Je vous balance ça
PACK FIX IT FELIX.zip 3.0 MB
https://mega.co.nz/#!oF1lQZDR!NXk01gQxx ... GhPrXjE7TM
Il suffit d'éditer le AHK avec tes touches et la taille de ton écran (pour le bezel) et ensuite le compiler.
Ensuite tu lances FIX IT FELIX grâce au .exe crée.
Je vous balance ça

PACK FIX IT FELIX.zip 3.0 MB
https://mega.co.nz/#!oF1lQZDR!NXk01gQxx ... GhPrXjE7TM
Il suffit d'éditer le AHK avec tes touches et la taille de ton écran (pour le bezel) et ensuite le compiler.
Ensuite tu lances FIX IT FELIX grâce au .exe crée.
- DarkEagle37
- Maître
- Messages : 3318
- Inscription : 07 mars 2013 - 00:00
- Localisation : Tours (37)
- A remercié : 78 fois
- A été remercié : 113 fois
Re: Felix Fix it : comment modifier les touches de controles ?
Ca y est, j'ai lâché la barre...
Je pensais que c'était un simple AHK comme pour n'importe quel module...
Je pensais que c'était un simple AHK comme pour n'importe quel module...
Re: Felix Fix it : comment modifier les touches de controles ?
J'ai trouvé plus simple... Je teste et je vous tiens au courant... Ca ne fonctionne pas sur mon PC mais je vais tester directement sur ma borne...
Re: Felix Fix it : comment modifier les touches de controles ?
Bonjour à tous,
Plus simple tu m'intéresse Gg45
.
Où en es tu?
@+
gégé
EDIT: Autrement je suis preneur d'explications de comment modifier le AHK et le compiler.
Merci pour le pack
Plus simple tu m'intéresse Gg45

Où en es tu?
@+
gégé
EDIT: Autrement je suis preneur d'explications de comment modifier le AHK et le compiler.
Merci pour le pack