Platforms
Supported Platforms¶
Get a list of supported platforms with Skyscraper --help
.
After the initial work from torresflo @ GitHub it is possible to add new
platforms by editing the platforms.json
file. However, since version 3.9.0 of
Skyscraper this file is replaced by peas.json
(short for platforms,
extensions/formats, aliases and scrapers. The scrapers list has been
removed with 3.13.0 as it did not have any use) in the same folder.
Take this example from the peas.json
file:
[...]
"megadrive": {
"aliases": [
"genesis",
"mega drive",
"sega mega drive",
"sega mega drive/genesis"
],
"formats": [
"*.bin",
"*.gen",
"*.md",
"*.sg",
"*.smd"
]
},
[...]
<key>
: the key (megadrive
in the example) reflects the platform/folder name (or more generally the handle), usually provided with-p
on the command line.aliases
: these aliases can be used to allow additional hits for a search. The use of aliases is handy especially for scraping websites which do not provide a web API. Currently Screenscraper, Mobygames or The Games DB are providing an web API. See also section aboutplatforms_idmap.csv
and Updating the files below.formats
: set of ROM file extensions which will be included in scraping if a ROM file is not provided explicitly via command line.
Tip
Since Skyscraper 3.13.0 you may also maintain local changes to the peas.json
in a separate file called peas_local.json
alongside to the peas.json
. The
format is identical to the peas.json
. Precedence: Any platform entry from
peas_local.json
with the same platform name as in peas.json
overwrites
the one from peas.json
.
Tip
If you need a specific folder name for a platform (on your setup or due to an
EmulationStation theme) use a symbolic link (see megadrive
(=folder) and
genesis
(=symlink) for example on RetroPie or plus4
(=folder) and c16
(=symlink)) instead of adding a new platform in the JSON file.
Exact platform mapping¶
The file platforms_idmap.csv
defines exact platform id for the web API of the
three before mentioned scraping sites. It is a CSV file which maps the platform
handle (e.g. megadrive
) to the respective platform id of the scraping sites:
You can display the number with their platform name on each of the three
scraping sites with the script peas_and_idmap_verify.py
. Find the script
sibling to the Skyscraper executable. Below is a part of the output:
[...]
├── megadrive
│ ├── ScrS 1: Megadrive
│ ├── Moby 16: Genesis
│ └── TGDB 36: Sega Mega Drive
[...]
How to Add Platforms For Scraping¶
Outline:
- Create a file
peas_local.json
sibling topeas.json
. Enter in this file an empty{}
JSON object. - Create a new platform block in
peas_local.json
inside the outer (empty) block created before, or copy an existing block and adapt to your needs. For RetroPie your chosen<platform_name>
must match the folder in~/RetroPie/roms/<platform_name>
. - Use
<platform_name>
also inplatforms_idmap.csv
(see below for details). - If you use RetroPie do add the platform/system also to your
es_systems.cfg
as documented here.
There is also a an verbatim example, you may skip the next section initially and can continue with the hands-on example.
Updating peas.json
and platforms_idmap.csv
¶
These two files are ment to be locally edited and extended for additional
platforms. Whenever you add a new platform block to the peas.json
do also
lookup the corresponding platform ids and add them to platforms_idmap.csv
for
the scraping sites with an API.
To find the platform ids for Screenscraper, Mobygames and The Games DB, please
consult the files screenscraper_platforms.json
, mobygames_platforms.json
and
tgdb_platforms.json
which are located sibling to your config.ini
of the
Skyscraper installation. If you can not identify an id in these files use -1
as value in the CSV. If you add -1
to CSV, the aliases
from peas are tried
to find a match upon scraping. Edits in screenscraper_platforms.json
,
mobygames_platforms.json
and tgdb_platforms.json
are not needed and moreover
they will be overwritten with each Skyscraper update, as these files are only a
reference for finding the id values for the platforms_idmap.csv
.
For those scraping sites without an API or without exact id match do use the
platform name which is used on the scraping site and put it into the in the aliases
list in the peas.json
for the respective platform/system at <platform_name>
.
Example
The platforms ScummVM or Steam do not have an exact match on Mobygames, however you may scrape successfully for ScummVM and Steam games if you use 'PC', 'DOS', 'Windows', 'Linux' or similar as "aliases": ...
in the "scummvm": ...
or "steam": ...
section of peas.json
. Usually you find the platform information if you lookup the game manually on the scraping website.
Sample Usecase: Adding Platform Satellaview¶
Let the platform/systemname be satellaview
. You may read about this SNES
enhancing peripheral here.
Step 1: Add a Section to peas_local.json
¶
Actually, this is a copy of the "snes:
..."
block, with slight modifications.
- Line 2 defines the platform name
- Line 4 adds an alias to SNES as Satellaview is an hardware addon to a SNES
Step 2: Lookup Values for Satellaview and Update platforms_idmap.csv
¶
To fill in the values into the CSV file do consult the
screenscraper_platforms.json
,
mobygames_platforms.json
and
tgdb_platforms.json
files. Try to find the ID for the platform in these files. For satellaview
only Screenscraper has an exact match:
107
.
Use -1
as ID when no exact match is provided for the scraping site. Whenever
an -1
is encountered Skyscraper tries the "aliases":
from peas.json
(and
from peas_local.json
if present) to find scraping data.
Add this information at the end of the CSV file. Why at the end? On rare
occasions the platforms_idmap.csv
may be updated on a new release. On RetroPie
the installed file is then named platforms_idmap.csv.rp-dist
, having changes
at the end may be a less cumbersome manual merge with your local
platforms_idmap.csv
.
Add this information:
Step 3: Create the System in RetroPie/EmulationStation and Populate the ROM Folder¶
This part should be added to your ~/.emulationstation/es_systems.cfg
. See
here for
additional information on this.
Warning
Stop EmulationStation before editing the config file.
- Line 3 defines the platform name, respective the folder name for your ROMs.
Thus, Skyscraper expects to find ROMs in
/home/pi/RetroPie/roms/satellaview
. - Line 6 contains the extensions which are recognized by EmulationStation. These
extensions should be also be present in the
"formats":
block ofpeas.json
. However, Skyscraper uses case insensitive extension mapping. The extensions.7z
and.zip
are added automagically by Skyscraper, thus the"formats":
list is usually shorter than the EmulationStation<extension/>
list. - Line 9: If your theme doesn't support Satellaview, you can also use
snes
asvalue.
Note
If you run a different frontend than EmulationStation, consult the documentation for your frontend on how to add additional systems.
Step 4: Happy Scraping¶
- Scrape and generate the
satellaview/gamelist.xml
as in the introductive use case usingSkyscraper -p satellaview -s screenscraper
andSkyscraper -p satellaview
- Restart EmulationStation, respective trigger reload of the gamelist in your frontend.
- Smile :)
Kudos
Thanks to retrobit @ GitHub for contributing this usecase.
Migrating platforms.json
and screenscraper.json
¶
Info
If you neither edited platforms.json
nor screenscraper.json
or do not
have these files in the Skyscraper config folder (sibling to the
config.ini
) you can safely ignore this section.
If you have local changes in these files you can transfer your local
changes to the new files. The new peas.json
is the platforms.json
but in a
more compact form which has less visual overhead and also allows faster parsing.
The platforms_idmap.csv
maps the former screenscraper.json
platform ids plus
the platform ids of two more web API sites.
Use the script convert_platforms_json.py
(sibling to the Skyscraper
executable) to convert the platforms.json
to a peas_mine.json
file which you
can then diff to the peas.json
and transfer your changes to peas.json
or
peas_local.json
.
Use the script check_screenscraper_json_to_idmap.py
to identify differences
from your screenscraper.json
. Then use the three <scraper>_platforms.json
files to identify the matching platform ids to be entered in
platform_idmap.csv
. Use -1
in this file, if there is no matching platform id.
Summary of Changes in the Config Files¶
Filenames shown strikethrough are superseded.
Filenames shown italic are user editable.
File |
Introduced with Version | Notes (version) |
---|---|---|
mobygames.json |
3.8.0 | superseded by mobygames_platforms.json (v3.9.0); not to be edited; IDs are used in platforms_idmap.csv |
platforms.json |
3.7.7-2 (@detain) | superseded by peas.json (3.9.0) and peas_local.json (3.13.0); do edit the latter to add/change platforms; these files use a leaner format than platforms.json |
platforms_idmap.csv |
3.9.0 | maps the platform names (handles) from peas.json / peas_local.json to exact platform IDs used in scrapers MobyGames, Screenscraper or TGDB; do edit to add new platforms |
screenscraper.json |
3.7.7-2 (@detain) | IDs formerly used in here are part of platforms_idmap.csv (3.9.0); superseded by screenscraper_platforms.json (3.9.0) which is not to be edited |
tgdb_developers.json |
2.5.3 (@muldjord) | API mapping of 'Developers'; Uses leaner format as before (3.9.0); not to be edited |
tgdb_genres.json |
3.9.0 | API mapping of 'Genres' (3.9.0); not to be edited |
tgdb_platforms.json |
3.9.0 | API mapping of 'Platforms' (3.9.0); not to be edited; IDs are used in platforms_idmap.csv |
tgdb_publishers.json |
2.5.3 (@muldjord) | API mapping of 'Publishers'; Uses leaner format as before (3.9.0); not to be edited |