Jump to content
LaunchBox Community Forums

Your Friendly A.I Overlord

Members
  • Posts

    662
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Your Friendly A.I Overlord

  1. This could be another possibility. 😁 But IMO "Exit" should be renamed to "Exit BigBox" (or "Close BigBox") to avoid confusion.
  2. Actually the "Close the Active Window" button combo doesn't do anything for me if BigBox is the active window. It does not close BigBox for me.
  3. If you mean holding the Guide button for a certain duration, then no, afaik that isn't possible in LaunchBox / BigBox. You can set up BigBox to use a button combination instead of a single button. You're much less likely to accidentally hit a button combination. In BigBox > Options > Controller Mappings > Close the Active Window, enter a button combination. I use the Xbox Guide button + Start. ( Button 11 + 8 ) But you can also look at this: If you use exit scripts to exit out of emulators that send Alt + F4, like: Send !{f4} replace that with: WinClose, ahk_exe {{{StartupEXE}}} This closes the emulator specifically and not BigBox.
  4. Copy all necessary files to the folder with xemu.exe. Then open xemu.toml and delete all the paths so that only the filenames remain. [sys.files] bootrom_path = 'mcpx_1.0.bin' flashrom_path = 'Complex 4627 Retail v1.03 (1024Kb).bin' eeprom_path = 'eeprom.bin' hdd_path = 'xbox_hdd.qcow2' To verify, open Xemu > Machine > System and check if the filenames show up. (Without file paths.) *Edit* @shenglong I just realized, seeing as you use copies of xemu.toml, make sure they are in the emulator folder as well and that they also have all paths removed. Now Xemu should be portable. But beware. In my previous example for a LaunchBox custom command-line I used -config_path with an absolute path. If you put all custom .toml's in your Xemu folder, you could use a relative path in the LaunchBox custom command-line as well. Example: -full-screen -dvd_path %romfile% -config_path "Halo.toml"
  5. Looking in the documentation on the Xemu website there are no command-line parameters for resolution scaling. Although there is a parameter (-config_path), which you can use to tell Xemu to use an alternative config file (xemu.toml). Make a copy of xemu.toml and rename it to, for example, the name of your game. Open that copy of xemu.toml with an text editor and set your desired resolution scale factor from 1 to 10. [display.quality] surface_scale = 1 Example for LaunchBox custom command-line parameter: -full-screen -dvd_path %romfile% -config_path "E:\LaunchBox\Emulators\Microsoft Xbox\xemu\Halo.toml" Make sure that -config_path points to your location of the copy of xemu.toml and is between double quotes.
  6. If your game is in .bin / .cue file format, make sure you import the .cue file into LaunchBox.
  7. And in LaunchBox, if you right click a game > Edit > Edit Metadata/Media > Launching tab, what is the path to your game?
  8. And if you right click a game > Edit > Edit Metadata/Media > Emulation tab, does the emulator name exactly matches with the name with which you set up Mame in LaunchBox? And while you're at it, double check if the path to mame.exe is absolutely correct. Sometimes people have multiple copies / versions of Mame and inadvertently point to the wrong mame.exe.
  9. Do you have "Extract ROM archives before running" unchecked?
  10. If you mean an older intel I5 upgrading the cpu won't get you very far. In the past intel only supported 2 generations per motherboard model / cpu socket. In that case the best you can do is go from a I5 to a i7 of the next generation. But that's much less of a leap than you think. (Not to mention you should also consider if your current cpu cooling solution is still sufficient.)
  11. Out of curiosity I downloaded both files directly from Github using Firefox and they extracted without errors using 7-zip. Maybe this is not very helpful to you, but it's probably not Github that is the cause of your failing downloads.
  12. No. Like neill9000 said, you have a disc image. You have to mount the disc image to a virtual cd / dvd drive. https://itigic.com/how-to-mount-a-bin-cue-or-mdf-disk-image-in-windows-10/ Once mounted, in windows explorer, it would look like you have a disc inserted in a cd / dvd drive. Then go to that cd / dvd drive and look for something like setup.exe to install the pc game like normal. But be warned. Older pc games might not run in Windows 10 / 11. *Edit* To add, Also like neil9000 said, after installation, you probably need to copy over the games' exectuable with a cracked one. Maybe your download came with one. Else you have to look for it online.
  13. Yuzu does not need a script to go to fullscreen. You can add the command-line parameters: -f -g For exiting Yuzu with an exit script force closing with "Process, Close" is not recommended. Use the following script instead: $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} }
  14. As I understand it, the emulator doesn't matter. But indeed, it does not copy the CHD's. (Naomi 1/2, System SP.)
  15. JoeViking245 made a LaunchBox plugin to automate this for you. (Although it won't select the CHD's.)
  16. I do the same. In the past I used programs as AutoHDR and HDRswitch to toggle HDR on and off before starting and after closing a HDR supporting pc game via command-line. But I found using the windows HDR hotkey in an AutoHotKey script works just as well. (This for me is quite easy because I already start all my pc games from AutoHotKey scripts.) SendInput #!b BTW. I now have 3 times as much pc games that work quite well with Windows AutoHDR than I have with native HDR support.
  17. If I may tag @JoeViking245 I myself use the LaunchBox / BigBox controller mapping for exiting games, so I don't know how to do that with 2 keys. Maybe JoeViking245 knows?
  18. Not a direct answer to your question, but considering you are already using RetroArch, you're better off using the Flycast core for Dreamcast, Atomiswave, Naomi and Naomi 2. Demul is pretty much dead. And as far as exit scripts go, I would avoid using Alt + F4 exactly for the reason you're describing. In an exit script it's much better to specify exactly which window should be closed. Like: WinClose, ahk_exe demul.exe or WinClose, ahk_exe {{{StartupEXE}}} *Edit* To give an example of an exit script for Demul, I have the following exit script that exits Demul with Escape in LaunchBox > Tools > Manage > Emulators > Demul, in the "Running Script" tab: $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} } This only closes Demul and nothing else.
  19. Also uncheck "Remove file extension and folder path".
  20. - In emulator.ini in the m2emulator folder and under [RomDirs], have you set the path to your Model 2 roms folder? - M2emulator hasn't been updated for over ten years and expects roms from that time. Some roms from newer / more recent Mame romsets do not work. Either make sure your Model 2 roms are at least 10 years old or google / download the missing files and add them to the game 's zip file and re-zip. - In LaunchBox > Tools > Manage > Emulators > m2emulator, make sure you have the following settings: Note: make sure "Extract ROM Archives Before Running" is unchecked. For exiting games copy / paste the following script in the "Running Script" tab: $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} }
  21. I would first try to run it without elevated rights. Open your game 's corresponding .xml file located in the TeknoParrot\UserProfiles folder with a text editor. Look for the line: <RequiresAdmin>true</RequiresAdmin> and change it to: <RequiresAdmin>false</RequiresAdmin>
  22. I meant for games that have their own launcher like the Borderlands and Tomb Raider games. And like I said: in the game 's Video Settings, set them up to use Fullscreen Exclusive mode because that works best with the LaunchBox Startup Screens.
  23. Oh yeah, one extra tip that can help sometimes with the LaunchBox Startup Screens. Look up your game on PCGamingWiki. Some games use command-line parameters to skip launchers or intro-video's to launch straight into the game.
  24. In the settings of your games themself, set them up to use Fullscreen Exclusive mode as much as possible (instead of them using Borderless Fullscreen mode). Then in LaunchBox ,set up your game 's Startup Screen with "Hide all Windows that are not in Exclusive Mode" ticked. Unfortunately some games only use Borderless Fullscreen and do not have an option to use Exclusive Fullscreen mode, so then "Hide all Windows that are not in Exclusive Mode" must be unticked. But you should always adjust the "Startup Load Delay" slider, in the the Startup Screen settings, to the time it takes for your game to go fullscreen.
  25. 👍But keep in mind, you can't enable that setting for every game! Just try what settings and durations work on a per game basis.
×
×
  • Create New...