sagaopc Posted August 23, 2015 Share Posted August 23, 2015 A new method to run Dreamcast with demul without personalize all manual games 1- Download and install autoit (like Autohotkey, but more complex) https://www.autoitscript.com/site/autoit/downloads/ 2- create a script and copy-paste this: Opt("WinTitleMatchMode", 1) $app = "D:\Dreamcast\Emuladores\Dreamcast\demul.exe" $system = "dc" HotKeySet("{ESC}", "Terminate") If $CmdLine[0] == 1 Then Run($app & ' -run=' & $system & ' -image="' & $CmdLine[1] & '"') WinWaitActive ( "gpu" ) Send("!{ENTER}") ProcessWaitClose("demul.exe") EndIf Func Terminate() ProcessClose ( "demul.exe" ) EndFunc Send("!{ENTER}") Exit 0 OBS: In $app, put your emulator directory. Uncheck Fullscreen Option in Video Option, because the script uses alt+enter when it run. Press ESC to close the emulator 3- save it with .au3 extension. right click in the script and choose compile script (no x64, no x86, only compile script) 4- Now, create a new launcher on launchbox like this: 5- be happy! Quote Link to comment Share on other sites More sharing options...
monyarm Posted August 29, 2015 Share Posted August 29, 2015 how do you configure FS-UAE ? Quote Link to comment Share on other sites More sharing options...
orac31 Posted August 29, 2015 Share Posted August 29, 2015 monyarm said how do you configure FS-UAE ? At the moment the latest dev build allows you to run all non a1200 games just my using the command line on fs uae lanchher. every whdload game I have tried has worked 100% so you just need fs-uae-launcher name of your zip file and it will auto run it in a a600 with 8meg of ram I hope he adds more options soon Quote Link to comment Share on other sites More sharing options...
garbanzo Posted August 29, 2015 Share Posted August 29, 2015 sagaopc said A new method to run Dreamcast with demul without personalize all manual games Why so complicated? I just batch-imported .gdi files for 258 Dreamcast games and they launch just fine. Quote Link to comment Share on other sites More sharing options...
sagaopc Posted September 3, 2015 Share Posted September 3, 2015 Because you can't close the emulator with ESC button. With my method, you can! Quote Link to comment Share on other sites More sharing options...
Jason Carr Posted September 4, 2015 Author Share Posted September 4, 2015 @sagaopc, not sure if you'd be willing to help in this area, but long-term I want to come up with AutoHotkey scripts for most emulators that we can distribute with LaunchBox, that do a few helpful things: - Ensure that Escape works to close the game/emulator - Ensure that the game is immediately shown fullscreen without any windows showing up or any other distractions before the game is shown - Ensure that the game is closed without any windows showing up or any other distractions I know that HyperLaunch does this pretty well, but it's configuration is so convoluted; I'd like to be able to integrate these into LaunchBox so it all just works. It's an eventual goal. Just mentioning it because I see you're pretty knowledgeable with AutoHotkey-style scripting. :) Quote Link to comment Share on other sites More sharing options...
sagaopc Posted September 9, 2015 Share Posted September 9, 2015 This Script was to worked at Atomiswave and Naomi, because it Works on Advanced Launch too, but I don't know why it only working on dreamcast only.... Opt("WinTitleMatchMode", 1) $app = "D:\Atomiswave\Emuladores\Atomiswave\demul.exe" $system = "awave" HotKeySet("{ESC}", "Terminate") If $CmdLine[0] == 1 Then Run($app & ' -run=' & $system & ' -image="' & $CmdLine[1] & '"') WinWaitActive ( "gpu" ) Send("!{ENTER}") ProcessWaitClose("demul.exe") EndIf Func Terminate() ProcessClose ( "demul.exe" ) EndFunc Send("!{ENTER}") This is a AutoIt script, It's a bit diferent at Autohotkey, because that, I can't adapt this.... Quote Link to comment Share on other sites More sharing options...
Jason Carr Posted September 10, 2015 Author Share Posted September 10, 2015 Thanks @sagaopc. I can't find a license to see if it'd be legal to include AutoIt with LaunchBox. Quote Link to comment Share on other sites More sharing options...
eric Posted September 10, 2015 Share Posted September 10, 2015 Here is what im using for demule close w/ esc "AHK" working good #NoEnv SendMode Event DetectHiddenWindows, on #singleinstance Force $Esc:: { Process, Close, demul.exe return } return Quote Link to comment Share on other sites More sharing options...
Jason Carr Posted September 10, 2015 Author Share Posted September 10, 2015 Great, @eric, thanks. Quote Link to comment Share on other sites More sharing options...
Jason Carr Posted September 12, 2015 Author Share Posted September 12, 2015 Hey all, I just added custom AutoHotkey scripts to emulators in the latest beta. @eric, I put your Demul script in as the default script for Demul, works great. Quote Link to comment Share on other sites More sharing options...
DOS76 Posted September 12, 2015 Share Posted September 12, 2015 Is anyone using MAME v0.164 I get an error about -nowindows being an unknown option. Ok did a little searching and found this http://easyemu.mameworld.info/mameguide/mameguide-options.html if you click on -windows it gives you opposites to the command which lists -nowindows and -now. If you change -nowindows to -now it works again with no error message. Quote Link to comment Share on other sites More sharing options...
Jason Carr Posted September 12, 2015 Author Share Posted September 12, 2015 Interesting; I guess the command line parameters changed then? It looks like the LaunchBox default command line parameters are blank for MAME, actually. Quote Link to comment Share on other sites More sharing options...
XoRRoX Posted November 21, 2015 Share Posted November 21, 2015 Thanks for this list. For completeness sake, I'd like to remark that currently PCSX2 besides iso, mdf, nrg, bin also supports img, dump, gz, cso. (gz with the highest compression by the way). ePSXe supports bin, iso, img, cue, ccd, mds, pbp and ecm. Cheers. Quote Link to comment Share on other sites More sharing options...
Jason Carr Posted November 22, 2015 Author Share Posted November 22, 2015 Thanks XoRRoX, I'll add that to my list. :) Quote Link to comment Share on other sites More sharing options...
XoRRoX Posted November 23, 2015 Share Posted November 23, 2015 Jason Carr said Thanks @sagaopc. I can't find a license to see if it'd be legal to include AutoIt with LaunchBox. Hi Jason, I don't use AutoIt (yet) but found their license here: https://www.autoitscript.com/autoit3/docs/license.htm I myself am looking at ways to close PCSX2 reliably with all different Fullscreen and Nogui parameters and will update you soon with it so you can include it in LaunchBox if you want. Mike Quote Link to comment Share on other sites More sharing options...
Jason Carr Posted November 26, 2015 Author Share Posted November 26, 2015 Cool, sounds good Mike. Quote Link to comment Share on other sites More sharing options...
Zombeaver Posted November 26, 2015 Share Posted November 26, 2015 I'm confused...what's the problem you're having with closing PCSX2 via Launchbox? I use the two in conjunction and haven't had any problems... --nogui and --fullscreen launch paramaters + AHK script to close on ESC works perfect for me Quote Link to comment Share on other sites More sharing options...
Sogun Posted November 28, 2015 Share Posted November 28, 2015 Hi guys. Does anybody know how to set the 1964 emulator for the N64? I'm using a modded version that lets you play GoldenEye (and Perfect Dark too, but glitchy) at constant 60 fps. I rightclick on GoldenEye, Edit -> Emulation -> Add. Then navigate until the .exe and when I try to play GoldenEye the only thing I get is the emulator opening, heh. I need some command lines or scripts but I have no idea how to figure them out. Thanks in advance. Quote Link to comment Share on other sites More sharing options...
mrmojoz Posted December 20, 2015 Share Posted December 20, 2015 Having an issue with WinKawaks. I have it working in the emulator tab but I can't figure out where to put the -fullscreen in order to launch it in fullscreen mode. WinKawaks wants the parameter behind the rom name which is the opposite of what launchbox provides. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.