RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    Please do not post a support request without first reading and following the advice in https://retropie.org.uk/forum/topic/3/read-this-first

    How to install GameMaker Games?

    Scheduled Pinned Locked Moved Help and Support
    gamemaker
    37 Posts 8 Posters 13.8k 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.
    • hiulitH
      hiulit @retronerd
      last edited by

      @retronerd I'm at work right now :P I can't tell you exactly where the files are located. Try following these steps: https://github.com/hiulit/Murtop-Raspberry-Pi-Bartop-Arcade-Machine-Project#installing-gamemaker-games

      My little contributions to the RetroPie project:

      • Shell-Script-Boilerplate
      • Fun-Facts-Splashscreens
      • Limit-Last-Played-Games
      1 Reply Last reply Reply Quote 0
      • R
        retronerd
        last edited by

        Anyone?

        hiulitH 1 Reply Last reply Reply Quote 0
        • hiulitH
          hiulit @retronerd
          last edited by hiulit

          @retronerd Ok, I've tried installing it via RetroPie Extra and it's not working for me either. I don't know why... :( Not booting...

          My little contributions to the RetroPie project:

          • Shell-Script-Boilerplate
          • Fun-Facts-Splashscreens
          • Limit-Last-Played-Games
          R 1 Reply Last reply Reply Quote 0
          • R
            retronerd @hiulit
            last edited by

            @hiulit how Did you installed IT When you got IT working?

            hiulitH 1 Reply Last reply Reply Quote 0
            • hiulitH
              hiulit @retronerd
              last edited by

              @retronerd I used these instructions https://github.com/hiulit/Murtop-Raspberry-Pi-Bartop-Arcade-Machine-Project#installing-gamemaker-games, but they don't work because some files, they don't exist anymore or they've changed. Take a look at https://github.com/bite-your-idols/gamemaker-pi and see if you can figure out a way to make it work

              My little contributions to the RetroPie project:

              • Shell-Script-Boilerplate
              • Fun-Facts-Splashscreens
              • Limit-Last-Played-Games
              1 Reply Last reply Reply Quote 0
              • hiulitH
                hiulit
                last edited by

                OK, I think I found the problem.

                When I tried to launch MalditaCastilla directly from the command line I got this error

                ./MalditaCastilla: error while loading shared libraries: libopenal.so.1: cannot open shared object file: No such file or directory
                

                So I installed libopenal-dev with:

                sudo apt-get install libopenal-dev
                

                And it's working!

                My little contributions to the RetroPie project:

                • Shell-Script-Boilerplate
                • Fun-Facts-Splashscreens
                • Limit-Last-Played-Games
                R herb_fargusH 2 Replies Last reply Reply Quote 0
                • R
                  retronerd @hiulit
                  last edited by

                  @hiulit how do i do this im a noob on Linux do you have an step by step guide?

                  hiulitH 1 Reply Last reply Reply Quote 0
                  • hiulitH
                    hiulit @retronerd
                    last edited by hiulit

                    @retronerd Yes. Open a terminal or cmd, connect to your raspberry pi via SSH (you'll find that in Google easily or see if you fins this helpful https://github.com/hiulit/Murtop-Raspberry-Pi-Bartop-Arcade-Machine-Project#accessing-the-raspberry-pi-via-ssh) and type:

                    sudo apt-get install libopenal-dev
                    

                    and then press enter

                    My little contributions to the RetroPie project:

                    • Shell-Script-Boilerplate
                    • Fun-Facts-Splashscreens
                    • Limit-Last-Played-Games
                    R 1 Reply Last reply Reply Quote 0
                    • herb_fargusH
                      herb_fargus administrators @hiulit
                      last edited by herb_fargus

                      @hiulit you should submit a pull request to the repo to add that dependecy in the script

                      If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                      Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                      hiulitH 1 Reply Last reply Reply Quote 0
                      • hiulitH
                        hiulit @herb_fargus
                        last edited by

                        Hey @herb_fargus, yeah I know, I've already submited an issue because I really don't know where sudo apt-get install libopenal-dev should be placed :S

                        I guess it should be somewhere here? https://github.com/zerojay/RetroPie-Extra/blob/master/scriptmodules/ports/gamemaker.sh

                        #!/usr/bin/env bash
                        
                        # This file is part of The RetroPie Project
                        # 
                        # The RetroPie Project is the legal property of its developers, whose names are
                        # too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
                        # 
                        # See the LICENSE.md file at the top-level directory of this distribution and 
                        # at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
                        #
                        
                        rp_module_id="gamemaker"
                        rp_module_desc="GameMaker - Games for the Raspberry Pi"
                        rp_module_section="exp"
                        rp_module_flags="!mali !x86"
                        
                        function install_bin_gamemaker() {
                        # Install They Need To Be Fed Game
                        wget -O- -q https://www.yoyogames.com/download/pi/tntbf | tar -xvz -C "$md_inst"
                        # Install Super Crate Box Game
                        wget -O- -q https://www.yoyogames.com/download/pi/crate | tar -xvz -C "$md_inst"
                        # Install Maldita Castilla Game
                        wget -O- -q https://www.yoyogames.com/download/pi/castilla | tar -xvz -C "$md_inst"
                        }
                        
                        function configure_gamemaker() {
                            mkRomDir "ports"
                        
                            addPort "$md_id" "TheyNeedToBeFed" "TheyNeedToBeFed" "$md_inst/TheyNeedToBeFed/TheyNeedToBeFed"
                            addPort "$md_id" "SuperCrateBox" "SuperCrateBox" "$md_inst/SuperCrateBox/SuperCrateBox"
                            addPort "$md_id" "MalditaCastilla" "MalditaCastilla" "$md_inst/MalditaCastilla/MalditaCastilla"
                        }
                        

                        But I don't have a clue on how to add it... :(

                        My little contributions to the RetroPie project:

                        • Shell-Script-Boilerplate
                        • Fun-Facts-Splashscreens
                        • Limit-Last-Played-Games
                        herb_fargusH 1 Reply Last reply Reply Quote 0
                        • herb_fargusH
                          herb_fargus administrators @hiulit
                          last edited by herb_fargus

                          @hiulit add the function right under the module flags

                          Here's an example. Of course it will need to be adapted to the correct module name and remove all the unnecessary dependencies.

                          https://github.com/RetroPie/RetroPie-Setup/blob/33a3a7e287c1e31df12b3374805294fda96746a6/scriptmodules/ports/solarus.sh#L16-#L18

                          If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                          Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                          hiulitH 1 Reply Last reply Reply Quote 0
                          • hiulitH
                            hiulit @herb_fargus
                            last edited by hiulit

                            @herb_fargus Something like this?

                            rp_module_id="gamemaker"
                            rp_module_desc="GameMaker - Games for the Raspberry Pi"
                            rp_module_section="exp"
                            rp_module_flags="!mali !x86"
                            
                            function depends_gamemaker() {
                              getDepends libopenal-dev
                            }
                            
                            function install_bin_gamemaker() {
                            # Install They Need To Be Fed Game
                            wget -O- -q https://www.yoyogames.com/download/pi/tntbf | tar -xvz -C "$md_inst"
                            # Install Super Crate Box Game
                            wget -O- -q https://www.yoyogames.com/download/pi/crate | tar -xvz -C "$md_inst"
                            # Install Maldita Castilla Game
                            wget -O- -q https://www.yoyogames.com/download/pi/castilla | tar -xvz -C "$md_inst"
                            }
                            

                            My little contributions to the RetroPie project:

                            • Shell-Script-Boilerplate
                            • Fun-Facts-Splashscreens
                            • Limit-Last-Played-Games
                            herb_fargusH PokeEngineerP 2 Replies Last reply Reply Quote 0
                            • herb_fargusH
                              herb_fargus administrators @hiulit
                              last edited by

                              @hiulit yeah looks right. Well done :)

                              If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                              Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                              hiulitH 1 Reply Last reply Reply Quote 0
                              • PokeEngineerP
                                PokeEngineer @hiulit
                                last edited by PokeEngineer

                                This post is deleted!
                                1 Reply Last reply Reply Quote 0
                                • hiulitH
                                  hiulit @herb_fargus
                                  last edited by

                                  @herb_fargus Thanks to you! ;) https://github.com/zerojay/RetroPie-Extra/pull/195/

                                  My little contributions to the RetroPie project:

                                  • Shell-Script-Boilerplate
                                  • Fun-Facts-Splashscreens
                                  • Limit-Last-Played-Games
                                  hiulitH 1 Reply Last reply Reply Quote 0
                                  • hiulitH
                                    hiulit @hiulit
                                    last edited by

                                    @hiulit Oh, I also changed the wiki https://github.com/RetroPie/RetroPie-Setup/wiki/GameMaker-Games is that okay?

                                    My little contributions to the RetroPie project:

                                    • Shell-Script-Boilerplate
                                    • Fun-Facts-Splashscreens
                                    • Limit-Last-Played-Games
                                    herb_fargusH 1 Reply Last reply Reply Quote 0
                                    • herb_fargusH
                                      herb_fargus administrators @hiulit
                                      last edited by

                                      @hiulit yep just fine. Forgot we even had a wiki page on it

                                      If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                                      Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                                      1 Reply Last reply Reply Quote 1
                                      • R
                                        retronerd @hiulit
                                        last edited by

                                        @hiulit Thanks! its working:) How do i get my controller working with these games?

                                        hiulitH 1 Reply Last reply Reply Quote 0
                                        • hiulitH
                                          hiulit @retronerd
                                          last edited by hiulit

                                          @retronerd Wooow, hehe! That's another whole story right there :P
                                          In principle, they might work with an Xbox controller, but nothing else. Well, the keyboard, of course. And that's it. There's been plenty discussions on this forum and I think no one has been able to make it work I'm afraid... :(

                                          My little contributions to the RetroPie project:

                                          • Shell-Script-Boilerplate
                                          • Fun-Facts-Splashscreens
                                          • Limit-Last-Played-Games
                                          1 Reply Last reply Reply Quote 0
                                          • BenMcLeanB
                                            BenMcLean
                                            last edited by

                                            I added the sh file to the directory as instructed, but nothing changes and this module doesn't show up in the setup script. What should I do?

                                            1 Reply Last reply Reply Quote 0
                                            • 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.