probleme deamon tool's et ssf

Ici se règle les problèmes concernant une configuration Hyperspin tournant sous HyperLaunch 2 et ses déclinaisons.

Modérateurs : Porko, Modérateurs

Répondre
Avatar de l’utilisateur
Mutsuyamato
Connaisseur
Connaisseur
Messages : 365
Inscription : 17 mars 2013 - 00:00
Localisation : Rouen 76
A remercié : 1 fois
A été remercié : 7 fois

probleme deamon tool's et ssf

Message par Mutsuyamato » 02 avr. 2014 - 22:47

Bonsoir à tous voila j'ai un petit souci je m'essai a l'émulateur ssf qui fonctionne très bien en dehors de hyperspin mais pas avec comme bien souvent ;) .
Dans hyperspin  j'ai ce message Image
et en module j'utilise
 ";------------------------------------------------------------------------ ; Sega Saturn ; SSF v0.12 beta R3 (12/25/2011) ; by djvj ; 1.4 ; ; Notes: ; This only works with DTLite, not DTPro ; Make sure your Path_To_Daemontools in Settings\settings.ini is correct ; romExtension should be mds,cue,iso,cdi,nrg ; Make sure you have your CDDrive set to whatever number you use for your games. 0 may be your hardware drive, while 1 may be your virtual drive (depending on how many you have). If you get a black screen, try different numbers starting from 0. ; If you keep getting the CD Player BIOS screen, you have the CDDrive variable set wrong below ; If you keep getting the CD Player screen with the message "Game disc unsuitable for this system", you have the incorrect bios set for the region game you are playing and or region is set wrong in the emu options. Or you can just turn off the BIOS below :) ; Set fullscreen mode via the variable below ; SSF forces 1024x768 in fullscreen mode and cannot be changed as far as I can tell ; If you are getting clipping, set the vSync variable to true below ; For faster MultiGame switching, keep the BIOS off, otherwise you have to "play" the disc each time you switch discs ;------------------------------------------------------------------------ Fullscreen = true ShowBIOS = false BilinearFiltering = true vSync = true WideScreen = false Stretch = false CDDrive = 1 UseSCSI = false ; If you prefer SCSI virtual drives, set this to true, otherwise Daemon Tools will use a DT virtual drive. AddDrive = true ; If you do not have a scsi or dt drive in daemon tools, it will be created for you. Set this to false to stop auto-creation of the drive. ;------------------------------------------------------------------------  SSFINI := CheckFile(emuPath . "SSF.ini")  GUI_ID := FadeInStart()  7z1 := 7z(romPath, romName, romExtension, 7zExtractDir) mySW:=A_ScreenWidth, mySH:=A_ScreenHeight  ; Now let's update all our keys if they differ in the ini Fullscreen := (If ( Fullscreen = "true" ) ? ("1") : ("0")) ShowBIOS := (If ( ShowBIOS = "true" ) ? ("0") : ("1")) BilinearFiltering := (If ( BilinearFiltering = "true" ) ? ("1") : ("0")) vSync := (If ( vSync = "true" ) ? ("1") : ("0")) WideScreen := (If ( WideScreen = "true" ) ? ("1") : ("0")) Stretch := (If ( Stretch = "true" ) ? ("1") : ("0")) UseSCSI := (If UseSCSI = "true" ? ("scsi") : ("dt")) iniLookup = ( ltrim c Screen, FullSize, "%Fullscreen%" Screen, BilinearFiltering, "%BilinearFiltering%" Screen, VSynchWaitFullscreen, "%vSync%" Screen, WideScreen, "%WideScreen%" Screen, StretchScreen, "%Stretch%" Screen, EnforceAspectRatioFullscreen, "1" Peripheral, CDDrive, "%CDDrive%" Program4, NoBIOS, "%ShowBIOS%" Other, ScreenMode, "%Fullscreen%" ) Loop, Parse, iniLookup, `n { StringSplit, split, A_LoopField, `,, %A_Space%%A_Tab% IniRead, tempVar, %SSFINI%, %split1%, %split2% If ( tempVar != split3 ) IniWrite, % split3, %SSFINI%, %split1%, %split2% }  DaemonTools("mount",UseSCSI,0,AddDrive,romPath . romName . romExtension) Run, %executable%, %emuPath%,,ssfPID  WinWait, SSF WinWaitActive, SSF Sleep, 1000 ; SSF flashes in real fast before going fullscreen if this is not here  GUI_ID2 := FadeInExit()   ; WinMove,SSF,,0,0 ; uncomment me if you turned off fullscreen mode and cannot see the emu, but hear it in the background  Process, WaitClose, %executable%  DaemonTools("unmount",UseSCSI,0)  7z2 := 7zCleanUp()  GUI_ID4 := FadeOutExit()  WinActivate, Hyperspin  ExitApp   PreMultiGame: If Fullscreen = 1 ; only have to take the emu out of fullscreen we are using it { ; SSF cannot swap discs in fullscreen mode, so we have to go windowed first, swap, and restore fullscreen WinGet, ssfID, ID, A WinGetPos,,,ssfW,ssfH,ahk_id %ssfID% SetKeyDelay,,10 Send !{Enter} WinSet, Transparent, 0, ahk_id %ssfID% If (mySW != ssfW || mySH != ssfH) { ; if our screen not the same size as SSF uses for it's fullscreen, we can detect when it changes While % ssfH = ssfHn { WinGetPos,,,,ssfHn,ahk_id %ssfID% Sleep, 100 } } Else ; if our screen is the same size as SSF uses for it's fullscreen, use a sleep instead Sleep, 3000 ; increase me if MG GUI is showing tiny instead of the full screen size tempgui() } Return  MultiGame: If !mgCancel { WinMenuSelectItem,ahk_id %ssfID%,,Hardware,CD Open DaemonTools("unmount",UseSCSI,0) DaemonTools("mount",UseSCSI,0,AddDrive,selectedRom) WinMenuSelectItem,ahk_id %ssfID%,,Hardware,CD Close If Fullscreen = 1 { Loop { ; looping until SSF is done loading the new disc Sleep, 200 WinGetTitle, winTitle, ahk_id %ssfID% StringSplit, T, winTitle, %A_Space%: ; ToolTip, %A_Index%`nT10=%T10%,0,0 If !oldT10 ; get the current T10 as soon as it exists and store it oldT10:=T10 If (T10 oldT10) ; If T10 starts incrementing, we know SSF has a game loaded and can continue the script Break } WinActivate, ahk_id %ssfID% SetKeyDelay,,10 Send !{Enter} Sleep, 500 ; give SSF a moment to go fullscreen and not show Hyperspin Gui, 69: Destroy WinSet, Transparent, 255, ahk_id %ssfID% WinSet, Transparent, Off, ahk_id %ssfID% } } Return  CloseProcess: GUI_ID3 := FadeOutStart() WinClose, SSF Return  tempgui(){ Gui, 69:Color, 000000  Gui, 69:-Caption +ToolWindow  Gui, 69]et mon dossier setting

 "[Main] Menu_Mode=multi Single_Mode_Name=MAME Enable_Exit_Menu=true Enable_Exit=true Exit_Default=yes Exit_Action=exit Version=1.0.0.0  Last_System=Sega Saturn Hyperlaunch_Path=DRROR Use_Last_Game=false [Resolution] FullScreen=true Width=800 Height=600 Scanlines_Active=false Scanlines_Image= Scanlines_Scale=2 Scanlines_Alpha=0.1  [Optimizer] CPU_Priority=high Quality=BEST Image_Smoothing=true Animated_Backgrounds=true Inter_Backgrounds=false Level1_Backgrounds=true Level2_Backgrounds=true Level3_Backgrounds=false Level4_Backgrounds=false Special_Backgrounds=true Wait_For_Special=false Animated_Artworks=true Level1_Artworks=true Level2_Artworks=true  [IntroVideo] Use_Intro=true Stop_On_Keypress=true  [Sound] Master_Volume=100 Video_Volume=100 Wheel_Volume=50 Interface_Volume=100  [AttractMode] Active=true Time=30 MaxSpinTime=10 HyperSpin=false Wait_For_Video=true  [Keyboard] Key_Delay=true  [P1 Controls] Start=13 Exit=27 Up=38 Down=40 SkipUp=37 SkipDown=39 SkipUpNumber=70 SkipDownNumber=86 HyperSpin=32 Genre=71 Favorites=76  [P2 Controls] Start=69 Exit=81 Up=87 Down=83 SkipUp=65 SkipDown=68 SkipUpNumber=74 SkipDownNumber=77 HyperSpin=88 Genre=72 Favorites=90  [P1 Joystick] Enabled=false Joy=0 Threshold=40 Start=Button_1 Exit=Button_2 Up=Analog_Up Down=Analog_Down SkipUp=Analog_Left SkipDown=Analog_Right SkipUpNumber=Button_3 SkipDownNumber=Button_4 HyperSpin=Button_5 Genre=Button_6 Favorites=Button_7  [P2 Joystick] Enabled=false Joy=1 Threshold=40 Start=Button_1 Exit=Button_2 Up=Analog_Up Down=Analog_Down SkipUp=Analog_Left SkipDown=Analog_Right SkipUpNumber=Button_3 SkipDownNumber=Button_4 HyperSpin=Button_5 Genre=Button_6 Favorites=Button_7  [Trackball] Enabled=false Sensitivity=90   [Spinner] Enabled=false Sensitivity=90  [Startup Program] Executable=SetDrive.exe Paramaters= Working_Directory= WinState= [Exit Program] Executable= Paramaters= Working_Directory= WinState=NORMAL  [LEDBlinky] Active=false Path=  [HiScore] Active=false Y=550 Delay=2 [HyperLaunch] Last_System=Sega Saturn Last_Rom=Batman Forever Exit_Script_Key=~p ~o Exit_Emulator_Key=Esc Toggle_Cursor_Key=true MultiGame_Key=NumpadSub MultiGame_Select_Key=Enter MultiGame_Exit_Key=Esc Path_To_Daemontools=c:\Program Files\DAEMON Tools Lite\DTLite.exe Path_To_CPWizard= Fade_In_Interrupt_Keys=anykey Keymapper_Path= Keymapper_Profiles_Path=D]

Avatar de l’utilisateur
marsunilami
Passionné
Passionné
Messages : 173
Inscription : 26 nov. 2013 - 00:00

Re: probleme deamon tool's et ssf

Message par marsunilami » 02 avr. 2014 - 23:29

voici mon setting :

[Main]
Menu_Mode=multi
Single_Mode_Name=cps
Enable_Exit_Menu=true
Enable_Exit=true
Exit_Default=yes
Exit_Action=exit
Version=1.0.0.0

Last_System=MAME
[Resolution]
FullScreen=true
Width=640
Height=480
Scanlines_Active=false
Scanlines_Image=Scanlines
Scanlines_Scale=1
Scanlines_Alpha=0.2

[Optimizer]
CPU_Priority=high
Quality=MEDIUM
Image_Smoothing=false
Animated_Backgrounds=false
Inter_Backgrounds=false
Level1_Backgrounds=true
Level2_Backgrounds=true
Level3_Backgrounds=false
Level4_Backgrounds=false
Special_Backgrounds=true
Wait_For_Special=false
Animated_Artworks=true
Level1_Artworks=true
Level2_Artworks=true

[IntroVideo]
Use_Intro=true
Stop_On_Keypress=true

[Sound]
Master_Volume=100
Video_Volume=100
Wheel_Volume=30
Interface_Volume=50

[AttractMode]
Active=true
Time=120
MaxSpinTime=5
HyperSpin=true
Wait_For_Video=true

[Keyboard]
Key_Delay=true

[HyperLaunch]
exit_script_key=~$ ~ù
exit_emulator_key=~Esc
toggle_cursor_key=~t
hide_cursor=false
hide_desktop=false
hide_taskbar=false
path_to_daemontools=C:\Program Files\DAEMON Tools Lite\DTLite.exe
path_to_cpwizard=
cpwizard_delay = 8000
cpwizard_params = -timeout 9000
last_system=MAME
last_rom=podrace
MultiGame_Key=NumpadSub
MultiGame_Select_Key=Enter
MultiGame_Exit_Key=Esc
Fade_In_Interrupt_Keys=anykey
Keymapper_Path=
Keymapper_Profiles_Path=L:\hyperspin.install\hsp\Keymapper Profiles\

[P1 Controls]
Start=13
Exit=27
Up=38
Down=40
SkipUp=37
SkipDown=39
SkipUpNumber=70
SkipDownNumber=86
HyperSpin=32
Genre=71
Favorites=76

[P2 Controls]
Start=16
Exit=50
Up=82
Down=78
SkipUp=
SkipDown=
SkipUpNumber=
SkipDownNumber=
HyperSpin=
Genre=
Favorites=

[P1 Joystick]
Enabled=true
Joy=0
Threshold=40
Start=Button_1
Exit=Button_12
Up=POV_Up
Down=POV_Down
SkipUp=POV_Left
SkipDown=POV_Right
SkipUpNumber=Button_3
SkipDownNumber=Button_4
HyperSpin=Button_5
Genre=Button_6
Favorites=Button_7

[P2 Joystick]
Enabled=false
Joy=1
Threshold=40
Start=Button_1
Exit=Button_2
Up=Analog_Up
Down=Analog_Down
SkipUp=Analog_Left
SkipDown=Analog_Right
SkipUpNumber=Button_3
SkipDownNumber=Button_4
HyperSpin=Button_5
Genre=Button_6
Favorites=Button_7

[Trackball]
Enabled=false
Sensitivity=90


[Spinner]
Enabled=false
Sensitivity=90

[Startup Program]
Executable=
Paramaters=
Working_Directory=
WinState=
[Exit Program]
Executable=
Paramaters=
Working_Directory=
WinState=NORMAL

[LEDBlinky]
Active=false
Path=

[HiScore]
Active=false
Y=550
Delay=2


Avatar de l’utilisateur
marsunilami
Passionné
Passionné
Messages : 173
Inscription : 26 nov. 2013 - 00:00

Re: probleme deamon tool's et ssf

Message par marsunilami » 02 avr. 2014 - 23:32

et mon ahk ( je suis sous HL2) :


;------------------------------------------------------------------------
;Sega Saturn
;Magicengine 1.1.3
;by BrianHoffman
;info:
;Make sure you set the correct drive letter after -cd:
;Make sure the path to 7zip below is correct
;Double check your path to daemon tools in settings.ini
;------------------------------------------------------------------------

Run, "G:\Hyperspin\Pantallas de Espera\Sega Saturn\hypersplash.exe"
daemontools = "C:\Program Files\DAEMON Tools Lite\DTLite.exe"
 RunWait, %DAEMONTOOLS% -mount 0`,"%romPath%%romName%%romExtension%"   
    RunWait, %executable% , %emuPath%, UseErrorLevel
 
 

CloseProcess:
daemontools = "C:\Program Files\DAEMON Tools Lite\DTLite.exe"
Run, %DAEMONTOOLS% -unmount 0
sleep, 4000
Process, Close, Hypersplash.exe 
 WinActivate, HyperSpin
  exitapp
return

Avatar de l’utilisateur
Mutsuyamato
Connaisseur
Connaisseur
Messages : 365
Inscription : 17 mars 2013 - 00:00
Localisation : Rouen 76
A remercié : 1 fois
A été remercié : 7 fois

Re: probleme deamon tool's et ssf

Message par Mutsuyamato » 03 avr. 2014 - 14:02

rien a faire fonctionne pas ;(

Avatar de l’utilisateur
lankou910
Gourou
Gourou
Messages : 728
Inscription : 16 mai 2013 - 01:00
Localisation : Bordeaux
A remercié : 76 fois
A été remercié : 107 fois

Re: probleme deamon tool's et ssf

Message par lankou910 » 03 avr. 2014 - 14:21

bonjour

il te demande le chemin de deamon lite

regarde sur l'image

Image
Image
Image

Avatar de l’utilisateur
Mutsuyamato
Connaisseur
Connaisseur
Messages : 365
Inscription : 17 mars 2013 - 00:00
Localisation : Rouen 76
A remercié : 1 fois
A été remercié : 7 fois

Re: probleme deamon tool's et ssf

Message par Mutsuyamato » 03 avr. 2014 - 17:07

je n'utilise pas hyperlaunch hq, mais dans mon setting j’ai bien le chemin de mon deamon
tools

Avatar de l’utilisateur
Firch
Guide
Guide
Messages : 1875
Inscription : 30 déc. 2012 - 00:00
A été remercié : 1 fois

Re: probleme deamon tool's et ssf

Message par Firch » 04 avr. 2014 - 01:34

as-tu essayé avec l'autre module que je t'avais fourni hier sur un autre sujet où tu demandais justement un module different?

http://www.thehyperfreespin.com/t1637-emulation-stv

Avatar de l’utilisateur
funambule
Connaisseur
Connaisseur
Messages : 303
Inscription : 06 févr. 2013 - 00:00

Re: probleme deamon tool's et ssf

Message par funambule » 04 avr. 2014 - 08:13

J'ai eu un problème similaire récemment quand je suis passé à windows 7. Même message mais j'ai tellement bidouillé que je ne me souviens plus quel est le paramètre déterminant.   :P  
J'ai corrigé le black screen au démarrage en changeant la valeur CDDrive = 1 dans le module mais chez toi c'est correct.
Par contre UseSCSI = false et c'est peut-être là le problème il faut que ce soit sur true.

L'autre problème venait de Daemon Tools, il faut bien veiller à installer le disque virtuel scsi et le monter correctement.

Vous devriez normalement avoir une petite icône DT dans votre barre de taches actives (si elle n’y est pas, lancez DT, allez dans le menu de configuration, onglet général et cochez les cases « Utilisez l’Agent DT » et « Auto Démarrage ») et un nouveau lecteur virtuel installé et assigné à une lettre que Daemon Tools a installé pour vous. Si cela n’est pas le cas ou si vous voulez plusieurs lecteurs, faites un clic droit sur l’icône DT et sélectionnez « Périphériques Virtuels  Ajouter un lecteur virtuel SCSI. Il en créera un nouveau avec la prochaine lettre disponible.

Avatar de l’utilisateur
marsunilami
Passionné
Passionné
Messages : 173
Inscription : 26 nov. 2013 - 00:00

Re: probleme deamon tool's et ssf

Message par marsunilami » 04 avr. 2014 - 09:46

De mon coté, deamon tool était installé dans C:\Program Files (x86)\... et dans ce cas cela ne fonctionnait pas. Ensuite makaelo m'a dit de désinstaller et réinstaller dans C:\Program Files\DAEMON Tools Lite. Et la en changeant les répertoires au niveau du ini tout est rentré dans l ordre !

Avatar de l’utilisateur
Mutsuyamato
Connaisseur
Connaisseur
Messages : 365
Inscription : 17 mars 2013 - 00:00
Localisation : Rouen 76
A remercié : 1 fois
A été remercié : 7 fois

Re: probleme deamon tool's et ssf

Message par Mutsuyamato » 04 avr. 2014 - 10:54

oki je test tout ça ,merci pour votre soutien je désespère XD

Avatar de l’utilisateur
funambule
Connaisseur
Connaisseur
Messages : 303
Inscription : 06 févr. 2013 - 00:00

Re: probleme deamon tool's et ssf

Message par funambule » 04 avr. 2014 - 13:27

J'ai fait pareil que Marsunilami, j'ai installé Daemon Tools dans le répertoire program files et non program files (x86) qui est le répertoire d'installation par défaut du logiciel sous windows 7 64 bits.
J'ai aussi fait ça car ma config préalable était sous windows xp, ce qui m'a évité de modifier tous les fichiers de config.

Avatar de l’utilisateur
marsunilami
Passionné
Passionné
Messages : 173
Inscription : 26 nov. 2013 - 00:00

Re: probleme deamon tool's et ssf

Message par marsunilami » 04 avr. 2014 - 15:58

Et puis il reste ça en début de ton ahk :
CDDrive = 1
UseSCSI = false

test en cd drive 0 et sir ça marche pas test en :
CDDrive = 1
UseSCSI = true
puis en
CDDrive = 0
UseSCSI = true

Avatar de l’utilisateur
Mutsuyamato
Connaisseur
Connaisseur
Messages : 365
Inscription : 17 mars 2013 - 00:00
Localisation : Rouen 76
A remercié : 1 fois
A été remercié : 7 fois

Re: probleme deamon tool's et ssf

Message par Mutsuyamato » 04 avr. 2014 - 22:01

J'ai enfin réussi grace a mon module que j'ai link plus haut le fait d'avoir changer
CDDrive = 0
UseSCSI = true
et la réinstallation de deamon tools ^^ me reste plus qu'a bien régler l’émulateur car graphiquement c'est moche XD
a moi manx TT.Mais sur écran lcd bouuuu que c moche ;)
Merci a vous tous

Avatar de l’utilisateur
marsunilami
Passionné
Passionné
Messages : 173
Inscription : 26 nov. 2013 - 00:00

Re: probleme deamon tool's et ssf

Message par marsunilami » 11 mai 2014 - 21:05

oui ça surprend au début ^^
mais y a des jeux culte !!
Peux tu passer ce topic en [RESOLU] ?

Répondre

Revenir à « Aide sur HyperLaunch 2 »