Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • Omnija
    Participant
    Post count: 155

    Turns out there has been new development on more games :9 (tested and works)
    http://www.yoyogames.com/pi

    Morrowind for the rpi with OpenMW (not tested)
    https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=124517

    MineTest has been pushed to jessie repo i believe (minecraft clone) (not tested)

    Anonymous
    Inactive
    Post count: 63

    OpenMW would be awesome if it actually works on the RPi.

    Omnija
    Participant
    Post count: 155
    herbfargus
    Member
    Post count: 1858

    Here’s a module for the gamemaker games. just create a file called gamemaker.sh in /home/pi/RetroPie-Setup/scriptmodules/ports

    With the following contents:

    #!/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_menus="4+"
    rp_module_flags="nobin !mali !x86"
    
    function install_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"
    }

    I can’t add it to the script as the distributors wish for people to download the games directly but its there if people want to add it manually.

    ronoh55
    Participant
    Post count: 82

    can you add the script to the wiki or github as a reference? Or do you think that would be too close to going against their wishes?

    herbfargus
    Member
    Post count: 1858

    Already on the wiki:

    https://github.com/retropie/RetroPie-Setup/wiki/Ports#gamemaker-games

    I’ll try to contact them and see if they are cool with it.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘Ideas for Further Enhancements’ is closed to new topics and replies.