Jump to content
LaunchBox Community Forums

skizzosjt

Members
  • Posts

    698
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by skizzosjt

  1. a feature like that, where I can actually see the various save/load states for a given game on a given emulator (rather than only be able to choose the default one as currently implemented in LB/BB), would be much appreciated by a user like myself. that looks extremely convenient and useful! I've checked out your plugin in the past, but have not had a reason to utilize it yet. this would be my reason to finally start using it!
  2. if you're talking about File, CPU, GPU, etc type file menu that will never go away if you are in windowed mode. you need to use fullscreen mode via Display > Fullscreen or use hotkey F11 for that menu bar to disappear, or the best option is to make sure the settings file has fullscreen enabled since the emulator will go into fullscreen anytime it is launched. if you mean the settings for GPU, that is toggled via Display > Post Processing Settings or using the hotkey F6 that hides WINDOWS task bar
  3. all you need to do is set the "close active window" hotkey in LaunchBox and/or Big Box to whatever you want on your controller and it will do just that. find it in options > controller mappings and set it to whatever you like. then when you push that button (or button combo) when you're playing a game it will close the emulator
  4. you have the same button assigned to multiple different actions. "context menu" sounds like you're referring to Retroarch's menu. it is by default opened by the Xbox guide button on one of those controllers and F1 on a keyboard. with that said, you really should watch a noober youtube video on Retroarch. something that will get you up to speed on stuff as basic as knowing where the controls options are and other settings you should be familiar with like hotkeys to open the menu. what you need to do is to change the hotkey to open Retroarch's menu or reassign a different button (or button combo) in LB/BB to bring up the frontend's pause menu if you don't want what is currently happening to continue.
  5. Whether SendInput or Send you made sure to put the key that is being sent in braces. If sbaby forgot them that would explain why it doesn't work. Does the script you're using actually have Esc as literally just "Esc" ? Not sure if that is the exact script or if you just missed them when typing it out Keys needs to be in braces {}. Having a line like this.... Sendinput Esc Will type out "Esc". It is sent as literal text If so, it's sending the equivalent of hitting E (shift plus E because it is capitalized), s, c. Rather than sending the actual escape key. It might be as simple as adding braces around {Esc}
  6. This is aimed at any user who may have utilized CTC with the Colorful CTC files Things worked well for me when using up to CTC version 2.5.5. If you're using 2.5.5 or earlier you will not experience this issue. I eventually got 3.1.3 and noticed some major weirdness going on with what initially looked like opacity and animations. So when CTC 3.1.4 and 3.1.5 came out I tried those and same issue....so now I'm under the impression something changed with how CTC works. And I finally figured out the root cause this weekend To the best of my knowledge, in CTC versions prior to 3.X.X, all animations started at the same time regardless of whether the element with the animation used "update once selected" or "update during selection" radio bubble for when to update. Meaning, if element A and element B both had a position animation to move off the left screen after waiting 1 second and the duration of the movement was 1 sec, they would move at the exact same time and over the same exact duration. They would work like this even if element A had "update once selected" and element B had "update during selection" However, this doesn't seem to be the case anymore. The radio bubbles will impact when the animations start, with "update during selection" obviously occurring prior to making a selection. This means elements that do use "update during selection" that they do their thing too early now. Once I figured this out, I had to figure out how to work around it since it wasn't as easy as changing the radio bubble In the end, I determined if an element needed to be updated during selection it needed to stay as such, in particular the hardware overlay needed this and any color condition element. The issue here was the animations need to be update once selected in order to match up with everything else....but those elements couldn't use update once selected due to colors would pop in late when changing views/themes and the hardware overlay wouldn't be updating during selection like it was intended to do, etc type of new problems would occur. So here is the solution. You need to leave those elements with update during selection radio bubble as is with that setting. You need to create some sort of parent element like a grid or dock, etc, that will contain the update during selection elements (such as hardware overlay and the colored rectangles). Then the parent element needs to use update once selected and you can apply the animations to this parent element. Remove the animations from the child elements (such as the hardware overlay and colored rectangles). This is why this plan works. The child elements continue to get updated during selection as originally intended, but due to the parent element having the animations and using update once selected, NOW all the animations will line up exact with each other as originally intended. A pic is worth 1000 words...to visually show what I mean about needing a parent element using "update once selected" to do the animations and the child elements can stay using "update during selection"
  7. hi @goldenegg you can write a single script that directs when all other scripts run. for ex, "master script" will be the only additional application you would need to add in LB for these games. in this master script, it has instructions to run "script A" and when script A is finished, then run "script B" and so on. it's in this master script you can design the sequence and timing of other scripts launching to suit your needs
  8. those options would be in tools > options > visuals > game details problem is, seems no check box exists for title. it might not be a built in user option maybe you need to edit a theme to remove that element?
  9. the advice from Rlad is correct. but to be a stickler the exact name of the view is "TextGamesView" and it is the "Game Details Screen" that has stuff like play, view images, view 3D model, mark as favorite or broken etc. it doubles as the "Text List With Details" view in Big Box, like what Rlad said, they just swap out the game list with the options list look closer in CTC. it's one of the dots along the bottom where you select views, they all have tool tips to tell you their names and list them out directly underneath It could be easy to confuse "GameDetailsView" with "TextGamesView" due to TextGamesView is referred to as the "Games Details Screen" in Big Box. "TextGamesView" / "Game Details Screen" is the screen users can select whether or not they want it to display via Options > General > Skip Game Details Screen And don't confuse that with "TextGameView". note difference of "GAME" and "GAMES" - game is wrong - games is the correct one
  10. I'll have to give you some homework then Read about window stuff like WinTitle and ahk_criteria, WinWait, WinClose, and WinWaitClose and you will find yourself using these a lot. The loop you are using is an inefficient way to do what you want. Using the stuff I mention above is more practical. And Joe employed yet another method that is just as effective by using a While loop that checks every 700ms if the process mk11.exe exists. So add While loops to that reading list too lol! While loop is the more efficient way to doing a check within a loop like what you started with. Yes it does matter! Don't use V2 unless you actually want to deep dive learn AHK. 99% of the help out there is going to be in V1 as V2 only recently became official so in next several years it would be possible that the tides have turned and there is equal if not more help shared that is meant to be used with V2. But right now V1 is still sorta "king" if you will, at least in this world of frontends and emulation support. Every script and advice shared on this forum is going to be V1 syntax FYI. You may honestly be the first person to post anything in V2 syntax, there's a first for everything! It is V2 but the parenthesis they're using are unnecessary. V2 send command, the only difference to V1 is V2 requires double quotes around the line. V2 has everything expression based now. @OldSkool8bit, I would combine the lines, for ex, this sort of format looks much easier to read. Ran OK with a test on my end! Send "{Alt}{Right 4}{Down}" Sleep 1000 Send "{Right}" Sleep 1000 Send "{Down}{Enter}" Sleep 2000 Send "{Tab}{Enter}"
  11. OK you have provided some info that is important to me regarding your comments about corruption to files or to your disks. The critical bit is you are moving them between different systems. Though, it is possible to get corruption even if you aren't using them on multiple systems or even multiple OS's on the same system....doing what you are can really exaggerate the issue or in other words make it more likely to occur. Fast Startup in a TLDR explanation is basically a pseudo hibernation feature for Windows. But it frankly causes more harm than it does good. Feel free to google "why you should disable fast startup" and you will find this is the general consensus and it's not just some opinion of a random clown on the internet like myself. Going into a little more detail is your external disks are part of the statuses saved in the pseudo hibernation state of Fast Startup and it will "lock" them. If you move that disk to another system or even boot to another OS on the same system it can create corruption. I know this first hand all to well! Took me months to understand why I was getting frequent corruption on externally connected disks over USB 3.0 that was extremely exaggerated when I started moving these disks between different systems/OS's. Make sure you disable Fast Startup ASAP! This feature is enabled by default unfortunately so I'd bet it is enabled on your systems. Disable it on all your systems and I hope that makes all your disk corruption issues go away! This was the smoking gun issue in my case so it is very possible you have same thing going on. Regarding disks not being capable of ejected via tray icon. For what it is worth I have a system running Windows 10 and macOS, and another system running Windows 11. I can NEVER eject disks via the tray icon on Windows 10. Even after doing a restart and before running LB or any program at that. I'll restart Windows Explorer, close all store front programs, anything I can think that could access a disk gets task killed and never seems to help get them to eject. Doesn't make much sense to me, but it's the reality. Now contrary to that, on Windows 11 I can ALWAYS eject these disks via the tray icon. Even AFTER running and closing LB. So I sure cannot point the finger at LB in this scenario. To me, seems more like how Windows handles dealing with external disks. I personally have not seen any different behavior from one LB version to the next regarding this.
  12. check out their wiki https://wiki.pcsx2.net/Command-line_support I would try to make use of one of those parameters if it were me. I think the QT ones are if you are on the QT version ie 1.7.X and the WX stuff is if you are using 1.6. Further looks like a plugin needs configuration if on 1.6. Idk what PCSX2 version you use so just make sure you are using the right method/syntax for the version you run. But this wiki makes it clear you can launch directly using media in an optical drive.
  13. Do you have "FAST STARTUP" enabled or disabled? Do you keep this external disk, (or disks), connected to the PC all the time? like it's plugged in literally 24/7 or do you use it on other systems or even other OS's on the same system? Can you disconnect the disk(s) on a fresh reboot of the system, prior to running LB or any program? If you aren't familiar this is where fast startup setting is
  14. not being one who likes to take credit when it's not warranted, I think you meant JoeViking245. maybe I had some input trying to help Cnells2000 in that conversation, but Joe provided that script I think you're referring to. I think you are over thinking or over complicating things. I've seen youtube videos in the past with folks using LED Blinky and setting up MK11 using virtual controllers. I only mention LED Blinky because I see your other thread that looks like asking for similar help. I've only ever played the MK games with controllers. But I've caught in passing from said youtube videos some of them are finicky such as they only accept a single player to utilize the keyboard as input so it forces the 2nd player to utilize a controller...or at least that sounds like how the devs designed it from their perspective. Going back to virtual controllers. The game just plain works better when receiving xinput I imagine. You still got hoops to jump through, but my approach to this would be to use virtualized xinput controllers. ie your dinput encoder detects P1B1 is pressed and then sends Left Control for ex. you would then have a remapper program that sees that Left Control button being sent and transposes it to virtualized xinput controller #1 "A" button. This means in the end it would be like pushing that button on your cabinet would be the same to the game as if an Xbox controller was physically plugged in. So if I understand your setup right LED Blinky should work fine because you are still using your encoder in dinput but those keys are being transposed to xinput for the game. You might think it's just more of the "same difference" by using this keyboard splitter program but I cannot provide much help or advice for it since I am not familiar with the software beyond its basic use case/intent. What you're doing is a little "janky" to me since you would see that program on the screen and moving tabs or windows around. It won't look like clean launch in other words. There must be an easier way to tell it to load a profile of some sort but there is again only so much help I can provide not knowing that program. I strongly suggest to use some remapper that can see keyboard input and transpose to xinput. I'm a fan of virtualcontroller and have a relatively detailed set of instructions on basic use/setup here (link below). there are of course more programs out there that do the same, but this is my go to program for this need. take notice the link to download the program has it titled as "vjoy-controller" but it's really known as virtualcontroller. I can provide advice on how to utilize this program by comparison, so why I recommend trying a different approach with said different program. These instructions also detail how to utilize AHK to automate running the program and loading the specific profile, all while doing it out of eye sight behind the scenes! https://forums.launchbox-app.com/topic/74291-how-do-i-close-an-additional-app-ucr-after-a-game-quits/?do=findComment&comment=439313
  15. Shoot 'em Up Drainus R-Type Final 2 R-Type Dimensions EX Super Hydorah Rigid Force Alpha Run 'n Gun Blazing Chrome Super Cyborg Hack n' Slash Hades And I'd 2nd Huntdown, Streets of Rage 4, and TMNT Shredder's Revenge also!
  16. you rename the backup file so the program uses that file or copy its contents to the .txt version
  17. the misleading bit of this issue is that a dash/hyphen or a single quote are not technically special characters, at least not in the traditional sense the OS (Windows) would consider as such. so it wasn't initially obvious to me that is what did it. I knew my edit caused it due to happening immediately after clicking OK to save the condition, but took me a moment to connect the dots it was specifically just that one character that was the issue in my case I could make a condition that went across two lines as a work around, for ex Color ABC if genre contains "Beat" AND contains "em Up" That way the ' character is never used but still searches for the intended genre(s) /My Theme Projects/NAME OF YOUR THEME not saying this is the exact view you may need to edit, just showing the in use file, and the previous save backup file live in the same folder to clarify for full transparency. when I had my issue I was using a color condition and it is part of "smart binding" profile at that. that file is saved in the /My Theme Projects/Conditions folder so I had to edit it out of that particular file since you are working with a visibility condition on a specific view, you need to alter that specific view file. since the backup is exactly just that, the previous existing save, and assuming you have been unable to save over it since making your mistake, the backup should be in working condition. the only way the backup file would be complete F'd is if you somehow managed to save that view again since making the issue as that would mean the issue is now populated in both the .txt and .bak version of the file if your backup file is F'd you would need to search within the .txt view file and remove the character or the entire condition and this is of course assuming we are even going down the right path that the visibility condition is even the culprit....sure sounds like it....but who knows
  18. @Jass_167 what did you change regarding the condition? I made the mistake once of making "Beat 'em Up" as a color condition and it messed up CTC like you describe, constantly would crash, it was unusable. the problem with my example is the program apparently does not like the single quote character ' in the condition. so I had to manually edit this out then CTC would finally run. there should be a backup file too by the way. file name is the same but with .bak extension rather than .txt potentially could just delete the file giving the problem and then use the backup file I mention this thinking maybe you used a character the program doesn't like too?
  19. not that I care much about this product, like at all, but I checked it out when I caught wind of it recently and knew it would be expensive, but this is just plain stupid high regarding cost from their website......
  20. @viking and @Margo for what it's worth I'm fairly certain my setup does the same thing and I have never once thought it to be a bug or unintended. a few things to note... I am using the dark variant with 4K videos, and I have customized parts of the theme, but this seems to really only occur under these specific conditions. You must being changing from a Platform View going into Text List With Details as the view to select individual games. I've kept an unaltered copy of Colorful Dark as well and see same behavior on stock settings too Video clip of my system doing the same thing. I am going from SNES platform, into said platform to select a game, this is the only way I can recreate it so far. Notice the black section where the color condition should be filling it in on the left hand side? Shows up for just a split second before getting the proper fill in along with the rest of the view loading. I do notice that looks delayed compared to switching to other views/screens throughout Big Box, at least in regard to a noticeable black element filling in, or not filling in, however it's technically seen by the program. BigBox Colorful Theme Text List with Details Platform View.mp4 I noted this occurs when using Text List With Details for the platform view and I think it's equally import to notice it does NOT occur on the ACTUAL Game Details View. Which may or may not be helpful because I kinda thought they were one in the same view lol?! So it doesn't matter if you have Game Details marked as skipped or not, going into that Game Details via a user assignable button or from having the view come up natively (due to not being marked as skipped) the issue doesn't occur there. I would be suspect of Text List With Details view having something to do with this issue based on my brief investigation
  21. I'm thinking due to the specific issue you're having, that being the window is on top but not active, the WinActivate command might not help you out. I'm not capable of recreating the issue you have so all I am going by is if the windows I'm manipulating are getting moved around and the script does do that. With that said, I would do the ALT+TAB keys getting sent because it would be better at selecting the specific window, the emulator and making sure it's in focus so your wheel feedback works. So yea try this below. You're correct that it should go in "Running Script" field of the emulator SetTitleMatchMode, 2 WinWait, Supermodel Sleep, 3000 Send {LAlt down}{Tab down}{Tab up}{Tab down}{Tab up}{LAlt up} SoundBeep This does two tab key presses, remove the 2nd cycle if you only need one cycle or add more if you need more. That is dependent on how many windows you have open when you launch the game. The SoundBeep is there so you should actually hear a beep, which means the script ran fine since it is the last line. It can be removed after testing. Maybe the sleep line which pauses the script for 3secs may also help, making sure windows have had time to actually display. You can change the timing if needed. hmmm, yea I'd say prolly not either. if it creates a window that can be ALT+TAB'd to then this would count as one of the windows you need to consider in how many times you need to press tab though
  22. I recently got familiar with the emulator. Do note I did have to use partial match mode for window title match to work. I didn't initially realize the title would change based on the game running so it's understandable why the standard WinTitle method didn't work for you following my advice. This below will mean if you had a line like "WinWait, Supermodel" it will only need to find "Supermodel" in the title. It is still case sensitive, but again, just a partial match is required and this creates a match with something like "Supermodel - Scud Race" SetTitleMatchMode, 2 If you're content with your button method that is OK, but wanted to let you know every method I described, window title, executable name, and sending keys, worked for me as expected. so if you really want it automated I can try and help you figure it out.
  23. I'm thinking this is unrelated to the main issue your thread here describes and what retro linked you to. that entry you linked looks to just be a human error, as in, someone had to actually submit that description in the "overview". otherwise at a glance the rest of the info appears correct. this is something that a DB user would need to submit for correction and get enough approvals, not that it would be an issue as it's clearly wrong. I just made the submission myself, so that will be corrected shortly when enough users give it the thumbs up!
  24. that is an easy task. you will likely need just two lines. the first would wait for the window to exist. the second would activate the window. so you need the following: WinWait https://www.autohotkey.com/docs/v1/lib/WinWait.htm WinActivate https://www.autohotkey.com/docs/v1/lib/WinActivate.htm if using title to determine window, then just insert title as the first parameter. title is case sensitive. change it accordingly WinWait, Window Title Here WinActivate, Window Title Here and to be clear, there are several other ways to determine window, but the other common way is to determine via the executable. I don't know what this exe name is for the program, so this is just another example. you will need to insert proper exe file name WinWait, ahk_exe exe-name-here.exe WinActivate, ahk_exe exe-name-here.exe if that doesn't work but you know a single ALT+TAB keypress does the trick then use this instead. Hmm I could have sworn this actually tabbed to the adjacent window in the tab list on my main PC but on my laptop this morning, this just seems to bring up the tab list for a split sec without actually tabbing to the next window....which if it works like that for you two that is a good thing (I think). Otherwise, you will only get this to work as long as there are no other windows existing. If you do have additional windows existing and it tabs to them, you could add additional {Tab down}{Tab up} cycles to tab back over the intended emulator's window Send {LAlt down}{Tab down}{Tab up}{LAlt up} For ex additional tab key presses, add as many as needed, if needed, depending on how many windows might exist. say you have a controller remap window also going at the same time and the first ALT+TAB makes that remapper window active, adding the 2nd cycle of tab down/up will then tab back to the emulator Send {LAlt down}{Tab down}{Tab up}{Tab down}{Tab up}{LAlt up}
  25. thanks, appreciate you chiming in with the update!
×
×
  • Create New...