Jump to content
LaunchBox Community Forums

JoeViking245

Moderators
  • Posts

    3,436
  • Joined

  • Last visited

  • Days Won

    30

Everything posted by JoeViking245

  1. Can you run the emulators/games outside of LaunchBox/BigBox? Which console/emulator are you trying to run?
  2. Just re-read the OP and see you used winmove. Duh Joe, of course that will work. lol AND... (as you indicated) no need to "UnStretch". I use a winmove script [doh!] on my desktop for placing multiple windows 'just where I want them'. Very handy!
  3. If I'm reading correctly, you already have a script that will 'stretch' the screen. Maybe you could: Edit RDP, go to the Additional Apps tab and Add Additional Application and point to the script to stretch it and check Automatically Run Before Main Application. Then add another 'app' that reverts it back to normal and check Automatically Run After... Option B is to create a complete script and use it as your 'ROM File' under the Launcher tab. It would something like: #SingleInstance force SetWorkingDir, D:\Emulators\Mame ;where mame is located. Note: No "\" after "Mame". MAMERun = mame64.exe GameRDP = D:\Emulators\MAME\roms\racedrivpan ;Path and Machine (rom) folder Run Stretch.ahk Runwait, %MAMERun% "%GameRDP%", , Hide Run UnStretch.ahk Exitapp It basically runs them in the same order, unfortunately. i.e. stretch before mame runs, vs after. Then UnStretch. The smarter person could tell you to simply put in something like: Run the mame game Now run the stretch script process Hang out until mame exits When mame stops running, run Unstretch script process ExitApp
  4. When you launch Race Drivin' Panorama directly from mame does it span the 3 monitors? I think in mame, if you were to edit you mame.ini file in the section # # OSD PER-WINDOW VIDEO OPTIONS # and get it to work for RDP, save the file as "racedrivpan.ini" in put it in the ini folder of mame. Then when you run RDP, it'll use those settings for that game [only]. Of course, keeping mame.ini in it's original sate for all other machines.
  5. Glad it worked! Now for the real fun stuff... Depending on the options you change, they may not save (between exiting and restarting Mame). So have your notepad and pencil handy and note the changes you make. When done, exit Mame and head back to the ini file and change the respective values under "DIRECT3D POST-PROCESSING OPTIONS". Make a backup of mame.ini 1st!!! Just sayin'. If you have a game that's unique to the others or your working with different overlays/bezels/artwork, you can 'save' game-specific settings by: Modifying the mame.ini file (as noted above but without saving as mame.ini) Save it as romfilename.ini ..into the "ini" subfolder.
  6. I was just toying with these settings in the last week or so wanting the same thing you are. 'More options'. According my chicken-scratch notes (which I'm trying to get better at noting what it is I'm about to screw up), lines I changed were "video" and "hlsl_enable" and also "filter" from "1" to "0" (which I forgot to mention. Under "OSD ACCELERATED VIDEO OPTIONS"). The only other thing I think I may have changed in mine was the ...screen_chains to hlsl. # # BGFX POST-PROCESSING OPTIONS # bgfx_path bgfx bgfx_backend auto bgfx_debug 0 bgfx_screen_chains hlsl bgfx_shadow_mask slot-mask.png bgfx_lut bgfx_avi_name auto MAME 0.207 mame64.exe
  7. Ya, been trying different ones and forgot where I left off. try: d3d # # OSD VIDEO OPTIONS # video d3d numscreens 1 and: hlsl_enable 1 # # DIRECT3D POST-PROCESSING OPTIONS # hlslpath hlsl hlsl_enable 1
  8. Edit your mame.ini file. Scroll down to "OSD VIDEO OPTIONS" and change video to bgfx. Some may say use 'hlsl' or even 'glsl', but this will at least show you the added options. # # OSD VIDEO OPTIONS # video bgfx numscreens 1 window 0 maximize 1 waitvsync 0 syncrefresh 0 monitorprovider auto Close and save. There are quite a few posts here about setting up the different video options. Some older, some newer, some several thread pages deep.
  9. Go to your "...LaunchBox\Data\Platforms\" directory. Delete "Steam.xml". Or (as it sounds) in your case, "Windows.xml". If that doesn't work, also delete the files "Steam*.xml" (Windows*.xml) located in your "...LaunchBox\Backups\" directory.
  10. To "click on the gamepad window" (set focus), are you able to press Alt+Tab (vs having to move the mouse cursor and click) ...and then press Alt+Enter...?
  11. Thought the window becomes active, it may need a second to accept input. Try it with a slight pause. #NoEnv WinWaitActive , Cxbx-Reloaded Sleep, 1000 ;1000 = 1 second SetKeyDelay, -1, 110 Send {Alt Down}{Enter}{Alt Up} Return
  12. Try: #NoEnv Sleep, 3000 ;wait 3 seconds Send #+{Left} ;Send Win+Shift+Left Return ; This section closes PCSX2 when pressing Escape $Esc:: { Process, Close, {{{StartupEXE}}} } Edit the pcsx2 emulator AutoHotKey Script tab. Notes: 1) In the code above I took out the SetKeyDelay. Don't think it's needed. 2) If your tv is your 'Right' monitor, change Left to Right. 3) The Escape sequence should already be in there.
  13. I've been trying to learn AutoHotKey and wanted to see if I could make a ‘copy updates’ script. It started out “just because”, then became kinda fun, then ‘what have I gotten myself into’, and finally ‘oh SNAP! It works.’ My initial intent was to update the working roms folder (where only the games actually played are stored) after doing a monthly update using ClrMamePro and an Update Pack to the complete MAME romset. Here’s how it goes (or at least is supposed to). After pointing to the respective folders, “Update” will compare the files in both folders. Files will then be copied only if they exist in the Destination folder AND if they have different time stamps or different file sizes. Copied files to the Destination folder will overwrite the existing same name.ext ones. Example: Source folder has 36,000 files of which 56 were added/changed from an update pack. Destination folder has 2600 files of which 11 have the same name.ext as ones in the 56. “Update” will only copy those 11 files from the Source folder. After updating (copying), a log file is created and you’ll be ask if you want to view the file. The file (RomCopyLog.txt) is saved in the same folder you ran the program/script from. For this I used the robocopy [DOS] command. “In Windows XP, Robocopy was only available via the Resource Kit but is a standard/built in command since Windows 7.” I saw that people were wanting the share the list of roms they use in their active (working) folder with friends. Here, simply point to your roms folder and click “Create mylist.txt”. If the box is checked it will open the created file when it’s done. Here again, the file (mylist.txt) will be saved in the same folder you ran the program/script from. The output lists all files (*.*) in the folder but no directories/subdirectories. I originally had it only look for zip (*.zip) files but wasn’t sure if some convert theirs to 7z. If friends then wanted to create a matching working-folder from their own complete romset...Point to the respective folders and click “Update from text file”. The text file can be any name (i.e. Joe’sList.txt) as long as it’s formatted as shown above. Which is basically comes from: dir "SourceFolder\*.*" /A:-D /b > "mylist.txt” This will copy AND overwrite (without confirmation) files from the complete romset folder to the Arcade folder (in this example) that match the names in the specified text file. I’ll attach a zip file that has the .ahk file and the compiled .exe file if anyone’s interested. If you decide to check it out and run the exe file, Windows might ask ‘Are you sure???’ I think it does that on 1st time running compiled scripts. It’s straight from the ahk file and is clean. So no problems. Or you can just review and run the ahk script. As I said, I did this just to see if I could. And it was actually kind of fun. If anyone has any thoughts, views, opinions, suggestions… Good, bad or indifferent, I'm more than open to them. Update MAME Folders.zip
  14. How? Dunno. lol. I've used it for several other types of converting (one video codec to another, change fps, change Mbps... and some others I'm sure) but haven't tried changing 'aspect'. I'd say take a couple 16:9's and put into a temp folder and see what happens. If it does merely scrunch, look at the cropdetect and crop parameters (also new to me). https://superuser.com/questions/810471/remove-mp4-video-top-and-bottom-black-bars-using-ffmpeg Once the 1st video is figured out, either through -aspect or crop, ffmpeg will fly through the conversions so you won't have to touch Adobe Premiere (which btw is awesome iteself).
  15. Does the built in recorder have options to save as 4:3 instead of 16:9? If not, You can convert them easily with ffmpeg. You can create a batch file to convert all the files at one time. For example I've used this to trim videos down to 40 seconds. for %%a in ("*.*") do ffmpeg -t 40 -i "%%a" -vcodec copy -acodec copy "done\%%~na.mp4 Save this as a batch file. Place it and ffmpeg.exe in the folder that has all the video files (in this case mp4 files) and run the batch file. It saves a converted copy to a sub directory "done" using the same file name. To just set to 4:3, you can use this: for %%a in ("*.*") do ffmpeg -aspect 4:3 -i "%%a" -vcodec copy -acodec copy "done\%%~na.mp4 It'll keep the same audio and video codecs originally used.
  16. Is it safe to also say your "User 1 A Button" is mapped to something like "1 (N/A)", vs "+1 (N/A)"?
  17. The only good way (for me) I've found for binding to a specific core is to actually load a game for that platform/core then press F1 and scroll down to configure input. When you do that, does A button look similar to:? This is for my xbox360 controller (and cab which uses the 'crtl' key for A).
  18. Just shooting from the hip.. do you have a "no-nag" compiled version of MAME?
  19. In my oh-so-Joe way, I just had to figure out how to do this. ? @Echo Off & SetLocal EnableExtensions pushd D:\temp\roms For /F "tokens=*" %%I IN ('dir /a-d /b *.cpc') DO ( copy "D:\temp\generic_tape.jpg" "d:\temp\new\%%~nI.jpg" ) Line 2: Change D:\temp\roms to your roms folder location. Line 3: Change .cpc to your roms actual file extension. If you have .cpc and .dsk, you'll have to run it twice changing the extension (or copy & paste line 3, 4, 5 and changing the extension respectively). Line 4: Change the locations of the image you want to use and where you want to put them. If your image is .png, be sure to change the last .jpg.
  20. I'm sure you could make a batch file that can copy your "Generic_Tape.jpg" to each "rom_name.jpg" 'automatically'.
  21. 1st, did you try editing the game and point to the old directory that has the special characters then try launching it? For the ROMs, yes, there is an easy way. Emulators, not sure. Move the ROMs to the new directory. Then in LB, select all the games [Ctrl + A] in the particular platform (one platform at a time). Click Tools and then select "Change ROMs Folder...."
  22. Glad that worked. Kinda Let me get this straight... 1) LB will launch (i.e.) a Nintendo 64 game that is in/under folders that have special characters. 2) LB will not launch a Nintendo GC/Wii game that is in/under folders that have special characters, saying it can't find the file. 3) LB will launch a Nintendo GC/Wii game that is in/under folders that do not have special characters. Hmmm.... Go back and edit you GC game and manually Browse to you ROM File (original) location and try again.
  23. It sounds like it's maybe the way the Dolphin emulator is configured in LB. ...assuming all the other platform emulators are working and they look for their games/roms under Turkish-character folder names as well. Try copying one of your iso files to a directory that doesn't have Turkish characters, edit that game to LB, pointing to the new folder/file location and see if it works or if you get the same error.
×
×
  • Create New...