Page 1 of 1
ESC exit shortcut for Simple64
Posted: Fri Apr 28, 2023 10:57 pm
by Thelundsgaard
Whenever you have time, could you make a script to exit simple64 as well?
Re: ESC exit shortcut for Simple64
Posted: Sat Apr 29, 2023 12:43 pm
by mgalaxy
Sorry, I can't help with this one as I can't test it afterwards, simple64 crash on my pc.
Aeliss, if you are passing by, can you test that the ordinary way to exit works here please?
Code: Select all
Func Terminate()
While ProcessExists ( $PID )
ProcessClose ( $PID )
WEnd
Exit 0
EndFunc
or
Code: Select all
Func Terminate()
Send("!+{F4}",0)
Exit 0
EndFunc
Re: ESC exit shortcut for Simple64
Posted: Sun Apr 30, 2023 3:06 pm
by Aeliss
I have copied the script file used for 1964 (use the
method) and it works perfectly.
Re: ESC exit shortcut for Simple64
Posted: Sun Apr 30, 2023 3:22 pm
by mgalaxy
Thanks a lot Aeliss
?
Re: ESC exit shortcut for Simple64
Posted: Mon May 01, 2023 9:43 am
by Aeliss
And for information the fullscreen is not possible using command line, and is not memorised is you set it during a game launch, so you need to "lock" it in the emulator setting.
Re: ESC exit shortcut for Simple64
Posted: Wed May 03, 2023 4:50 pm
by mgalaxy
Aeliss,
One last thing if you don't mind so that I can provide a solution to Thelundsgaard:
Do you have a reference of the command line arguments allowed by simple64?
Can you confirm me that it launches with a simple:
Thanks
Re: ESC exit shortcut for Simple64
Posted: Thu May 04, 2023 3:45 pm
by Aeliss
Yep, I m using an old mgalaxy version but I m using
Code: Select all
<Emulator name="Simple64" hidden="false">
<Systems>
<System name="Nintendo 64" option="" script="true" cmd=""%path\%file%ext"" extensions="n64|z64|zip"/>
</Systems>
<Requirement>
<b>To quit emulator using the ESC key</b>
This feature is not available in the emulator. mGalaxy will take care of it with a script.</Requirement>
</Emulator>
And have selected simple64-gui.exe
Haven't found parameter for full screen.
Re: ESC exit shortcut for Simple64
Posted: Thu May 04, 2023 6:07 pm
by mgalaxy
@Aeliss Thanks a lot mate
@THELUNDSGAARD
1. Add this entry inside Emulators.xml
Code: Select all
<Emulator name="simple64" hidden="false">
<Systems>
<System name="Nintendo 64" option="" script="true" cmd=""%path\%file%ext"" extensions="n64|v64|z64|rom|zip|7z"/>
</Systems>
<Requirement><b>To quit emulator using the ESC key</b>
This feature is not available in the emulator. mGalaxy will take care of it with a script.
<b>To set the emulator to fullscreen</b>
simple64-gui.exe > Settings > Core and Video Settings > ParaLLEI Video > Check 'Fullscreen'</Requirement>
</Emulator>
2. Add the 'simple64.au3' file (attached to this message) into mGalaxy\Data\Scripts folder!
Re: ESC exit shortcut for Simple64
Posted: Tue Jun 20, 2023 9:44 am
by Thelundsgaard
Sorry for the late reply. It now exits as intended.
Thanks you, both of you. You are invaluable to the community.