Vegz78 / UpdateMoonlightGamesList

A script to automatically update the RetroPie Moonlight games list with the contents of the Moonlight Embedded list command to the desired game stream server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UpdateMoonlightGamesList

(For a similar solution for Moonlight Qt/PC, see here)

A script to automatically update the RetroPie Moonlight games list with the contents of the Moonlight Embedded list command to the desired game stream server. alt text This script can be run directly from RetroPie in the Moonlight/Steam games list menu to automatically update/sync the games list with the contents from the "moonlight list" command on a desired chosen game stream server.

What this script does is to pull available games from the desired game stream server through the "moonlight list" command, delete game entries made previously from the script, create a new the list of games in the Emulationstation Retropie and restart Emulationstation to relaod the game list.

The script, specifically the "grep"-part for fetching the games list from Moonlight Embedded is loosely inspired by https://github.com/rpf16rj/moonlight_script_retropie and too many other blogs/forum posts to mention.

Pardon any bugs, as I'm still noob in bash scripts.

Feel free to copy, modify and use as you want. The script does what it's supposed to on my home system and won't be very actively supported, updated or maintained.

Prerequisites

Features

  • Automatically update the RetroPie Moonlight games list with the contents of the Moonlight Embedded list command to the desired game stream server.
  • The script and its resulting game config/launch files can be run directly from the RetroPie Moonlight/Steam games list.
  • Restarts EmulationStation to update the games list with new entries.
  • Game files already present and not previously created by this script are not overwritten.

Setup and usage

1 - Download and copy the script into your RetroPie Moonlight/Steam roms folder, typically "/home/pi/RetroPie/roms/moonlight". Make a new ROMS folder if not already present. Make sure the script files are executable, sudo chmod +x *.sh.
Alternatively, in same folder, run:
git clone https://github.com/Vegz78/UpdateMoonlightGamesList && sudo chmod +x ./UpdateMoonlightGamesList/_UpdateMoonlightGamesList.sh
Move the script files to the ROMS folder, e.g.: sudo mv *.sh /home/pi/RetroPie/roms/moonlight

2 - Edit _UpdateMoonlightGamesList.sh with the desired global variables correct for your setup(server IP/Hostname, roms folder path etc.)

3 - Add the entry from the example below to /etc/emulationstation/es_systems.cfg.

4 - Start RetroPie and navigate to the Moonlight/Steam games list menu.

5 - Run the _UpdateMoonlightGamesList entry.

Here are links to more detailed instructions for installing Moonlight Embedded on a Raspberry Pi and setting it up in RetroPie.

_UpdateMoonlightGamesList.sh of course also works from the command line, _UpdateMoonlightGamesList.sh. You can list the games on the game streaming server, without updating the RetroPie menu entry files by running the command moonlight list.

Example of sh script games menu in Emulationstation

Edit the file /etc/emulationstation/es_systems.cfg as loosely inspired by TechWizTime.

Add something like this:

  <system>
    <name>Steam</name>
    <fullname>Steam</fullname>
    <path>/home/pi/RetroPie/roms/moonlight</path>
    <extension>.sh .SH</extension>
    <command>%ROM%</command>
    <platform>steam</platform>
    <theme>steam</theme>
  </system>

Images

alt text alt text alt text

About

A script to automatically update the RetroPie Moonlight games list with the contents of the Moonlight Embedded list command to the desired game stream server


Languages

Language:Shell 100.0%