Sunnyhat Posted January 17, 2020 Share Posted January 17, 2020 (edited) Introduction After figuring out how to implement PS2 games into my Launchbox library properly i thought i'd share my findings. This is a slightly different approach than the guide by Zombeaver. It has a bit more manual configuration work but it's also more elegant in that it does not require a third party tool or individual command line options. It still features individual configurations (and mem cards) for each game. Step 1 - Setting up your PCSX2 installation: You should be using one of the experimental 1.5.0 builds at this point. The last stable release is 4 years old now and simply outdated. Provide Bios file to Bios directory and start PCSX2 Misc > Uncheck "Show Console" Config > Memory Cards: Convert your memcards to folders and make sure the "Automatically manage saves based on running game" checkbox is tickedSet up like this PCSX2 will automatically create new memcards based on the running game. You don't have to manage mem cards anymore. Config > Emulation settings - GS Window: Enable "Default to Fullscreen" Config > Emulation settings - GS Window: Enable "Always hide mouse cursor" Config > Emulation settings - Speedhacks: Choose Preset 3 Config > Emulation settings - Speedhacks: Now disable Presets Config > Emulation settings - Speedhacks: Disable MTVU Option Config > Controllers > Plugin Settings: Set up your controller of choice in Lilypad plugin settings Config > Video > Plugin Settings: Feel free to adjust Internal Resolution to your liking(Thanks to Suhrvivor for pointing out OpenGl as the better default) Config > Video > Plugin Settings > Shader Configuration (optional)Recommended Shader options: PIXEL_VIBRANCE & TEXTURE_SHARPEN Step 2 - Setting up PCSX2 in Launchbox Go to Menu > Tools > Manage Emulators > Add Select PCSX2 from the Emulator Name dropdown menu Point the Emulator Application Path at your PCSX2 executable Use the following Default Command-Line Parameters: --fullscreen --portable --cfgpath=inis\%gameid%The %gameid% variable will tell launchbox to parse the game's ID from the XML data and insert it into the command line. The --cfgpath=inis\ infront of this will result in a unique subdirectory in your PCSX2's ini folder where the configuration for each specific game will be saved. Unfortunately %gameid% is the only available parameter to use for this to work. It would be nice if there was a parameter to just use the rom's filename (twice) but launchbox doesn't have it right now. Go to the Running Autohotkey Script tab and remove the ESC > Close script for now.. Step 3 - Import and configure your PS2 games Import your PS2 game image as rom file and choose PCSX2 as emulator. Now try to start the game once.You will get an error message like this. At this point PCSX has already created a new subfolder in the inis directory based on the %gameid% variable. But since it is empty, you are greeted by the config wizard. Choose cancel and navigate to your ..\PCSX2\inis directoryHere you can see an example for the auto-created ini folder. It can be identified by being the newest folder and only containing these two files. Now copy all .ini files from your inis folder to the subdirectory and overwrite when prompted.We have now supplied this game with the chosen default settings. Start the game again from Launchbox. This time it should run with your chosen default settings. Now it is time to finetune your game config. As a source of information for game configs i used each game's entry in the PCSX2 wiki. Here you can find detailed information about most game's issues and their known workarounds. Alternatively, you can use the PCSX2 Config Spreadsheet Zombeaver provides in his guide. Press ESC, make adjustments and hit File > Resume to test the settings. At this point making changes on the fly like this is very reliable in PCSX2. Once you are pleased with the result, just close PCSX2. Your changes will be saved to the game's individual config. Now repeat Step 3 for all your PS2 games (I know ... *yawn*) Step 4 - Finalizing When you have all your games imported and configured there are 2 more steps to make integration into Launchbox perfect. Change the Default Command-Line Parameters of your PCSX2 Emulator in Launchbox to: --fullscreen --portable --nogui --cfgpath=inis\%gameid% By adding --nogui each game will start directly without invoking the main PCSX2 window. Go to the Running Autohotkey Script tab and restor the ESC > Close script as follows: (Thanks to Retro808 for providing a cleaner close command) ; This section closes PCSX2 when pressing Escape $Esc:: { WinClose, ahk_exe pcsx2.exe } This will restore the functionality of the ESC key to quit the PCSX2 process. This is especially important if you are using the --nogui parameter because using the (regular) ESC in PCSX2 with --nogui and disabled log window will leave you with no visual indication that PCSX2 is still running. And you will have to kill the process from the task manager every time. Afterthoughts You may have guessed it by now, with the gameid being cryptic as they are, the only sensible way to re-adjust your games is to undo Step 4, make the corrections ingame and then reapply it. That is the one gripe i have with this approach at the moment. But it's really a minor inconveniance. The result is a really easy import process on the Launchbox side and still getting those per/game configs & saves. So i am very happy. Let me know what you think and please share ideas for improvement. Edited January 18, 2020 by Sunnyhat 1 Quote Link to comment Share on other sites More sharing options...
JoeViking245 Posted January 17, 2020 Share Posted January 17, 2020 Very nice! I didn't know that %gameid% was even available to pass as a parameter. Definitely an awesome means for pointing to the individual game configs without using a script, plugin or hand typing in per game custom command lines. Though something like %FileNameWithoutExtensionAndPath% would be sweet. Thanks for this @Sunnyhat! 1 Quote Link to comment Share on other sites More sharing options...
Suhrvivor Posted January 18, 2020 Share Posted January 18, 2020 I don't recommend using save folders since it's a bit buggy. For example, I got a Metal Gear Solid 3: Substance (USA) save file corrupted using folders. Some other games Like X-files Resist or Serve will always fail to find any save file from a previous session. Also, I'd recommend using OpenGL (Hardware) as your default video renderer, it's more accurate than any Hardware DirectX renderer. The latter is missing a lot of shadows and effect in a lot of games. Quote Link to comment Share on other sites More sharing options...
Retro808 Posted January 18, 2020 Share Posted January 18, 2020 I also recommend not using that AHK posted. It is a hard close command and any emulator that saves data like save states on close it will not save correctly. This may not affect pcsx2 but I still recommend no longer using that code. Recommend something like below. $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} } or by specifically calling the exe. $Esc:: { WinClose, ahk_exe pcsx2.exe } Quote Link to comment Share on other sites More sharing options...
Sunnyhat Posted January 18, 2020 Author Share Posted January 18, 2020 1 hour ago, Retro808 said: I also recommend not using that AHK posted. It is a hard close command and any emulator that saves data like save states on close it will not save correctly. This may not affect pcsx2 but I still recommend no longer using that code. Recommend something like below. $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} } or by specifically calling the exe. $Esc:: { WinClose, ahk_exe pcsx2.exe } Thanks for this. If you don't mind i'll use it in the Post. PCSX2 doesn't care afaik (FS-UAE does ..) but it's really cleaner this way. 3 hours ago, Suhrvivor said: I don't recommend using save folders since it's a bit buggy. For example, I got a Metal Gear Solid 3: Substance (USA) save file corrupted using folders. Some other games Like X-files Resist or Serve will always fail to find any save file from a previous session. Also, I'd recommend using OpenGL (Hardware) as your default video renderer, it's more accurate than any Hardware DirectX renderer. The latter is missing a lot of shadows and effect in a lot of games. I honestly didn't have problems with save folders so far. And been using them a lot. But thanks for the warning. Will keep a lookout. As far as renderers go, i still start with D3D out of habit. But you're probably right that OpenGL is the better default. I'll adjust the post. Thanks. Quote Link to comment Share on other sites More sharing options...
Retro808 Posted January 19, 2020 Share Posted January 19, 2020 23 hours ago, Sunnyhat said: Thanks for this. If you don't mind i'll use it in the Post. PCSX2 doesn't care afaik (FS-UAE does ..) but it's really cleaner this way. No worries. That older code we used a lot then a couple members discovered it messed with some emulators the do save states on close. So one of the members that is knowledgeable in AHK shared a better way to close emulators. So anytime I see that other code I try to recommend a better solution. Feel free to use, I do not own it in anyway and would rather see people using a cleaner exit code. 1 Quote Link to comment Share on other sites More sharing options...
Bengtakevarg Posted July 11, 2023 Share Posted July 11, 2023 Hi! I cannot get the --nogui option to work in psx2 nightly v.1.7.4722. I put the text in the Default Command-Line Parameters but that results in unknown parameter. Quote Link to comment Share on other sites More sharing options...
Sunnyhat Posted July 11, 2023 Author Share Posted July 11, 2023 Well this guide is completely outdated now since PCSX2 QT supports per/game configurations natively. Also the command lines have changed (see below). BAsicly drop one dash for each, and the --cfg paramter doesn't exist anymore. 1 Quote Link to comment Share on other sites More sharing options...
marcosgaming Posted March 14 Share Posted March 14 Hi, i have last version of PCSX2 qt but doesn't recall profiles in LaunchBox. I not use any command. While in PCSX2 for any games works correctly any profiles. In LB maybe is used default profile, always ?? Maybe i forgot any box checked in emulator ?? Or why ??? Thanks 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.