RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login

    Installation of Mamedev MAME

    Scheduled Pinned Locked Moved Ideas and Development
    mamemamedev
    82 Posts 9 Posters 14.5k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • G
      George
      last edited by

      Gotcha. So there's no way for me to test the download from RetroPie servers (unless someone puts binaries there). But I can test md_ret_files and the configure step.

      Quick question. I've currently set the script to run on v0207. Looks like they just released v0208. Yay. Any thoughts on just running on master vs. a specific release tag?

      mituM 1 Reply Last reply Reply Quote 0
      • mituM
        mitu Global Moderator @George
        last edited by

        @George said in Installation of Mamedev MAME:

        Gotcha. So there's no way for me to test the download from RetroPie servers (unless someone puts binaries there). But I can test md_ret_files and the configure step.

        If you have a local web server, just change the binary_url here and test it locally. It's a bit tricky to get the right URL, since it contains the OS and arch, but it's doable.

        Quick question. I've currently set the script to run on v0207. Looks like they just released v0208. Yay. Any thoughts on just running on master vs. a specific release tag?

        I had a previous suggestion - https://retropie.org.uk/forum/topic/19303/installation-of-mamedev-mame/56 - to dynamically get the latest release tag from the repo without hardcoding a certain version:

        you can get the latest release tag dynamically from Github. Look at how this is implemented in the Skyscraper module, here and here.

        1 Reply Last reply Reply Quote 0
        • G
          George
          last edited by

          Awesome! I'll give changing the binary_url a shot. I'm hoping the URL path structure is similar to the archive path folder (a la stretch/rpi1/emulators/mame.tar.gz).

          I forgot about your comment on getting the latest release tag. This is a pretty long thread. I'll work on it.

          - George

          1 Reply Last reply Reply Quote 0
          • G
            George
            last edited by

            Very cool. The script now pulls the latest version based on the GitHub release tag from their API.

            I also did a test with changing the binary_url to point to my server and it worked like a charm. I'm going to try a few games and see how they perform on a Pi 3 vs. Pi 0. Perhaps I'll remove the !armv6.

            Any other feedback is welcome! Thanks for the help @mitu, as always.

            - George

            1 Reply Last reply Reply Quote 0
            • G
              George
              last edited by George

              Did some performance testing on a Raspberry Pi Zero. I used ChoccyHobNob's script to get a list of candidates to run in person, but the majority of them ran well below 100% speed. On the in person testing, nothing tested with a reasonable level of playing performance, even early games.

              Needless to say, I pretty much expected this. I'll keep the !armv6 flag so it doesn't show up on RPi0s.

              One thing I did notice is that in Emulation Station, the games are listed by their filename and not their game name (i.e. goldnaxe2 vs. Golden Axe). Is there some way to fix that?

              Thanks!

              - George

              mituM 1 Reply Last reply Reply Quote 0
              • mituM
                mitu Global Moderator @George
                last edited by

                @George said in Installation of Mamedev MAME:

                One thing I did notice is that in Emulation Station, the games are listed by their filename and not their game name (i.e. goldnaxe2 vs. Golden Axe). Is there some way to fix that?

                Emulationstation does some translation for MAME games so they don't show up as opaque archive names.I think the translation is active only for certain systems (NeoGeo and Arcade) and it's based on this file.

                1 Reply Last reply Reply Quote 0
                • G
                  George
                  last edited by

                  @mitu said in Installation of Mamedev MAME:

                  Emulationstation does some translation for MAME games so they don't show up as opaque archive names.I think the translation is active only for certain systems (NeoGeo and Arcade) and it's based on this file.

                  I did some digging given the files you mentioned, and indeed EmulationStation will check to see if the system is part of the NeoGeo or Arcade platforms, and then use the file name translation XML file.

                  In order to determine if the system is a NeoGeo or Arcade, it will look at the /etc/emulationstation/es_systems.cfg XML file to check if the system has a neogeo or arcade in its platform tag.

                  That particular file is driven by the installation, particularly the addSystem() function, which calls getPlatformConfig() to get a whole bunch of config info for the system. That in turn reads
                  RetroPie-Setup/platforms.cfg. That file also drives names, extensions, themes for a system.

                  I don't see any way to drive the platform from the installation script, besides directly using the setESSystem() function (which no other scriptmodule does). I presume that the platforms.cfg file will need to be updated too?

                  Thanks!

                  - George

                  mituM 1 Reply Last reply Reply Quote 0
                  • mituM
                    mitu Global Moderator @George
                    last edited by

                    @George said in Installation of Mamedev MAME:

                    I don't see any way to drive the platform from the installation script, besides directly using the setESSystem() function (which no other scriptmodule does). I presume that the platforms.cfg file will need to be updated too?

                    Isn't your scriptmodule already using the arcade and mame folders ? It should already have that translation available - though for the example you've given (goldenaxe2) I don't think it's part of the mamenames.xml. Maybe the names XML file needs an update based on the current MAME romset.

                    1 Reply Last reply Reply Quote 0
                    • G
                      George
                      last edited by George

                      Thanks @mitu,

                      It is already using the arcade and mame folders, but that doesn't seem to make a difference. If I manually edit /etc/emulationstation/es_systems.cfg and change the platform tag from mame to arcade , then the full names start to populate.

                      I also did find that some names are not in the mamenames.xml, but I'll leave that to a separate conversation. Enough files translate properly for me to see that it works when the platform tag is set correctly.

                      1 Reply Last reply Reply Quote 0
                      • G
                        George
                        last edited by

                        Hello,

                        Just wanted to check in on next steps for this. I think the script is pretty solid now, building on RPi 3, PC, and even with cross-compiling. I don't think es_systems.cfg is in the RetroPie-Setup repository, so I guess we can address that separately.

                        Is there anything that still needs to be done? Should I submit a ticket to the RetroPie-Setup GitHub or do a pull request?

                        Thanks again!

                        - George

                        mituM 1 Reply Last reply Reply Quote 0
                        • mituM
                          mitu Global Moderator @George
                          last edited by

                          @George Create a PR on the Retropie-Setup repository - github.com/retropie/Retropie-Setup.

                          G 1 Reply Last reply Reply Quote 0
                          • G
                            George @mitu
                            last edited by

                            @mitu said in Installation of Mamedev MAME:

                            @George Create a PR on the Retropie-Setup repository - github.com/retropie/Retropie-Setup.

                            Thanks @mitu. I just submitted a pull request. Had to do a little file cleanup to eliminate some previous versions I had committed under the same branch.

                            Thanks again for all the help!

                            - George

                            1 Reply Last reply Reply Quote 0
                            • FollyF Folly referenced this topic on
                            • First post
                              Last post

                            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.