Mame2016 Question : Regarding Light Gun Games
-
@YFZdude Yes, I noticed the changed formatting when my first attempts didn't get the results that I expected (as in: "sigh … there goes my lunch break".) Note the spaces in my second
grep
line. But well, one can work with them if they're known.Some more possible bash-fu that I didn't have the knowledge or time to research for would be
- comparing both files with
diff
(the problem beyond my lore: different lines for the same roms in both files let all of them count as different), and - copying the roms in the files from the resp. romsets to their own rom directory to further process them (e.g. scrape) or make them a new system in Emulation Station.
edit: As for counting, grep can do that with its
-c
option.grep -c Lightgun catver_2003.ini # result: 69 grep -c "Shooter / Gun" catver_2016.ini # result: 336
edit 2: The numbers may be (much?) smaller after filtering out the clones or non-working versions.
- comparing both files with
-
Thanks for all the help and suggestions
Unfortunately I'm a very noob at all this and honestly don't comprehend any of this
Could one of you provide an easy step by step guide so I may try to tell the difference between both sets ?
Thank you
-
@escc1986 Well, my second-to-last post principally was a step-by-step guide. Just press
F4
in Emulation Station, enter my commands after one another (and 1:1 character per character!) You can omit every line starting with#
. They are only comments.After that, you'll have two text files named
catver_2016_lightgun.ini
andcatver_2016_lightgun.ini
in your RetroPie home directory (/home/pi
), containing all lightgun games of MAME 2003 and 2016 respectively. You can read them either via network or by the commandless
(e.g.less catver_2016_lightgun.ini
) in the command console. You can navigate in the text by cursor up/down, pgup/pgdown, and quit by pressingq
.If you access your Pi from Windows via the
\\RETROPIE
network share, you'll have to move the files to theRetroPie
directory to see them:mv catver_2003_lightgun.ini RetroPie mv catver_2016_lightgun.ini RetroPie
You could also enter
mc
to get a text-based file manager. PressingF3
in it will display the file under the cursor bar.F10
gets you back to the console.To get back to Emulation Station from there, enter
exit
.Sorry, this is the only guide I can give you, and I actually find it much easier than any tour through graphical programs ("click there and there and there …"). Its basically just typing up what you see. 🧐
As a common German saying goes, we grow with our tasks. 🙂
-
I truly appreciate the guide you made for me , I am deeply sorry for my brain being slow to this kind of stuff
I will try this method and see if I can compare
Again appreciate it and I'm sure your guide will help others as well ;)
-
@escc1986 Don't stress yourself, though. It's only an offer freely given without any expectations or obligations. If it helps you, great. If not, its totally ok. 😊
-
Thank you for the kindness , its nice to hear a reply with gently words instead of words with frustration , it means alot
i was able to successfully copy and paste all your guide lines and was successfully able to get the 2 lists to review , Thanks so much !!!!!
-
@Clyde said in Mame2016 Question : Regarding Light Gun Games:
Some more possible bash-fu that I didn't have the knowledge or time to research for would be
- comparing both files with
diff
(the problem beyond my lore: different lines for the same roms in both files let all of them count as different), and
I don't know a bash way, but that's where my love of spreadsheets comes in handy. I can drop two columns and do something with formulas like
=IF(ISNA(VLOOKUP(A2,H:H,1,FALSE)),"New Game","")
to compare one list against another and show the new stuff.- copying the roms in the files from the resp. romsets to their own rom directory to further process them (e.g. scrape) or make them a new system in Emulation Station.
This one I do with a script once I have a .txt list of games.
FOR %g IN (list.txt) DO copy "source\%%g" "destination"
At least that is the DOS compatible batch file version. I am not quite as familiar from memory with the bash version.I think we may be command line nerds. =-)
- comparing both files with
-
May I ask you Clyde
Do you happen to know the developer of mame2016 ?
Or
Do you know if I can find him on here to ask him a question ?
-
Alas, no, I'm not connected to any developers in any way.
-
Thank you for answering my question
No problem at all , just had to ask
I wonder where I may find the developer , my question just is wondering about an update and a settings options
Thank you Clyde ;)
-
The official development page of lr-mame2016 is https://github.com/libretro/mame2016-libretro (you can find the link in the RetroPie Docs on MAME 2016). Alternatively, depending on the questions, you could try to ask them in a new thread here in the forum. Maybe someone here can help, even if they are not the developers.
-
Your absolutely right Clyde , I should post a question about it here
Thank you also for the documentation for the mame 2016
Appreciate that ;)
Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.
Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.