RIP-Felix Posted October 12, 2012 Share Posted October 12, 2012 3. I looking at your batch scripts, I caught myself in an oversight. I got a bit carried away with the pseudo code in my previous message. You may need to provide the [WORKINGPATH], and [ROMFILE] variables as parameters (or arguments if you feel like being syntactically correct) which are fed into the batch file. It’s not terribly difficult to do, but it’s not necessarily intuitive either. For example to run your Launch Before batch script you would do something like this in GameEx:LaunchBefore.bat “[WORKINGPATH]” “[ROMFILE]”Then inside your .bat it would look like this:"<directory>\SwitchDisc.exe" -w "%~1" -f "%~2"Where <directory> is an actual full directory path, and where %~1 and %~2 represent the contents of the inbound arguments in the order specified.Here is the new gameEx info:Launch before command:E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Switchdisc (GameEx launch before).bat “[WORKINGPATH]” “[ROMFILE]”Switchdisc (GameEx launch before).bat:goto 1:1"E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe"goto 2:2"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\SwitchDisc-1.0.0\SwitchDisc.exe" -w "%~1" -f "%~2"endLaunch aftter command:E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Switchdisc (GameEx launch after).batGameEx is still not passing my launch before command. I don't see why? It should launch it just like it does with the other emulators. I could convert it to an exe and see if changes aything....Nope. Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 12, 2012 Author Share Posted October 12, 2012 Shouldnt need much really.... depends more on what command lines your exe takes. I'll tinker around and see what I can come up with... TBH I was waiting to see the documentation so I know what I'm getting myself into. I'll try to keep up with ya though! Does SwitchDisc write the install path to the reg?Basic command line usage can be found in the readme, but yeah full documentation is forthcoming in the form of a compiled help manual (chm). It's getting there, but I haven't had much time to devote to it. I don't want to half-ass it so hang tight everyone! The comments I've received so far have given me an idea that should (hopefully) make setup considerably easier. That idea is going to take a backseat to the documentation though, as I feel that's the most important component to complete right now.SwitchDisc doesn't write any settings to the reg. Technically the app itself is completely portable, but naturally once you start setting up directory paths via the config it becomes localized to the machine it's running on by virtue of that fact.@ Felix: Those settings look better to me, but I haven't had a chance to test that config myself. I'm still not too sure about those goto lines in your batch file (seems like that part might be unnecessary), but if it ain't broken I suppose we won't worry about trying to fix it! Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 12, 2012 Share Posted October 12, 2012 @ Felix: Those settings look better to me, but I haven't had a chance to test that config myself. I'm still not too sure about those goto lines in your batch file (seems like that part might be unnecessary), but if it ain't broken I suppose we won't worry about trying to fix it! They are unneccessary. I just use them as a best practic so I can keep the code strait. I'm new to script writing and have learned more in the last two days from you than I had prieviously. I can remove them if you think they are interfering, but they shouldn't be.Here is my analytical mind passing gas:1) We changed the *.ini file so GameEx knows to watch ePSXe not ePSXecutor.2) We are using a *.bat file in GameEx's launch before and after command line.Do we know that 1 does not interfere with 2? Do we know that 2 is possable? And do we of anything else that would cause 2 not to occur, so we can rule it out? Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 12, 2012 Share Posted October 12, 2012 If I try to run the switchdisc.exe it now gives me this error, "Second path fragment must not be a drive or UNC name. Paramter name: path2".I told switchdisk to look for *.lnk files for each disk. That must not be a Universal Naming Convention (UNC) name? So perhaps *.lnk file types are being blocked by the library, either within switchdisc, if aplicable, or by win7?Edit: I tried chanhing the *.lnk at the end of switchdisc's disc file location to *.LNK. No change (I didn't thik it would.)LOG10/12/2012 9:46:57 AM SwitchDisc logging initialized10/12/2012 9:46:57 AM Processing SwitchDisc command options...10/12/2012 9:46:57 AM Command options parsed successfully:10/12/2012 9:46:57 AM DiscID =10/12/2012 9:46:57 AM DiscFile =10/12/2012 9:46:57 AM EmulatorID =10/12/2012 9:46:57 AM WorkingPath =10/12/2012 9:46:57 AM FullScreen = False10/12/2012 9:46:57 AM NoGUI = False10/12/2012 9:46:57 AM Exit = False10/12/2012 9:46:57 AM Parsing SwitchDisc configuration from file10/12/2012 9:46:57 AM Registering SwitchDisc HotKey10/12/2012 9:46:57 AM Registering SwitchDisc Interface Keys10/12/2012 9:46:57 AM Options do not match the existing configuration. SwitchDisc will attempt to load entire configuration10/12/2012 9:46:57 AM Program Terminated Unexpectedly10/12/2012 9:46:57 AM Error:Second path fragment must not be a drive or UNC name.Parameter name: path2 Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 12, 2012 Author Share Posted October 12, 2012 Sorry for the issues you're experiencing Felix. I think I may have just noticed the cause of your problem. Sorry it took my a while to pick up on it. You have your Disc file names set like this:<FileName>E:\<ommitted>\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\Final Fantasy VII (Disc 3).lnk</FileName>That's not right. Being that this this field is intended to only contain the file name of the Disc image (or whatever), your fields should be adjusted to look like this:<FileName>Final Fantasy VII (Disc 3).lnk</FileName>When SwitchDisc goes hunting for your Discs it does a directory join on Your ROM path (set at the emulator level), and the file name of your discs image(s). That means that your disc images must either be in the same directory defined by the emulator ROM path, or a sub-directory of that path (in this case you'll want to specify that your ROMs are in sub-directories under the Emulator settings). In effect, what's happening right now is SwitchDisc is trying to locate a disc image file at:E:\<ommitted>\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\E:\<ommitted>\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\Final Fantasy VII (Disc 3).lnk... and predictably choking on the results (I'm pretty sure that's what the error message is on about when it's refers to "path2" since there are in fact two full directory paths there).I think that should get you past this particular hurdle. Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 12, 2012 Share Posted October 12, 2012 So, instead of pointing the disc file location at the ePSXecutor shortcut, I should set it to the physical location of the *.bin or *.img file? And in order for it to allow this, since they're not in the same directory as the Rom path or working path, I have to select Roms in sub directories option to yes. Or do I need to move all my roms to a sub folder that is within the Game shortcuts folder (since it is the rompath and workingpath)? If so it would be easier to move the shortcuts to within the ISO folder (where my images are) and tell switchdisc that's the new working and rom path.Sorry, scratch that. You're saying that the disc file is appended to the rompath so it's unnecessary to re-enter the filepath up to the *.lnk? Meaning under disc file I would just enter "Final Fantasy IX(disc 1).lnk". Then switchdisc will add this to E:\<ommitted>\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts.Does it automatically add the backslash? Or should I enter "\Final Fantasy IX (Disc 1).lnk". [answered my own question, yes it does.]Edit: I have successfully entered the GUI! Yayyyy. Ok, more testing... Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 12, 2012 Author Share Posted October 12, 2012 You shouldn't need to move anything (at least as far as I can tell). The ROM path for your emulator should be set to the directory housing whatever it is that the emulator is going to be running directly. ePSXecutor directly runs your shortcuts, so your emulator ROM directory should be set to the directory housing those shortcuts.So this part looks correct to me (assuming this directory contains your shortcuts):<RomPath>E:\<ommitted>\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts</RomPath>Once that component is in place, your disc file names should look like this (assuming the following file exists in the above directory or a sub directory thereof)<FileName>Final Fantasy VII (Disc 3).lnk</FileName>Remember that working path doesn't really play a significant role here, and there is not an implied correlation between working path and ROM path. To summarize:The Disc File Name field (on the Disc screen) must contain only the file name of the disc image (or .lnk, or .anyOldExtension)The Disc File must exist in the ROM directory or a sub-directory thereof (if it's a sub-directory, you need to adjust the "ROMs in Sub-Directories" field on the Emulator screen)Does that help to clarify at all? Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 12, 2012 Share Posted October 12, 2012 Yep.Here is the log:10/12/2012 11:27:42 AM SwitchDisc logging initialized10/12/2012 11:27:42 AM Processing SwitchDisc command options...10/12/2012 11:27:42 AM Command options parsed successfully:10/12/2012 11:27:42 AM DiscID =10/12/2012 11:27:42 AM DiscFile =10/12/2012 11:27:42 AM EmulatorID =10/12/2012 11:27:42 AM WorkingPath =10/12/2012 11:27:42 AM FullScreen = False10/12/2012 11:27:42 AM NoGUI = False10/12/2012 11:27:42 AM Exit = False10/12/2012 11:27:42 AM Parsing SwitchDisc configuration from file10/12/2012 11:27:42 AM Registering SwitchDisc HotKey10/12/2012 11:27:42 AM Registering SwitchDisc Interface Keys10/12/2012 11:27:42 AM Options do not match the existing configuration. SwitchDisc will attempt to load entire configuration10/12/2012 11:27:42 AM Could not determine currently loaded disc10/12/2012 11:27:42 AM Overriding NoGUI settings. Initializing to FALSE10/12/2012 11:27:51 AM Initializing SwitchDisc GUI10/12/2012 11:27:51 AM Invoking Send Keys Before GUI10/12/2012 11:27:51 AM SwitchDisc GUI: Initializing default artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\SwitchDisc-1.0.0\images\10/12/2012 11:27:51 AM SwitchDisc GUI: Initializing Sony Playstation artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork10/12/2012 11:27:51 AM SwitchDisc GUI: Initializing currently loaded disc10/12/2012 11:27:51 AM SwitchDisc GUI: Currently loaded disc not found. Initializing loaded disc to position 010/12/2012 11:27:52 AM SwitchDisc GUI initialized sucessfully10/12/2012 11:28:05 AM Invoking SwitchDisc10/12/2012 11:28:05 AM Copy Next Disc File Name to Clipboard: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\Final Fantasy IX (Disc 1).LNK10/12/2012 11:28:05 AM Setting target window as foreground window:10/12/2012 11:28:05 AM Invoking Send Keys Before Disc Switch10/12/2012 11:28:05 AM Invoking native SwitchDisc command: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Disc Switch Command.bat10/12/2012 11:28:05 AM Invoking Send Keys After Disc Switch10/12/2012 11:28:05 AM SwitchDisc GUI: Closing GUI10/12/2012 11:30:44 AM Exiting SwitchDisc ... ByeI will see if GameEx will launch it now...Nope. So we still need to figure that out. With the ePSXe window running I manually ran switchdisc and attempted to switch to the second disc. Nothing. I then closed switchdisc and here is the log.10/12/2012 11:35:44 AM SwitchDisc logging initialized10/12/2012 11:35:44 AM Processing SwitchDisc command options...10/12/2012 11:35:44 AM Command options parsed successfully:10/12/2012 11:35:44 AM DiscID =10/12/2012 11:35:44 AM DiscFile =10/12/2012 11:35:44 AM EmulatorID =10/12/2012 11:35:44 AM WorkingPath =10/12/2012 11:35:44 AM FullScreen = False10/12/2012 11:35:44 AM NoGUI = False10/12/2012 11:35:44 AM Exit = False10/12/2012 11:35:44 AM Parsing SwitchDisc configuration from file10/12/2012 11:35:44 AM Registering SwitchDisc HotKey10/12/2012 11:35:44 AM Registering SwitchDisc Interface Keys10/12/2012 11:35:44 AM Options do not match the existing configuration. SwitchDisc will attempt to load entire configuration10/12/2012 11:35:44 AM Could not determine currently loaded disc10/12/2012 11:35:44 AM Overriding NoGUI settings. Initializing to FALSE10/12/2012 11:36:21 AM Initializing SwitchDisc GUI10/12/2012 11:36:21 AM Initializing SwitchDisc Target Window: ePSXe - Enhanced PSX emulator10/12/2012 11:36:21 AM Invoking Send Keys Before GUI10/12/2012 11:36:21 AM Initializing SwitchDisc Target Window: ePSXe - Enhanced PSX emulator10/12/2012 11:36:21 AM SwitchDisc GUI: Initializing default artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\SwitchDisc-1.0.0\images\10/12/2012 11:36:21 AM SwitchDisc GUI: Initializing Sony Playstation artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork10/12/2012 11:36:21 AM SwitchDisc GUI: Initializing currently loaded disc10/12/2012 11:36:21 AM SwitchDisc GUI: Currently loaded disc not found. Initializing loaded disc to position 010/12/2012 11:36:21 AM SwitchDisc GUI initialized sucessfully10/12/2012 11:36:54 AM Invoking SwitchDisc10/12/2012 11:36:54 AM Copy Next Disc File Name to Clipboard: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\Final Fantasy IX (Disc 2).LNK10/12/2012 11:36:54 AM Setting target window as foreground window: ePSXe - Enhanced PSX emulator10/12/2012 11:36:54 AM Invoking Send Keys Before Disc Switch10/12/2012 11:36:54 AM Invoking native SwitchDisc command: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Disc Switch Command.bat10/12/2012 11:36:54 AM Invoking Send Keys After Disc Switch10/12/2012 11:36:54 AM SwitchDisc GUI: Closing GUI10/12/2012 11:37:20 AM Exiting SwitchDisc ... ByeBUG REPORT:The [...] box next to disc file should have worked in this case and would have made the above misunderstanding dissappear. When I tried to use it, it displayed my *.lnk files corectly, I chose the appropriate file and it give this error message: "The directory path for the disc file must be in the same directory as the rom path for the emulator." We found this is the case, and yet it still gives the error. And when I manually input the exact same filename.lnk I tried to choose before, it works just fine. As I mentioned before a link file has a target paht different than the rompath, thus the error. So Switchdisc needs a way to recognize .lnk files themselves and not their target. = bug. Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 12, 2012 Author Share Posted October 12, 2012 BUG REPORT:The [...] box next to disc file should have worked in this case and would have made the above misunderstanding dissappear. When I tried to use it, it displayed my *.lnk files corectly, I chose the appropriate file and it give this error message: "The directory path for the disc file must be in the same directory as the rom path for the emulator." We found this is the case, and yet it still gives the error. And when I manually input the exact same filename.lnk I tried to choose before, it works just fine. As I mentioned before a link file has a target paht different than the rompath, thus the error. So Switchdisc needs a way to recognize .lnk files themselves and not their target. = bug.Thanks for reporting this. I imagine this should be a fairly easy fix. I'll keep you posted.Yep.Here is the log:10/12/2012 11:27:42 AM SwitchDisc logging initialized10/12/2012 11:27:42 AM Processing SwitchDisc command options...10/12/2012 11:27:42 AM Command options parsed successfully:10/12/2012 11:27:42 AM DiscID =10/12/2012 11:27:42 AM DiscFile =10/12/2012 11:27:42 AM EmulatorID =10/12/2012 11:27:42 AM WorkingPath =10/12/2012 11:27:42 AM FullScreen = False10/12/2012 11:27:42 AM NoGUI = False10/12/2012 11:27:42 AM Exit = False10/12/2012 11:27:42 AM Parsing SwitchDisc configuration from file10/12/2012 11:27:42 AM Registering SwitchDisc HotKey10/12/2012 11:27:42 AM Registering SwitchDisc Interface Keys10/12/2012 11:27:42 AM Options do not match the existing configuration. SwitchDisc will attempt to load entire configuration10/12/2012 11:27:42 AM Could not determine currently loaded disc10/12/2012 11:27:42 AM Overriding NoGUI settings. Initializing to FALSE10/12/2012 11:27:51 AM Initializing SwitchDisc GUI10/12/2012 11:27:51 AM Invoking Send Keys Before GUI10/12/2012 11:27:51 AM SwitchDisc GUI: Initializing default artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\SwitchDisc-1.0.0\images\10/12/2012 11:27:51 AM SwitchDisc GUI: Initializing Sony Playstation artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork10/12/2012 11:27:51 AM SwitchDisc GUI: Initializing currently loaded disc10/12/2012 11:27:51 AM SwitchDisc GUI: Currently loaded disc not found. Initializing loaded disc to position 010/12/2012 11:27:52 AM SwitchDisc GUI initialized sucessfully10/12/2012 11:28:05 AM Invoking SwitchDisc10/12/2012 11:28:05 AM Copy Next Disc File Name to Clipboard: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\Final Fantasy IX (Disc 1).LNK10/12/2012 11:28:05 AM Setting target window as foreground window:10/12/2012 11:28:05 AM Invoking Send Keys Before Disc Switch10/12/2012 11:28:05 AM Invoking native SwitchDisc command: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Disc Switch Command.bat10/12/2012 11:28:05 AM Invoking Send Keys After Disc Switch10/12/2012 11:28:05 AM SwitchDisc GUI: Closing GUI10/12/2012 11:30:44 AM Exiting SwitchDisc ... ByeI will see if GameEx will launch it now...Nope. So we still need to figure that out. With the ePSXe window running I manually ran switchdisc and attempted to switch to the second disc. Nothing. I then closed switchdisc and here is the log.10/12/2012 11:35:44 AM SwitchDisc logging initialized10/12/2012 11:35:44 AM Processing SwitchDisc command options...10/12/2012 11:35:44 AM Command options parsed successfully:10/12/2012 11:35:44 AM DiscID =10/12/2012 11:35:44 AM DiscFile =10/12/2012 11:35:44 AM EmulatorID =10/12/2012 11:35:44 AM WorkingPath =10/12/2012 11:35:44 AM FullScreen = False10/12/2012 11:35:44 AM NoGUI = False10/12/2012 11:35:44 AM Exit = False10/12/2012 11:35:44 AM Parsing SwitchDisc configuration from file10/12/2012 11:35:44 AM Registering SwitchDisc HotKey10/12/2012 11:35:44 AM Registering SwitchDisc Interface Keys10/12/2012 11:35:44 AM Options do not match the existing configuration. SwitchDisc will attempt to load entire configuration10/12/2012 11:35:44 AM Could not determine currently loaded disc10/12/2012 11:35:44 AM Overriding NoGUI settings. Initializing to FALSE10/12/2012 11:36:21 AM Initializing SwitchDisc GUI10/12/2012 11:36:21 AM Initializing SwitchDisc Target Window: ePSXe - Enhanced PSX emulator10/12/2012 11:36:21 AM Invoking Send Keys Before GUI10/12/2012 11:36:21 AM Initializing SwitchDisc Target Window: ePSXe - Enhanced PSX emulator10/12/2012 11:36:21 AM SwitchDisc GUI: Initializing default artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\SwitchDisc-1.0.0\images\10/12/2012 11:36:21 AM SwitchDisc GUI: Initializing Sony Playstation artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork10/12/2012 11:36:21 AM SwitchDisc GUI: Initializing currently loaded disc10/12/2012 11:36:21 AM SwitchDisc GUI: Currently loaded disc not found. Initializing loaded disc to position 010/12/2012 11:36:21 AM SwitchDisc GUI initialized sucessfully10/12/2012 11:36:54 AM Invoking SwitchDisc10/12/2012 11:36:54 AM Copy Next Disc File Name to Clipboard: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\Final Fantasy IX (Disc 2).LNK10/12/2012 11:36:54 AM Setting target window as foreground window: ePSXe - Enhanced PSX emulator10/12/2012 11:36:54 AM Invoking Send Keys Before Disc Switch10/12/2012 11:36:54 AM Invoking native SwitchDisc command: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Disc Switch Command.bat10/12/2012 11:36:54 AM Invoking Send Keys After Disc Switch10/12/2012 11:36:54 AM SwitchDisc GUI: Closing GUI10/12/2012 11:37:20 AM Exiting SwitchDisc ... ByeI think you need to be passing parameters to both your Launch Before batch script in GameEx, and to your SwithcDisc command in SwitchDisc. Batch scripts are a bit of a special case for both GameEx and SwitchDisc in terms of the ‘placeholder’ strings (i.e. [ROMFILE], [WORKINGPATH], ETC). These placeholders will be parsed correctly if they appear in a simple command but they will not be parsed when they appear in a batch script. In other words the only time the placeholders will be parsed is within the single command as written. So the following would parse correctly in GameEx:(Good) Run Command:“[ROMPATH]\[ROMFILE]”But the same line appearing in a batch script would not(Fine) Run Command:start “” “your_batch.bat”Where the contents of your_batch.bat are(Not Good) your_batch.bat:“[ROMPATH]\[ROMFILE]”This will be true of both GameEx and SwitchDisc. Ultimately you’ll want to pass the placeholder strings into the batch script so that they are parsed correctly prior to running the batch. Check here for a quick refresher on how to do that (I’m pretty sure that info is correct)Now after having spent a lot of words confirming that fact, you may already be doing that (well at least for GameEx, your SwitchDisc log shows that you’ll still want to address the issue in your SwitchDisc config). Ultimately there are two items to verify here:GameEx correctly parses and runs your batch script (this can be determined by looking at your GameEx runitgame.bat)SwitchDisc correctly parses and runs your batch script (this can be determined with your SwitchDisc log)If the above items are happening but things are still not running as expected, then there may be an issue with the batch scripts you’re running. Let’s verify the above first, and cross the next bridge when we get there.Thanks for your patience Felix! Quote Link to comment Share on other sites More sharing options...
Adultery Posted October 12, 2012 Share Posted October 12, 2012 Can you PM me the readme Null? I'll get started on trying to make this easier (ie removing the bat dependencies). I may have some questions too if you don't mind. Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 12, 2012 Author Share Posted October 12, 2012 PM has been sent. Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 12, 2012 Share Posted October 12, 2012 New "Switchdisc (GameEx launch before).bat"when ran from windows it completes successfully."E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe""E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\SwitchDisc-1.0.0\SwitchDisc.exe" -w "%~1" -f "%~2"endNew GameEX "Launch before" Command:E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Switchdisc (GameEx launch before).bat “[WORKINGPATH]\[ROMFILE]”New "Disc Switch Command.bat"taskkill "ePSXe.exe"“[DISCPATH]\ [DISCFILE]”endSame "Switchdisc command"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Disc Switch Command.batI will try these and see if GameEx sends the "launch before" command...Nope, not yet. Though I'm not sure I understood all of your last post. I wonder what Adultery comes up with, I can see this tool becoming an integral part of GameEx. Hopefully he can iron out the kinks, from GameEx's end. I'm now a big fan of his Xpadder plugin, what a piece of cake that potential nightmare was! Thank you Adultery!Here is the "runitlgame.bat"chcp 65001E:CD "E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\EPSXE 1.5.2"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Switchdisc (GameEx launch before).bat “E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\Final Fantasy IX (Disc 1).LNK”"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\EPSXE 1.5.2\ePSXeCutor.exe" "Final Fantasy IX (Disc 1)"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Switchdisc (GameEx launch after).batInteresting, GameEx is running the Switchdisc (GameEx launch after).bat, but not the launch before command. The only difference between the two is that the launch before command has the "[WORKINGPATH]\[ROMFILE]” following the *.bat. This must be preventing the command from being sent. I'll try removing it and see if I can get Switch disc to run... No that didn't help. So for some reason GameEx is willfully choosing not execute my batch file. It still needs a valid entry in the "Launch before" command line because I tried adding quotation marks and it failed to load the game altogether. So it's not ignoring it altogether. The command in the batch file is valid as it launces correctly manually. So yeah. I'm stumped again.Here is the latest emulator config:[Emulator]CDCheckFile=CDCheck=FalseRandomMostPlayed=TrueShowMostPlayed=TruePlayInScreenSaver=FalseGamesIn7Zips=FalsePCGame=FalseSelectionMusicFolder=PlaySelectionMusic=FalseDontShowInfo=PlayMusic=FalseCustomBackground=ExcludedFiles=LaunchAfter=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Switchdisc (GameEx launch after).batLaunchBefore=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Switchdisc (GameEx launch before).bat “[WORKINGPATH]\[ROMFILE]”AlsoLaunch=Debug=FalseShowDesktop=TrueRemoveBrackets=TrueCapitals=FalseReplaceUnder=TrueReplaceDash=FalseSendKeys=WaitBeforeKeys=MapKeys=TrueWorkingPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game ShortcutsControlPanelPath=C:\Assets\Sony Playstation\ControlsManualPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\ManualsCartPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\CartridgeBoxPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Box ArtTitlePath=C:\Assets\Sony Playstation\TitlesSnapPath=C:\Assets\Sony Playstation\SnapsRomPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\MapFile=[Console] Sony Playstation.mapConfigFile=ePSXecutorDatabase=[Console] Sony PlaystationRomFilter=Command="[ROMPATH]\[ROMFILE]"StartPageLogo=Sony PlaystationStartPageName=Sony PlaystationTitleText=Sony PlaystationInfo=Sony Playstation EmulatorWebsite=http://www.epsxe.com/RequiredFiles=scph1001.bin (512kb)DownloadUrl=http://www.gamesdbase.com/setupwizard/emulators/download/epsxe.7zRating=8.3Version=1.70Emulator=ePSXeCategory=ConsoleSystem=Sony PlaystationEnabled=Truelastgame= Quote Link to comment Share on other sites More sharing options...
Adultery Posted October 13, 2012 Share Posted October 13, 2012 Try using the "also launch" instead. Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 13, 2012 Share Posted October 13, 2012 That worked.Switchdisc log:10/12/2012 9:58:21 PM SwitchDisc logging initialized10/12/2012 9:58:21 PM Processing SwitchDisc command options...10/12/2012 9:58:21 PM Command options parsed successfully:10/12/2012 9:58:21 PM DiscID =10/12/2012 9:58:21 PM DiscFile = Games\All10/12/2012 9:58:21 PM EmulatorID =10/12/2012 9:58:21 PM WorkingPath = “E:\Michael\GAMES\My10/12/2012 9:58:21 PM FullScreen = False10/12/2012 9:58:21 PM NoGUI = False10/12/2012 9:58:21 PM Exit = False10/12/2012 9:58:21 PM Parsing SwitchDisc configuration from file10/12/2012 9:58:21 PM Registering SwitchDisc HotKey10/12/2012 9:58:21 PM Registering SwitchDisc Interface Keys10/12/2012 9:58:21 PM Cannot locate emulator matching these parameters (ItemID = WorkingPath = “E:\Michael\GAMES\My)10/12/2012 9:58:21 PM Options do not match the existing configuration. SwitchDisc will attempt to load entire configuration10/12/2012 9:58:21 PM Could not determine currently loaded disc10/12/2012 9:58:21 PM Overriding NoGUI settings. Initializing to FALSE10/12/2012 9:59:02 PM Initializing SwitchDisc GUI10/12/2012 9:59:02 PM Initializing SwitchDisc Target Window: ePSXe - Enhanced PSX emulator10/12/2012 9:59:02 PM Invoking Send Keys Before GUI10/12/2012 9:59:02 PM Initializing SwitchDisc Target Window: ePSXe - Enhanced PSX emulator10/12/2012 9:59:02 PM SwitchDisc GUI: Initializing default artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\SwitchDisc-1.0.0\images\10/12/2012 9:59:02 PM SwitchDisc GUI: Initializing Sony Playstation artwork path: E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork10/12/2012 9:59:02 PM SwitchDisc GUI: Initializing currently loaded disc10/12/2012 9:59:02 PM SwitchDisc GUI: Currently loaded disc not found. Initializing loaded disc to position 010/12/2012 9:59:03 PM SwitchDisc GUI initialized sucessfully10/12/2012 9:59:23 PM Invoking SwitchDisc10/12/2012 9:59:23 PM Copy Next Disc File Name to Clipboard: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\Final Fantasy IX (Disc 2).LNK10/12/2012 9:59:23 PM Setting target window as foreground window: ePSXe - Enhanced PSX emulator10/12/2012 9:59:23 PM Invoking Send Keys Before Disc Switch10/12/2012 9:59:23 PM Invoking native SwitchDisc command: E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Disc Switch Command.bat10/12/2012 9:59:23 PM Invoking Send Keys After Disc Switch10/12/2012 9:59:23 PM SwitchDisc GUI: Closing GUI10/12/2012 9:59:53 PM Exiting SwitchDisc ... ByeIssues:1) My autohotkey must run before the ePSXe instance to enable my motionjoy profile. Not a big deal as long as the run before command will run it. It should, just like the the other emulators, but it doesn't. I removed the refrence to it the *.bat so that now it just launches switch disc. Which it does now that it's in the also launch command.2) Switchdisc trys to go fullscreen but does not appear on top of the fullscreen ePSXe window untill I click the mouse on the screen.3) The navigation keys work fine but when I select the next game, Switchdisc dissappears, and nothing else happens. Except that the ePSXe window is shown with only a portion of the game visable (probably dut to my fullscreen settings).4) after I hit escape the launch after comand is supposed to close switchdisc and the command prompt. It doesn't.So I guess that GameEx refuses to initiate both the launch before and launch after commands? I used the .exe command that I use successfully in the rest of my emulators to run my autohotkey. So, that proves it. The only difference between this emulator and the working ones is that ePSXecutor.ini config file. Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 13, 2012 Author Share Posted October 13, 2012 A new build is available in the first post of the thread. This release includes the following changes:SwitchDisc 1.0.1SwitchDisc Configurator: Allow Disc File names to reference a shortcut (.lnk)SwitchDisc Configurator Send Keys Builder: Addition of automated Open File Dialog operationSwitchDisc GUI: Improved handling of custom default artworkThanks for all the feedback and the bug reporting!@Felix: I'm glad to see SwitchDisc starting up for you via GameEx! I'm noticing something a bit off though. When you have a moment would you mind reposting the command you're currently using to start SwitchDisc (I believe this is your current Launch Before command)? Thank you my good man!2) Switchdisc trys to go fullscreen but does not appear on top of the fullscreen ePSXe window untill I click the mouse on the screen.Unfortunately this can and will happen when two applications are both requesting to be top most. I'm afraid there's no way to fully address it since there's no way to notify Windows that this or that app really really needs to be topmost (since the next thing you know 2 applications are both asking to be really really topmost at which point you need really really really topmost, etc.). One workaround, (at least as far as SwitchDisc goes) is to set Alt+Enter as keys to send before SwitchDisc. This will send the emulator to windowed mode which will make it considerably easier to seize the topmost spot from the emulator. If this becomes necessary you need to resend Alt+Enter as keys to send after SwitchDisc. This last component shouldn't be necessary in your case.You may also want to consider some judicious use of Pause values (via the Send Key Builder). It may be that SwitchDisc is attempting to run commands too quickly (i.e. before other operations have completed). Pause values are set in milliseconds. 1000 milliseconds = 1 second (probably already knew that but just as a reminder).3) The navigation keys work fine but when I select the next game, Switchdisc dissappears, and nothing else happens. Except that the ePSXe window is shown with only a portion of the game visable (probably dut to my fullscreen settings).I believe the above step may also help with this issue.4) after I hit escape the launch after comand is supposed to close switchdisc and the command prompt. It doesn't.Would you mind reposting your Launch After command again just to make sure I'm looking at the current information? I've got an idea, but want to make sure I'm not feeding you red herring.Thanks again Felix! You rock. 1 Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 13, 2012 Share Posted October 13, 2012 Yeah, here is the current info you asked for:Launch before command (in GameEx):E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exeAlso launch Comand (in GameEx):E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\Switchdisc (GameEx launch before).bat “[WORKINGPATH]\[ROMFILE]”Switchdisc (GameEx launch before).bat:"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\SwitchDisc-1.0.1\SwitchDisc.exe" -w "%~1" -f "%~2"endlaunch after comand (in GameEx):E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\Switchdisc (GameEx launch after).batSwitchdisc (GameEx launch before).bat:"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\SwitchDisc-1.0.1\SwitchDisc.exe" -qend***Edit***I just wanted to certify that the run before and after *.bat files do still launch and exit switchdisc. Now if the... -w "%~1" -f "%~2"... part is working I'm not sure.BUG REPORT: Ver 1.0.0 & Ver 1.0.1I just dowloaded a bunch of box art and disc art. I wanted to test the artwork feature, so I tested with just 1 picture, named the same as the game, then told switchdisc where to find the artwork folder for the emulator. Worked fine! So I downloaded the rest and renamed all the pics to match the filename of the coresponding image. When I went into switchdisc and told it to look at a new folder (one that containd disc art), it found and recognized them just fine. However, the original pics that switchdisc found (from the box art folder) did not refresh to the new picture in the new folder (disc art). And when I tell switchdisc to look at the box art folder, now that it has already assigned a pic to each filename, it won't refresh. It saved the first picture it found in the artwork folder and refuses to use the new ones the artwork field is telling it to. (I have 2 folders. One for box art and one for disc art. both contain pictures with the exact same filename. If that helps) ***edit, I just downloaded switchdisc 1.0.1 and although it displayed the old info to begin with it did refresh the image (I had to navigate quickly to the otherside of the screen real fast then back! It just laged behind the instantaneous refresh upon loading I was expecting. It may be that as I held down the navigate button it moved so fast that it couldn't display the images fast enough and had to look up the file location in order to display it. In which case it's still a bug. Or it just take awhile to refresh, like a shutdown cycle. IDK, I didn't try restarting my computer.*** =BUG Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 13, 2012 Author Share Posted October 13, 2012 BUG REPORT: Ver 1.0.0I just dowloaded a bunch of box art and disc art. I wanted to test the artwork feature, so I tested with just 1 picture, named the same as the game, then told switchdisc where to find the artwork folder for the emulator. Worked fine! So I downloaded the rest and renamed all the pics to match the filename of the coresponding image. When I went into switchdisc and told it to look at a new folder (one that containd disc art), it found and recognized them just fine. However, the original pics that switchdisc found (from the box art folder) did not refresh to the new picture in the new folder (disc art). And when I tell switchdisc to look at the box art folder, now that it has already assigned a pic to each filename, it won't refresh. It saved the first picture it found in the artwork folder and refuses to use the new ones the artwork field is telling it to. (I have 2 folders. One for box art and one for disc art. both contain pictures with the exact same filename. If that helps) =BUGJust something to doublecheck, as I'm not sure I fully understand the nature of this report. SwitchDisc doesn't save any information regarding the actual images. It only saves the artwork path. OTOH it won't refresh images if you change artwork paths while SwitchDisc is running. If that's the case it's not really a bug, SwitchDisc is just working as designed. SwitchDisc won't re-parse your config while it's running. In short you'll want to make sure you exit SwitchDisc before making any changes to the config. If you're still pretty sure that what I described here does not describe the issue as reported, feel free to elaborate a bit.Only time for a quick post this morning, but you might take a second look at the commands you posted. Among other things you've got the command to exit SwitchDisc listed as the Launch Before. Pretty sure it's just a typo, but it's worth checking out.Thanks Felix! Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 13, 2012 Share Posted October 13, 2012 No, the first thing I tried was to exit switchdisc from the taskbar and restart it. It wasent untill I ran v 1.0.1 that it refreshed the image. I added a little more to that post as well that describes it better. Try changing your artwork folder to see what I mean. I'll try agin too... No, it still wont update them. It will display the default image when it can't find a filename match, but doesn't refresh the others, no matter what I do (luckily it's stuck on the image I want, but that won't always be the case).Also, I noticed that the pictures appear grainy/blurry compaired to the JPG viewed from other programs, even if reduced to the same size on screen. Seeing as how nowadays HD is standard, I think it would add to the professional look of the program. Image is everything baby!Questions:1) Does switchdisc prefer a certain file type?2) Can you increase the picture display resolution?3) Is there a way to make the white corners around the disc transparent (and for that matter, the hole in the middle), so switchdisc only displays a circular disc? Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 13, 2012 Author Share Posted October 13, 2012 You bet Felix. Thanks for the additional clarification. I'll take a look when I have a moment today (more likely this evening) Quote Link to comment Share on other sites More sharing options...
RageOn Posted October 15, 2012 Share Posted October 15, 2012 Great program Null! It's very much appreciated 1 Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 16, 2012 Share Posted October 16, 2012 +1 on that. I think I will try to set up a regular ePSXe emulator and see if I can get Switchdisc to run corectly. I still can't figure out why GameEx won't run before/after with this config, but that is beyound my experiance level.GameEx Config:[General]Xresolution=800Yresolution=600DisplayOnSecondary=FalseMAMEPath=E:\Michael\GAMES\My Games\All Games (Files)\M.A.M.E\Emulator\MAMEMAMEEXE=mame.exeROMPath=E:\Michael\GAMES\My Games\All Games (Files)\M.A.M.E\Emulator\MAME\roms;E:\Michael\GAMES\My Games\All Games (Files)\M.A.M.E\RomsStartWait=FalseUSeAdvanceMame=FalseAdvanceMAMEEXE=advmame.exeAdvanceMAMEPATH=C:\Emulators\AdvanceMAMEADVANCEMAMEOptions=-device_video_output fullscreen -quiet -dir_rom "C:\Emulators\Mame32\roms"UseZinc=FalseZincEXE=zinc.exeZincPATH=C:\Emulators\ZiNcZincOptions=--renderer=.\renderer.zncFont=Trebuchet MSTitleText=MAME GamesOnlyWorking=TrueAllowImperfect=TrueVerifyRoms=TrueOnlyRoms=FalseNoGameInfo=FalseGameFilter=Japan;Korea;Asia;Hispanic;Bootleg;French;German;Hack;Prototype;Hardware;Spanish;(Easy;(harderGameFilterOn=TrueNoAdult=TrueNoClones=FalseMameOptions=-nowindow -joy -skip_gameinfoArcadeMode=FalseUseLargeFonts=TrueSnapPath=C:\Emulators\Mame32\snapAVISnapPath=C:\Emulators\Mame32\avisnapAVIFrameSkip=0flyerpath=C:\Emulators\Mame32\flyerscabinetpath=C:\Emulators\Mame32\cabinetsCatverLocation=\DATA\catver.ininplayerslocation=\DATA\nplayers.iniHistoryLocation=\DATA\history.datInfoLocation=\DATA\mameinfo.datCommandLocation=\DATA\command.datShowGameInfoPage=TrueEnableStartPage=TrueShowStartPageFirst=Trueskipintro=TrueAntiAliasFonts=TrueOutlineFonts=FalseDisplayBackgroundImage=TrueSnapBrightness=120MusicPlayList=C:\MusicMusicVolume=100MediaCenterMode=2PlayIntroSound=FalseAttractModeTimer=4AttractModeAudio=2UsingArcadeVGA=FalseStretchResToX=640StretchResToY=288TryToStretchto256=TrueNoWaitVSync=FalseSleep=TrueHideUpdateList=FalseDisableExit=FalseHideShutDown=TrueStartUpVideo=C:\VideoLaunchOnStart=LaunchOnStartNoWait=LaunchOnExit=LaunchOnExitNoWait=FontSize=0VectorResX=632VectorResY=264AlwaysStretch=410x256DisableEscape=FalseDisableRemoveGame=Truetheme=My Games for MCE (Widescreen)Language=FlatStartPage=FalseDontSwitchRes=TrueSnapDelay=7AllowWindowResize=TrueShowLoadingScreen=TrueUse16BitColour=FalseWidescreen=FalseDisableMAME=TrueShellBeforeLaunch=ShellOnExit=EnableJukeBox=Truejukeboxplaylist=Live! (CD1)EnableMediaControls=TrueShufflePlayLists=TrueLoadPlayListAtStartup=FalseLoadPlayListThread=FalseDownloadArt=TrueTitleFont=Trebuchet MSDialogTextWhite=FalseTimeFormat=TrueHideToolBar=3DoNotFilterROMS=pacman;splatterMAMEAudioMode=1DisplayTitle=TrueAVIAudio=TrueMarqueePath=C:\Emulators\Mame32\marqueesPanelPath=C:\Emulators\Mame32\cpanelTitlePath=C:\Emulators\Mame32 itlesICONPath=C:\Emulators\Mame32\iconsCPEnabled=FalseCPPATH=\DATA\controls.iniShowVector=FalseShowNeoGeo=FalseShowOriginal=FalseShowAdult=FalseShowCPS=FalseShowVertical=FalseShowHorizontal=FalseEnableFavorites=FalseShowMulti=FalseShowAllMAME=FalseShowLastGame=FalseShowRandomGame=FalseShowListNumbers=FalseAlphaBlendVideos=TrueEnableSound=TrueMediaCenterOpenCheck=trueUseSharp=TrueCreateImageOnThread=FalseHideCreateSnaps=TrueHideLogoff=TrueHideStandBy=TrueDisableMouse=FalseShowVideos=FalseVideoPath=EnableAlphaPage=TrueEnableJoystick=TrueEnableSlikStik=FalseKeyboardDirectInput=FalseNoMahjong=TrueVIDEOFFDSHOW=0JoystickDevice=EnableCustomInput=FalseEnableCustomJoyInput=TrueAttractVideosEnabled=TrueAttractVideosRatio=1AttractVideosPath=C:\VideoAtractModeNewGameTimer=2AdvancedGFX=TrueHideZinc=TrueTransitionType=1Bypass=TrueDontBlitWait=FalseShowMostPlayed=FalseExcludedMAMERoms=DeadZoneX=0DeadZoneY=0JukeBoxMode=2EnableAmbiance=FalseHIDEDESKTOP=FalseUseSnapBestMatch=trueIngameVK=121EnableThemePicker=FalseDisablePleaseWaitAnimation=FalseEnableRipCD=FalseDumbyValue=DVDPath=G:\AttractOnlyFavs=Falserotateplus90=FalseShowButtons=TrueDisplayTitleText=TruePlayExitSaverSound=FalseShowAtari=FalseShowGolden=FalseShowHorizVert=0UseModel2=FalseModel2PATH=C:\Emulators\Model2ShowModel2=FalseShowLightGun=FalseEnableBezel=TrueAutoUpdate=1NoMAMEOnStartPage=FalseHideRestart=TrueEnableStartScreenSaver=FalseSortMAMEThE=TrueSortEmuThE=FalseShowMCEEXport=TrueNoRotationRestrictions=FalseMakeToolbarTextWhite=FalseExitGameAfter=0ShowTrackball=FalseShowSpinner=FalseLoadEmusOnThread=TrueLoadRadioOnThread=FalseStartPageAni=TrueEmusAttractMode=FalseMuteEmuAttractMode=FalseShow4Player=FalseCabControlFriendly=FalseManualPath=C:\Emulators\Mame32\manualsHideShowTaskbar=TrueCustomMAMEFolderPath=C:\Emulators\Mame32\CustomFoldersMAMEFavoritesini=C:\Emulators\Mame32\Folders\Favorites.iniMenuFontSameSize=FalsePreviewVideos=2ShowStatistics=FalseDisableMouseWheel=FalseErrorReporting=0ReduceCPU=TrueShowNotPlayed=FalseShowOnlineLists=FalseScreensaverMode=0AttractText=Touch screen to start...GlaunchEnabled=FalsePCBPath=C:\Emulators\Mame32\pcbArtworkPath=C:\Emulators\Mame32\artworkpreviewLoadJukeTracksOnStartup=TrueEnableLetterSelect=TrueJukeQueueMode=0EnableBezelAttract=TrueForceDailyReboot=-1EnableSearch=FalseFixToEmuList=0ShowLastPlayed=FalseTwoThreeRes=EnableTouchScreen=TrueEnableMediaCheck=TrueEnableOtherSystems=TrueForceShutdown=FalseEnableHiScore=TrueDisplayImageList=FalseSortEmulators=TrueShowAllGames=FalseInactivityTimer=0EnableAdvCustomInput=FalseHideHibernate=TrueEnableKeyboardShutdown=FalseAutoRotateMAME=FalseEnableLaunchDialog=Falselastmusicpath=G:\-DATA-\-MP3-looplist=FalseTrackballSupport=FalseEnableVisualizations=TrueEnableVideoThumbs=Falsecabinet3dpath=C:\Emulators\Mame32\cabinets3dEnableClientServerMAME=FalseClientServerMAMEPath=C:\Emulators\ClientServerMAMEClientServerMAMEEXE=vmame.exeOnQueueEndMode=0MAMERemoveDupes=2CommnadLocation=\DATA\command.datAutoDownloadDescriptions=TrueGameExtenderCustomImageMAMEPath=C:\Emulators\Mame32\marqueesEnablepopupdescriptions=TrueSetPalRes=FalsePalRes=800x600x32x60SetNTCSRes=TrueNTSCRes=800x600x32x60SetNTSCRes=FalseSetTwoThreeRes=FalseAmbianceFolder=C:\ArcadeAmbianceEnableEscapeKeyExit=TrueDisableChangeView=TrueEnabledConfigurationApp=FalseResumeLastAtStartup=FalseHelpText=ShowHistoryAndMAMEInfo=Truebaksnappath=C:\Emulators\Mame32\backgroundsnapTVVideoPath=OtherVideoPath=C:\Video;[myvideos]ChangeMonitorFrequency=FalseChangeMonitorResolution=FalseNoCasino=TrueEnableDownloadService=False[Daphne]UseDaphne=FalseDaphnePath=C:\Emulators\DaphneDaphneExe=Daphne.exeDaphneSnap=C:\Emulators\Daphne\imagesDaphneOptions=vldp -fullscreen -x 640 -y 480 -nohwaccelEnabled_1=TrueROMName_1=astronGameName_1=Astron BeltGameOptions_1=-framefile "C:\Roms\Laserdisc\Astron Belt\astron.txt"Enabled_2=TrueROMName_2=badlandsGameName_2=BadlandsGameOptions_2=-framefile "C:\Roms\Laserdisc\Badlands\badlands-r.txt"Enabled_3=TrueROMName_3=begaGameName_3=Bega's BattleGameOptions_3=-framefile "C:\Roms\Laserdisc\Bega's Battle\bega.txt"Enabled_4=TrueROMName_4=cliffGameName_4=Cliff HangerGameOptions_4=-framefile "C:\Roms\Laserdisc\Cliff Hanger\cliff-r.txt"Enabled_5=TrueROMName_5=cobraabGameName_5=Cobra CommandGameOptions_5=-framefile "C:\Roms\Laserdisc\Cobra Command\cc_framefile.txtEnabled_6=TrueROMName_6=lairGameName_6=Dragon's LairGameOptions_6=-framefile "C:\Roms\Laserdisc\Dragon's Lair\dl_framefile.txt"Enabled_7=TrueROMName_7=lair2GameName_7=Dragon's Lair II TimewarpGameOptions_7=-framefile "C:\Roms\Laserdisc\Dragon's Lair II Timewarp\DL2_single_framefile.txt"Enabled_8=TrueROMName_8=eshGameName_8=Esh's AurunmillaGameOptions_8=-framefile "C:\Roms\Laserdisc\Esh's Aurunmilla\esh.txt"Enabled_9=TrueROMName_9=firefoxGameName_9=FirefoxGameOptions_9=-framefile "C:\Roms\Laserdisc\Firefox\firefox.txt"Enabled_10=TrueROMName_10=ffrGameName_10=Freedom FighterGameOptions_10=-framefile "C:\Roms\Laserdisc\Freedom Fighter\ffr.txt"Enabled_11=TrueROMName_11=galaxyGameName_11=Galaxy RangerGameOptions_11=-framefile "C:\Roms\Laserdisc\Galaxy Ranger\galaxy-r.txt"Enabled_12=TrueROMName_12=gtgGameName_12=Goal to GoGameOptions_12=-framefile "C:\Roms\Laserdisc\Goal to Go\gtg.txt"Enabled_13=TrueROMName_13=interstellarGameName_13=Interstellar Laser FantasyGameOptions_13=-framefile "C:\Roms\Laserdisc\Interstellar Laser Fantasy\interstellar.txt"Enabled_14=TrueROMName_14=lgpGameName_14=Laser GPGameOptions_14=-framefile "C:\Roms\Laserdisc\Laser GP\lasergp.txt"Enabled_15=TrueROMName_15=mach3GameName_15=Mach 3GameOptions_15=-framefile "C:\Roms\Laserdisc\Mach 3\mach3.txt"Enabled_16=TrueROMName_16=roadblasterGameName_16=Road BlasterGameOptions_16=-framefile "C:\Roms\Laserdisc\Road Blaster\roadblaster.txt"Enabled_17=TrueROMName_17=aceGameName_17=Space AceGameOptions_17=-framefile "C:\Roms\Laserdisc\Space Ace\ace.txt"Enabled_18=TrueROMName_18=sdqGameName_18=Super Don Quix-oteGameOptions_18=-framefile "C:\Roms\Laserdisc\Super Don Quix-ote\sdq.txt"Enabled_19=TrueROMName_19=tqGameName_19=Thayer's QuestGameOptions_19=-framefile "C:\Roms\Laserdisc\Thayer's Quest q.txt"Enabled_20=TrueROMName_20=uvtGameName_20=Us vs ThemGameOptions_20=-framefile "C:\Roms\Laserdisc\Us vs Them\uvt.txt"UseGamepad=FalseDaphneFlyer=C:\Emulators\Daphne\flyersDaphneCabinet=C:\Emulators\Daphne\cabinetsDaphneTitle=C:\Emulators\Daphne itlesDaphneMarquee=C:\Emulators\Daphne\marqueesDaphnePanel=C:\Emulators\Daphne\cpanelLaunchBefore=LaunchAfter=DaphneCustomGameExtenderCustomArtPath=C:\Emulators\Daphne\marqueesDaphneBakSNAP=C:\Emulators\Daphne\backgroundimages[DVD]EnableDVD=FalseCODEC=0DVDFFDSHOW=0EnableDVDDisk=FalseDVDPath=C:\DVDUseVMR9=TrueEnableExternalPlayer=FalseUse VMR9=FalseCMD=""C:\Program Files (x86)\Corel\DVD9\WinDVD.exe" "[dvd]""[Pictures]PicturesEnabled=FalsePaths=C:\Pictures;[mypictures]UseAlphaBlend=TrueSlideDuration=12[News]URL_1=http://rss.news.yahoo.com/rss/topstoriesURL_2=URL_3=http://rss.news.yahoo.com/rss/techURL_4=http://slashdot.org/index.rssURL_5=URL_6=http://www.emulator-zone.com/rss_news.phpURL_7=http://www.spesoft.com/news.xmlURL_8=http://www.gameex.info/forums/index.php?app=core&module=global§ion=rss&type=forums&id=1URL_9=http://www.hulu.com/feed/highest_rated/videosURL_10=http://www.hulu.com/feed/popular/videos/this_weekURL_11=http://www.hulu.com/feed/recent/moviesURL_12=URL_13=URL_14=URL_15=URL_16=URL_17=URL_18=URL_19=URL_20=URL_21=URL_22=URL_23=URL_24=URL_25=URL_26=URL_27=URL_28=URL_29=URL_30=Enabled=FalseURL_31=URL_32=URL_33=URL_34=URL_35=URL_36=[Radio]RadioEnabled=FalseEnabled_5=TrueName_5=Kohina - old school game & demoURL_5=http://acamar.org:8000/listen.plsEnabled_6=FalseName_6=Bangkok RadioURL_6=http://64.62.253.55/bangkok64Enabled_7=TrueName_7=Kohina - Fresh TracksURL_7=http://anka.org:8080/fresh.ogg.m3uEnabled_4=FalseName_4=Delta UnoURL_4=http://www.deltauno.it/home/delta1.asxEnabled_1=FalseName_1=URL_1=Enabled_2=Name_2=URL_2=Enabled_3=Name_3=URL_3=Enabled_8=Name_8=URL_8=Enabled_9=Name_9=URL_9=Enabled_10=Name_10=URL_10=Enabled_11=Name_11=URL_11=Enabled_12=Name_12=URL_12=Enabled_13=Name_13=URL_13=Enabled_14=Name_14=URL_14=Enabled_15=Name_15=URL_15=Enabled_16=Name_16=URL_16=Enabled_17=Name_17=URL_17=Enabled_18=Name_18=URL_18=Enabled_19=Name_19=URL_19=Enabled_20=Name_20=URL_20=Enabled_21=FalseName_21=Capital GoldURL_21=mms://ms1.capitalinteractive.co.uk/gold_highEnabled_22=TrueName_22=Slay RadioURL_22=[url="http://relay4.slayradio.org:8000"]http://relay4.slayradio.org:8000[/url]Name_23=XFMURL_23=http://rope.icgo.fimc.net/staticweb/onair_players/onair_xfm_abacast/player/onair_xfm.asxEnabled_23=FalseName_24=Radio WoodstockURL_24=http://nick8.surfernetwork.com/Media/RWST.asxEnabled_25=TrueName_25=Club 977 AlternativeURL_25=http://www.977alt.com/977alt.asxEnabled_26=TrueName_26=Radio ParadiseURL_26=http://www.changeip.com/radio/rp_128.asxEnabled_27=TrueName_27=Hitz RadioURL_27=http://www.hitzradio.com/hitzradio.asxEnabled_28=TrueName_28=Club 977URL_28=http://www.club977.com/club977.asxEnabled_29=TrueName_29=9412 Rock StationURL_29=http://www.9412.com/9412.asxEnabled_30=TrueName_30=Power HitzURL_30=http://www.powerhitz.com/powerhitz.asxEnabled_31=TrueName_31=Radio WazeeURL_31=http://www.wazee.org/128.asxEnabled_32=TrueName_32=The Edge RadioURL_32=http://mfkrboard.com/edgeradio/edge.m3uEnabled_33=TrueName_33=WFUV 90.7 FM Public RadioURL_33=http://www.wfuv.org/wfuvlive.asxEnabled_34=FalseName_34=Pirate RadioURL_34=http://www.loudcity.net/Portals/0/LCPlayLists/90/123.asxEnabled_35=TrueName_35=EYE 97URL_35=http://www.loudcity.net/Portals/0/LCPlayLists/157/eye97.asxEnabled_36=TrueName_36=Hit Music StationURL_36=http://www.hitmusicstation.net/ecoute_haut_debit.m3uName_37=Radio IO 80'sURL_37=http://radioio.sc.llnwd.net:8240Enabled_24=Enabled_37=FalseEnabled_80=TrueUrl_80=FAVREMOVEEnabled_81=TrueUrl_81=FAVREMOVEEnabled_82=TrueUrl_82=FAVREMOVEEnabled_83=TrueUrl_83=FAVREMOVEenabled_84=Truename_84=radioio.com : 80s New Waveurl_84=http://www.shoutcast.com/sbin/shoutcast-playlist.pls?rn=1269943&file=filename.plsEnabled_85=Name_85=Url_85=Enabled_38=TrueName_38=C64.COM's SID StreamURL_38=http://www.c64.com/sid.m3u[HTMLApplications]Enabled_1=TrueURL_1=http://10foot.cbuenger.com/mceWeather/index.php?start=1〈=2Name_1=WeatherLogo_1=WeatherMouseEmu_1=FalseEnabled_2=TrueURL_2=http://gameex.netName_2=GameEx homepageLogo_2=MouseEmu_2=FalseEnabled_3=FalseURL_3=http://10foot.cbuenger.com/mceWeather/index.php?start=1〈=2Name_3=WeatherLogo_3=WeatherMouseEmu_3=TrueEnabled_4=FalseURL_4=Name_4=Logo_4=MouseEmu_4=TrueEnabled_5=FalseURL_5=Name_5=Logo_5=MouseEmu_5=TrueEnabled_6=FalseURL_6=Name_6=Logo_6=MouseEmu_6=TrueUseHTMLApps=FalseHide_2=FalseHide_3=Hide_4=TrueHide_5=[ExternalApplications]Enabled_99=TrueName_99=ConfigurationPath_99=[apppath]CMD_99=GameExConfig.exeSnap_99=GameExTextShowDesktop_99=TrueMapKeys_99=FalseWaitBeforeKeys_99=SendKeys_99=Enabled_2=FalseName_2=NotepadPath_2=c:\windowsCMD_2=notepad.exeSnap_2=GameExTextShowDesktop_2=TrueMapKeys_2=TrueWaitBeforeKeys_2=SendKeys_2=Enabled_3=FalseName_3=Mad Dog McCreePath_3=G:\Mad_Dog_mcCreeCMD_3=G:\Mad_Dog_mcCree\mdm.exeSnap_3=GameExTextShowDesktop_3=TrueMapKeys_3=TrueWaitBeforeKeys_3=4000SendKeys_3=FEnabled_1=Falsename_1=Close And Restart GameExpath_1=G:\-DATA-\-MY PROJECTS-\GameEx - VB.net\bincmd_1=CloseAndRestartGameEx.batsnap_1=showdesktop_1=Truemapkeys_1=TrueWaitBeforeKeys_1=dSendKeys_1=Enabled_4=Falsename_4=path_4=cmd_4=snap_4=showdesktop_4=Truemapkeys_4=TrueWaitBeforeKeys_4=SendKeys_4=Enabled_5=Falsename_5=path_5=cmd_5=snap_5=showdesktop_5=Truemapkeys_5=TrueWaitBeforeKeys_5=SendKeys_5=Enabled_6=Falsename_6=path_6=cmd_6=snap_6=showdesktop_6=Truemapkeys_6=TrueWaitBeforeKeys_6=SendKeys_6=Enabled_7=Falsename_7=path_7=cmd_7=snap_7=showdesktop_7=Truemapkeys_7=TrueWaitBeforeKeys_7=SendKeys_7=Enabled_8=Falsename_8=path_8=cmd_8=snap_8=showdesktop_8=Truemapkeys_8=TrueWaitBeforeKeys_8=SendKeys_8=Enabled_9=Falsename_9=path_9=cmd_9=snap_9=showdesktop_9=Truemapkeys_9=TrueWaitBeforeKeys_9=SendKeys_9=Enabled_10=Falsename_10=path_10=cmd_10=snap_10=showdesktop_10=Truemapkeys_10=TrueWaitBeforeKeys_10=SendKeys_10=Enabled_11=Falsename_11=path_11=cmd_11=snap_11=showdesktop_11=Truemapkeys_11=TrueWaitBeforeKeys_11=SendKeys_11=Enabled_12=Falsename_12=path_12=cmd_12=snap_12=showdesktop_12=Truemapkeys_12=TrueWaitBeforeKeys_12=SendKeys_12=Enabled_13=Falsename_13=path_13=cmd_13=snap_13=showdesktop_13=Truemapkeys_13=TrueWaitBeforeKeys_13=SendKeys_13=Enabled_14=Falsename_14=path_14=cmd_14=snap_14=showdesktop_14=Truemapkeys_14=TrueWaitBeforeKeys_14=SendKeys_14=Enabled_15=Falsename_15=path_15=cmd_15=snap_15=showdesktop_15=Truemapkeys_15=TrueWaitBeforeKeys_15=SendKeys_15=Enabled_16=Falsename_16=path_16=cmd_16=snap_16=showdesktop_16=Truemapkeys_16=TrueWaitBeforeKeys_16=SendKeys_16=Enabled_17=name_17=path_17=cmd_17=snap_17=showdesktop_17=mapkeys_17=WaitBeforeKeys_17=SendKeys_17=Enabled_18=name_18=path_18=cmd_18=snap_18=showdesktop_18=mapkeys_18=WaitBeforeKeys_18=SendKeys_18=Enabled_19=name_19=path_19=cmd_19=snap_19=showdesktop_19=mapkeys_19=WaitBeforeKeys_19=SendKeys_19=Enabled_20=name_20=path_20=cmd_20=snap_20=showdesktop_20=mapkeys_20=WaitBeforeKeys_20=SendKeys_20=Enabled_21=name_21=path_21=cmd_21=snap_21=showdesktop_21=mapkeys_21=WaitBeforeKeys_21=SendKeys_21=Enabled_22=name_22=path_22=cmd_22=snap_22=showdesktop_22=mapkeys_22=WaitBeforeKeys_22=SendKeys_22=Enabled_24=name_24=path_24=cmd_24=snap_24=showdesktop_24=mapkeys_24=WaitBeforeKeys_24=SendKeys_24=Enabled_25=name_25=path_25=cmd_25=snap_25=showdesktop_25=mapkeys_25=WaitBeforeKeys_25=SendKeys_25=EmulateMouse_1=-1EmulateMouse_2=-1EmulateMouse_3=3EmulateMouse_4=EmulateMouse_5=EmulateMouse_6=EmulateMouse_7=EmulateMouse_8=EmulateMouse_9=EmulateMouse_10=EmulateMouse_11=EmulateMouse_12=EmulateMouse_13=EmulateMouse_14=EmulateMouse_15=EmulateMouse_16=EmulateMouse_17=EmulateMouse_18=EmulateMouse_19=EmulateMouse_20=EmulateMouse_21=EmulateMouse_22=EmulateMouse_24=EmulateMouse_25=-1LaunchBefore_16=LaunchAfter_16=AlsoLaunch_16=LaunchBefore_17=LaunchAfter_17=LaunchBefore_1=HelpText_1=[TEXT]steamlist=Steamsteamstart=Steam Gamesbanner=BannerDownloading=DownloadingSeeking=SeekingDownload=DownloadPlayBluRay=Play Blu RayGetMetaData=Get MetaDataTouch_Help_1=Control is located at bottom of screen.Touch_Help_2=Continuously tap bottom right for credits and top right to start.Touch_Help_3=Controls are located bottom and middle of screen.Touch_Help_4=Control is located at bottom of screen.GameExArcadeStart=ArcadeGameExArcadeList=ArcadeRipDVD=Rip DVDSearchMusic=Search MusicDialog_RippingCD=Ripping CDDialog_PleaseWait=Please WaitDialog_ScanningFolders=Scanning FoldersDialog_ScanningFiles=Scanning FilesDialog_LoadingDatabases=Loading DatabasesDialog_LoadingSettings=Loading SettingsStatus_ListUpdated=List UpdatedStatus_FavRemoved=Removed from favoritesStatus_FavAdded=Added to favoritesStatus_ItemRemoved=Item removedStatus_NextTrack=Next trackStatus_PreviousTrack=Previous trackStatus_Pause=PauseStatus_play=PlayStatus_AddedToQ=Added to queueStatus_NetPlayReq=Requested NetPlayStatus_NetPlayCan=Cancelled NetPlayYouTube=YouTubeNews=NewsSearchYouTube=Search YouTubeRequestNetPlay=Request NetPlayCancelNetPlay=Cancel NetPlay RequestMAMENetPlayStart=MAME NetPlayNetPlayList=NetPlayAccept=AcceptNow=NowNext=NextGameMusic=Game MusicTVAdvert=TV AdvertCommands=CommandsRecordVideo=Record VideoResumeGame=Resume GameExitGame=Exit GameInGame=In GameStopped=StoppedPlay=PlayResumeDVD=Resume DVDNoItems=- NO ITEMS FOUND -Hibernate=HibernateMenuMore=MoreAllGamesStart=All GamesAllGamesList=All GamesNotAvailable=Not AvailableHiScore=High ScoreGetLyrics=Get LyricsOtherSystems=Other SystemsOpenMedia=Open MediaBiography=BiographyMenuView=Change ViewMenuBack=BackMenuExit=ExitMenuHome=HomeLastPlayedList=Last PlayedLastPlayedStart=Last PlayedSEARCHTITLE=Enter criteria then select menuSEARCHTITLE2=Press select to release cursorSearchList=SearchSearchStart=SearchSearchMedia=Search MediaSearchJukebox=Search JukeboxItems=ItemsMediaPlayerStart=LibraryMediaPlayerList=LibraryNoMediaFound=- NO MEDIA FOUND -eBookViewerStart=eBookseBookViewerList=eBooksArtwork=ArtworkPCB=PCBStatistics=StatisticsInsertCD=Insert CD:SearchGames=Search GamesGameManual=ManualPlayStation=Playstationmame2simlist=2 Playersmame2simstart=2 Player Simultaneousmame4simlist=4 Playersmame4simstart=4 Player SimultaneousMCEEXPORT=Export To MCEStartScreenSaver=Start ScreensaverVisualize=VisualizeSelectVisualize=Select VisualizationAbout1=Windows Emulator Front End and HTPCAbout2=Written By:About3=For Latest Version, please visit:byalbum=By Albumbyartistalbum=By Artist/Albumbyartist=By Artistbycat=bygenre=By Genrebymanu=bysys=By Systembyname=bytitle=byyear=Selectplaylist=Play list / Morecreatesnaps=Create SnapsCreateSnaps1A=You are about to create snap shots or videos for every game in the [EMULATOR] Games List. This option can be removed from GameEx, by enabling the Hide Create Snaps option in the configuration.CreateSnaps2=You should be aware this is a lengthy processCreateSnaps3=With your current settings it is estimated that it will take at least:CreateSnaps4=[MINUTES] Minutes to complete this process if you use a 20 second pause between snaps.CreateSnaps5=You should also be warned that the SNAP shots will be saved in the SNAP Path defined for this emulatorCreateSnaps6=This process is not recommended on Windows 98CreateSnaps7=To exit this process once run HOLD down ESCAPE.CreateSnaps8=Do you want to proceed?Exit=Exit GameExHTMLPleaseWait=Please WaitIsUpdatingList=GameEx is updating the MAME game list:jukelist=Jukeboxjukestart=JukeboxKaraokelist=KaraokeKaraokestart=KaraokeStartKaraoke=Start Karaoke PlayerLaaunchingGame=Launching:laserlist=Laserdisclaserstart=Laserdisc Gameslogoff=Log Offfavlist=Favoritesfavstart=Favoritesmamealllist=MAME Gamesmameallstart=All MAME Gamesmamecpslist=CPS Gamesmamecpsstart=CPS GamesmameAtarilist=Atari GamesmameAtaristart=Atari GamesmameGunlist=LightgunmameGunstart=Lightgun GamesmameTrackballlist=TrackballmameTrackballstart=Trackball GamesmameSpinnerlist=SpinnermameSpinnerstart=Spinner GamesmameModel2list=Model 2mameModel2start=Sega Model 2 GamesmameGoldenlist=Golden EramameGoldenstart=Golden Era Of Arcademameneolist=Neo-GeomameNEostart=Neo-Geo Gamesmamemultilist=MAME Multiplaymamemultistart=MAME Multiplayer Gamesmamevectorlist=MAME Vectormamevectorstart=MAME Vector GamesOf=ofshutdown=Turn Off Systemstandby=Stand By SystemRestart=Restart SystemStart=Start..updatelist=Update ListUpdatingList=Updating Game List:UpdatingPleaseWait=Please Wait......videoslist=Videosvideostart=VideosLaunchingGame=Launching Game:PlayThisGame=Play This GameRecommended=Recommended Games:Series=Games in Series:Title=TitleFlyer=FlyerCabinet=CabinetCabinet3d=3D CabinetPanel=PanelBox=BoxCartridge=CartridgeMarquee=MarqueeFavoritesAdd=Add To FavoritesFavoritesRemove=Remove From FavoritesNoVideosFound=- NO VIDEOS FOUND -NoPicturesFound=- NO PICTURES FOUND -NoMusicFound=- NO MUSIC FOUND -NoArtistsFound=- NO ARTISTS FOUND -NoAlbumsFound=- NO ALBUMS FOUND -NoGenresFound=- NO GENRES FOUND -NoGamesFound=- NO GAMES FOUND -NoStationsFound=- NO STATIONS FOUND -NoNewsFound=- NO NEWS FOUND -CannotCreateSnaps1=Cannot Create SnapsCannotCreateSnaps2=Emulator '[EMULATOR]' Does not have a valid Snap path, so Snaps cannot be created. Setup a valid snap path in the configuration and try again.ViewControls=View ControlsInstructions=InstructionsViewControlsKey=Press '[KEY]' to view in game.AllMusic=All MusicClearCurrentPlaylist=Clear Current PlaylistShufflePlaylist=Shuffle Current PlaylistPlayLastGame=Last MAME GameViewSlideShow=View Slide ShowPictures=PicturesRadio=RadioPlayDVD=Play DVDPlayCD=Play CDDVDonDiskStart=DVDsDVDonDiskList=DVDsDemo=Demo:Playing=Playing:MAMEOriginal=MAME Original GamesMAMEOriginallist=OriginalsMAMEAdult=MAME Adult GamesMAMEAdultlist=AdultClearAndQueueAll=Clear and Queue AllAddAndQueueAll=Add all to QueueRandomGame=Play Random GameStartMAME=MAMEStartApps=More Games & ProgramsStartEMU=Emulated GamesStartControl=Exit/ShutdownStartMedia=MultimediaListMAME=MAMEListApps=Games & AppsListEMU=GamesListControl=ExitListMedia=MediaTimesPlayed=Times PlayedLastPlayed=Last PlayedDeleteFavs=Delete FavoritesDeleteMost=Delete Most PlayedChapter=ChapterAspect=AspectAspect0=Original Aspect - Not ZoomedAspect4=Widescreen on 4:3 - StretchedAspect5=Fill ScreenAspect3a=Widescreen to 4:3 - ZoomedAspect3b=Letterbox to Widescreen - ZoomedAspect2=Original Aspect - ZoomedAspect1a=Widescreen to 4:3 - ShrunkAspect1b=4:3 to Widescreen - StretchedPaused=PausedPlayVideo=Play VideoResumeVideo=Resume VideoRestartVideo=Restart VideoVideoQueue=Play AllQueueAllRandom=Play RandomlyMore=More..MostPlayed=Most PlayedMostPlayedList=Most PlayedVariousArtists=Various ArtistsConfirmDialog1=Select To Confirm.ConfirmDialog2=Back To Cancel.RemoveGame=Remove Game?LocalDisk=Local DiskSystemDisk=System DiskCDDVD=CD/DVD DriveNetworkDrive=Network DriveRamDisk=Ram DiskFloppyDisk=Floppy DiskRemovableDisk=Removable DiskUpdateGameList=Update List?VideoQueueAll=playstationstart=Playstationthemepickerlist=Themesthemepickerstart=Theme Pickerplaystationlist=PlaystationmameVertList=VerticalmameVertStart=MAME Vertical GamesmameHorizlist=HorizontalmameHorizstart=MAME Horizontal Gamesmamenotplayedlist=Not Playedmamenotplayedstart=MAME Not Playedmamemawslist=Live - MAWSmameMAWSstart=Live - MAWS Hall Of FamemameGameExlist=Live - GameExmameGamEexstart=Live - GameEx Favoritesripcd=Rip CDripthiscd=Rip This CD Nowcantrip=- No CD, Invalid CD, or no CDDB data -ViewPlaylist=View PlaylistKaraokAllSongs=All SongsKaraokaMode1Click=Instant Play ModeKaraokaModeQueue=Queue ModeKaraokePlaylist=View/Edit PlaylistKaraokeStartMenu=Start Karaokemammodel2list=CreateSnaps1=You are about to create snap shots for every game in the [EMULATOR] Games List.NoeBooksFound=- NO EBOOKS FOUND -QueueAll=Queue All[Favorites]ReplaceDash=TrueReplaceUnder=TrueCapitals=TrueRemoveBrackets=True[DVRMS]DVRFFDSHOW=0CODEC=[AtractModeNewGameTimer]When in attract mode start a new random game or video each time this value is reached.=2[AttractVideosPath]The folder your videos are located.=L:\GameAds[GameExTender]RemoteGameExLocation=\\workstation1\g$\-DATA-\-MY PROJECTS-\GameEx - VB.net\binEnabled=FalseWindowed=FalseDisplayOnSecondary=FalseRemoteExtenderLocation=G:\-DATA-\-MY PROJECTS-\GameEx - VB.net\binIPADDRESS=127.0.0.1Port=8383RefreshRate=20SysUserName=RIP-FelixUsername=User33549ComputerName=RIP-FELIX-PCPublish=FalseUserInfo=GameExtenderCustomImage=FalseGameExtenderImageNotFound=[GameExtenderViewer]Server=90.0.0.13PORT=8383DisplayOnSecondary=FalseRefreshRate=7StartWithGameEx=FalseExitWithGameEx=FalseWindowed=False[Karaoke]Enabled=FalsePath=C:\Karaokemode=False[CachedImages]bak=100652res=275808videobak=100652jukeboxbak=100652radiobak=100652picturesbak=100652emubak=100652startbak=100652daphnebak=100652mamebak=100652themedir=titlefont=Trebuchet MStitlefontsize=0outlinefonts=Falseantialiasfonts=Truewindowed=Trueuse16bitcolour=Falsegradienttitlefont=Truelowercasetitlefont=TrueFont=Trebuchet MSFontSize=0titlefontres=275808bakres=275808theme=startbak_Foreground=386810bak_Foreground=386810videobak_Foreground=386810jukeboxbak_Foreground=386810radiobak_Foreground=386810picturesbak_Foreground=386810daphnebak_Foreground=386810titlefontstyle=0bakresbak=921600mameselectbak=465213lastplayedbak=290516mostplayedbak=199198favoritesbak=283065allgamesbak=375154emulatorselectbak=100444themepickerbak=621253[Plugin_1]Enabled=FalseName=CursorHider.dll[Plugin_2]Enabled=FalseName=Game Info Plugin.dll[Plugin_3]Enabled=FalseName=PlugInCallerID.dll[Plugin_4]Enabled=FalseName=PlugInDigDug.dll[Plugin_5]Enabled=FalseName=PlugInExit.dll[ArcadeSoundPlugin]Volume=8[Plugin_6]Enabled=FalseName=PlugInLaunch.dll[CachedImagesMenuFont]themedir= hemes\My Games for MCE (Widescreen)\MEDIA\res=275808font=Arialfontsize=2outlinefonts=Falseuse16bitcolour=Falseantialiasfonts=Truewindowed=Truemenufontsamesize=Falsefontstyle=1[CachedImagesBak]bak=214295videobak=214295jukeboxbak=214295radiobak=214295picturesbak=214295emubak=214295startbak=214295daphnebak=214295[Emulator_]SelectionMusicFolder=C:\Music[eBook]Enabled=FalsePaths=C:\eBooksQuality=0fittopage=False[Plugin_7]Enabled=FalseName=PlugInLCD.dll[MediaPlayer]Enabled=FalseAudioMode=0[CachedImagesGameFont]res=275808[CachedImagesGameFontFaded]res=275808[CachedImagesFontBlack]Res=277056[CPWizard]CPWizardEnable=FalseCPWizardPath=C:\Program Files\CPWizard\CPWizard.exeCPWizardStarted=TrueCPWizardStartup=True[VIDEO]EnableExternalPlayer=FalseUseWMPWMV=CMD=[ADVKEYBOARD]Forward=60Rewind=61PageUp=62PageDown=63VolumeDown=64VolumeUp=65Stop=66Play=67[Plugin_8]Enabled=FalseName=PlugInRotate.dll[CursorHider]DoNotHide=DoNotHideInGameEX=False[Plugin_9]Enabled=FalseName=PlugInSpeech.dll[DefaultPaths]EmuPath1=C:\EmulatorsAssetPath1=C:\AssetsRomPath1=C:\Roms[YouTube]Enabled=False[GameBase]Enabled=FalsePath=MapBack=FalseShowDesktop=True[CachedImages3d]themedir= hemes\My Games for MCE (Widescreen)\MEDIA\titlefontres=275808titlefont=Arialtitlefontstyle=0titlefontsize=0outlinefonts=Falseuse16bitcolour=Falsegradienttitlefont=Falselowercasetitlefont=Falseantialiasfonts=Truewindowed=Trueres=0bakres=0startbak_foreground=386810theme=BlueBoxbak_foreground=39023jukeboxbak_foreground=23206[CachedImagesGameFontFadedFalse]res=921600[CachedImagesMenuFont3d]res=0[DVDRIP]Format=MP4DVDRIPFOLDER=C:\DVD RIPSProfile=NormalCUSTOMCMD=[GameExArcade]Enabled=False[Touchscreen]Touchscreen_Enabled=2Touchscreen_HidePointer=TrueTouchScreen_ShowHelpScreens=TrueTouchScreen_SingleClick=TrueTouchScreen_OnlyCompatibleGames=TrueTouchScreen_CheckForExit=TrueTouchScreen_SendCredit=TrueTouchScreen_ShowMouseAnimations=True[LastStatus]specialfilter=oldspecialfilter=EMUcuremulator=0listtype=8curbak=Startmaxgames=11gamename=[Plugin_10]Enabled=FalseName=PlugInUltraStik.dll[Plugin_11]Enabled=FalseName=RandomArcadeSound.dll[LIST_SETTINGS_20_EMU_1002]displaybackgroundimage=Truedisplaybackgroundimageemu=Falsedisplaystartpagemenuimage=Falsedisplaystartpagemenuimage2=Falsedisplaystartpagelistnotforcebaksnap=Truedisplayimagelist=False[LIST_SETTINGS_20_EMU_503]displaybackgroundimage=Snapdisplaybackgroundimageemu=Falsedisplaystartpagemenuimage=Falsedisplaystartpagemenuimage2=Falsedisplaystartpagelistnotforcebaksnap=Falsedisplayimagelist=True[steam]LaunchBefore=LaunchAfter=[INTERNAL]currentstation=VGenre=---OPTIMIZED=0version=12.84timesruncount=22startpagethumbscount=30donemenulistviewinitialchange2=truelastglaunchlist=0glaunchlistselected_0=1glaunchlisttop_0=1viewalbumtype=0windowed=Trueselectedgame=1gamelisttop=1catfilter=manufilter=yearfilter=listtype=8emulator=0yearlisttop=1catlisttop=1namelisttop=1manulisttop=1yearselectedgame=1catselectedgame=1manuselectedgame=1nameselectedgame=1romname=romname2=specialfilter=currentstationurl=emu_1lastfolderwrite=10/14/2012 3:59:54 PMemu_1lastromfilter=*.*windowx=256windowy=84windowwidth=640windowheight=480emu_1_dbcacheinicreated47=Trueemu_1_enabled=Trueemu_1_system=Sony Playstationemu_1_category=Consoleemu_1_emulator=ePSXeemu_1_version=1.70emu_1_rating=8.3emu_1_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/epsxe.7zemu_1_requiredfiles=scph1001.bin (512kb)emu_1_website=http://www.epsxe.com/emu_1_info=Sony Playstation Emulatoremu_1_titletext=Sony Playstationemu_1_startpagename=Sony Playstationemu_1_startpagelogo=Sony Playstationemu_1_command=[QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_1_romfilter=emu_1_database=[Console] Sony Playstationemu_1_configfile=ePSXecutoremu_1_mapfile=[Console] Sony Playstation.mapemu_1_rompath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcutsemu_1_snappath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Snaps\Imageemu_1_titlepath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Snaps\Titleemu_1_boxpath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Box Artemu_1_cartpath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Cartridgeemu_1_manualpath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Manualsemu_1_controlpanelpath=C:\Assets\Sony Playstation\Controlsemu_1_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcutsemu_1_mapkeys=Trueemu_1_waitbeforekeys=emu_1_sendkeys=emu_1_replacedash=Falseemu_1_replaceunder=Trueemu_1_capitals=Falseemu_1_removebrackets=Trueemu_1_showdesktop=Trueemu_1_debug=Falseemu_1_alsolaunch=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\Switchdisc (GameEx launch before).bat “[WORKINGPATH]\[ROMFILE]”emu_1_launchbefore=E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exeemu_1_launchafter=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\Switchdisc (GameEx launch after).batemu_1_excludedfiles=emu_1_custombackground=emu_1_playmusic=Falseemu_1_dontshowinfo=emu_1_playselectionmusic=Falseemu_1_selectionmusicfolder=emu_1_pcgame=Falseemu_1_gamesin7zips=Falseemu_1_playinscreensaver=Falseemu_1_showmostplayed=Falseemu_1_randommostplayed=Falseemu_1_cdcheck=Falseemu_1_cdcheckfile=emu_1_dbcachemodified=7/10/2012 10:30:35 AMemu_1_lastnumgames=51emu_1_dbcachelastname=[Console] Sony Playstationemu_2lastfolderwrite=10/13/2012 10:03:37 AMemu_2lastromfilter=*.n64emu_3lastfolderwrite=10/13/2012 12:18:49 PMemu_3lastromfilter=*.sfcemu_4lastfolderwrite=10/14/2012 1:38:05 PMemu_4lastromfilter=*.*emu_5lastfolderwrite=10/14/2012 9:37:32 PMemu_5lastromfilter=*.gbaemu_6lastfolderwrite=10/14/2012 3:51:26 PMemu_6lastromfilter=*.gb;*.gbcemu_7lastfolderwrite=10/13/2012 7:47:17 PMemu_7lastromfilter=*.cdi;*.gdiemu_1_oldatzip=emu_2_dbcachemodified=7/10/2012 10:29:12 AMemu_2_lastnumgames=38emu_2_dbcachelastname=[Console] Nintendo N64emu_2_dbcacheinicreated47=Trueemu_2_cdcheckfile=emu_2_cdcheck=Falseemu_2_randommostplayed=Falseemu_2_showmostplayed=Falseemu_2_playinscreensaver=Falseemu_2_gamesin7zips=Falseemu_2_pcgame=Falseemu_2_selectionmusicfolder=emu_2_playselectionmusic=Falseemu_2_dontshowinfo=emu_2_playmusic=Falseemu_2_custombackground=emu_2_excludedfiles=emu_2_launchafter=emu_2_launchbefore=[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]emu_2_alsolaunch=emu_2_debug=Falseemu_2_showdesktop=Trueemu_2_removebrackets=Trueemu_2_capitals=Falseemu_2_replaceunder=Trueemu_2_replacedash=Falseemu_2_sendkeys=emu_2_waitbeforekeys=emu_2_mapkeys=Trueemu_2_workingpath=C:\Program Files (x86)\Project64 1.6emu_2_controlpanelpath=C:\Assets\Nintendo N64\Controlsemu_2_manualpath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Manualsemu_2_cartpath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Cartridgeemu_2_boxpath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Box Artemu_2_titlepath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Snaps\Titleemu_2_snappath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Snaps\Imageemu_2_rompath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Romsemu_2_mapfile=emu_2_configfile=Project 64 V6emu_2_database=[Console] Nintendo N64emu_2_romfilter=*.n64emu_2_command=Project64.exe [ROMPATH]\[ROMFILE]emu_2_startpagelogo=Nintendo N64emu_2_startpagename=Nintendo N64emu_2_titletext=Nintendo N64emu_2_info=Nintendo 64 emulatoremu_2_website=http://www.pj64-emu.com/emu_2_requiredfiles=emu_2_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/Project64.7zemu_2_rating=8.9emu_2_version=1.6emu_2_emulator=Project64emu_2_category=Consoleemu_2_system=Nintendo N64emu_2_enabled=Truemameexe=mame.exemamepath=E:\Michael\GAMES\My Games\All Games (Files)\M.A.M.E\Emulator\MAMEmamefilemodified=2/5/2012 1:24:32 PMmamefilesize=104990442mamepromptupdate=Truemameis32bit=Truebezelversion=3mameversion=0.145emu_8lastfolderwrite=9/29/2012 5:02:29 PMemu_8lastromfilter=*.*emu_8_dbcacheinicreated47=Trueemu_3_dbcachemodified=7/10/2012 10:29:34 AMemu_3_lastnumgames=14emu_3_dbcachelastname=[Console] Nintendo SNESemu_3_dbcacheinicreated47=Trueemu_4_dbcachemodified=7/10/2012 10:29:24 AMemu_4_lastnumgames=17emu_4_dbcachelastname=[Console] Nintendo NESemu_4_dbcacheinicreated47=Trueemu_5_dbcachemodified=7/10/2012 10:30:52 AMemu_5_lastnumgames=31emu_5_dbcachelastname=[Handheld] Nintendo Game Boy Coloremu_5_dbcacheinicreated47=Trueemu_6_dbcachemodified=7/10/2012 10:30:57 AMemu_6_lastnumgames=22emu_6_dbcachelastname=[Handheld] Nintendo Game Boyemu_6_dbcacheinicreated47=Trueemu_7_dbcachemodified=7/10/2012 10:29:45 AMemu_7_lastnumgames=6emu_7_dbcachelastname=[Console] Sega Dreamcastemu_7_dbcacheinicreated47=Trueemu_3_enabled=Trueemu_3_system=Nintendo SNESemu_3_category=Consoleemu_3_emulator=ZSNESemu_3_version=1.51emu_3_rating=9.0emu_3_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/zsnes.7zemu_3_requiredfiles=emu_3_website=http://www.zsnes.com/emu_3_info=Super Nintendo emulatoremu_3_titletext=Nintendo SNESemu_3_startpagename=Nintendo SNESemu_3_startpagelogo=Nintendo SNESemu_3_command=zsnesw.exe [QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_3_romfilter=*.sfcemu_3_database=[Console] Nintendo SNESemu_3_configfile=[Mapping Off] Exit (Process Close)emu_3_mapfile=emu_3_rompath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\SNES Romsemu_3_snappath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Snaps\Imageemu_3_titlepath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Snaps\Titleemu_3_boxpath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Box Artemu_3_cartpath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Cartridgeemu_3_manualpath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Manualsemu_3_controlpanelpath=C:\Assets\Nintendo SNES\Controlsemu_3_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\ZSNESemu_3_mapkeys=Trueemu_3_waitbeforekeys=emu_3_sendkeys=emu_3_replacedash=Falseemu_3_replaceunder=Trueemu_3_capitals=Falseemu_3_removebrackets=Trueemu_3_showdesktop=Trueemu_3_debug=Falseemu_3_alsolaunch=emu_3_oldatzip=emu_3_launchbefore=[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]emu_3_launchafter=emu_3_excludedfiles=emu_3_custombackground=emu_3_playmusic=Falseemu_3_dontshowinfo=emu_3_playselectionmusic=Falseemu_3_selectionmusicfolder=emu_3_pcgame=Falseemu_3_gamesin7zips=Falseemu_3_playinscreensaver=Falseemu_3_showmostplayed=Falseemu_3_randommostplayed=Falseemu_3_cdcheck=Falseemu_3_cdcheckfile=emu_4_enabled=Trueemu_4_system=Nintendo NESemu_4_category=Consoleemu_4_emulator=FCE Ultraemu_4_version=2.1.5emu_4_rating=8.6emu_4_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/FCE%20Ultra.7zemu_4_requiredfiles=emu_4_website=http://fceux.com/web/htdocs/emu_4_info=Nintendo NES 8bit emulatoremu_4_titletext=Nintendo NESemu_4_startpagename=Nintendo NESemu_4_startpagelogo=Nintendo NESemu_4_command=fceu.exe [QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_4_romfilter=emu_4_database=[Console] Nintendo NESemu_4_configfile=[Mapping Off] Exit (Process Close)emu_4_mapfile=emu_4_rompath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Romsemu_4_snappath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Snaps\Imageemu_4_titlepath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Snaps\Titleemu_4_boxpath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Box Artemu_4_cartpath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Cartridgeemu_4_manualpath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Manualsemu_4_controlpanelpath=C:\Assets\Nintendo NES\Controlsemu_4_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Emulator\fceu-0.98.12.winemu_4_mapkeys=Trueemu_4_waitbeforekeys=emu_4_sendkeys=emu_4_replacedash=Falseemu_4_replaceunder=Trueemu_4_capitals=Falseemu_4_removebrackets=Trueemu_4_showdesktop=Trueemu_4_debug=Falseemu_4_alsolaunch=emu_4_oldatzip=emu_4_launchbefore=[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]emu_4_launchafter=emu_4_excludedfiles=emu_4_custombackground=emu_4_playmusic=Falseemu_4_dontshowinfo=emu_4_playselectionmusic=Falseemu_4_selectionmusicfolder=emu_4_pcgame=Falseemu_4_gamesin7zips=Falseemu_4_playinscreensaver=Falseemu_4_showmostplayed=Falseemu_4_randommostplayed=Falseemu_4_cdcheck=Falseemu_4_cdcheckfile=emu_5_enabled=Trueemu_5_system=Nintendo Game Boy Coloremu_5_category=Handheldemu_5_emulator=VisualBoyAdvanceemu_5_version=1.8.0beta3emu_5_rating=9.0emu_5_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/VisualBoyAdvance.7zemu_5_requiredfiles=emu_5_website=http://vba.ngemu.com/emu_5_info=Nintendo Game boy, Game boy color and Gameboy advance emulatoremu_5_titletext=Nintendo Game Boy Advancedemu_5_startpagename=Nintendo Game Boy Advancedemu_5_startpagelogo=Nintendo Game Boy Advanceemu_5_command=VisualBoyAdvance-1.8.0-511.exe [QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_5_romfilter=*.gbaemu_5_database=[Handheld] Nintendo Game Boy Coloremu_5_configfile=[Mapping Off] Exit (Process Close)emu_5_mapfile=emu_5_rompath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Romsemu_5_snappath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Snaps\Imageemu_5_titlepath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Snaps\Titleemu_5_boxpath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Box Artemu_5_cartpath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Cartridgeemu_5_manualpath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Manualsemu_5_controlpanelpath=C:\Assets\Nintendo Game Boy Color\Controlsemu_5_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Emulatoremu_5_mapkeys=Trueemu_5_waitbeforekeys=emu_5_sendkeys=emu_5_replacedash=Falseemu_5_replaceunder=Trueemu_5_capitals=Falseemu_5_removebrackets=Trueemu_5_showdesktop=Trueemu_5_debug=Falseemu_5_alsolaunch=emu_5_oldatzip=emu_5_launchbefore=[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]emu_5_launchafter=emu_5_excludedfiles=emu_5_custombackground=emu_5_playmusic=Falseemu_5_dontshowinfo=emu_5_playselectionmusic=Falseemu_5_selectionmusicfolder=emu_5_pcgame=Falseemu_5_gamesin7zips=Falseemu_5_playinscreensaver=Falseemu_5_showmostplayed=Falseemu_5_randommostplayed=Falseemu_5_cdcheck=Falseemu_5_cdcheckfile=emu_6_enabled=Trueemu_6_system=Nintendo Game Boyemu_6_category=Handheldemu_6_emulator=BGBemu_6_version=1.3.2emu_6_rating=8.5emu_6_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/bgb.7zemu_6_requiredfiles=emu_6_website=http://bgb.bircd.org/emu_6_info=Nintendo Game boy, Game boy color, Super Game boy emulatoremu_6_titletext=Nintendo Game Boyemu_6_startpagename=Nintendo Game Boyemu_6_startpagelogo=Nintendo Game Boyemu_6_command=bgb.exe [QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_6_romfilter=*.gb;*.gbcemu_6_database=[Handheld] Nintendo Game Boyemu_6_configfile=[Mapping Off] Exit (Process Close)emu_6_mapfile=emu_6_rompath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Romsemu_6_snappath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Snaps\Imageemu_6_titlepath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Snaps\Titleemu_6_boxpath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Box Artemu_6_cartpath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Cartridgeemu_6_manualpath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Manualsemu_6_controlpanelpath=C:\Assets\Nintendo Game Boy\Controlsemu_6_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Emulator\bgb_1.2emu_6_mapkeys=Trueemu_6_waitbeforekeys=emu_6_sendkeys=emu_6_replacedash=Falseemu_6_replaceunder=Trueemu_6_capitals=Falseemu_6_removebrackets=Trueemu_6_showdesktop=Trueemu_6_debug=Falseemu_6_alsolaunch=emu_6_oldatzip=emu_6_launchbefore=[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]emu_6_launchafter=emu_6_excludedfiles=emu_6_custombackground=emu_6_playmusic=Falseemu_6_dontshowinfo=emu_6_playselectionmusic=Falseemu_6_selectionmusicfolder=emu_6_pcgame=Falseemu_6_gamesin7zips=Falseemu_6_playinscreensaver=Falseemu_6_showmostplayed=Falseemu_6_randommostplayed=Falseemu_6_cdcheck=Falseemu_6_cdcheckfile=emu_7_cdcheckfile=emu_7_cdcheck=Falseemu_7_randommostplayed=Falseemu_7_showmostplayed=Falseemu_7_playinscreensaver=Falseemu_7_gamesin7zips=Falseemu_7_pcgame=Falseemu_7_selectionmusicfolder=emu_7_playselectionmusic=Falseemu_7_dontshowinfo=emu_7_playmusic=Falseemu_7_custombackground=emu_7_excludedfiles=emu_7_launchafter=emu_7_launchbefore=[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]emu_7_oldatzip=emu_7_alsolaunch=emu_7_debug=Falseemu_7_showdesktop=Trueemu_7_removebrackets=Trueemu_7_capitals=Falseemu_7_replaceunder=Trueemu_7_replacedash=Falseemu_7_sendkeys=emu_7_waitbeforekeys=emu_7_mapkeys=Trueemu_7_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Emulator\Emulators\nullDC_103emu_7_controlpanelpath=C:\Assets\Sega Dreamcast\Controlsemu_7_manualpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Manualsemu_7_cartpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Cartridgeemu_7_boxpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Box Artemu_7_titlepath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Snaps\Titleemu_7_snappath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Snaps\Imageemu_7_rompath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Romsemu_7_mapfile=emu_7_configfile=[Mapping On] Exit nullDC (Process Close)emu_7_database=[Console] Sega Dreamcastemu_7_romfilter=*.cdi;*.gdiemu_7_command=nullDC_1.0.3_nommu.exe -config ImageReader:DefaultImage=[QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_7_startpagelogo=Sega Dreamcastemu_7_startpagename=Sega Dreamcastemu_7_titletext=Sega Dreamcastemu_7_info=Sega Dreamcast emulatoremu_7_website=http://code.google.com/p/nulldc/emu_7_requiredfiles=dc_boot.bin, dc_flash.bin, d3d9.dll, d3dx9_42.dll, msvcr100.dllemu_7_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/nullDC.7zemu_7_rating=8.1emu_7_version=1.0.4emu_7_emulator=nullDCemu_7_category=Consoleemu_7_system=Sega Dreamcastemu_7_enabled=Trueemu_8_dbcachemodified=7/10/2012 10:29:55 AMemu_8_lastnumgames=8emu_8_dbcachelastname=[Console] Sega Genesisemu_9lastfolderwrite=9/29/2012 10:55:23 AMemu_9lastromfilter=*.cdi;*.gdiemu_9_dbcachemodified=7/10/2012 10:29:45 AMemu_9_lastnumgames=6emu_9_dbcachelastname=[Console] Sega Dreamcastemu_9_dbcacheinicreated47=Trueemu_8_enabled=Trueemu_8_system=Sega Genesisemu_8_category=Consoleemu_8_emulator=Gens32 Surrealemu_8_version=1.86emu_8_rating=8.4emu_8_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/Gens32%20Surreal.7zemu_8_requiredfiles=emu_8_website=http://gens32.emubase.de/emu_8_info=Sega Genesis, Sega CD, Sega 32x emulator.emu_8_titletext=Sega Genesisemu_8_startpagename=Sega Genesisemu_8_startpagelogo=Sega Genesisemu_8_command=[QUOTE]Gens.exe[QUOTE] [QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_8_romfilter=emu_8_database=[Console] Sega Genesisemu_8_configfile=[Mapping Off] Exit (Process Close)emu_8_mapfile=emu_8_rompath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Romsemu_8_snappath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Snaps\Imageemu_8_titlepath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Snaps\Titleemu_8_boxpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Box Artemu_8_cartpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Cartridgeemu_8_manualpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Manualsemu_8_controlpanelpath=C:\Assets\Sega Genesis\Controlsemu_8_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Emulator\gens-win32-bin-2.14emu_8_mapkeys=Trueemu_8_waitbeforekeys=3000emu_8_sendkeys=%{ENTER}emu_8_replacedash=Falseemu_8_replaceunder=Trueemu_8_capitals=Falseemu_8_removebrackets=Trueemu_8_showdesktop=Trueemu_8_debug=Falseemu_8_alsolaunch=emu_8_oldatzip=emu_8_launchbefore=[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]emu_8_launchafter=emu_8_excludedfiles=emu_8_custombackground=emu_8_playmusic=Falseemu_8_dontshowinfo=emu_8_playselectionmusic=Falseemu_8_selectionmusicfolder=emu_8_pcgame=Falseemu_8_gamesin7zips=Falseemu_8_playinscreensaver=Falseemu_8_showmostplayed=Falseemu_8_randommostplayed=Falseemu_8_cdcheck=Falseemu_8_cdcheckfile=emu_9_cdcheckfile=emu_9_cdcheck=Falseemu_9_randommostplayed=Trueemu_9_showmostplayed=Trueemu_9_playinscreensaver=Falseemu_9_gamesin7zips=Falseemu_9_pcgame=Falseemu_9_selectionmusicfolder=emu_9_playselectionmusic=Falseemu_9_dontshowinfo=emu_9_playmusic=Falseemu_9_custombackground=emu_9_excludedfiles=emu_9_launchafter=emu_9_launchbefore=[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]emu_9_oldatzip=emu_9_alsolaunch=emu_9_debug=Falseemu_9_showdesktop=Trueemu_9_removebrackets=Trueemu_9_capitals=Falseemu_9_replaceunder=Trueemu_9_replacedash=Falseemu_9_sendkeys=emu_9_waitbeforekeys=emu_9_mapkeys=Trueemu_9_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Emulator\Emulators\nullDC_103emu_9_controlpanelpath=C:\Assets\Sega Dreamcast\Controlsemu_9_manualpath=C:\Assets\Sega Dreamcast\Manualsemu_9_cartpath=C:\Assets\Sega Dreamcast\Cartridgesemu_9_boxpath=C:\Assets\Sega Dreamcast\Boxesemu_9_titlepath=C:\Assets\Sega Dreamcast\Titlesemu_9_snappath=C:\Assets\Sega Dreamcast\Snapsemu_9_rompath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Romsemu_9_mapfile=emu_9_configfile=[Mapping On] Exit nullDC (Process Close)emu_9_database=[Console] Sega Dreamcastemu_9_romfilter=*.cdi;*.gdiemu_9_command=nullDC_1.0.3_nommu.exe -config ImageReader:DefaultImage=[QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_9_startpagelogo=Sega Dreamcastemu_9_startpagename=Sega Dreamcastemu_9_titletext=Sega Dreamcastemu_9_info=Sega Dreamcast emulatoremu_9_website=http://code.google.com/p/nulldc/emu_9_requiredfiles=dc_boot.bin, dc_flash.bin, d3d9.dll, d3dx9_42.dll, msvcr100.dllemu_9_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/nullDC.7zemu_9_rating=8.1emu_9_version=1.0.4emu_9_emulator=nullDCemu_9_category=Consoleemu_9_system=Sega Dreamcastemu_9_enabled=Trueemu_10lastfolderwrite=9/29/2012 5:02:29 PMemu_10lastromfilter=*.*emu_10_dbcachemodified=7/10/2012 10:29:55 AMemu_10_lastnumgames=8emu_10_dbcachelastname=[Console] Sega Genesisemu_10_dbcacheinicreated47=Trueemu_10_cdcheckfile=emu_10_cdcheck=Falseemu_10_randommostplayed=Trueemu_10_showmostplayed=Trueemu_10_playinscreensaver=Falseemu_10_gamesin7zips=Falseemu_10_pcgame=Falseemu_10_selectionmusicfolder=emu_10_playselectionmusic=Falseemu_10_dontshowinfo=emu_10_playmusic=Falseemu_10_custombackground=emu_10_excludedfiles=emu_10_launchafter=emu_10_launchbefore=[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]emu_10_oldatzip=emu_10_alsolaunch=emu_10_debug=Falseemu_10_showdesktop=Trueemu_10_removebrackets=Trueemu_10_capitals=Falseemu_10_replaceunder=Trueemu_10_replacedash=Falseemu_10_sendkeys=%{ENTER}emu_10_waitbeforekeys=3000emu_10_mapkeys=Trueemu_10_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Emulator\gens-win32-bin-2.14emu_10_controlpanelpath=C:\Assets\Sega Genesis\Controlsemu_10_manualpath=C:\Assets\Sega Genesis\Manualsemu_10_cartpath=C:\Assets\Sega Genesis\Cartridgesemu_10_boxpath=C:\Assets\Sega Genesis\Boxesemu_10_titlepath=C:\Assets\Sega Genesis\Titlesemu_10_snappath=C:\Assets\Sega Genesis\Snapsemu_10_rompath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Romsemu_10_mapfile=emu_10_configfile=[Mapping Off] Exit (Process Close)emu_10_database=[Console] Sega Genesisemu_10_romfilter=emu_10_command=[QUOTE]Gens.exe[QUOTE] [QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_10_startpagelogo=Sega Genesisemu_10_startpagename=Sega Genesisemu_10_titletext=Sega Genesisemu_10_info=Sega Genesis, Sega CD, Sega 32x emulator.emu_10_website=http://gens32.emubase.de/emu_10_requiredfiles=emu_10_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/Gens32%20Surreal.7zemu_10_rating=8.4emu_10_version=1.86emu_10_emulator=Gens32 Surrealemu_10_category=Consoleemu_10_system=Sega Genesisemu_10_enabled=Trueemu_11lastfolderwrite=10/11/2012 2:15:02 PMemu_11lastromfilter=*.*emu_11_dbcacheinicreated47=Trueemu_2_oldatzip=emu_11_enabled=Trueemu_11_system=Sony Playstationemu_11_category=Consoleemu_11_emulator=ePSXeemu_11_version=1.70emu_11_rating=8.3emu_11_downloadurl=http://www.gamesdbase.com/setupwizard/emulators/download/epsxe.7zemu_11_requiredfiles=scph1001.bin (512kb)emu_11_website=http://www.epsxe.com/emu_11_info=Sony Playstation Emulatoremu_11_titletext=Sony Playstationemu_11_startpagename=Sony Playstation (ePSXe)emu_11_startpagelogo=Sony Playstationemu_11_command=[QUOTE][ROMPATH]\[ROMFILE][QUOTE]emu_11_romfilter=emu_11_database=[Console] Sony Playstationemu_11_configfile=ePSXecutoremu_11_mapfile=[Console] Sony Playstation.mapemu_11_rompath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcuts\emu_11_snappath=C:\Assets\Sony Playstation\Snapsemu_11_titlepath=C:\Assets\Sony Playstation\Titlesemu_11_boxpath=C:\Assets\Sony Playstation\Boxesemu_11_cartpath=C:\Assets\Sony Playstation\Cartridgesemu_11_manualpath=C:\Assets\Sony Playstation\Manualsemu_11_controlpanelpath=C:\Assets\Sony Playstation\Controlsemu_11_workingpath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game Shortcutsemu_11_mapkeys=Trueemu_11_waitbeforekeys=emu_11_sendkeys=emu_11_replacedash=Falseemu_11_replaceunder=Trueemu_11_capitals=Falseemu_11_removebrackets=Trueemu_11_showdesktop=Trueemu_11_debug=Falseemu_11_alsolaunch=emu_11_oldatzip=emu_11_launchbefore=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Switchdisc (GameEx launch before).batemu_11_launchafter=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.0\Switchdisc (GameEx launch after).batemu_11_excludedfiles=emu_11_custombackground=emu_11_playmusic=Falseemu_11_dontshowinfo=emu_11_playselectionmusic=Falseemu_11_selectionmusicfolder=emu_11_pcgame=Falseemu_11_gamesin7zips=Falseemu_11_playinscreensaver=Falseemu_11_showmostplayed=Trueemu_11_randommostplayed=Trueemu_11_cdcheck=Falseemu_11_cdcheckfile=emu_11_dbcachemodified=7/10/2012 10:30:35 AMemu_11_lastnumgames=51emu_11_dbcachelastname=[Console] Sony Playstationemu_1_baksnappath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Snaps\Backgroundemu_1_videosnappath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Snaps\Videoemu_2_baksnappath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Snaps\Backgroundemu_2_videosnappath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Snaps\Videoemu_3_baksnappath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Snaps\Backgroundemu_3_videosnappath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Snaps\Videoemu_4_baksnappath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Snaps\Backgroundemu_4_videosnappath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Snaps\Videoemu_5_baksnappath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Snaps\Backgroundemu_5_videosnappath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Snaps\Videoemu_6_baksnappath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Snaps\Backgroundemu_6_videosnappath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Snaps\Videoemu_7_baksnappath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Snaps\Backgroundemu_7_videosnappath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Snaps\Videoemu_8_baksnappath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Snaps\Backgroundemu_8_videosnappath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Snaps\Video[SetupWizard]EmuPath1=C:\Users\RIP-Felix\DesktopAssetPath1=C:\AssetsRomPath1=C:\Users\RIP-Felix\DesktopDefaultPathPrompt=TrueDownloadDatabasePrompt=TrueDownloadEmulatorPrompt=TrueWizardMode=2CustomArray=Text / Language|Display Settings|Input Settings|HTPC / Multimedia Settings|Download Emulators|Emulator Selection|Emulator Setup|Advanced Emulator Setup|Emulator Groups|Enable / Disable Features|Tweaks / PerformanceSearchArray=SavePosition=FalseSectionIndex=35SearchText=EmulatorIndex=0EmulatorGroupIndex=0DaphneIndex=0HTMLAppsIndex=0ExternalAppsIndex=0RadioStationsIndex=0NewsFeedsIndex=0ShowPanel=TrueFontSize=1WindowState=0WindowSize=849,478WindowLocation=54,67[LIST_SETTINGS_8]displaybackgroundimage=Truedisplaybackgroundimageemu=Truedisplaystartpagemenuimage=Falsedisplaystartpagemenuimage2=Falsedisplaystartpagelistnotforcebaksnap=Truedisplayimagelist=True[Emulator_1]CDCheckFile=CDCheck=FalseRandomMostPlayed=FalseShowMostPlayed=FalsePlayInScreenSaver=FalseGamesIn7Zips=FalsePCGame=FalseSelectionMusicFolder=PlaySelectionMusic=FalseDontShowInfo=PlayMusic=FalseCustomBackground=ExcludedFiles=LaunchAfter=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\Switchdisc (GameEx launch after).batLaunchBefore=E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exeAlsoLaunch=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\Switchdisc (GameEx launch before).bat “[WORKINGPATH]\[ROMFILE]”Debug=FalseShowDesktop=TrueRemoveBrackets=TrueCapitals=FalseReplaceUnder=TrueReplaceDash=FalseSendKeys=WaitBeforeKeys=MapKeys=TrueWorkingPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game ShortcutsControlPanelPath=C:\Assets\Sony Playstation\ControlsManualPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\ManualsCartPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\CartridgeBoxPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Box ArtTitlePath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Snaps\TitleSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Snaps\ImageRomPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\Game ShortcutsMapFile=[Console] Sony Playstation.mapConfigFile=ePSXecutorDatabase=[Console] Sony PlaystationRomFilter=Command="[ROMPATH]\[ROMFILE]"StartPageLogo=Sony PlaystationStartPageName=Sony PlaystationTitleText=Sony PlaystationInfo=Sony Playstation EmulatorWebsite=http://www.epsxe.com/RequiredFiles=scph1001.bin (512kb)DownloadUrl=http://www.gamesdbase.com/setupwizard/emulators/download/epsxe.7zRating=8.3Version=1.70Emulator=ePSXeCategory=ConsoleSystem=Sony PlaystationEnabled=Truelastgame=BakSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Snaps\BackgroundVideoSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\PSone\Artwork\Snaps\Video[Weather]Enabled=False[Emulator_2]lastgame=CDCheckFile=CDCheck=FalseRandomMostPlayed=FalseShowMostPlayed=FalsePlayInScreenSaver=FalseGamesIn7Zips=FalsePCGame=FalseSelectionMusicFolder=PlaySelectionMusic=FalseDontShowInfo=PlayMusic=FalseCustomBackground=ExcludedFiles=LaunchAfter=LaunchBefore="E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe"OLDatZip=AlsoLaunch=Debug=FalseShowDesktop=TrueRemoveBrackets=TrueCapitals=FalseReplaceUnder=TrueReplaceDash=FalseSendKeys=WaitBeforeKeys=MapKeys=TrueWorkingPath=C:\Program Files (x86)\Project64 1.6ControlPanelPath=C:\Assets\Nintendo N64\ControlsManualPath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\ManualsCartPath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\CartridgeBoxPath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Box ArtTitlePath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Snaps\TitleSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Snaps\ImageRomPath=E:\Michael\GAMES\My Games\All Games (Files)\N64\RomsMapFile=ConfigFile=Project 64 V6Database=[Console] Nintendo N64RomFilter=*.n64Command=Project64.exe [ROMPATH]\[ROMFILE]StartPageLogo=Nintendo N64StartPageName=Nintendo N64TitleText=Nintendo N64Info=Nintendo 64 emulatorWebsite=http://www.pj64-emu.com/RequiredFiles=DownloadUrl=http://www.gamesdbase.com/setupwizard/emulators/download/Project64.7zRating=8.9Version=1.6Emulator=Project64Category=ConsoleSystem=Nintendo N64Enabled=TrueBakSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Snaps\BackgroundVideoSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\N64\Artwork\Snaps\Video[Emulator_3]lastgame=Enabled=TrueSystem=Nintendo SNESCategory=ConsoleEmulator=ZSNESVersion=1.51Rating=9.0DownloadUrl=http://www.gamesdbase.com/setupwizard/emulators/download/zsnes.7zRequiredFiles=Website=http://www.zsnes.com/Info=Super Nintendo emulatorTitleText=Nintendo SNESStartPageName=Nintendo SNESStartPageLogo=Nintendo SNESCommand=zsnesw.exe "[ROMPATH]\[ROMFILE]"RomFilter=*.sfcDatabase=[Console] Nintendo SNESConfigFile=[Mapping Off] Exit (Process Close)MapFile=RomPath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\SNES RomsSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Snaps\ImageTitlePath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Snaps\TitleBoxPath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Box ArtCartPath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\CartridgeManualPath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\ManualsControlPanelPath=C:\Assets\Nintendo SNES\ControlsWorkingPath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\ZSNESMapKeys=TrueWaitBeforeKeys=SendKeys=ReplaceDash=FalseReplaceUnder=TrueCapitals=FalseRemoveBrackets=TrueShowDesktop=TrueDebug=FalseAlsoLaunch=OLDatZip=LaunchBefore="E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe"LaunchAfter=ExcludedFiles=CustomBackground=PlayMusic=FalseDontShowInfo=PlaySelectionMusic=FalseSelectionMusicFolder=PCGame=FalseGamesIn7Zips=FalsePlayInScreenSaver=FalseShowMostPlayed=FalseRandomMostPlayed=FalseCDCheck=FalseCDCheckFile=BakSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Snaps\BackgroundVideoSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\SNES\Artwork\Snaps\Video[Emulator_4]lastgame=CDCheckFile=CDCheck=FalseRandomMostPlayed=FalseShowMostPlayed=FalsePlayInScreenSaver=FalseGamesIn7Zips=FalsePCGame=FalseSelectionMusicFolder=PlaySelectionMusic=FalseDontShowInfo=PlayMusic=FalseCustomBackground=ExcludedFiles=LaunchAfter=LaunchBefore="E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe"OLDatZip=AlsoLaunch=Debug=FalseShowDesktop=TrueRemoveBrackets=TrueCapitals=FalseReplaceUnder=TrueReplaceDash=FalseSendKeys=WaitBeforeKeys=MapKeys=TrueWorkingPath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Emulator\fceu-0.98.12.winControlPanelPath=C:\Assets\Nintendo NES\ControlsManualPath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\ManualsCartPath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\CartridgeBoxPath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Box ArtTitlePath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Snaps\TitleSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Snaps\ImageRomPath=E:\Michael\GAMES\My Games\All Games (Files)\NES\RomsMapFile=ConfigFile=[Mapping Off] Exit (Process Close)Database=[Console] Nintendo NESRomFilter=Command=fceu.exe "[ROMPATH]\[ROMFILE]"StartPageLogo=Nintendo NESStartPageName=Nintendo NESTitleText=Nintendo NESInfo=Nintendo NES 8bit emulatorWebsite=http://fceux.com/web/htdocs/RequiredFiles=DownloadUrl=http://www.gamesdbase.com/setupwizard/emulators/download/FCE%20Ultra.7zRating=8.6Version=2.1.5Emulator=FCE UltraCategory=ConsoleSystem=Nintendo NESEnabled=TrueBakSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Snaps\BackgroundVideoSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\NES\Artwork\Snaps\Video[Emulator_5]lastgame=CDCheckFile=CDCheck=FalseRandomMostPlayed=FalseShowMostPlayed=FalsePlayInScreenSaver=FalseGamesIn7Zips=FalsePCGame=FalseSelectionMusicFolder=PlaySelectionMusic=FalseDontShowInfo=PlayMusic=FalseCustomBackground=ExcludedFiles=LaunchAfter=LaunchBefore="E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe"OLDatZip=AlsoLaunch=Debug=FalseShowDesktop=TrueRemoveBrackets=TrueCapitals=FalseReplaceUnder=TrueReplaceDash=FalseSendKeys=WaitBeforeKeys=MapKeys=TrueWorkingPath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\EmulatorControlPanelPath=C:\Assets\Nintendo Game Boy Color\ControlsManualPath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\ManualsCartPath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\CartridgeBoxPath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Box ArtTitlePath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Snaps\TitleSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Snaps\ImageRomPath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\RomsMapFile=ConfigFile=[Mapping Off] Exit (Process Close)Database=[Handheld] Nintendo Game Boy ColorRomFilter=*.gbaCommand=VisualBoyAdvance-1.8.0-511.exe "[ROMPATH]\[ROMFILE]"StartPageLogo=Nintendo Game Boy AdvanceStartPageName=Nintendo Game Boy AdvancedTitleText=Nintendo Game Boy AdvancedInfo=Nintendo Game boy, Game boy color and Gameboy advance emulatorWebsite=http://vba.ngemu.com/RequiredFiles=DownloadUrl=http://www.gamesdbase.com/setupwizard/emulators/download/VisualBoyAdvance.7zRating=9.0Version=1.8.0beta3Emulator=VisualBoyAdvanceCategory=HandheldSystem=Nintendo Game Boy ColorEnabled=TrueBakSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Snaps\BackgroundVideoSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Gameboy Advanced\Artwork\Snaps\Video[Emulator_6]lastgame=Enabled=TrueSystem=Nintendo Game BoyCategory=HandheldEmulator=BGBVersion=1.3.2Rating=8.5DownloadUrl=http://www.gamesdbase.com/setupwizard/emulators/download/bgb.7zRequiredFiles=Website=http://bgb.bircd.org/Info=Nintendo Game boy, Game boy color, Super Game boy emulatorTitleText=Nintendo Game BoyStartPageName=Nintendo Game BoyStartPageLogo=Nintendo Game BoyCommand=bgb.exe "[ROMPATH]\[ROMFILE]"RomFilter=*.gb;*.gbcDatabase=[Handheld] Nintendo Game BoyConfigFile=[Mapping Off] Exit (Process Close)MapFile=RomPath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\RomsSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Snaps\ImageTitlePath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Snaps\TitleBoxPath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Box ArtCartPath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\CartridgeManualPath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\ManualsControlPanelPath=C:\Assets\Nintendo Game Boy\ControlsWorkingPath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Emulator\bgb_1.2MapKeys=TrueWaitBeforeKeys=SendKeys=ReplaceDash=FalseReplaceUnder=TrueCapitals=FalseRemoveBrackets=TrueShowDesktop=TrueDebug=FalseAlsoLaunch=OLDatZip=LaunchBefore="E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe"LaunchAfter=ExcludedFiles=CustomBackground=PlayMusic=FalseDontShowInfo=PlaySelectionMusic=FalseSelectionMusicFolder=PCGame=FalseGamesIn7Zips=FalsePlayInScreenSaver=FalseShowMostPlayed=FalseRandomMostPlayed=FalseCDCheck=FalseCDCheckFile=BakSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Snaps\BackgroundVideoSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Game Boy\Artwork\Snaps\Video[Emulator_7]System=Sega DreamcastEnabled=Truelastgame=CDCheckFile=CDCheck=FalseRandomMostPlayed=FalseShowMostPlayed=FalsePlayInScreenSaver=FalseGamesIn7Zips=FalsePCGame=FalseSelectionMusicFolder=PlaySelectionMusic=FalseDontShowInfo=PlayMusic=FalseCustomBackground=ExcludedFiles=LaunchAfter=LaunchBefore="E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe"OLDatZip=AlsoLaunch=Debug=FalseShowDesktop=TrueRemoveBrackets=TrueCapitals=FalseReplaceUnder=TrueReplaceDash=FalseSendKeys=WaitBeforeKeys=MapKeys=TrueWorkingPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Emulator\Emulators\nullDC_103ControlPanelPath=C:\Assets\Sega Dreamcast\ControlsManualPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\ManualsCartPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\CartridgeBoxPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Box ArtTitlePath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Snaps\TitleSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Snaps\ImageRomPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\RomsMapFile=ConfigFile=[Mapping On] Exit nullDC (Process Close)Database=[Console] Sega DreamcastRomFilter=*.cdi;*.gdiCommand=nullDC_1.0.3_nommu.exe -config ImageReader:DefaultImage="[ROMPATH]\[ROMFILE]"StartPageLogo=Sega DreamcastStartPageName=Sega DreamcastTitleText=Sega DreamcastInfo=Sega Dreamcast emulatorWebsite=http://code.google.com/p/nulldc/RequiredFiles=dc_boot.bin, dc_flash.bin, d3d9.dll, d3dx9_42.dll, msvcr100.dllDownloadUrl=http://www.gamesdbase.com/setupwizard/emulators/download/nullDC.7zRating=8.1Version=1.0.4Emulator=nullDCCategory=ConsoleBakSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Snaps\BackgroundVideoSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Dreamcast\Artwork\Snaps\Video[Emulator_8]CDCheckFile=CDCheck=FalseRandomMostPlayed=FalseShowMostPlayed=FalsePlayInScreenSaver=FalseGamesIn7Zips=FalsePCGame=FalseSelectionMusicFolder=PlaySelectionMusic=FalseDontShowInfo=PlayMusic=FalseCustomBackground=ExcludedFiles=LaunchAfter=LaunchBefore="E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe"OLDatZip=AlsoLaunch=Debug=FalseShowDesktop=TrueRemoveBrackets=TrueCapitals=FalseReplaceUnder=TrueReplaceDash=FalseSendKeys=%{ENTER}WaitBeforeKeys=3000MapKeys=TrueWorkingPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Emulator\gens-win32-bin-2.14ControlPanelPath=C:\Assets\Sega Genesis\ControlsManualPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\ManualsCartPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\CartridgeBoxPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Box ArtTitlePath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Snaps\TitleSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Snaps\ImageRomPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\RomsMapFile=ConfigFile=[Mapping Off] Exit (Process Close)Database=[Console] Sega GenesisRomFilter=Command="Gens.exe" "[ROMPATH]\[ROMFILE]"StartPageLogo=Sega GenesisStartPageName=Sega GenesisTitleText=Sega GenesisInfo=Sega Genesis, Sega CD, Sega 32x emulator.Website=http://gens32.emubase.de/RequiredFiles=DownloadUrl=http://www.gamesdbase.com/setupwizard/emulators/download/Gens32%20Surreal.7zRating=8.4Version=1.86Emulator=Gens32 SurrealCategory=ConsoleSystem=Sega GenesisEnabled=Truelastgame=BakSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Snaps\BackgroundVideoSnapPath=E:\Michael\GAMES\My Games\All Games (Files)\Sega Genisis\Artwork\Snaps\Video[Emulator_9]Enabled=FalseWaitBeforeKeys=SendKeys=LaunchBefore=configFile=CustomBackground=ControlPanelPath=[EmulatorGroup_1]Enabled=FalseSTARTPAGENAME=TITLETEXT=StartPageLogo=ShowUnderEmulators=TrueEmulators=[Emulator_10]Enabled=FalseconfigFile=CustomBackground=[Emulator_11]Enabled=False[Plugin_12]Enabled=TrueName=Xpadder Plugin.dll[LIST_SETTINGS_20_EMU_2]displaybackgroundimage=Snapdisplaybackgroundimageemu=Falsedisplaystartpagemenuimage=Falsedisplaystartpagemenuimage2=Falsedisplaystartpagelistnotforcebaksnap=Falsedisplayimagelist=True Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 16, 2012 Author Share Posted October 16, 2012 Thanks again for the feedback guys. Sorry I hadn't had a chance to chime in for a couple of days; I had a bunch of family in town over the weekend. Thanks for reporting the image caching issue Felix. It turns out you were absolutely right in that there is an issue with the way images are being cached persistently between SwitchDisc sessions. I'll be hopping on the resolution to that little issue very soon.Felix just noticed something that may be causing you a problem with your Launch Before settings. You've got the Launch Before exe sitting in a directory with quite a few spaces, but it doesn't appear to have been enclosed in double quotes.E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exewhereas elsewhere in your config it appears like this:[QUOTE]E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe[QUOTE]Don't know if that's causing you any issues, but may be worth investigation. Regarding SwitchDisc, you'll likely want to send two separate parameters, rather than one string parameter. So this:E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\Switchdisc (GameEx launch before).bat “[WORKINGPATH]\[ROMFILE]”becomes this:start "" "E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\Switchdisc (GameEx launch before).bat" “[WORKINGPATH]" "[ROMFILE]”I included the start directive in the command, as I seem to remember that this seems to help in the execution of batch files. Essentially this will allow the batch script to run asynchronously, in that the command window won't hang around waiting for the batch operation to complete (i.e. as long as the application is running). That may also be worth having a look at.I'll make a good faith effort at getting a SwitchDisc config for ePSXecutor put together. I probably haven't done an outstanding job communicating the config plan I have in mind for ePSXecutor. I'll probably be able to bang out a config a lot quicker than I'll be able to describe how to do so. As much as I like ePSXecutor, I only tested SwitchDisc against vanilla ePSXe during the development of the app (although the omission certainly wasn't intentional, honestly I just didn't think to test it in that way). Having said that, I'm more concerned with addressing bug reports (currently the image caching thing), since they have bigger potential impact to the overall usability of the application.Thanks again everyone. Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 17, 2012 Share Posted October 17, 2012 Well, I think I’ve made progress. I’ve had to retreat a little to do it, though.I’m taking a minimalistic approach to this. I decided to move and rename the run before/after commands. They are in the GameEx directory now and are without spaces, so I don’t have to worry about quotes anymore!SwitchdiscBefore1.bat"E:\Michael\Projects\Code writing, GUI, and batch to exe\PS3 DS3 Tool Enabler (GameEX Launchbefore).exe""E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\SwitchDisc-1.0.1\SwitchDisc.exe" -w "%~1" -f "%~2"EndSwitchdiscBefore2.bat"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\SwitchDisc-1.0.1\SwitchDisc.exe" -w "%~1" -f "%~2"EndSwitchdiscAfter.bat"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXecutor frontend\SwitchDisc-1.0.1\SwitchDisc-1.0.1\SwitchDisc.exe" -qEndI had 2 trains of thought:1) Set the also launch to SwitchdiscBefore2.bat, launch before to my DS3ToolEnabler.exe, and launch after to SwitchdiscAfter.bat. chcp 65001E:CD "E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\EPSXE 1.5.2"C:\GameEx\CONFIG\Switchdisc\DS3ToolEnabler.exe"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\EPSXE 1.5.2\ePSXeCutor.exe" "Final Fantasy IX (Disc 1)"C:\GameEx\CONFIG\Switchdisc\SwitchdiscAfter.bat2) Leave the also launch blank, set launch before to SwitchdiscBefore1.bat, and launch after to SwitchdiscAfter.bat.chcp 65001E:CD "E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\EPSXE 1.5.2"C:\GameEx\CONFIG\Switchdisc\SwitchdiscBefore1.bat"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\EPSXE 1.5.2\ePSXeCutor.exe" "Final Fantasy IX (Disc 1)"C:\GameEx\CONFIG\Switchdisc\SwitchdiscAfter.bat #2 above looks right to me. Even the behavior of the emulator seems correct. Let me explain. When FF9 is launched from within GameEx my DS3ToolEnable.exe runs first, then SwitchDisc runs in the taskbar, and there is no open command prompt. That means SwitchdiscBefore1.bat completed and closed. Nothing else happens until SwitchDisc exits, and then GameEx comes back. When I enter the SwitchDisc GUI the name of the game I was trying to run, “Final Fantasy IX (Disc 1)”, has replaced the name I gave the disc, “FF9 (Disc 1)”. What that tells me is that GameEx has completed the launch before command correctly and that it is now up to SwitcDisc to accept the “rompath/romfile” form GameEx and launch the game. SwitchDisc sees the game GameEx tried to load and is displaying its real name, as if it’s running, but failed to execute the “Final Fantasy IX (Disc 1).lnk” shortcut to run the game. I still haven’t got that right yet but I think we are on the right track.Assuming the above steps are correct:1) What are the commands that switchdisc needs to receive from GameEx’s launch before command line? “[WORKINGPATH]" "[ROMFILE]”, “[WORKINGPATH]\[ROMFILE]”, etc.2) What are the necessary commands within Switchdisc to handle the incoming command from GameEx and to launch ePSXecutor shortcuts?3) Am I right that SwitchDisc takes the place as the launcher for GameEx? If so I think we almost have it. Quote Link to comment Share on other sites More sharing options...
nullPointer Posted October 17, 2012 Author Share Posted October 17, 2012 Hi Felix,Sounds like your really getting there. I'll just pop in to address your questions.1) What are the commands that switchdisc needs to receive from GameEx’s launch before command line? “[WORKINGPATH]" "[ROMFILE]”, “[WORKINGPATH]\[ROMFILE]”, etc.Honestly, the easiest way starting out will probably be to send no additional parameters to SwitchDisc. This will mimic what happens when you double click the application icon to start it (i.e. your entire configuration is loaded into memory). The only purpose the parameters serve is to help SwitchDisc narrow down the specific game you're playing. The [WORKINGPATH] parameter identifies the emulator, and the [ROMFILE] identifies the loaded disc (and the multi-disc set by association). Under ideal circumstances these parameters will enable SwitchDisc to selectively load only the multi-disc set related to the disc you're playing at any given time. Ultimately neither of these parameters are necessary though, and in this case let's just get it running before handling any additional parameters. So the command will look like this:SwitchDisc.exe2) What are the necessary commands within Switchdisc to handle the incoming command from GameEx and to launch ePSXecutor shortcuts?3) Am I right that SwitchDisc takes the place as the launcher for GameEx? If so I think we almost have it.These two questions are related, so I'll answer them in tandem. SwitchDisc is neither a launcher nor a wrapper in the sense that it implies launching emulators from a 'cold start'. It is capable of launching games, but the implicit assumption SwitchDisc makes is that the emulator is already running at the time a disc swap operation occurs. So in this model, GameEx is still the launcher (since it launches the emulator from a cold start), and SwitchDisc is launched as a supporting application. SwitchDisc doesn't even verify that any given emulator is running during a disc swap operation, meaning the disc swap is performed 'blindly'.Regarding ePSXecutor the SwitchDisc operation will need to take place as a batch operation in the SwithcDisc command since there are multiple commands that need to be run.SwitchDisc CommandDiscSwap.bat "[DISCPATH]" "[DISCFILE]"DiscSwap.battaskkill /im ePSXe.exe"%~1\%~2"That should be pretty close to the final SwitchDisc command/batch. Due to the complexity of this particular setup, I'm working on enhancements to simplify situations like this. Ideally I'd like batch scripts to be a last resort in terms of the SwitchDisc command, as it adds a substantial layer of complexity. Quote Link to comment Share on other sites More sharing options...
RIP-Felix Posted October 18, 2012 Share Posted October 18, 2012 Runitgame: Successful game launch. (No before/after/also)chcp 65001E:CD "E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXe.1.6.0""E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXe.1.6.0\ePSXeCutor.exe" "Chrono Cross (Disc 1)"Runitgame: Successful game & DS3Tool launch. (DS3ToolEnabler.bat = run before, no after/also) chcp 65001E:CD "E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXe.1.6.0"C:\GameEx\CONFIG\Switchdisc\DS3ToolEnabler.exe"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXe.1.6.0\ePSXeCutor.exe" "Chrono Cross (Disc 1)"Runitgame: Successful game, DS3Tool, & Switchdisc launch. (DS3ToolEnabler.bat = run before, SwitchdiscAlso.bat = run also, no run after)chcp 65001E:CD "E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXe.1.6.0"C:\GameEx\CONFIG\Switchdisc\DS3ToolEnabler.exe"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXe.1.6.0\ePSXeCutor.exe" "Chrono Cross (Disc 1)"Runitgame: Successful game launch & DS3Tool Launch. Unseccessful Switchdisc launch; I believe it started and closed immediately, not waiting for ePSXe to be exited first. I assume that the launch after command was sent right after the also, starting and closing switchdisk immediately.(DS3ToolEnabler.bat = run before, SwitchdiscAlso.bat = run also, SwitchdiscAfter.bat = run after)chcp 65001E:CD "E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXe.1.6.0"C:\GameEx\CONFIG\Switchdisc\DS3ToolEnabler.exe"E:\Michael\GAMES\My Games\All Games (Files)\PSone\ePSXe Emulator\ePSXe.1.6.0\ePSXeCutor.exe" "Chrono Cross (Disc 1)"C:\GameEx\CONFIG\Switchdisc\SwitchdiscAfter.batI think I will just wait for your documentation and enhancements at this point. I think I am just spining my wheels here. I need to see the settings for a working example. I kinda jumped into an advanced setup, but this will be the most convionient way to properly emulate Playstation games; well, once it's setup correctly.Null, maybe it would be best if you attempt to get SwitchDisc working with your ePSXecutor shortcuts, and make a section devoted to this in the documentation with a typical example. Then you can debug the issus imediatly, without this back and forth. I suspect there's an issue with the GameEx config we haven't identified yet, but I wipe my Inept hands of it. Good luck, and God speed! I'll be eagerly awaiting the results. Nice job so far! 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.