Development of module-script generator for lr-mess, lr-mame and mame standalone
-
Where can i find image for game apfm1000, apple 2 and applegs? I scan roms of this emulators with arrm but it find few image
-
@folly said in Development of module-script generator for lr-mess and mame standalone:
@jamrom2 said in Development of module-script generator for lr-mess and mame standalone:
@folly I've got everything loaded that's a cart.
I've got everything working now. Easy install as well. My controller works, but does not fire. I'll keep playing with this and see where it gets me.
You can use the game-specific lines to create per game settings for the keyboard or joystick. We could even share them if we want.
Like you said, it's a bit strange that Space Destroyers requires a seperate path that is nothing like the rest. I hope that can be changed to the same as everything else.
If you know how it works then it's not so strange.
Basically the default system we install doesn't have the added ram and it just loads the roms/media directly without using the hash-table database..
Extra cartridge information is in the hash-table database and not used in the above situation.
With the test line it will use the hash table because the loading process is based upon hash-table database loading the information against the software filename.
Hope you understand this explanation.I have no idea what you're talking about... lol.. but it really sounds good!
What is the hash table? I've got it running like you said and I'll work with it fine. If you wouldn't mind posting your per game config, that would be helpful I'm sure.
Thanks!
-
Well.. no one can really tell you where to go for roms... you will/can banned for even asking, it's one of the rules... please adhere to it. This is the 2nd time you asked.... but... I can say this.
Archives hold a lot of things you might want. Using a mame version like .236 and searching for an archive will probably get you there. Keep in mind, a lot of the games are tied in to a massive list.
You can also search for each system by the name of the system and look for roms. Best I can do without getting myself into trouble. I really like this forum and I want to stay on it. LOL.
-
@jamrom2 one moment i didn't ask roms. I have all roms for mame. what do you say? I asked where can I find the preview images for emulationstation. i never asked for roms.
I do not speak English. maybe I made mistakes in the translation.
All right? -
@isidoro80 totally understood. Not sure what you mean by "image" then.
Do you mean a picture of the system?
"Where can i find image for game apfm1000, apple 2 and applegs? I scan roms of this emulators with arrm but it find few image"
I don't know what you're looking for then. The BIOS files? They are treated like ROM files. No one an tell you exactly where they are.
Explain a little more and maybe I can help.
-
OK, I moved on to the TRS-80.
I'm not having any luck getting it to display in ES using your script. I have the trs80m3 and all others bios files placed in \BIOS and \BIOS\mame.Roms are in \home\roms\trs-80
Am I missing something?
Dragon 32 works BTW... so not sure I named something wrong working with the TRS-80 setup. -
@jamrom2 said in Development of module-script generator for lr-mess and mame standalone:
OK, I moved on to the TRS-80.
I'm not having any luck getting it to display in ES using your script. I have the trs80m3 and all others bios files placed in \BIOS and \BIOS\mame.Roms are in \home\roms\trs-80
Am I missing something?
Dragon 32 works BTW... so not sure I named something wrong working with the TRS-80 setup.You only have to place the bios files in :
/home/pi/RetroPie/BIOS/mameYou have to place the game roms in :
/home/pi/RetroPie/roms/trs80m3You can check the help from the generated module-script, this should give you the exact paths.
-
@folly that was it... the rom path was wrong.
Ok. I'll keep that in mind so I get all the file locations correct.
-
@isidoro80 said in Development of module-script generator for lr-mess and mame standalone:
Where can i find image for game apfm1000, apple 2 and applegs? I scan roms of this emulators with arrm but it find few image
The images, mmmmmmmmmm.
I think you mean this :
Well there are pictures in the Emulationstation theme.
We use the theme from DTEAM cygnus-blue-flames.
You can install it in the normal tools/config section in the RetroPie-Setup.The game pictures and videos that are displayed in Emulationstation are part of gamelists that can be downloaded in my script.
Select the gamelists section in the dowloads and all is downloaded in the normal game rom directories.
(No pictures yet for Apple, I think) -
@jamrom2 said in Development of module-script generator for lr-mess and mame standalone:
@folly that was it... the rom path was wrong.
Ok. I'll keep that in mind so I get all the file locations correct.
The directory is created when you install the system.
Just look for it and then place you files in it.Btw.
Here you can finfd the .xml files (hash tables) :
/opt/retropie/emulators/mame/hash
Just peek into them, and you know what I meant in post 766 -
I just added a new version to my repository.
We can use this for testing and improving.
I will keep test8 in post 1 for now !Now that the front-end is quite stable I will stop giving it a test-nr.
And, because the generator-script being also part of the front-end It's better to use that version number now, which is 2v4.
That way the version numbers are equal of both front-end-script and generator-script.The update consist of :
- generating smaller "emulator.cfg runcommand-line names" for the autoboot lines (otherwise they were to large to display properly in the dialog box)
- improving the function names
- improving the menu names
- adding a section for autoboot install lines
- adding the first dragon32 autoboot lines
- a cload line (semi-automatic)
- a cloadm:exec line (full-automatic)
So now we are able to add some more autoboot lines after testing.
front-end (with generator-script included):
https://github.com/FollyMaddy/RetroPie-Share/tree/d1d3bb592cfa10be44c0c3e171d8a30b5ee2055a/00-workdir-00/add-mamedev-systems-2v4.shgenerator-script :
https://github.com/FollyMaddy/RetroPie-Share/tree/d1d3bb592cfa10be44c0c3e171d8a30b5ee2055a/00-scripts-00/generate-systems-lr-mess_mame-2v4.shExample of generating a module-script with an autoboot addon :
$1=system $2=RPsystemName $3=ExtraPredefinedDevice(s) $4=mediadescription $5=media $6=extension(s)
(above are the options that can be added, separated by a space)
(the ExtraPredefinedDevice(s) are seperated by a *)bash generate-systems-lr-mess_mame-2v4.sh dragon32 dragon32-autoboot-cloadm -ext*ram*-autoboot_delay*2*-autoboot_command*cloadm:exec\\\\\\n cassette cass .wav*.cas
Afterwards the generated module-script can be installed/de-installed in the RetroPie-Setup.
-
@folly said in Development of module-script generator for lr-mess and mame standalone:
latest front-end (with generator-script included):
https://github.com/FollyMaddy/RetroPie-Share/blob/main/00-workdir-00/add-mamedev-systems-2v4.shI tested this one and it works great !!
-
Thanks.
Do you like how I changed the menu items ?
I am thinking also of changing "slotdevices" into "extra options" to be more global of what we add and perhaps it's better to understand.
Then the variable "ExtraPredefinedDevice" should be named "ExtraPredefinedOption(s)".
What do you think about that.I have been playing a bit with http://adb.arcadeitalia.net/lista_mame.php .
I was thinking of using it to sort our database into arcade and non-arcade.I am hoping to find an easy way of extracting and implementing so we can use the solution over and over again.
I did some test it's already possible to match the arcadecab ones with our data.
But I am still on mame 0233 and data 0234, so perhaps, if we can, it's best to start when we have our mame and database on 0236.
That way we get the best match.
And perhaps we can even split it into genres, like they do, this can be done the same as with the arcadecab only.Only problem I have is to how to get the non-arcade.
The idea is to get the differences between the total database and the arcadecab database. I tried a few diff programs but getting only the differences seems not possible.
So I have to experiment with that. -
@folly said in Development of module-script generator for lr-mess and mame standalone:
@dteam
Thanks.
Do you like how I changed the menu items ?Yes . great work . Only one thing, is it doable to create a submenu to download images/videos/marquees with gamelist.xml per system ?
I am thinking also of changing "slotdevices" into "extra options" to be more global of what we add and perhaps it's better to understand.
Good idea . You should explain that in the tuto
Then the variable "ExtraPredefinedDevice" should be named "ExtraPredefinedOption(s)".
What do you think about that.Good idea, maybe you should explain that in the tuto also
I have been playing a bit with http://adb.arcadeitalia.net/lista_mame.php .
I was thinking of using it to sort our database into arcade and non-arcade.
I am hoping to find an easy way of extracting and implementing so we can use the solution over and over again.
I did some test it's already possible to match the arcadecab ones with our data.
But I am still on mame 0233 and data 0234, so perhaps, if we can, it's best to start when we have our mame and database on 0236.
That way we get the best match.
And perhaps we can even split it into genres, like they do, this can be done the same as with the arcadecab only.
Only problem I have is to how to get the non-arcade.I had found a link to show the split. I'll try to found it again.
The idea is to get the differences between the total database and the arcadecab database. I tried a few diff programs but getting only the differences seems not possible.
So I have to experiment with that.NEW EDIT: here: https://www.progettosnaps.net/renameset/
you have a file category.ini (0.236) (always up to date) . Inside, you have a file named arcade.ini and one mess.ini. Everything is there to do the split.
-
Thanks for the feedback.
I will have a look at it If I can use or implement some things.
category.ini (0.236) looks good !
-
@folly I'm happy to test this as well...
Do I need to remove the other mess emulators installed with the previous script and where do I put this to run it? \scripts?
I just finished the logos for Epoch and Bambino so I'll post them to the other logo thread.
-
@jamrom2 said in Development of module-script generator for lr-mess and mame standalone:
@folly I'm happy to test this as well...
Do I need to remove the other mess emulators installed with the previous script and where do I put this to run it? \scripts?
Yes, if you want to, that would be great.
No need to de-install things.
Just remove the oldadd-mamedev-systems.sh
and replace it by the new one in :
/home/pi/RetroPie-Setup/scriptmodules/supplementaryI will give you a sign when I upload the next one !
I just finished the logos for Epoch and Bambino so I'll post them to the other logo thread.
Perfect !
-
I just uploaded the files.
https://github.com/FollyMaddy/RetroPie-Share/tree/9c10b1288f264f8c9f36ba691df0b24c548f2494/00-workdir-00/add-mamedev-systems-2v4.sh
(edit for those who don't know : right-click on raw and save as)Btw.
No need to do the source install of mame.
When you install the binary you are on mame0236.Here you can see what I updated :
https://github.com/FollyMaddy/RetroPie-Share/commit/72cc916784d1bf0b57477c3f85209409dae695e9
https://github.com/FollyMaddy/RetroPie-Share/commit/9c10b1288f264f8c9f36ba691df0b24c548f2494 -
When you are busy with the gamelists.
Can you check for me if they are added correctly when you add them to the google-drive ?
The script should detect the new ones and add them in the list. -
Hello what is name of bios file for arcade game sega model 1. I want play game arcade: arabian fight, f1 exaust, radrally. If i run this games with lr-mame i have error driver model1 not found.
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.