Development of module-script generator for lr-mess, lr-mame and mame standalone
-
Edit :
This part is removed -> will be added to a new script !Just an idea that I wanted to add :
I added a submenu in test4 for downloading module-scripts from different external repositories.
It will only download if the file doesn't exist in the normal path.
It will put them in the appropriate directories in theext
path.
After downloading, just go to the normal things in RetroPie-Setup.Script is restored to the original state.
-
At the end, It must be simple for the user. I think we should go with your script only and optimize some systems (most in demand). We could create a new thread for that. When It will be like the schematics (or almost), We could ask the permission to put that on the official RetroPie. The systems optimization should come after from us and also other contributors. Are you agree?
What is the advantage for a user to use 3 module scripts for Lr-Mess?
-
@dteam said in Development of module-script generator for lr-mess and mame standalone:
At the end, It must be simple for the user. I think we should go with your script only and optimize some systems (most in demand). We could create a new thread for that. When It will be like the schematics (or almost), We could ask the permission to put that on the official RetroPie. The systems optimization should come after from us and also other contributors. Are you agree?
What is the advantage for a user to use 3 module scripts for Lr-Mess?
Yes, I agree.
I have the same feeling about it now
I didn't realize it, while I was busy.I will separate it.
-
Now that I have separated the repository part from the script.
I worked more on this and learned again some stuff that can be used again, later on.
I also get a better overview over the whole hierarchy of all scripts.
So an overall improvement, I think.Friday we go on vacation for a week. 😊
So no updates then.btw :
I had a look at 2 dimensional array's.
I think we have to use it for sorting and filtering.
Because this way we keep the information locked to each other,
at least that is my hope.
Sorting and filtering could get much easier this way.
This a small example of a 2 dimensional array (2 rows x 2 columns):declare -A arr arr[0,0]="system" arr[0,1]="The System Description" echo "${arr[0,0]} <-> ${arr[0,1]}"
-
Very busy ?
-
Just found nice way of running the gdrivedl.py script online, without downloading.
If we use this in the script we can use just 1 line instead of 3, as we recently did :curl https://raw.githubusercontent.com/matthuisman/gdrivedl/master/gdrivedl.py | python - https://drive.google.com/drive/folders/<enter_the_folder_id_here> -P <destiny path>
-
@folly yep, i don 't have time to dedicate to retropie now :(
anyway, seems you made a really big jump ahead alone, you're making a really good work, really congratulations !
when you think it's enough stable and working as intended, we'll see how to do to join mine and your repo.....
v.
-
@valerino said in Development of module-script generator for lr-mess and mame standalone:
@folly yep, i don 't have time to dedicate to retropie now :(
anyway, seems you made a really big jump ahead alone, you're making a really good work, really congratulations !
when you think it's enough stable and working as intended, we'll see how to do to join mine and your repo.....
v.
Thanks for your message.
It's understood, not everyone can spend that much time on this.We will continue to work on it, keeping the joining in mind.
-
I have done some menu restructuring tests on the
add_ext_repos.sh
script, which basically used the dialog api in the same way as ouradd-mamedev-systems.sh
I did this on this script because it still contained just 1 main-menu.
So this was an easy way to test my idea to use comma separate values in the array.I wanted to make a structure so :
- the code is easy to read
- implementation of data is easy (now using csv style, which could also be considered as a 2 dimensional array in some way)
- it's possible to use exel/calc and cut/paste from a csv file for implementing the data, if needed
- data can be imported directly from a csv file, if needed
- not every menu needs a menu script (every menu/submenu should be built by the same function part)
- lesser code that can do the same thing
I hope and think it's a good idea for the base structure of our script and more scripts.
This is the code before and after, just to give you an idea on what I have done :
Before :
https://raw.githubusercontent.com/FollyMaddy/RetroPie-Share/d66f3c78ac1239f724868dbdcaa4d8ec1e5cfeb4/00-workdir-00/add-ext-repos.sh
After :
https://raw.githubusercontent.com/FollyMaddy/RetroPie-Share/main/00-workdir-00/add-ext-repos.shps.
I did a second test to see if I could install packages directly from my menu structure, and this works,
showing a new window-menu with install/update/remove/package help etc.I just added a few lines to the csv_array to test the ability to install packages directly from our menu structure :
(so now you can also see that it's possible to run different things per line in one menu)local csv=() #the first value should be an empty value so the menu begins with 1 #make sure every line begins and ends with quotes because of possible spaces #just use the first and last colum in excel/calc for the quotes and you should be fine csv=( ",,," ",FollyMaddy/RetroPie-Share,FollyMaddy/RetroPie-Share/tree/main/00-scriptmodules-00,download_ext_module_scripts," ",GeorgeMcMullen/rp-box86wine,GeorgeMcMullen/rp-box86wine/tree/main/scriptmodules,download_ext_module_scripts," ",zerojay/RetroPie-Extra,zerojay/RetroPie-Extra/tree/master/scriptmodules,download_ext_module_scripts," ",valerino/RetroPie-Setup,valerino/RetroPie-Setup/tree/master/scriptmodules,download_ext_module_scripts," ",install mame",,"package_setup mame," ",install goonies",,"package_setup goonies," )
Knowing above, I think it's time to rebuild the front-end script.
-
@folly At Folly's request I'm posting the changes I made to the run_mess.sh script which allows for each game that uses it to be started with a command file that instead of having it named 'tmpmess.cmd' it is named after the ROM that it is starting, e.g. "Alice in Wonderland (USA).cmd". This way each game is unique and RetroArch/mess will save custom game configs to that instead of constantly overwriting 'tmpmess.cfg'.
These are the changes:
_system="$4" _biosdir="$5" <<NEW CODE FOLLOWS>> # # use the name of the rom to generate the 'tmpmess.cmd' file so RetroArch can save a custom game config$ # _fname="$(basename "${*: -3:1}")" _fbname="${_fname%.*}" <<END NEW CODE>> # generate mess.cmd echo "\t/tmp/mess.cmd content: ${_cmdarr[@]}" <<NEW CODE FOLLOWS>> # _tmpcmd="$_romdir/tmpmess.cmd" # # Now use the root name of the rom file as the name of the cmd file # _tmpcmd="$_romdir/$_fbname.cmd" <<END NEW CODE>>
Using this with mess for Philips CD-i roms now every game has a bezel and I changed the screen offset to move the "CD-i" out of the view. Looks cleaner that way to me.
Hope this helps!
RussellB
-
Thanks for posting it here.
-
@folly said in Development of module-script generator for lr-mess and mame standalone:
After :
https://raw.githubusercontent.com/FollyMaddy/RetroPie-Share/main/00-workdir-00/add-ext-repos.shI Folly, I have installed and used It and It works well. Besides making the installation easier, I find it a good way to consolidate people's work.
It makes a one stop shop. -
I think so too, thanks for testing and letting me know.
btw. I just updated the add-ext-repos.sh script in the normal 00-scriptmodules-00 directory with the csv style and some information of the csv structure.
I now use the first "row" for the descriptions of the "columns" that way we know what all the cells do. :-)# INFORMATION ABOUT THE CSV STRUCTURE USED FOR GENERATING A GUI/SUB-GUI : # - the first value isn't used for the menu, that way the menu begins with 1 # - this first value should be empty or contain a description of the specific column # - make sure every line begins and ends with quotes because of possible spaces # - just use the first and last column in excel/calc for the quotes and you should be fine
So for the front-end it begins to looks like this (not yet on github!) :
",menu_item,empty,to_do," ",install mame,,package_setup mame," ",install lr-mess,,package_setup lr-mess," ",,,," ",Handhelds / Plug & play -> Select and install,,," ",Handhelds / Plug & play -> Select downloads,,gui_add-mamedev-systems_downloads,"
-
@russellb said in Development of module-script generator for lr-mess and mame standalone:
@folly At Folly's request I'm posting the changes I made to the run_mess.sh script which allows for each game that uses it to be started with a command file that instead of having it named 'tmpmess.cmd' it is named after the ROM that it is starting, e.g. "Alice in Wonderland (USA).cmd". This way each game is unique and RetroArch/mess will save custom game configs to that instead of constantly overwriting 'tmpmess.cfg'.
These are the changes:
First part :_system="$4" _biosdir="$5" +# +# Use the name of the rom to generate the 'tmpmess.cmd' file so RetroArch can save a custom game config +# +_fname="$(basename "${*: -3:1}")" +_fbname="${_fname%.*}"
Second part :
# generate mess.cmd echo "\t/tmp/mess.cmd content: ${_cmdarr[@]}" -_tmpcmd="$_romdir/tmpmess.cmd" +# +# Now use the root name of the rom file as the name of the cmd file +# +_tmpcmd="$_romdir/$_fbname.cmd"
Using this with mess for Philips CD-i roms now every game has a bezel and I changed the screen offset to move the "CD-i" out of the view. Looks cleaner that way to me.
Hope this helps!
RussellB
I have done some tests with your edited parts.
From what I am seeing now, it's a pretty good solution for many issues indeed.Edit :
@RussellB
To read your code clearer I have edited the code part in this post with the diff function.
Can you take a look at it, is it still correct ?
To see how the diff function works just "Quote" my post and you will see how it's done := keep - = remove + = add
I will look at it some more, but overall I think this should be added to the
run_mess.sh
script from Valerino .@valerino
If you have some time, could you take a look at it too ? -
@folly
New stuff! If you add the rom path in the mame.ini file for a system like Coleco, you can run mame basename line in the system menu like we did with konamih or jakks. With that, you can load the cheat codes from MAME.Other thing. In the MAME Arcade Romset, you have Nintendo Playchoice 10 roms and Sega MegaPlay roms . They run well with MAME standalone. For Megaplay, I think It's the only option.
-
@dteam said in Development of module-script generator for lr-mess and mame standalone:
@folly
New stuff! If you add the rom path in the mame.ini file for a system like Coleco, you can run mame basename line in the system menu like we did with konamih or jakks. With that, you can load the cheat codes from MAME.Other thing. In the MAME Arcade Romset, you have Nintendo Playchoice 10 roms and Sega MegaPlay roms . They run well with MAME standalone. For Megaplay, I think It's the only option.
Cool !
I have to investigate that. -
@folly said in Development of module-script generator for lr-mess and mame standalone:
@russellb said in Development of module-script generator for lr-mess and mame standalone:
@folly At Folly's request I'm posting the changes I made to the run_mess.sh script which allows for each game that uses it to be started with a command file that instead of having it named 'tmpmess.cmd' it is named after the ROM that it is starting, e.g. "Alice in Wonderland (USA).cmd". This way each game is unique and RetroArch/mess will save custom game configs to that instead of constantly overwriting 'tmpmess.cfg'.
These are the changes:
First part :_system="$4" _biosdir="$5" +# +# Use the name of the rom to generate the 'tmpmess.cmd' file so RetroArch can save a custom game config +# +_fname="$(basename "${*: -3:1}")" +_fbname="${_fname%.*}"
Second part :
# generate mess.cmd echo "\t/tmp/mess.cmd content: ${_cmdarr[@]}" -_tmpcmd="$_romdir/tmpmess.cmd" +# +# Now use the root name of the rom file as the name of the cmd file +# +_tmpcmd="$_romdir/$_fbname.cmd"
Using this with mess for Philips CD-i roms now every game has a bezel and I changed the screen offset to move the "CD-i" out of the view. Looks cleaner that way to me.
Hope this helps!
RussellB
I have done some tests with your edited parts.
From what I am seeing now, it's a pretty good solution for many issues indeed.Edit :
@RussellB
To read your code clearer I have edited the code part in this post with the diff function.
Can you take a look at it, is it still correct ?
To see how the diff function works just "Quote" my post and you will see how it's done := keep - = remove + = add
I will look at it some more, but overall I think this should be added to the
run_mess.sh
script from Valerino .@valerino
If you have some time, could you take a look at it too ?That looks correct. Sorry for the late reply.
-
-
@russellb said in Development of module-script generator for lr-mess and mame standalone:
@folly said in Development of module-script generator for lr-mess and mame standalone:
@russellb said in Development of module-script generator for lr-mess and mame standalone:
@folly At Folly's request I'm posting the changes I made to the run_mess.sh script which allows for each game that uses it to be started with a command file that instead of having it named 'tmpmess.cmd' it is named after the ROM that it is starting, e.g. "Alice in Wonderland (USA).cmd". This way each game is unique and RetroArch/mess will save custom game configs to that instead of constantly overwriting 'tmpmess.cfg'.
These are the changes:
First part :_system="$4" _biosdir="$5" +# +# Use the name of the rom to generate the 'tmpmess.cmd' file so RetroArch can save a custom game config +# +_fname="$(basename "${*: -3:1}")" +_fbname="${_fname%.*}"
Second part :
# generate mess.cmd echo "\t/tmp/mess.cmd content: ${_cmdarr[@]}" -_tmpcmd="$_romdir/tmpmess.cmd" +# +# Now use the root name of the rom file as the name of the cmd file +# +_tmpcmd="$_romdir/$_fbname.cmd"
Using this with mess for Philips CD-i roms now every game has a bezel and I changed the screen offset to move the "CD-i" out of the view. Looks cleaner that way to me.
Hope this helps!
RussellB
I have done some tests with your edited parts.
From what I am seeing now, it's a pretty good solution for many issues indeed.Edit :
@RussellB
To read your code clearer I have edited the code part in this post with the diff function.
Can you take a look at it, is it still correct ?
To see how the diff function works just "Quote" my post and you will see how it's done := keep - = remove + = add
I will look at it some more, but overall I think this should be added to the
run_mess.sh
script from Valerino .@valerino
If you have some time, could you take a look at it too ?That looks correct. Sorry for the late reply.
@valerino....
I ran into the issue that when mame/mess were run with tmpmess.cmd all the roms used the same configuration file, tmpmess.cfg. The first line of code there takes the third-to-last parameter sent to the run_mess.sh and assumes it's the name of the rom. Next line gets the root of the filename minus full path and extension. The last remaining line of code replaces tmpmess.cmd with the root name of the rom and .cmd. That way it's unique per rom. This allowed me to specify custom configs, including bezels and screen locations, etc. per rom.
Hope the explanation helps.
-
Can I recommend moving the location of the run_mess file away from the home directory and into something like /opt/retropie/scripts? I moved it because I don't like having rom dependencies in the home folder.
RussellB
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.