Jump to content
LaunchBox Community Forums

skizzosjt

Members
  • Posts

    698
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by skizzosjt

  1. from checking out my setup last night I originally setup an AHK script to launch Teknoparrot games. but due to how it works, it would need the file name to be proper, such as "contra.xml" and not "contra.xml.xml" so only the couple games that needed this treatment due to identical names are being launched directly by the emulator. so I did the same, I have two "emulators" in my emulator list to launch TeknoParrot based games
  2. if everything as in all "navigation sounds", as in l/r/u/d and select and back inputs, then yes that's how I would assume it would work too.
  3. here is what I did for emulator setup and what I did is make a more of less second profile file, a "dummy" if you will. I added the extension so it is written out twice, for ex "contra.xml.xml". since I selected the checkbox to remove the extension, the command line syntax for TeknoParrot is still valid as it will actually still include the intended extension, the first one, while removing the 2nd one due to the checkbox. this in turn resolves the media mixup dilemma due to the file name per LB logic is really "contra.xml" and that no longer will match up with the expected "contra" string. so you will need to create the bogus file. it can be completely empty, we are just using it for this file name work around as TeknoParrot loads the profile file in \TeknoParrot\UserProfiles for it's default file path. since we are just sending the file's name, it will instead still look there and doesn't really use the contents of the file we are pointing to.
  4. I noticed same exact behavior when I have previously messed around with attract mode. going into a category, platform or playlist, as well as leaving a category, platform or playlist both create the sound despite navigation sound being off. so seems it only turns off the sounds as it rolls through selections within a category, platform or playlist. but not when changing between them. I would think it's just how it was implemented. making a distinction between navigation (up/down/left/right) vs button presses (back or select). they disabled the up/down/left/right inputs from creating sound, but allowed the back or select inputs to continue making sound one could certainly make an argument for the button presses to not make a sound too, as they do technically still navigate throughout the frontend.
  5. I went through the same song and dance with this. Media would be duplicated. Worse, when I went to for example delete a video I would assume it is deleting the video for a single game....but two games are attached to the same file it would have seemed. Just as nietzsche666 suggests, the old school game videos also end up also attached to the new game versions, I saw the same behavior. So, as I delete the old school arcade video from the newer games thinking there would be two instances of the video in the video folder, there was not. It was still just one so I deleted the file I wanted to keep, I just was trying to remove wrong media mixed up between the games. It was quite the musical chairs kind of situation for a hot min. I did manage to sort this out for the two games this occurred to me with, Contra vs Contra Evolution and Rampage vs Rampage (2018). I'll have to check what I actually did to resolve it though and let you know
  6. glad this thread was made since I would've never known it happened. so I just gave it a watch. it was entertaining, thanks for sharing all the stories! it was on youtube I first heard of LaunchBox. think I was checking out arcade stuff and they kept talking about "frontends" and I had to look that up because I never heard of the term at the time despite doing emulation since the Windows 98 era. when I did start using one it was Hyperspin though, and there were two things that sucked me in over from HS to LB. mainly how easy it was to get media and info setup thanks to the games database. and the other was the impression development is in a continuous improvement mode and things can only get better, contrary to HS which was stagnant at that point. so, it was all that hard work that gave me the good impression, and it was warranted! here's to another decade of success! cheers! 🍻
  7. LB will change the game directory for a platform to the last used directory during an import.....this is GREAT when you have a system/platform than can have all files in a single folder. But for ones that have a folder structure to it, such as individual games going into individual folders, it's going to list it like you described. It's doing the same thing, changing the path to the directory that was used during import. This is BEYOND annoying to me because I have a couple platforms that use files on a separate disk. So if I accidentally try to edit these platforms when the disk isn't connected LB just crashes with an error it couldn't write to the folder that is designated as the game directory I have movies, TV shows, and lots of Windows based games on disks that are not on the same disk as my LB/BB install. So after I got everything imported I changed them manually to a relative path so it wouldn't give me that error again. Though if I were to add anything new to them it would end up changing to that directory that was used during import....then I gotta manually edit again. Just showing this so you know where those link up. It's the game directory So to answer your question specifically....there is nothing to worry about. You're situation is fine as far as I can tell because it appears everything you have is on same disk, so can always use relative paths. Mine issue is a little more unique and I don't think is same as your issue. But wanted to explain that it could lead to problems if you have stuff on separate disks and they are not always connected.
  8. hi @PlatRunX and welcome to the forum! I've never used these before but am familiar with the emulator. After giving them a quick test drive I can confirm they work fine. So I would have to think you are not using proper syntax. Index in this context is a common way to differentiate between iterations of something. PCSX2 offers 10 save states. So index will direct which specific save state to load. For ex "-state 1" will load save state #1 Are you loading the game with the same command line? You need to tell the emulator to run, what game to open, and then any optional parameters. In this case you want to load a save state. We can also include other common parameters like the -nogui and -fullscreen if that is desired Here are two examples I used and worked fine. This one is for the save states, you use the "-state <index>" syntax pcsx2-qtx64-avx2.exe "D:\Arcade\ROMS\Sony Playstation 2\Crash Bandicoot - The Wrath of Cortex (USA) (v1.01).chd" -state 1 This one is for the resume save states, you need to use the "-statefile <filename>" syntax because these do not get designated a specific "slot #" so we must specify the file name as is requested pcsx2-qtx64-avx2.exe "D:\Arcade\ROMS\Sony Playstation 2\Crash Bandicoot - The Wrath of Cortex (USA) (v1.01).chd" -statefile "D:\Arcade\Emulators\PCSX2\v1.7.4107\sstates\SLUS-20238 (103B5706).resume.p2s" Alternatively you could even use the statefile parameter to load up the save states that are in a numbered slot, but as you can see that would take having the full path to the file so it's not as convenient as just being able to specify the save state slot # instead. For giggles, here is an example of that pcsx2-qtx64-avx2.exe "D:\Arcade\ROMS\Sony Playstation 2\Crash Bandicoot - The Wrath of Cortex (USA) (v1.01).chd" -statefile "D:\Arcade\Emulators\PCSX2\v1.7.4107\sstates\SLUS-20238 (103B5706).01.p2s To keep stuff like the no GUI and fullscreen parameter in use, add those to the end of the command, for ex pcsx2-qtx64-avx2.exe "D:\Arcade\ROMS\Sony Playstation 2\Crash Bandicoot - The Wrath of Cortex (USA) (v1.01).chd" -state 1 -nogui -fullscreen pcsx2-qtx64-avx2.exe "D:\Arcade\ROMS\Sony Playstation 2\Crash Bandicoot - The Wrath of Cortex (USA) (v1.01).chd" -statefile "D:\Arcade\Emulators\PCSX2\v1.7.4107\sstates\SLUS-20238 (103B5706).resume.p2s" -nogui -fullscreen pcsx2-qtx64-avx2.exe "D:\Arcade\ROMS\Sony Playstation 2\Crash Bandicoot - The Wrath of Cortex (USA) (v1.01).chd" -statefile "D:\Arcade\Emulators\PCSX2\v1.7.4107\sstates\SLUS-20238 (103B5706).01.p2s -nogui -fullscreen
  9. great, thanks again!
  10. Thank you for the explanation. To clarify for me, is PDF the only file extension currently treated as a document or are there others? If so, I'm wondering what other file extensions are treated like a document?
  11. For what it's worth, I import Steam games and do not have any "Front" folder. I'm still on 13.5 though. so maybe something new in 13.6? hmmm......going to update now and find out for sure! nope, no cigar. I still have no "Front" folder in Windows platform, or any platform at that. Tried removing and reimporting a game and downloading media again to see if that would do the trick, no new folders generated though. I think that Front folder business sounds funny even if no problem is currently presenting itself This is a new feature that was just rolled out on this version, 13.6. It can be found in Options > General > Automated Imports Otherwise the traditional way required the user to enter in their Steam custom URL and password in order to link their Steam account into LB in Options > Integrations > Steam So now I would wonder if the Front folder existing has anything to do with this automatic imports option being enabled? OK just tried that, no new folder created anywhere.
  12. For wondering how to manually put a file into Media > Additional Documents Looks like you just need to have those files be PDF format? I have for instance a couple PDFs for GTA2, the game manual, and the game map. I've named them both as I see fit, for ex "Grand Theft Auto 2 - Game Map.pdf" and added them as an additional app. They end up being a selection in Additional Documents though and do NOT actually show up under Additional Applications. Their name can be whatever you want file name wise since it's manually being linked up. Their name displayed in the menu is what you use for their "Application Name" in the additional app window. I think this because if I were to change the extension of these PDF files to anything but PDF, the file ends up in the Additional Application menu rather than the Additional Document menu. So seems like LB says "hey a PDF....you go over here instead" and then other file types go to Additional Applications I also made a third file which is just a 2nd copy of the GTA2 Manual PDF. This one I name accordingly being the game's title since that is normal link that LB looks for. Like what Retro has mentioned, doing it like this will make the doc designated as the game's manual and can be easily accessed with a hotkey. You can still access the other additional docs from LB/BB Pause Screen if you have that enabled.
  13. Joe or someone would be able to correct me if I am wrong, but I believe all the images that display in LaunchBox's categories/platforms/playlists are sized down cached versions of the full size image. the full size image is what is displayed when you use the "view image" button to see it in full screen. the refresh button is supposed to, well, refresh that cache folder so it would update the image to the new image you assigned. something is being stubborn for sure if it doesn't update when you have tried I think every step I've ever had to take to get an image to refresh. reinstalling a previous version over the current one is an easy troubleshooting step, in my opinion. you can then return to 13.6 by reinstalling that version over the install again if you want to return to it. doing reinstalls over an existing install will not impact your settings or library
  14. OK so sounds like you know how all that stuff is connected then. What you describe does sound strange! If closing and reopening LaunchBox doesn't do anything either, then this possibly could be a bug. Not being able to select an image on your PC instead of using one of the images from the database that is downloaded through LB sounds even more frustrating in my opinion (I use many custom images). You could try reinstalling v13.5 over your current setup to rollback to v13.5 and see if the issues goes away? If it does go away, then you would have to reinstall v13.6 over that v13.5 instance to make sure that the issue returns in v13.6. That would prove the program version is related to the issue. Or make a separate instance of v13.6 and setup just one system to see if the issue continues or not? If it goes away that might prove you had a funny setting giving you issues, as settings would have returned to defaults on a fresh separate install of the program. I haven't been doing the betas the last couple versions so I'm not sure if anyone else has reported similar issues but those would be good troubleshooting steps to narrow down some variables. I have not experienced this issue, but I'm still on v13.5.
  15. You likely can resolve that with a "refresh" (not sure if that is the proper term for the task). If you highlight the game or games and then press F5 things should straighten themselves out. Sometimes I need to press it more than once, or I need to leave the currently selected platform then return to it for the change to be seen. This assumes the images actually exist still in your images folder. There shouldn't be a need to do any reimporting or rescraping as you or the video described, as that would only be required if the game entry doesn't exist or the image doesn't already exist in your images folder
  16. OK so my issues sure don't seem LB related. This never occurred with Windows 7, and I have yet to experience a real stuck disk with Windows 11. Windows 10 on the other hand....constantly occurs with or without LB being in the mix. For what it's worth I have found some random LB process, usually two instances when I do find them, running after closing LB/BB. But manually ending them has never helped the issue. Hence why I would assume the issue lies elsewhere. I've had no concrete proof of LB or any other single program at that being the culprit, with the only exception being Windows 10 sure seems more prone to the problem. And if this matters, it only occurs with internal disks being connected externally. If it's an external disk by design like a USB thumb drive this issue doesn't occur. So I would bet this is most likely impacting users who either use a 2.5" or 3.5" disk that is in a self-contained enclosure or use a dock. I've only used USB to connect disks like this so not sure if for example if something like Thunderbolt connected disks would suffer the same issue.
  17. not being able to remove ("eject") the disk could be an infinite number of things. I use external docks to move my disks between systems and it happens far more often, almost all the time, on Windows 10. Yet on Windows 11 I can always eject the disks. There are times I restart Windows 10 and try to eject before anything even launches....still get the message it cannot due to being used....even though it's not really being used. Sometimes it randomly works, even after using LB/BB. A normal shutdown is perfectly safe, it will flush anything it needs to and then you can power off and remove your disk(s) afterwards. You do not need to be ejecting the disk(s) prior to a shutdown. If you wanted to remove the disk(s) prior to a shutdown and this occurs....well.....it just ain't gonna happen and you would need to shutdown or at least try a restart. Been using LB/BB since around v12, it's certainly not version related. Close any other game launchers like Steam, Uplay, Epic, Rockstar, Origin etc if those games exist on same disk(s). Try to restart Windows Explorer. Those are about the only two things I've ever had to do. This is something at the OS level, I wouldn't be blaming LB/BB from my experience.
  18. I had a quick search around in the emulator's UI to see if I could find such setting, didn't find it, but didn't look too hard either. I wonder why this seems exclusive to just the ini file. seems related to if you wanted to stretch the game window out across multiple displays. either way, it does the trick, so thanks for sharing!
  19. I can confirm I have same behavior you report. when I activate the Pause Screen it will return to a windowed mode. It takes two F11 key presses (or equivalent like what Retro and you did) to return to actual fullscreen. This looks a little "flashy" due to seeing the window quickly resize but it will fix the issue in the sense of keeping it all all automated. so what Retro and you did is the same difference. What I did was this Send {F11 2}
  20. lol no problem! I can def take a look at this. I have PSP setup with both PPSSPP and the Retroarch core but don't recall how the Pause Screen situation was going with either of them. @Jass_167 when I have a moment over the weekend, I'll see how my system behaves with PPSSPP and let you know how I made out.
  21. been a long time since I used PPSSPP. if there is a hotkey to toggle fullscreen mode you could put into the Resume field some AHK code to send that hotkey in order to make it return to fullscreen.
  22. ok since you didn't share those details I was about to ask about controller too. I have a PowerA Xbox Series X controller and an OEM Microsoft Xbox Series X controller, both which have that new "share" button in the center. ONLY the OEM one has this share button recognized in LB or BB. Yet all emulators or other remappers recognizes the PowerA version no problem. So pointing out sometimes it's just a quirk/bug regarding the device used and seems to be you finally found the smoking gun! take a sigh of relief lol. maybe not the outcome you wanted since you'd need to use another controller but at least the issue is understood, for the most part. if you say it was working before, going off what I think Retro is getting at here. those 8Bitdo controllers can switch input modes I think? I don't have one to know for sure. But maybe you got it in dinput instead of xinput or something along those lines. switch to other modes if it's possible to see if that changes how it works. edit: ahh see your new post here that you just tried it. yup, that will do it!
  23. could happen as Retro808 pointed out, but for what it's worth, Pause Screens work OK for me whether using 1.7.X (one of the recent nightly builds in the last say two months is what I use) or the 1.6 stable version. in my case it is possible to use Pause Screens with both Duckstation and PCSX2 and even on different versions. I have both in my setup due to I got a single game that requires v1.6 to run properly and the rest use 1.7.X so I'd still like to think you got something funny going on, but I'm not sure where to go next if you have problems even with fresh setups of stuff. you could perhaps create a button combo or use an unused button on the controller that sends the keyboard key to activate the Pause Screen? you would need to use some 3rd party remapper to do that. doesn't solve the root issue, but would accomplish the goal.
  24. I do, note this is PCSX2 1.7.X syntax meaning just a single hyphen before each parameter -fullscreen -nogui if you are on 1.6.X then it still uses two like this --fullscreen --nogui
  25. bummer! I was hoping it was the other half since I know how to resolve that. but if it doesn't work at all for them I'm not sure. If it were me I would try making a separate install of one of the emulators and a separate instance of it in your emulator list with everything default other than enabling the Pause Screen checkboxes, then see what happens. We are ruling out the emulator since it would be using default settings. If that doesn't work, ok....it's likely not the emulator's settings fault this is occurring. Maybe some setting in LB. So make a separate install of LB import a game to test and setup the EXISTING (original) emulator in your emulator list and see what happens. If it works then it would have been a LB/BB setting. If it doesn't work, try the 2nd install of the emulator being used for troubleshooting. If still doesn't work.....🤷‍♂️ Could be any number of things. Maybe what fullscreen mode is being used. Maybe try selecting different options there like between exclusive fullscreen and borderless and windowed etc. I'm not sure if duplicate hotkeys across the frontend and emulator can get things confused. Such as if the button(s) used to activate the Pause Screen also do some hotkey function within the emulator and the emulator's hotkey is take precedence over the frontend?
×
×
  • Create New...