Attract-Mode Support Forum

Attract-Mode Support => General => Topic started by: pghretroguy on December 21, 2016, 06:27:09 AM

Title: Filter out games with no wheel art
Post by: pghretroguy on December 21, 2016, 06:27:09 AM
Does anyone know a filter param for MAME Libretro to filter out games with no wheel art? Thanks!!!!!
Title: Re: Filter out games with no wheel art
Post by: hermine.potter on December 21, 2016, 11:22:50 PM
@pghretroguy
>Linux
have a look here (http://unix.stackexchange.com/questions/178321/diff-two-directories-but-ignore-the-extensions)

for example :
folder /home/your_username/1 contains rom-files
folder /home/your_username/2 contains image-files

this shows all rom-files from folder 1, that doesn't have an existing (or not correct named) image-file in folder 2
Code: [Select]
comm -23 <(find /home/your_username/1 -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort) <(find /home/your_username/2 -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort)

with this information, you can search for the explicit image-file



>Windows
Code: [Select]
@echo off &setlocal
set romfolder=C:\1
set imagefolder=C:\2
for %%a in ("%romfolder%\*.*") do if not exist "%imagefolder%\%%~na.*" echo %%~na%%~xa no image found
pause
Title: Re: Filter out games with no wheel art
Post by: pghretroguy on December 23, 2016, 01:30:24 PM
Amazing. Thank you!
Title: Re: Filter out games with no wheel art
Post by: keilmillerjr on December 23, 2016, 02:40:33 PM
I can modify my mamesoftwareparser ruby script to include this feature. I have an idea to rework the script and make it more useful for others.
Title: Re: Filter out games with no wheel art
Post by: pghretroguy on December 23, 2016, 03:21:01 PM
comm -23 <(find /home/pi/RetroPie/roms/mame-libretro -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort) <(find /home/pi/RetroPie/roms/mame-libretro/snap -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort)
Title: Re: Filter out games with no wheel art
Post by: pghretroguy on December 23, 2016, 04:03:04 PM
comm -23 <(find /home/pi/RetroPie/roms/mame-libretro -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort) <(find /home/pi/RetroPie/roms/mame-libretro/snap -type f -exec bash -c 'basename "${0%.*}"' {} \; | sort)


So I run that it seems to return every value and rom set. Any ideas? Thanks!!!!