Jump to content
LaunchBox Community Forums

fab1o

Members
  • Posts

    26
  • Joined

  • Last visited

Everything posted by fab1o

  1. fab1o

    Mame CHD's

    Sorry, the script I posted doesn't do that yet. Right now, to use it you'd have to download them all manually and then run the script. I posted a step by step guide in that thread. It's a time consuming effort to download them all. But there are other ways in the Internet, like torrents. But with torrents, you have to install a torrent client, you end up seeding the files and there are implications to that. But whatever works right? oh, and I thought about eventually posting the complete script that does all of it combined if I got enough positive feedback, so thank you so much for yours!
  2. fab1o

    Mame CHD's

    I use archive dot org
  3. fab1o

    Mame CHD's

    No, that's how I have them too. That's the "default" way, don't need to be doing anything different. I created the script because I wished I had this script when I first started using mame. I automated this process of downloading all CHDs from archive.org (which are all zipped) and couldn't find any other tool that did that for me. Not sure why they zip them, I guess they do cos some games have multiple CHD files, so zipping them makes more sense so you'd only need to download 1 file instead of multiple ones, but most have just 1 file I guess
  4. Hey @MadK9 I didn't create the CHDs zipped files. Those CHDs downloaded from archive.org are zipped, Because I believe some games have multiple CHD files. Take a look at Virtua Striker 4 "vs4" for instance. It's just easier to download 1 zip fle than multiple chd ones corresponding to the same rom (even thou the zip file might not necessarily help reducing the size in certain cases). Just to be clear, for those wanting to download CHDs from archive.org, (not sure where other easier source for this is but anyhow..) if you type "0.221 CHD mame" in the search bar, you can find latest version of CHDs - (even thou it's not really 221 - not sure why the author named this way, go figure) it's just a way you can find CHDs, and I just wanted to make it easier for everyone to find (I'm not the author of those CHD zipped files). The "0.221 CHD mame" search is a working example. Go try it out. I find archive.org to be a breeze to download CHDs. In conclusion, the script will automatically unzip those CHD zipped files exacly the way they should be for mame to work with them. Otherwise, you will have to do this process manually. And it works with any version of CHDs you download online because it's simply a general script for extracting files in a certain way. As long as they are zipped. I hope this helps.
  5. fab1o

    Mame CHD's

    I created a script that helps unzipping all the CHD 7zipped files to the mame roms folder, correctly unzipping them to the respective folder. Check it out:
  6. Hi there, thought I could share my powershell script that auto extracts zipped CHDs into your mame roms folder for Windows 10 (It might work on previous versions but I didn't test it). It's an automation script that follows this process: How to Get CHD Files to Work With MAME Requirements: 7-zip - you can download at 7-zip.org (located in your C:\Program Files\7-Zip, but you can change that in the script). CHD zipped files, like the series of 0.221 CHD mame files for example from archive.org My script - Download the script below. Make sure it is located in the same folder where you downloaded all the zipped CHD files. Also, make sure there's no other .7z file that is not a CHD in this folder. There's two ways to run the script: 1st way: Right-click on the script file, choose Edit or Open / Notepad (whatever works). Change the $Destination to your own roms folder in mame. Save the file and close the editor. Right-click on it again, and choose Run with PowerShell. Another way: Hit the Windows key in your keyboard and type: powershell then hit enter. Once in Powershell, go to the folder where you downloaded the script with the CHD zipped files by typing: cd "<your folder>" (for example: cd "C:\Users\Admin\Downloads") Then execute the script by typing: .\unzip_chd.ps1 -Destination "<your roms path folder>" (path where your roms folder is located, for example: .\unzip_chd.ps1 -Destination "C:\MAME\roms") If you receive an error message "File...cannot be loaded because running scripts is disabled on this system...", do this: Type: Set-ExecutionPolicy ByPass -Scope Process then type Y and hit enter. (This will be undone once you close Powershell) Now type: .\unzip_chd.ps1 -Destination "<your roms path folder>" Observations: I'm NOT the author of CHD zipped files you may download online. This script will unzip .7z files into the roms folder in mame (the one you typed in the script or command line) into their respective folders, enabling CHDs to work correctly. If you downloaded CHD files that are not zipped with 7zip but with another extension (like .zip) then all you need to do is add -ext "zip" to the command: .\unzip_chd.ps1 -Destination "<your roms path folder>" -ext "zip" The script will delete each zipped file once everything is done. If for any reason you want to keep the original zipped files, remove line 19 from the script. A version 2 of this script will be to read the roms you have in your roms folder in mame, find out if you don't have their respective CHD yet, and automatically download them. If anybody wants to help with this project, feel free to join me. If the attached file below is unavailable, you can download it from (Right-click > Save as...) https://raw.githubusercontent.com/fab1o/unzip-chd/master/unzip_chd.ps1 unzip_chd.ps1
  7. I got a work-around. Right-click on each Playlist in Launchbox and turn on "Include this Playlist with Platforms". Its's a hack but at least now in Bigbox, I can see the playlists in the Platform view and as long as I don't switch to Playlists view, it's fine. Since I only have 1 platform in this bigbox, I'm okay with this solution.
  8. My settings incase anyone asks: <?xml version="1.0" standalone="yes"?> <LaunchBox> <BigBoxSettings> <Theme>CriticalZoneV2 - Default</Theme> <RepeatGameMusic>false</RepeatGameMusic> <BackgroundFade>70</BackgroundFade> <ScreenTransition>Fade Quick</ScreenTransition> <PlayStartupSound>false</PlayStartupSound> <PlaySelectSound>false</PlaySelectSound> <PlayBackSound>false</PlayBackSound> <PlayNavigationSound>true</PlayNavigationSound> <ShowHiddenGames>false</ShowHiddenGames> <ShowBrokenGames>false</ShowBrokenGames> <ShowStartupSplashScreen>true</ShowStartupSplashScreen> <ShowLoadingGameMessage>true</ShowLoadingGameMessage> <FrameRate>60</FrameRate> <VideoPlaybackEngine>VLC</VideoPlaybackEngine> <CoverFlowReflectionOpacity>40</CoverFlowReflectionOpacity> <CoverFlowImageQuality>400</CoverFlowImageQuality> <SkipGameDetailsScreen>false</SkipGameDetailsScreen> <GameDetailsClearLogos>true</GameDetailsClearLogos> <GamesListPlatformClearLogos>true</GamesListPlatformClearLogos> <GameBackgroundTransition>Fade Quick</GameBackgroundTransition> <GameMainImageTransition>Rotate Horizontal Triangle</GameMainImageTransition> <GameImageVideoTransition>Rotate Horizontal Triangle</GameImageVideoTransition> <GameImageType>Clear Logos</GameImageType> <GamesUseBackgroundVideos>false</GamesUseBackgroundVideos> <GamesListView>Vertical Clear Logo Wheel</GamesListView> <ShowGamesListTitle>true</ShowGamesListTitle> <AutoPlayMusicGamesList>true</AutoPlayMusicGamesList> <ShowStarNextToFavoritedGames>true</ShowStarNextToFavoritedGames> <ShowFavoritedGamesFirst>false</ShowFavoritedGamesFirst> <GamesListTransition>Slide Vertical</GamesListTransition> <PlatformsListTransition>Fade Quick</PlatformsListTransition> <AutoPlayMusicGameDetails>true</AutoPlayMusicGameDetails> <ShowGameTitle>true</ShowGameTitle> <ShowGamePlatform>true</ShowGamePlatform> <ShowGameDeveloper>true</ShowGameDeveloper> <ShowGamePublisher>true</ShowGamePublisher> <ShowGameReleaseDate>true</ShowGameReleaseDate> <ShowGameGenres>true</ShowGameGenres> <ShowGameSeries>true</ShowGameSeries> <ShowGameVersion>true</ShowGameVersion> <ShowGameInstalled>true</ShowGameInstalled> <ShowGamePlayMode>true</ShowGamePlayMode> <ShowGameRegion>true</ShowGameRegion> <ShowGameStatus>true</ShowGameStatus> <ShowGameSource>true</ShowGameSource> <ShowGameCustomFields>true</ShowGameCustomFields> <ShowGameLastPlayed>true</ShowGameLastPlayed> <ShowGamePlayCount>true</ShowGamePlayCount> <ShowGameNotes>true</ShowGameNotes> <ShowGameFavorite>true</ShowGameFavorite> <ShowGameCompleted>true</ShowGameCompleted> <ShowGamePortable>true</ShowGamePortable> <ShowGameRating>true</ShowGameRating> <ShowGameBroken>true</ShowGameBroken> <GameDetailsTransition>Slide Vertical</GameDetailsTransition> <GameCoverFlowDetailsTransition>Slide Horizontal</GameCoverFlowDetailsTransition> <ShowGameMenuTitle>true</ShowGameMenuTitle> <ShowGameMenuPlay>true</ShowGameMenuPlay> <ShowGameMenuConfigure>true</ShowGameMenuConfigure> <ShowGameMenuAdditionalApplications>true</ShowGameMenuAdditionalApplications> <ShowGameMenuPlayMusic>true</ShowGameMenuPlayMusic> <ShowGameMenuPlayVideo>true</ShowGameMenuPlayVideo> <ShowGameMenuViewManual>true</ShowGameMenuViewManual> <ShowGameMenuOpenFolder>true</ShowGameMenuOpenFolder> <ShowGameMenuOpenImagesFolder>true</ShowGameMenuOpenImagesFolder> <ShowGameMenuOpenDosBox>true</ShowGameMenuOpenDosBox> <ShowGameMenuOpenScummVm>true</ShowGameMenuOpenScummVm> <ShowGameMenuOpenEmulator>true</ShowGameMenuOpenEmulator> <ShowRetroarchNetplayOptions>true</ShowRetroarchNetplayOptions> <ShowGameMenuViewImagesFullscreen>true</ShowGameMenuViewImagesFullscreen> <ShowGameMenuViewVideoFullscreen>true</ShowGameMenuViewVideoFullscreen> <ShowGameMenuFlipBox>true</ShowGameMenuFlipBox> <ShowGameMenuFavorite>true</ShowGameMenuFavorite> <ShowGameMenuBroken>true</ShowGameMenuBroken> <ShowGameMenuCompleted>true</ShowGameMenuCompleted> <FiltersRandomGameImageBackgrounds>true</FiltersRandomGameImageBackgrounds> <FiltersPlatformFanartBackgrounds>true</FiltersPlatformFanartBackgrounds> <FiltersPlatformDeviceImageBackgrounds>false</FiltersPlatformDeviceImageBackgrounds> <FiltersPlatformClearLogoBackgrounds>true</FiltersPlatformClearLogoBackgrounds> <FiltersPreferPlatformClearLogo>false</FiltersPreferPlatformClearLogo> <FiltersBackgroundTransition>Fade Quick</FiltersBackgroundTransition> <FiltersImageTransition>Rotate Vertical Box</FiltersImageTransition> <FiltersBoxesTransition>Slide Horizontal</FiltersBoxesTransition> <FiltersPlatformVideoTransition>Rotate Horizontal Triangle</FiltersPlatformVideoTransition> <PlatformsUseRandomGameVideos>true</PlatformsUseRandomGameVideos> <PlatformsUseBackgroundVideos>false</PlatformsUseBackgroundVideos> <PlatformsListView>PlatformWheel4</PlatformsListView> <ShowFiltersListTitle>true</ShowFiltersListTitle> <AutoPlayMusicRecentFavorites>false</AutoPlayMusicRecentFavorites> <ShowRecentGames>false</ShowRecentGames> <ShowFavoriteGames>false</ShowFavoriteGames> <ShowFiltersTitle>true</ShowFiltersTitle> <ShowFiltersTotalGames>true</ShowFiltersTotalGames> <ShowFiltersGamesCompleted>true</ShowFiltersGamesCompleted> <ShowFiltersLastPlayed>false</ShowFiltersLastPlayed> <ShowFiltersLastPlayedGame>true</ShowFiltersLastPlayedGame> <ShowFiltersPlayCount>false</ShowFiltersPlayCount> <ShowFiltersMostPlayed>true</ShowFiltersMostPlayed> <ShowPlatformTitle>true</ShowPlatformTitle> <ShowPlatformDefaultEmulator>true</ShowPlatformDefaultEmulator> <ShowPlatformTotalGames>true</ShowPlatformTotalGames> <ShowPlatformGamesCompleted>true</ShowPlatformGamesCompleted> <ShowPlatformLastPlayed>true</ShowPlatformLastPlayed> <ShowPlatformPlayCount>true</ShowPlatformPlayCount> <ShowPlatformMostPlayed>true</ShowPlatformMostPlayed> <ShowPlatformReleaseDate>true</ShowPlatformReleaseDate> <ShowPlatformDeveloper>true</ShowPlatformDeveloper> <ShowPlatformManufacturer>true</ShowPlatformManufacturer> <ShowPlatformCpu>true</ShowPlatformCpu> <ShowPlatformMemory>true</ShowPlatformMemory> <ShowPlatformGraphics>true</ShowPlatformGraphics> <ShowPlatformSound>true</ShowPlatformSound> <ShowPlatformDisplay>true</ShowPlatformDisplay> <ShowPlatformMedia>true</ShowPlatformMedia> <ShowPlatformMaxControllers>true</ShowPlatformMaxControllers> <ShowPlatformNotes>true</ShowPlatformNotes> <PlatformDetailsTransition>Slide Vertical</PlatformDetailsTransition> <KeyboardLeft>23</KeyboardLeft> <KeyboardRight>25</KeyboardRight> <KeyboardUp>24</KeyboardUp> <KeyboardDown>26</KeyboardDown> <KeyboardSelect>6</KeyboardSelect> <KeyboardBack>13</KeyboardBack> <KeyboardPlay>59</KeyboardPlay> <KeyboardPageUp>19</KeyboardPageUp> <KeyboardPageDown>20</KeyboardPageDown> <KeyboardFlipBox>49</KeyboardFlipBox> <KeyboardPlayMusic>56</KeyboardPlayMusic> <KeyboardViewImages>52</KeyboardViewImages> <KeyboardExit>67</KeyboardExit> <KeyboardVolumeUp>85</KeyboardVolumeUp> <KeyboardVolumeDown>57</KeyboardVolumeDown> <KeyboardSwitchView>65</KeyboardSwitchView> <KeyboardSwitchImageType>63</KeyboardSwitchImageType> <KeyboardShowGameDetailsScreen>0</KeyboardShowGameDetailsScreen> <KeyboardNextMusicTrack>0</KeyboardNextMusicTrack> <KeyboardPreviousMusicTrack>0</KeyboardPreviousMusicTrack> <KeyboardSearch>62</KeyboardSearch> <KeyboardShowGenres>0</KeyboardShowGenres> <KeyboardShowPlatforms>58</KeyboardShowPlatforms> <KeyboardStartAttractMode>0</KeyboardStartAttractMode> <KeyboardLockUnlock>0</KeyboardLockUnlock> <KeyboardWheelSpin>0</KeyboardWheelSpin> <KeyboardShowDevelopers>0</KeyboardShowDevelopers> <KeyboardShowPlaylists>55</KeyboardShowPlaylists> <KeyboardShowPublishers>0</KeyboardShowPublishers> <KeyboardShowRatings>0</KeyboardShowRatings> <KeyboardShowRegions>0</KeyboardShowRegions> <KeyboardShowPlayModes>0</KeyboardShowPlayModes> <KeyboardShowSeries>0</KeyboardShowSeries> <KeyboardShowStatuses>0</KeyboardShowStatuses> <KeyboardShowSources>0</KeyboardShowSources> <KeyboardShowPlatformCategories>0</KeyboardShowPlatformCategories> <KeyboardFilter>0</KeyboardFilter> <KeyboardSwitchTheme>0</KeyboardSwitchTheme> <KeyboardShowAchievements>0</KeyboardShowAchievements> <KeyboardSetStarRating>0</KeyboardSetStarRating> <KeyboardPdfReaderZoomIn>85</KeyboardPdfReaderZoomIn> <KeyboardPdfReaderZoomOut>87</KeyboardPdfReaderZoomOut> <KeyboardLeft2>0</KeyboardLeft2> <KeyboardRight2>0</KeyboardRight2> <KeyboardUp2>0</KeyboardUp2> <KeyboardDown2>0</KeyboardDown2> <KeyboardSelect2>0</KeyboardSelect2> <KeyboardBack2>0</KeyboardBack2> <KeyboardPlay2>0</KeyboardPlay2> <KeyboardPageUp2>0</KeyboardPageUp2> <KeyboardPageDown2>0</KeyboardPageDown2> <KeyboardFlipBox2>0</KeyboardFlipBox2> <KeyboardPlayMusic2>0</KeyboardPlayMusic2> <KeyboardViewImages2>0</KeyboardViewImages2> <KeyboardExit2>0</KeyboardExit2> <KeyboardVolumeUp2>0</KeyboardVolumeUp2> <KeyboardVolumeDown2>0</KeyboardVolumeDown2> <KeyboardSwitchView2>0</KeyboardSwitchView2> <KeyboardSwitchImageType2>0</KeyboardSwitchImageType2> <KeyboardShowGameDetailsScreen2>0</KeyboardShowGameDetailsScreen2> <KeyboardNextMusicTrack2>0</KeyboardNextMusicTrack2> <KeyboardPreviousMusicTrack2>0</KeyboardPreviousMusicTrack2> <KeyboardSearch2>0</KeyboardSearch2> <KeyboardShowGenres2>0</KeyboardShowGenres2> <KeyboardShowPlatforms2>0</KeyboardShowPlatforms2> <KeyboardStartAttractMode2>0</KeyboardStartAttractMode2> <KeyboardLockUnlock2>0</KeyboardLockUnlock2> <KeyboardWheelSpin2>0</KeyboardWheelSpin2> <KeyboardShowDevelopers2>0</KeyboardShowDevelopers2> <KeyboardShowPlaylists2>0</KeyboardShowPlaylists2> <KeyboardShowPublishers2>0</KeyboardShowPublishers2> <KeyboardShowRatings2>0</KeyboardShowRatings2> <KeyboardShowRegions2>0</KeyboardShowRegions2> <KeyboardShowPlayModes2>0</KeyboardShowPlayModes2> <KeyboardShowSeries2>0</KeyboardShowSeries2> <KeyboardShowStatuses2>0</KeyboardShowStatuses2> <KeyboardShowSources2>0</KeyboardShowSources2> <KeyboardShowPlatformCategories2>0</KeyboardShowPlatformCategories2> <KeyboardFilter2>0</KeyboardFilter2> <KeyboardSwitchTheme2>0</KeyboardSwitchTheme2> <KeyboardShowAchievements2>0</KeyboardShowAchievements2> <KeyboardSetStarRating2>0</KeyboardSetStarRating2> <KeyboardPdfReaderZoomIn2>0</KeyboardPdfReaderZoomIn2> <KeyboardPdfReaderZoomOut2>0</KeyboardPdfReaderZoomOut2> <KeyboardLeft3>0</KeyboardLeft3> <KeyboardRight3>0</KeyboardRight3> <KeyboardUp3>0</KeyboardUp3> <KeyboardDown3>0</KeyboardDown3> <KeyboardSelect3>0</KeyboardSelect3> <KeyboardBack3>0</KeyboardBack3> <KeyboardPlay3>0</KeyboardPlay3> <KeyboardPageUp3>0</KeyboardPageUp3> <KeyboardPageDown3>0</KeyboardPageDown3> <KeyboardFlipBox3>0</KeyboardFlipBox3> <KeyboardPlayMusic3>0</KeyboardPlayMusic3> <KeyboardViewImages3>0</KeyboardViewImages3> <KeyboardExit3>0</KeyboardExit3> <KeyboardVolumeUp3>0</KeyboardVolumeUp3> <KeyboardVolumeDown3>0</KeyboardVolumeDown3> <KeyboardSwitchView3>0</KeyboardSwitchView3> <KeyboardSwitchImageType3>0</KeyboardSwitchImageType3> <KeyboardShowGameDetailsScreen3>0</KeyboardShowGameDetailsScreen3> <KeyboardNextMusicTrack3>0</KeyboardNextMusicTrack3> <KeyboardPreviousMusicTrack3>0</KeyboardPreviousMusicTrack3> <KeyboardSearch3>0</KeyboardSearch3> <KeyboardShowGenres3>0</KeyboardShowGenres3> <KeyboardShowPlatforms3>0</KeyboardShowPlatforms3> <KeyboardStartAttractMode3>0</KeyboardStartAttractMode3> <KeyboardLockUnlock3>0</KeyboardLockUnlock3> <KeyboardWheelSpin3>0</KeyboardWheelSpin3> <KeyboardShowDevelopers3>0</KeyboardShowDevelopers3> <KeyboardShowPlaylists3>0</KeyboardShowPlaylists3> <KeyboardShowPublishers3>0</KeyboardShowPublishers3> <KeyboardShowRatings3>0</KeyboardShowRatings3> <KeyboardShowRegions3>0</KeyboardShowRegions3> <KeyboardShowPlayModes3>0</KeyboardShowPlayModes3> <KeyboardShowSeries3>0</KeyboardShowSeries3> <KeyboardShowStatuses3>0</KeyboardShowStatuses3> <KeyboardShowSources3>0</KeyboardShowSources3> <KeyboardShowPlatformCategories3>0</KeyboardShowPlatformCategories3> <KeyboardFilter3>0</KeyboardFilter3> <KeyboardSwitchTheme3>0</KeyboardSwitchTheme3> <KeyboardShowAchievements3>0</KeyboardShowAchievements3> <KeyboardSetStarRating3>0</KeyboardSetStarRating3> <KeyboardPdfReaderZoomIn3>0</KeyboardPdfReaderZoomIn3> <KeyboardPdfReaderZoomOut3>0</KeyboardPdfReaderZoomOut3> <KeyboardLeft4>0</KeyboardLeft4> <KeyboardRight4>0</KeyboardRight4> <KeyboardUp4>0</KeyboardUp4> <KeyboardDown4>0</KeyboardDown4> <KeyboardSelect4>0</KeyboardSelect4> <KeyboardBack4>0</KeyboardBack4> <KeyboardPlay4>0</KeyboardPlay4> <KeyboardPageUp4>0</KeyboardPageUp4> <KeyboardPageDown4>0</KeyboardPageDown4> <KeyboardFlipBox4>0</KeyboardFlipBox4> <KeyboardPlayMusic4>0</KeyboardPlayMusic4> <KeyboardViewImages4>0</KeyboardViewImages4> <KeyboardExit4>0</KeyboardExit4> <KeyboardVolumeUp4>0</KeyboardVolumeUp4> <KeyboardVolumeDown4>0</KeyboardVolumeDown4> <KeyboardSwitchView4>0</KeyboardSwitchView4> <KeyboardSwitchImageType4>0</KeyboardSwitchImageType4> <KeyboardShowGameDetailsScreen4>0</KeyboardShowGameDetailsScreen4> <KeyboardNextMusicTrack4>0</KeyboardNextMusicTrack4> <KeyboardPreviousMusicTrack4>0</KeyboardPreviousMusicTrack4> <KeyboardSearch4>0</KeyboardSearch4> <KeyboardShowGenres4>0</KeyboardShowGenres4> <KeyboardShowPlatforms4>0</KeyboardShowPlatforms4> <KeyboardStartAttractMode4>0</KeyboardStartAttractMode4> <KeyboardLockUnlock4>0</KeyboardLockUnlock4> <KeyboardWheelSpin4>0</KeyboardWheelSpin4> <KeyboardShowDevelopers4>0</KeyboardShowDevelopers4> <KeyboardShowPlaylists4>0</KeyboardShowPlaylists4> <KeyboardShowPublishers4>0</KeyboardShowPublishers4> <KeyboardShowRatings4>0</KeyboardShowRatings4> <KeyboardShowRegions4>0</KeyboardShowRegions4> <KeyboardShowPlayModes4>0</KeyboardShowPlayModes4> <KeyboardShowSeries4>0</KeyboardShowSeries4> <KeyboardShowStatuses4>0</KeyboardShowStatuses4> <KeyboardShowSources4>0</KeyboardShowSources4> <KeyboardShowPlatformCategories4>0</KeyboardShowPlatformCategories4> <KeyboardFilter4>0</KeyboardFilter4> <KeyboardSwitchTheme4>0</KeyboardSwitchTheme4> <KeyboardShowAchievements4>0</KeyboardShowAchievements4> <KeyboardSetStarRating4>0</KeyboardSetStarRating4> <KeyboardPdfReaderZoomIn4>0</KeyboardPdfReaderZoomIn4> <KeyboardPdfReaderZoomOut4>0</KeyboardPdfReaderZoomOut4> <KeyboardShowAchievementProfile2>0</KeyboardShowAchievementProfile2> <KeyboardShowAchievementProfile3>0</KeyboardShowAchievementProfile3> <KeyboardShowAchievementProfile4>0</KeyboardShowAchievementProfile4> <KeyboardShowAchievementProfile>0</KeyboardShowAchievementProfile> <EnableGamepad>false</EnableGamepad> <GamepadId></GamepadId> <GamepadName></GamepadName> <UseAllControllers>false</UseAllControllers> <ControllerLockUnlockButton>0</ControllerLockUnlockButton> <ControllerSelectButton>1</ControllerSelectButton> <ControllerBackButton>2</ControllerBackButton> <ControllerPlayButton>3</ControllerPlayButton> <ControllerPageUpButton>5</ControllerPageUpButton> <ControllerPageDownButton>6</ControllerPageDownButton> <ControllerFlipBoxButton>0</ControllerFlipBoxButton> <ControllerPlayMusicButton>0</ControllerPlayMusicButton> <ControllerViewImagesButton>4</ControllerViewImagesButton> <ControllerExitButton>0</ControllerExitButton> <ControllerSwitchView>0</ControllerSwitchView> <ControllerSwitchImageType>0</ControllerSwitchImageType> <ControllerShowGameDetailsScreen>0</ControllerShowGameDetailsScreen> <ControllerNextMusicTrackButton>0</ControllerNextMusicTrackButton> <ControllerPreviousMusicTrackButton>0</ControllerPreviousMusicTrackButton> <ControllerAutomationHoldButton>0</ControllerAutomationHoldButton> <ControllerAutomationCloseButton>0</ControllerAutomationCloseButton> <ControllerAutomationStartButton>0</ControllerAutomationStartButton> <ControllerAutomationVolumeUpButton>0</ControllerAutomationVolumeUpButton> <ControllerAutomationVolumeDownButton>0</ControllerAutomationVolumeDownButton> <EnableMouse>true</EnableMouse> <HideMouseCursor>true</HideMouseCursor> <DisableSystemMouseCursor>false</DisableSystemMouseCursor> <AllowExitWhileUnlocked>false</AllowExitWhileUnlocked> <ControllerSearchButton>0</ControllerSearchButton> <EnableAttractMode>false</EnableAttractMode> <AttractModeSwitchFilters>true</AttractModeSwitchFilters> <AttractModeDelay>60</AttractModeDelay> <AttractModeTimePerMovement>5</AttractModeTimePerMovement> <AttractModeMaximumSpeed>20</AttractModeMaximumSpeed> <ScrollGameDetails>true</ScrollGameDetails> <ScrollGameNotes>true</ScrollGameNotes> <ScrollFilterDetails>true</ScrollFilterDetails> <ScrollPlatformDetails>true</ScrollPlatformDetails> <AttractModeMinimumSpeed>200</AttractModeMinimumSpeed> <VolumeVideo>75</VolumeVideo> <VolumeMaster>100</VolumeMaster> <VolumeStartupSound>20</VolumeStartupSound> <VolumeNavigationSound>20</VolumeNavigationSound> <VolumeSelectSound>55</VolumeSelectSound> <VolumeBackSound>55</VolumeBackSound> <VolumeMusic>75</VolumeMusic> <VolumeAttractModeNavigationSound>10</VolumeAttractModeNavigationSound> <SoundPack>Sci-Fi Set 6 by Clavius</SoundPack> <DefaultView>Playlists</DefaultView> <PrimaryMonitorIndex>0</PrimaryMonitorIndex> <MarqueeMonitorIndex>-1</MarqueeMonitorIndex> <WheelMinimumSpeed>200</WheelMinimumSpeed> <EnableBackgroundMusic>false</EnableBackgroundMusic> <VolumeBackgroundMusic>50</VolumeBackgroundMusic> <EnableMusicOnScreenDisplay>false</EnableMusicOnScreenDisplay> <ShuffleBackgroundMusic>true</ShuffleBackgroundMusic> <UsePlatformPlaylistCategorySpecificBackgroundMusic>true</UsePlatformPlaylistCategorySpecificBackgroundMusic> <ShuffleSoundtrackMusic>true</ShuffleSoundtrackMusic> <PrioritizeMusicOverVideoAudio>false</PrioritizeMusicOverVideoAudio> <PrioritizeGameThemeVideos>true</PrioritizeGameThemeVideos> <ShowGameFileName>false</ShowGameFileName> <MirrorDisplays>false</MirrorDisplays> <LastPlatform>Arcade</LastPlatform> <HideTaskbar>false</HideTaskbar> <RememberLastGame>true</RememberLastGame> <RememberLastPlatform>true</RememberLastPlatform> <RememberViewForEachPlatform>true</RememberViewForEachPlatform> <ControllerShowGenres>0</ControllerShowGenres> <ControllerStartAttractMode>0</ControllerStartAttractMode> <ControllerWheelSpin>0</ControllerWheelSpin> <ControllerShowPlatforms>0</ControllerShowPlatforms> <ControllerShowPlaylists>0</ControllerShowPlaylists> <ControllerShowDevelopers>0</ControllerShowDevelopers> <ControllerShowPublishers>0</ControllerShowPublishers> <ControllerShowRatings>0</ControllerShowRatings> <ControllerShowPlayModes>0</ControllerShowPlayModes> <ControllerShowRegions>0</ControllerShowRegions> <ControllerShowSeries>0</ControllerShowSeries> <ControllerShowStatuses>0</ControllerShowStatuses> <ControllerShowSources>0</ControllerShowSources> <ControllerShowPlatformCategories>0</ControllerShowPlatformCategories> <ControllerFilter>0</ControllerFilter> <ShowGameMenuHidden>true</ShowGameMenuHidden> <ShowGameMenuLaunchWith>true</ShowGameMenuLaunchWith> <ControllerSwitchTheme>0</ControllerSwitchTheme> <ControllerShowAchievements>0</ControllerShowAchievements> <ControllerShowHighScores>0</ControllerShowHighScores> <ControllerSetStarRating>0</ControllerSetStarRating> <ShowGameMenuStarRating>true</ShowGameMenuStarRating> <ShowGameMenuAchievements>true</ShowGameMenuAchievements> <ShowGameStarRating>true</ShowGameStarRating> <UseBuiltInPdfReaderForManuals>true</UseBuiltInPdfReaderForManuals> <UseBuiltInPdfReaderForAdditionalAppPdfs>true</UseBuiltInPdfReaderForAdditionalAppPdfs> <ControllerPdfReaderZoomIn>0</ControllerPdfReaderZoomIn> <ControllerPdfReaderZoomOut>0</ControllerPdfReaderZoomOut> <WheelEasing>true</WheelEasing> <ShowPlatformBannerImages>true</ShowPlatformBannerImages> <AllowSleep>true</AllowSleep> <HideGamesMissingVideos>false</HideGamesMissingVideos> <HideGamesMissingBoxFrontImage>false</HideGamesMissingBoxFrontImage> <HideGamesMissingScreenshotImage>false</HideGamesMissingScreenshotImage> <HideGamesMissingClearLogoImage>false</HideGamesMissingClearLogoImage> <HideGamesMissingBackgroundImage>false</HideGamesMissingBackgroundImage> <AllowSettingStarRatingsWhileLocked>false</AllowSettingStarRatingsWhileLocked> <AllowOpeningGameFoldersWhileLocked>false</AllowOpeningGameFoldersWhileLocked> <AllowOpeningGameImageFoldersWhileLocked>false</AllowOpeningGameImageFoldersWhileLocked> <AllowOpeningEmulatorsWhileLocked>false</AllowOpeningEmulatorsWhileLocked> <AllowFavoritingGamesWhileLocked>false</AllowFavoritingGamesWhileLocked> <AllowHidingGamesWhileLocked>false</AllowHidingGamesWhileLocked> <AllowMarkingGamesAsBrokenWhileLocked>true</AllowMarkingGamesAsBrokenWhileLocked> <AllowMarkingGamesAsCompletedWhileLocked>false</AllowMarkingGamesAsCompletedWhileLocked> <AllowSleepWhileLocked>true</AllowSleepWhileLocked> <AllowShutDownWhileLocked>false</AllowShutDownWhileLocked> <AllowRebootWhileLocked>true</AllowRebootWhileLocked> <AllowChangeViewWhileLocked>false</AllowChangeViewWhileLocked> <AllowChangeImageTypeWhileLocked>false</AllowChangeImageTypeWhileLocked> <AllowChangeFilterAllGamesWhileLocked>true</AllowChangeFilterAllGamesWhileLocked> <AllowChangeFilterPlatformsWhileLocked>true</AllowChangeFilterPlatformsWhileLocked> <AllowChangeFilterPlatformCategoriesWhileLocked>true</AllowChangeFilterPlatformCategoriesWhileLocked> <AllowChangeFilterPlaylistsWhileLocked>true</AllowChangeFilterPlaylistsWhileLocked> <AllowChangeFilterGenresWhileLocked>true</AllowChangeFilterGenresWhileLocked> <AllowChangeFilterDevelopersWhileLocked>true</AllowChangeFilterDevelopersWhileLocked> <AllowChangeFilterPublishersWhileLocked>true</AllowChangeFilterPublishersWhileLocked> <AllowChangeFilterSeriesWhileLocked>true</AllowChangeFilterSeriesWhileLocked> <AllowChangeFilterStatusesWhileLocked>true</AllowChangeFilterStatusesWhileLocked> <AllowChangeFilterSourcesWhileLocked>true</AllowChangeFilterSourcesWhileLocked> <AllowChangeFilterRatingsWhileLocked>true</AllowChangeFilterRatingsWhileLocked> <AllowChangeFilterPlayModesWhileLocked>true</AllowChangeFilterPlayModesWhileLocked> <AllowChangeFilterRegionsWhileLocked>true</AllowChangeFilterRegionsWhileLocked> <UseStartupScreen>true</UseStartupScreen> <StartupTheme>Default</StartupTheme> <MinimumStartupScreenDisplayTime>1000</MinimumStartupScreenDisplayTime> <MinimumShutdownScreenDisplayTime>1000</MinimumShutdownScreenDisplayTime> <HideAutoGeneratedPlaylistsFromPlaylistsView>true</HideAutoGeneratedPlaylistsFromPlaylistsView> <HideMouseCursorOnStartupScreens>true</HideMouseCursorOnStartupScreens> <EnableKeyboardAutomation>true</EnableKeyboardAutomation> <KeyboardAutomationHoldKey>22</KeyboardAutomationHoldKey> <KeyboardAutomationCloseKey>46</KeyboardAutomationCloseKey> <KeyboardAutomationStartKey>62</KeyboardAutomationStartKey> <KeyboardAutomationVolumeUpKey>52</KeyboardAutomationVolumeUpKey> <KeyboardAutomationVolumeDownKey>47</KeyboardAutomationVolumeDownKey> <PauseTheme>Default</PauseTheme> <KeyboardGamePause>0</KeyboardGamePause> <KeyboardAutomationGamePauseKey>0</KeyboardAutomationGamePauseKey> <ControllerAutomationPauseButton>0</ControllerAutomationPauseButton> <UsePauseScreen>true</UsePauseScreen> <PauseScreenMuting>true</PauseScreenMuting> <PauseScreenFading>true</PauseScreenFading> <ShowGameLockUnlock>true</ShowGameLockUnlock> <AllowViewAchievementProfileWhileLocked>false</AllowViewAchievementProfileWhileLocked> <ShowGameMenuMameHighScores>true</ShowGameMenuMameHighScores> <KeyboardShowHighScores>0</KeyboardShowHighScores> <KeyboardShowHighScores2>0</KeyboardShowHighScores2> <KeyboardShowHighScores3>0</KeyboardShowHighScores3> <KeyboardShowHighScores4>0</KeyboardShowHighScores4> </BigBoxSettings> </LaunchBox>
  9. I had a similar problem the first time I tried to open a mame game within Launchbox. It opened fine via mame64. So I thought it was my graphics card not being powerful enough. I turned my HLSL settings down in mame.ini, closed Launchbox and opened it again, I tried it again and it opened normally.
  10. Have you looked into this: https://www.howtogeek.com/409581/how-to-write-an-autohotkey-script/
  11. Hi there, I'm using version 10.14. I imported a bunch of mame games and then did the "Create Missing Arcade/MAME Playlists". All I have is 1 platform: Arcade. And a bunch of different playlist types. Also did finish the "Download Platform/Playlist Theme Videos." Everything looks fine in Launchbox, I can see the clear logos of each playlist, but when I go to Bigbox and hit the "show Playlists" button, nothing shows up. If I use the arrow keys, it feels like I can scroll through them because I hear the sound of scrolling, but the playlist logos are not showing up. I already did refresh Image cache and force all images. Not sure what else to do. Any help is appreciated. See attached screenshot.
  12. Retrotastic Full Screen View File A Retrotastic 2.04 but for any resolution screen! And with a couple of other tweaks! I love using Retrotastic but it has a few issues for me: My resolution screen is not 1920 by 1080, it's a little bit bigger than that and so it wasn't filling the whole screen. My resolution is actually set at 1680 by 1050 in Windows but scaled to 125%. See screenshot. The transitions from platform to games list to game details were too slow for me. When I select a platform, the loading screen was taking too long and I could already see the games view by the time the loading screen showed up. There's no game notes and I like to read them in the game view screen. Here is how I made it: Removed all sizing that limits the resolution to 1080p; Added Stretch="Fill" for all Image backgrounds; Switched Force16X9AspectRatio to false. Here are other tweaks that I did: Added a label in the games view to display at the bottom, a little (partial) brief about the game. Disabled the loading aspects so the transtions from platform to games list to game details are immediate. I would like to give a shout-out to its author: @faeran Thank you! Fabio Costa Submitter fab1o Submitted 04/19/2020 Category Big Box Custom Themes  
  13. Version 2.04-Alt

    304 downloads

    A Retrotastic 2.04 but for any resolution screen! And with a couple of other tweaks! I love using Retrotastic but it has a few issues for me: My resolution screen is not 1920 by 1080, it's a little bit bigger than that and so it wasn't filling the whole screen. My resolution is actually set at 1680 by 1050 in Windows but scaled to 125%. See screenshot. The transitions from platform to games list to game details were too slow for me. When I select a platform, the loading screen was taking too long and I could already see the games view by the time the loading screen showed up. There's no game notes and I like to read them in the game view screen. Here is how I made it: Removed all sizing that limits the resolution to 1080p; Added Stretch="Fill" for all Image backgrounds; Switched Force16X9AspectRatio to false. Here are other tweaks that I did: Added a label in the games view to display at the bottom, a little (partial) brief about the game. Disabled the loading aspects so the transtions from platform to games list to game details are immediate. I would like to give a shout-out to its author: @faeran Thank you! Fabio Costa
  14. Here's what I'm currently doing to easily eliminate dup images, maybe it would be helpful for others. Example case: I have a game with two 3D box arts that was downloaded by Launchbox from Launchbox database and from Emumovies. The box art images are exactly the same, and sometimes they are different but are for the same game. 1) Go to the images folder in File Explorer. Open a type, say "Box - 3D" 2) Open each Region, and copy all files. Ctrl+A, Ctrl+C 3) Go back one folder level (to the "Images\Platform" folder), paste all files in there and select Skip. (I select skip because a) I noticed the games in the region folder are larger and I want to save space, b) I prefer a general image than a specific region image in case they don't match, and I'm fine with it) 4) Delete the region folder. Do that for each region for each image type. Keep in mind I usually only have one region per game. So this works well for me.
  15. But, there is something odd with the Auditing tool. For 1 game, it tells me that I have 3 box images, two 3D box images, 4 cart images, four 3D cart images. When I click on Edit, I odn't see any of those numbers. And in my File Explorer, also I don't have that many images. The Auditing tool is counting images wrong. I have only 1 of each. The Edit a game screen is correct, the Auditing is wrong. If Launchbox did the following below, it would be easier to eliminate dup images:
  16. Thanks! That really helps and yes, it's indeed what I wanted to do. Thanks a lot. What about an easy way to eliminate duplicated Images? I thought about number 7 here: https://bitbucket.org/jasondavidcarr/launchbox/issues/5222/feature-request-for-saving-space-download but it would be better to do it in the UI
  17. I think the regions folder could safely be removed. Add the region to the name. ie: Alien Storm-EU-01.png, Alien Storm-NA-01.png, Alien Storm-NA-02.png... and then, leave them all in the same image type folder. That way would be easier to eliminate dups in File Explorer. An even better way would be always create a folder for each game, and include all the images of that game into an Images subfolder for each game (no matter what type it is) (eliminting the general Images folder alltogether) The option already exists in the import section but it doesn't do much with it. Then if a user wants all the images into 1 single folder, for some reason, include an option in Launchbox to export all the images of all selected games to a zip file or to a selected folder.
  18. I think that's worse. It's difficult to delete "dup" images when they are spreaded out in multiple type and region folders. The UI makes it easier.
  19. The other solution is to buy alarger hard drive and then just select download ALL ? but right now I'm limited in my SSD
  20. Yes, that ONLY works if its thesame image type. But take into consideration that the whole point of this all is to save space on disk. Having said that, Launchbox doesn't save space on disk in the following situation: Say I have 1,000 games, 970 have 3D box arts and 30 don't have any box art (because when you imported, you only selected 3D box art to save space). Now the ones that don't have box art, you want them to have the flat ones, because at least they will have something to display. Now going through the process again and selecting the option in the middle, will download to ALL because other ones also don't have flat ones. Remember: The point of all this is to save space. So I suggest that the download process could be smart with a either “download only 1 type of box art image is enough" button, and choose which one is preferable (3D versus flat) or add a 4th option at the end, to "only download box arts for titles that have none"
  21. That helps to address grouping the games without images, thanks!
  22. This doesn't work for the effect that is expected. If I have say 1,000 games, 980 have box arts (regardless of what kind, let say it's the 3D one) and 20 don't have any box art, and I go throught this process you mentioned to download images and select flat box art for those that don't have any, then Lauchbox will download images to ALL of them even if I select this option you mentioned. Then titles will have 3D box art and flat box arts. And I only want them to have the 3D one, and for those that don't have the 3D one available, then have the flat one (but only for those 20) The point of all this is to save space. Or the download process could be smart with a “download only 1 type of box art image is enough button“, and choose which one is preferable (3D versus flat) or have an option to select to only download box arts for titles that have none, and (including the ones that already have 3D boxes and you are selecting to download a flat box art).
  23. Yeah I know you can right-click. But when you have a lot of games to delete photos, having a dedicated button saves a lot of time. It would also be good to have the size in pixels and kbytes displayed, sometimes duplicated photos are identical and the only difference is the size. Thank you.
×
×
  • Create New...