mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Information and documentation files update.
Moved build and configuration information to INSTALL.md and updated several of the other info files.
This commit is contained in:
parent
43276ef855
commit
b0ec97007f
|
@ -5,7 +5,8 @@ Alec "Aloshi" Lofquist (original version) \
|
||||||
http://www.aloshi.com \
|
http://www.aloshi.com \
|
||||||
RetroPie Community (RetroPie fork) \
|
RetroPie Community (RetroPie fork) \
|
||||||
https://retropie.org.uk \
|
https://retropie.org.uk \
|
||||||
Leon Styhre (Desktop Edition fork)
|
Leon Styhre (Desktop Edition fork) \
|
||||||
|
https://gitlab.com/leonstyhre/emulationstation-de
|
||||||
|
|
||||||
|
|
||||||
UI Art & Design
|
UI Art & Design
|
||||||
|
@ -44,7 +45,7 @@ http://pugixml.org
|
||||||
RapdidJSON \
|
RapdidJSON \
|
||||||
http://rapidjson.org
|
http://rapidjson.org
|
||||||
|
|
||||||
SDL 2 \
|
SDL2 \
|
||||||
http://www.libsdl.org
|
http://www.libsdl.org
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ Some key points:
|
||||||
* Column width (line length) is 100 characters
|
* Column width (line length) is 100 characters
|
||||||
* Indentation is 4 spaces, don't use tabs as they can be interpreted differently!
|
* Indentation is 4 spaces, don't use tabs as they can be interpreted differently!
|
||||||
* Line break is Unix-style (line feed only, no carriage return)
|
* Line break is Unix-style (line feed only, no carriage return)
|
||||||
|
* Do not leave trailing whitespaces at the end of the lines (a good source code editor should have a setting to automatically trim these for you)
|
||||||
* Comments always in C++ style, i.e. // instead of /* */
|
* Comments always in C++ style, i.e. // instead of /* */
|
||||||
* Comments should be proper sentences, starting with a capital letter and ending with a dot
|
* Comments should be proper sentences, starting with a capital letter and ending with a dot
|
||||||
* Use K&R placements of braces, read the Linux Kernel coding style document for clarifications
|
* Use K&R placements of braces, read the Linux Kernel coding style document for clarifications
|
||||||
|
|
215
INSTALL.md
Normal file
215
INSTALL.md
Normal file
|
@ -0,0 +1,215 @@
|
||||||
|
Building
|
||||||
|
========
|
||||||
|
|
||||||
|
EmulationStation-DE uses some C++11 code, which means you'll need to use a compiler that supports that. \
|
||||||
|
GCC is recommended although other compilers should hopefully work fine as well.
|
||||||
|
|
||||||
|
The code has a few dependencies. For building, you'll need CMake and development packages for SDL2, FreeImage, FreeType, libVLC, cURL and RapidJSON.
|
||||||
|
|
||||||
|
**On Debian/Ubuntu:**
|
||||||
|
All of the required packages can be easily installed with `apt-get`:
|
||||||
|
```bash
|
||||||
|
sudo apt-get install libsdl2-dev libfreeimage-dev libfreetype6-dev libcurl4-openssl-dev rapidjson-dev \
|
||||||
|
libasound2-dev libgl1-mesa-dev build-essential cmake fonts-droid-fallback libvlc-dev \
|
||||||
|
libvlccore-dev vlc-bin
|
||||||
|
```
|
||||||
|
**On Fedora:**
|
||||||
|
For this operating system, use `dnf` (with rpmfusion activated) :
|
||||||
|
```bash
|
||||||
|
sudo dnf install SDL2-devel freeimage-devel freetype-devel curl-devel \
|
||||||
|
alsa-lib-devel mesa-libGL-devel cmake \
|
||||||
|
vlc-devel rapidjson-devel
|
||||||
|
```
|
||||||
|
|
||||||
|
To checkout the source, run the following:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://gitlab.com/leonstyhre/emulationstation-de
|
||||||
|
```
|
||||||
|
|
||||||
|
Then generate and build the Makefile using CMake:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd emulationstation-de
|
||||||
|
cmake -DOpenGL_GL_PREFERENCE=GLVND .
|
||||||
|
make
|
||||||
|
```
|
||||||
|
|
||||||
|
NOTE: to generate a `Debug` build on Unix/Linux, run this:
|
||||||
|
```bash
|
||||||
|
cmake -DOpenGL_GL_PREFERENCE=GLVND -DCMAKE_BUILD_TYPE=Debug .
|
||||||
|
make
|
||||||
|
```
|
||||||
|
Keep in mind though that a debug version will be much slower due to all compiler optimizations being disabled.
|
||||||
|
|
||||||
|
**On Windows:**
|
||||||
|
|
||||||
|
[CMake](http://www.cmake.org/cmake/resources/software.html)
|
||||||
|
|
||||||
|
[SDL2](http://www.libsdl.org/release/SDL2-devel-2.0.8-VC.zip)
|
||||||
|
|
||||||
|
[FreeImage](http://downloads.sourceforge.net/freeimage/FreeImage3154Win32.zip)
|
||||||
|
|
||||||
|
[FreeType2](http://download.savannah.gnu.org/releases/freetype/freetype-2.4.9.tar.bz2) (you'll need to compile)
|
||||||
|
|
||||||
|
[cURL](http://curl.haxx.se/download.html) (you'll need to compile or get the pre-compiled DLL version)
|
||||||
|
|
||||||
|
[RapisJSON](https://github.com/tencent/rapidjson) (you need to add `include/rapidsjon` to your include path)
|
||||||
|
|
||||||
|
Remember to copy the necessary .DLL files into the same folder as the executable: probably FreeImage.dll, freetype6.dll, SDL2.dll, libcurl.dll, and zlib1.dll. Exact list depends on if you built your libraries in "static" mode or not.
|
||||||
|
|
||||||
|
|
||||||
|
Configuring
|
||||||
|
===========
|
||||||
|
|
||||||
|
**~/.emulationstation/es_systems.cfg:**
|
||||||
|
When first run, an example systems configuration file will be created at `~/.emulationstation/es_systems.cfg`. `~` is `$HOME` on Linux, and `%HOMEPATH%` on Windows. This example has some comments explaining how to write the configuration file. See the "Writing an es_systems.cfg" section for more information.
|
||||||
|
|
||||||
|
**Keep in mind you'll have to set up your emulator separately from EmulationStation!**
|
||||||
|
|
||||||
|
**~/.emulationstation/es_input.cfg:**
|
||||||
|
When you first start EmulationStation, you will be prompted to configure an input device. The process is thus:
|
||||||
|
|
||||||
|
1. Hold a button on the device you want to configure. This includes the keyboard.
|
||||||
|
|
||||||
|
2. Press the buttons as they appear in the list. Some inputs can be skipped by holding any button down for a few seconds (e.g. page up/page down).
|
||||||
|
|
||||||
|
3. You can review your mappings by pressing up and down, making any changes by pressing A.
|
||||||
|
|
||||||
|
4. Choose "SAVE" to save this device and close the input configuration screen.
|
||||||
|
|
||||||
|
The new configuration will be added to the `~/.emulationstation/es_input.cfg` file.
|
||||||
|
|
||||||
|
**Both new and old devices can be (re)configured at any time by pressing the Start button and choosing "CONFIGURE INPUT".** From here, you may unplug the device you used to open the menu and plug in a new one, if necessary. New devices will be appended to the existing input configuration file, so your old devices will retain their configuration.
|
||||||
|
|
||||||
|
**If your controller stops working, you can delete the `~/.emulationstation/es_input.cfg` file to make the input configuration screen re-appear on the next run.**
|
||||||
|
|
||||||
|
|
||||||
|
You can use `--help` or `-h` to view a list of command-line options. Briefly outlined here:
|
||||||
|
```
|
||||||
|
--resolution [width] [height] Try to force a particular resolution
|
||||||
|
--gamelist-only Skip automatic game ROM search, only read from gamelist.xml
|
||||||
|
--ignore-gamelist Ignore the gamelist files (useful for troubleshooting)
|
||||||
|
--draw-framerate Display the framerate
|
||||||
|
--no-exit Don't show the exit option in the menu
|
||||||
|
--no-splash Don't show the splash screen
|
||||||
|
--debug Print debug information
|
||||||
|
--windowed Windowed mode, should be combined with --resolution
|
||||||
|
--fullscreen-normal Normal fullscreen mode
|
||||||
|
--fullscreen-borderless Borderless fullscreen mode (always on top)
|
||||||
|
--vsync [1/on or 0/off] Turn vsync on or off (default is on)
|
||||||
|
--max-vram [size] Max VRAM to use in Mb before swapping
|
||||||
|
Set to at least 20 to avoid unpredictable behavior
|
||||||
|
--force-kid Force the UI mode to Kid
|
||||||
|
--force-kiosk Force the UI mode to Kiosk
|
||||||
|
--force-disable-filters Force the UI to ignore applied filters in gamelist
|
||||||
|
--home [path] Directory to use as home path
|
||||||
|
--version, -v Displays version information
|
||||||
|
--help, -h Summon a sentient, angry tuba
|
||||||
|
```
|
||||||
|
|
||||||
|
As long as ES hasn't frozen, you can always press F4 to close the application.
|
||||||
|
|
||||||
|
|
||||||
|
Writing an es_systems.cfg
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Complete configuration instructions at [emulationstation.org](http://emulationstation.org/gettingstarted.html#config).
|
||||||
|
|
||||||
|
The `es_systems.cfg` file contains the system configuration data for EmulationStation, written in XML. \
|
||||||
|
This tells EmulationStation what systems you have, what platform they correspond to (for scraping), and where the games are located.
|
||||||
|
|
||||||
|
ES will check two places for an es_systems.cfg file, in the following order, stopping after it finds one that works:
|
||||||
|
* `~/.emulationstation/es_systems.cfg`
|
||||||
|
* `/etc/emulationstation/es_systems.cfg`
|
||||||
|
|
||||||
|
The order EmulationStation displays systems reflects the order you define them in.
|
||||||
|
|
||||||
|
**NOTE:** A system *must* have at least one game present in its "path" directory, or ES will ignore it! If no valid systems are found, ES will report an error and quit!
|
||||||
|
|
||||||
|
Here's an example es_systems.cfg:
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<!-- This is the EmulationStation Systems configuration file.
|
||||||
|
All systems must be contained within the <systemList> tag.-->
|
||||||
|
|
||||||
|
<systemList>
|
||||||
|
<!-- Here's an example system to get you started. -->
|
||||||
|
<system>
|
||||||
|
<!-- A short name, used internally. -->
|
||||||
|
<name>snes</name>
|
||||||
|
|
||||||
|
<!-- A "pretty" name, displayed in the menus and such. This one is optional. -->
|
||||||
|
<fullname>Super Nintendo Entertainment System</fullname>
|
||||||
|
|
||||||
|
<!-- The path to start searching for ROMs in. '~' will be expanded to $HOME or %HOMEPATH%, depending on platform.
|
||||||
|
All subdirectories (and non-recursive links) will be included. -->
|
||||||
|
<path>~/roms/snes</path>
|
||||||
|
|
||||||
|
<!-- A list of extensions to search for, delimited by any of the whitespace characters (", \r\n\t").
|
||||||
|
You MUST include the period at the start of the extension! It's also case sensitive. -->
|
||||||
|
<extension>.smc .sfc .SMC .SFC</extension>
|
||||||
|
|
||||||
|
<!-- The shell command executed when a game is selected. A few special tags are replaced if found in a command, like %ROM% (see below). -->
|
||||||
|
<command>snesemulator %ROM%</command>
|
||||||
|
<!-- This example would run the bash command "snesemulator /home/user/roms/snes/Super\ Mario\ World.sfc". -->
|
||||||
|
|
||||||
|
<!-- The platform(s) to use when scraping. You can see the full list of accepted platforms in src/PlatformIds.cpp.
|
||||||
|
It's case sensitive, but everything is lowercase. This tag is optional.
|
||||||
|
You can use multiple platforms too, delimited with any of the whitespace characters (", \r\n\t"), eg: "genesis, megadrive" -->
|
||||||
|
<platform>snes</platform>
|
||||||
|
|
||||||
|
<!-- The theme to load from the current theme set. See THEMES.md for more information.
|
||||||
|
This tag is optional; if not set, it will use the value of <name>. -->
|
||||||
|
<theme>snes</theme>
|
||||||
|
</system>
|
||||||
|
</systemList>
|
||||||
|
```
|
||||||
|
|
||||||
|
The following "tags" are replaced by ES in launch commands:
|
||||||
|
|
||||||
|
`%ROM%` - Replaced with absolute path to the selected ROM, with most Bash special characters escaped with a backslash.
|
||||||
|
|
||||||
|
`%BASENAME%` - Replaced with the "base" name of the path to the selected ROM. For example, a path of "/foo/bar.rom", this tag would be "bar". This tag is useful for setting up AdvanceMAME.
|
||||||
|
|
||||||
|
`%ROM_RAW%` - Replaced with the unescaped, absolute path to the selected ROM. If your emulator is picky about paths, you might want to use this instead of %ROM%, but enclosed in quotes.
|
||||||
|
|
||||||
|
See [SYSTEMS.md](SYSTEMS.md) for some live examples in EmulationStation.
|
||||||
|
|
||||||
|
gamelist.xml
|
||||||
|
============
|
||||||
|
|
||||||
|
The gamelist.xml file for a system defines metadata for games, such as a name, description, release date, and rating.
|
||||||
|
|
||||||
|
As of the fork to EmulationStation Desktop Edition, game media information no longer needs to be defined in the gamelist.xml files. Instead the application will look for any media matching the ROM filename. The media path where to look for game art is configurable either manually in es_settings.cfg or via the GUI.
|
||||||
|
|
||||||
|
If at least one game in a system has an image (mix image, screenshot or box cover), ES will use the detailed view for that system (which displays metadata alongside the game list).
|
||||||
|
|
||||||
|
*You can use ES's [scraping](http://en.wikipedia.org/wiki/Web_scraping) tools to avoid creating a gamelist.xml by hand.* There are two ways to run the scraper:
|
||||||
|
|
||||||
|
* **If you want to scrape multiple games:** press start to open the menu and choose the "SCRAPER" option. Adjust your settings and press "START".
|
||||||
|
* **If you just want to scrape one game:** find the game on the game list in ES and press select. Choose "EDIT THIS GAME'S METADATA" and then press the "SCRAPE" button at the bottom of the metadata editor.
|
||||||
|
|
||||||
|
You can also edit metadata within ES by using the metadata editor - just find the game you wish to edit on the gamelist, press Select, and choose "EDIT THIS GAME'S METADATA."
|
||||||
|
|
||||||
|
The switch `--ignore-gamelist` can be used to ignore the gamelist and force ES to use the non-detailed view.
|
||||||
|
|
||||||
|
If you're writing a tool to generate or parse gamelist.xml files, you should check out [GAMELISTS.md](GAMELISTS.md) for more detailed documentation.
|
||||||
|
|
||||||
|
|
||||||
|
Themes
|
||||||
|
======
|
||||||
|
|
||||||
|
EmulationStation is not intended to be used without a theme. The default theme 'rbsimple-DE' is included in the emulationstation-de repository.
|
||||||
|
|
||||||
|
For additional themes, the following resources are recommended:
|
||||||
|
|
||||||
|
https://aloshi.com/emulationstation#themes
|
||||||
|
|
||||||
|
https://github.com/RetroPie
|
||||||
|
|
||||||
|
https://gitlab.com/recalbox/recalbox-themes
|
||||||
|
|
||||||
|
https://wiki.batocera.org/themes
|
||||||
|
|
||||||
|
For information on how to make your own theme or edit an existing one, read [THEMES.md](THEMES.md)!
|
2
NEWS.md
2
NEWS.md
|
@ -27,4 +27,4 @@ v1.0.0
|
||||||
* Game images were sometimes scaled incorrectly
|
* Game images were sometimes scaled incorrectly
|
||||||
* Non-transparent favorite icons were not rendered correctly
|
* Non-transparent favorite icons were not rendered correctly
|
||||||
* Restart and power-off menu entries not working (i.e. on a desktop OS)
|
* Restart and power-off menu entries not working (i.e. on a desktop OS)
|
||||||
* Lots and lots of small bugs and inconsistencies
|
* Lots and lots of small bugs and inconsistencies fixed
|
||||||
|
|
229
README.md
229
README.md
|
@ -3,232 +3,27 @@ EmulationStation Desktop Edition
|
||||||
|
|
||||||
EmulationStation Desktop Edition is a cross-platform graphical front-end for emulators with controller and keyboard navigation.
|
EmulationStation Desktop Edition is a cross-platform graphical front-end for emulators with controller and keyboard navigation.
|
||||||
|
|
||||||
This is a fork intended for use on desktop computers rather than devices such as the Raspberry Pi. \
|
This is a fork intended for use primarily on desktop computers where EmulationStation is not the primary interface for the computer.
|
||||||
As such the goal is not to create advanced emulator configuration tools in the frontend but instead to let the emulators themselves handle that.
|
|
||||||
|
|
||||||
EmulationStation-DE is primarily intended to be used with RetroArch, although it's certainly possible to configure the software to be used with other emulators as well.
|
As such, this fork will not provide full control over emulator settings or emulator button mappings or provide system utility functions and similar. Instead it's assumed that the emulators and the overall environment has been properly configured upfront.
|
||||||
|
|
||||||
|
The software comes preconfigured for use with [RetroArch](https://www.retroarch.com), although this can certainly be changed as all emulator settings are fully configurable, even on a per-game basis.
|
||||||
|
|
||||||
Check out the Git repository and/or NEWS.md file for release information, including a list of improvements and bug fixes per version. \
|
|
||||||
This fork was initially based on RetroPie EmulationStation v2.10.0rp-dev (master).
|
This fork was initially based on RetroPie EmulationStation v2.10.0rp-dev (master).
|
||||||
|
|
||||||
|
|
||||||
Building
|
General information
|
||||||
========
|
===================
|
||||||
|
|
||||||
EmulationStation uses some C++11 code, which means you'll need to use at least g++-4.7 on Linux, or VS2010 on Windows, to compile.
|
Check out [NEWS.md](NEWS.md) for information around new functionality, improvements and bug fixes. An overview of all previous versions will be included here as well.
|
||||||
|
|
||||||
EmulationStation has a few dependencies. For building, you'll need CMake, SDL2, FreeImage, FreeType, cURL and RapidJSON.
|
[INSTALL.md](INSTALL.md) provides details on how to build and configure the software.
|
||||||
|
|
||||||
**On Debian/Ubuntu:**
|
Go to [DEVNOTES.md](DEVNOTES.md) if you're interested in participating in the development of EmulationStation Desktop Edition.
|
||||||
All of this be easily installed with `apt-get`:
|
|
||||||
```bash
|
|
||||||
sudo apt-get install libsdl2-dev libfreeimage-dev libfreetype6-dev libcurl4-openssl-dev rapidjson-dev \
|
|
||||||
libasound2-dev libgl1-mesa-dev build-essential cmake fonts-droid-fallback libvlc-dev \
|
|
||||||
libvlccore-dev vlc-bin
|
|
||||||
```
|
|
||||||
**On Fedora:**
|
|
||||||
All of this be easily installed with `dnf` (with rpmfusion activated) :
|
|
||||||
```bash
|
|
||||||
sudo dnf install SDL2-devel freeimage-devel freetype-devel curl-devel \
|
|
||||||
alsa-lib-devel mesa-libGL-devel cmake \
|
|
||||||
vlc-devel rapidjson-devel
|
|
||||||
```
|
|
||||||
|
|
||||||
Note this Repository uses a git submodule - to checkout the source and all submodules, use
|
Or just go ahead and browse the repository for additional information, or maybe more important, to see the actual source code :)
|
||||||
|
|
||||||
```bash
|
|
||||||
git clone --recursive https://github.com/RetroPie/EmulationStation.git
|
|
||||||
```
|
|
||||||
|
|
||||||
or
|
What it can do
|
||||||
|
==============
|
||||||
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/RetroPie/EmulationStation.git
|
|
||||||
cd EmulationStation
|
|
||||||
git submodule update --init
|
|
||||||
```
|
|
||||||
|
|
||||||
Then, generate and build the Makefile with CMake:
|
|
||||||
```bash
|
|
||||||
cd YourEmulationStationDirectory
|
|
||||||
cmake .
|
|
||||||
make
|
|
||||||
```
|
|
||||||
|
|
||||||
NOTE: to generate a `Debug` build on Unix/Linux, run the Makefile generation step as:
|
|
||||||
```bash
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Debug .
|
|
||||||
```
|
|
||||||
|
|
||||||
**On the Raspberry Pi:**
|
|
||||||
|
|
||||||
Complete Raspberry Pi build instructions at [emulationstation.org](http://emulationstation.org/gettingstarted.html#install_rpi_standalone).
|
|
||||||
|
|
||||||
**On Windows:**
|
|
||||||
|
|
||||||
[FreeImage](http://downloads.sourceforge.net/freeimage/FreeImage3154Win32.zip)
|
|
||||||
|
|
||||||
[FreeType2](http://download.savannah.gnu.org/releases/freetype/freetype-2.4.9.tar.bz2) (you'll need to compile)
|
|
||||||
|
|
||||||
[SDL2](http://www.libsdl.org/release/SDL2-devel-2.0.8-VC.zip)
|
|
||||||
|
|
||||||
[cURL](http://curl.haxx.se/download.html) (you'll need to compile or get the pre-compiled DLL version)
|
|
||||||
|
|
||||||
[RapisJSON](https://github.com/tencent/rapidjson) (you'll need the `include/rapidsjon` added to the include path)
|
|
||||||
|
|
||||||
(Remember to copy necessary .DLLs into the same folder as the executable: probably FreeImage.dll, freetype6.dll, SDL2.dll, libcurl.dll, and zlib1.dll. Exact list depends on if you built your libraries in "static" mode or not.)
|
|
||||||
|
|
||||||
[CMake](http://www.cmake.org/cmake/resources/software.html) (this is used for generating the Visual Studio project)
|
|
||||||
|
|
||||||
(If you don't know how to use CMake, here are some hints: run cmake-gui and point it at your EmulationStation folder. Point the "build" directory somewhere - I use EmulationStation/build. Click configure, choose "Visual Studio [year] Project", fill in red fields as they appear and keep clicking Configure (you may need to check "Advanced"), then click Generate.)
|
|
||||||
|
|
||||||
|
|
||||||
Configuring
|
|
||||||
===========
|
|
||||||
|
|
||||||
**~/.emulationstation/es_systems.cfg:**
|
|
||||||
When first run, an example systems configuration file will be created at `~/.emulationstation/es_systems.cfg`. `~` is `$HOME` on Linux, and `%HOMEPATH%` on Windows. This example has some comments explaining how to write the configuration file. See the "Writing an es_systems.cfg" section for more information.
|
|
||||||
|
|
||||||
**Keep in mind you'll have to set up your emulator separately from EmulationStation!**
|
|
||||||
|
|
||||||
**~/.emulationstation/es_input.cfg:**
|
|
||||||
When you first start EmulationStation, you will be prompted to configure an input device. The process is thus:
|
|
||||||
|
|
||||||
1. Hold a button on the device you want to configure. This includes the keyboard.
|
|
||||||
|
|
||||||
2. Press the buttons as they appear in the list. Some inputs can be skipped by holding any button down for a few seconds (e.g. page up/page down).
|
|
||||||
|
|
||||||
3. You can review your mappings by pressing up and down, making any changes by pressing A.
|
|
||||||
|
|
||||||
4. Choose "SAVE" to save this device and close the input configuration screen.
|
|
||||||
|
|
||||||
The new configuration will be added to the `~/.emulationstation/es_input.cfg` file.
|
|
||||||
|
|
||||||
**Both new and old devices can be (re)configured at any time by pressing the Start button and choosing "CONFIGURE INPUT".** From here, you may unplug the device you used to open the menu and plug in a new one, if necessary. New devices will be appended to the existing input configuration file, so your old devices will remain configured.
|
|
||||||
|
|
||||||
**If your controller stops working, you can delete the `~/.emulationstation/es_input.cfg` file to make the input configuration screen re-appear on next run.**
|
|
||||||
|
|
||||||
|
|
||||||
You can use `--help` or `-h` to view a list of command-line options. Briefly outlined here:
|
|
||||||
```
|
|
||||||
--resolution [width] [height] Try and force a particular resolution
|
|
||||||
--gamelist-only Skip automatic game search, only read from gamelist.xml
|
|
||||||
--ignore-gamelist Ignore the gamelist (useful for troubleshooting)
|
|
||||||
--draw-framerate Display the framerate
|
|
||||||
--no-exit Don't show the exit option in the menu
|
|
||||||
--no-splash Don't show the splash screen
|
|
||||||
--debug More logging, show console on Windows
|
|
||||||
--scrape Scrape using command line interface
|
|
||||||
--windowed Not fullscreen, should be used with --resolution
|
|
||||||
--fullscreen-normal Run in normal fullscreen mode
|
|
||||||
--fullscreen-borderless Run in borderless fullscreen mode (always on top)
|
|
||||||
--vsync [1/on or 0/off] Turn vsync on or off (default is on)
|
|
||||||
--max-vram [size] Max VRAM to use in Mb before swapping. 0 for unlimited
|
|
||||||
--force-kid Force the UI mode to be Kid
|
|
||||||
--force-kiosk Force the UI mode to be Kiosk
|
|
||||||
--force-disable-filters Force the UI to ignore applied filters in gamelist
|
|
||||||
--home [path] Directory to use as home path
|
|
||||||
--help, -h Summon a sentient, angry tuba
|
|
||||||
```
|
|
||||||
|
|
||||||
As long as ES hasn't frozen, you can always press F4 to close the application.
|
|
||||||
|
|
||||||
|
|
||||||
Writing an es_systems.cfg
|
|
||||||
=========================
|
|
||||||
|
|
||||||
Complete configuration instructions at [emulationstation.org](http://emulationstation.org/gettingstarted.html#config).
|
|
||||||
|
|
||||||
The `es_systems.cfg` file contains the system configuration data for EmulationStation, written in XML. This tells EmulationStation what systems you have, what platform they correspond to (for scraping), and where the games are located.
|
|
||||||
|
|
||||||
ES will check two places for an es_systems.cfg file, in the following order, stopping after it finds one that works:
|
|
||||||
* `~/.emulationstation/es_systems.cfg`
|
|
||||||
* `/etc/emulationstation/es_systems.cfg`
|
|
||||||
|
|
||||||
The order EmulationStation displays systems reflects the order you define them in.
|
|
||||||
|
|
||||||
**NOTE:** A system *must* have at least one game present in its "path" directory, or ES will ignore it! If no valid systems are found, ES will report an error and quit!
|
|
||||||
|
|
||||||
Here's an example es_systems.cfg:
|
|
||||||
|
|
||||||
```xml
|
|
||||||
<!-- This is the EmulationStation Systems configuration file.
|
|
||||||
All systems must be contained within the <systemList> tag.-->
|
|
||||||
|
|
||||||
<systemList>
|
|
||||||
<!-- Here's an example system to get you started. -->
|
|
||||||
<system>
|
|
||||||
<!-- A short name, used internally. -->
|
|
||||||
<name>snes</name>
|
|
||||||
|
|
||||||
<!-- A "pretty" name, displayed in the menus and such. This one is optional. -->
|
|
||||||
<fullname>Super Nintendo Entertainment System</fullname>
|
|
||||||
|
|
||||||
<!-- The path to start searching for ROMs in. '~' will be expanded to $HOME or %HOMEPATH%, depending on platform.
|
|
||||||
All subdirectories (and non-recursive links) will be included. -->
|
|
||||||
<path>~/roms/snes</path>
|
|
||||||
|
|
||||||
<!-- A list of extensions to search for, delimited by any of the whitespace characters (", \r\n\t").
|
|
||||||
You MUST include the period at the start of the extension! It's also case sensitive. -->
|
|
||||||
<extension>.smc .sfc .SMC .SFC</extension>
|
|
||||||
|
|
||||||
<!-- The shell command executed when a game is selected. A few special tags are replaced if found in a command, like %ROM% (see below). -->
|
|
||||||
<command>snesemulator %ROM%</command>
|
|
||||||
<!-- This example would run the bash command "snesemulator /home/user/roms/snes/Super\ Mario\ World.sfc". -->
|
|
||||||
|
|
||||||
<!-- The platform(s) to use when scraping. You can see the full list of accepted platforms in src/PlatformIds.cpp.
|
|
||||||
It's case sensitive, but everything is lowercase. This tag is optional.
|
|
||||||
You can use multiple platforms too, delimited with any of the whitespace characters (", \r\n\t"), eg: "genesis, megadrive" -->
|
|
||||||
<platform>snes</platform>
|
|
||||||
|
|
||||||
<!-- The theme to load from the current theme set. See THEMES.md for more information.
|
|
||||||
This tag is optional; if not set, it will use the value of <name>. -->
|
|
||||||
<theme>snes</theme>
|
|
||||||
</system>
|
|
||||||
</systemList>
|
|
||||||
```
|
|
||||||
|
|
||||||
The following "tags" are replaced by ES in launch commands:
|
|
||||||
|
|
||||||
`%ROM%` - Replaced with absolute path to the selected ROM, with most Bash special characters escaped with a backslash.
|
|
||||||
|
|
||||||
`%BASENAME%` - Replaced with the "base" name of the path to the selected ROM. For example, a path of "/foo/bar.rom", this tag would be "bar". This tag is useful for setting up AdvanceMAME.
|
|
||||||
|
|
||||||
`%ROM_RAW%` - Replaced with the unescaped, absolute path to the selected ROM. If your emulator is picky about paths, you might want to use this instead of %ROM%, but enclosed in quotes.
|
|
||||||
|
|
||||||
See [SYSTEMS.md](SYSTEMS.md) for some live examples in EmulationStation.
|
|
||||||
|
|
||||||
gamelist.xml
|
|
||||||
============
|
|
||||||
|
|
||||||
The gamelist.xml file for a system defines metadata for games, such as a name, image (like a screenshot or box art), description, release date, and rating.
|
|
||||||
|
|
||||||
If at least one game in a system has an image specified, ES will use the detailed view for that system (which displays metadata alongside the game list).
|
|
||||||
|
|
||||||
*You can use ES's [scraping](http://en.wikipedia.org/wiki/Web_scraping) tools to avoid creating a gamelist.xml by hand.* There are two ways to run the scraper:
|
|
||||||
|
|
||||||
* **If you want to scrape multiple games:** press start to open the menu and choose the "SCRAPER" option. Adjust your settings and press "SCRAPE NOW".
|
|
||||||
* **If you just want to scrape one game:** find the game on the game list in ES and press select. Choose "EDIT THIS GAME'S METADATA" and then press the "SCRAPE" button at the bottom of the metadata editor.
|
|
||||||
|
|
||||||
You can also edit metadata within ES by using the metadata editor - just find the game you wish to edit on the gamelist, press Select, and choose "EDIT THIS GAME'S METADATA."
|
|
||||||
|
|
||||||
A command-line version of the scraper is also provided - just run emulationstation with `--scrape` *(currently broken)*.
|
|
||||||
|
|
||||||
The switch `--ignore-gamelist` can be used to ignore the gamelist and force ES to use the non-detailed view.
|
|
||||||
|
|
||||||
If you're writing a tool to generate or parse gamelist.xml files, you should check out [GAMELISTS.md](GAMELISTS.md) for more detailed documentation.
|
|
||||||
|
|
||||||
|
|
||||||
Themes
|
|
||||||
======
|
|
||||||
|
|
||||||
By default, EmulationStation looks pretty ugly. You can fix that. If you want to know more about making your own themes (or editing existing ones), read [THEMES.md](THEMES.md)!
|
|
||||||
|
|
||||||
I've put some themes up for download on my EmulationStation webpage: http://aloshi.com/emulationstation#themes
|
|
||||||
|
|
||||||
If you're using RetroPie, you should already have a nice set of themes automatically installed!
|
|
||||||
|
|
||||||
|
|
||||||
-Alec "Aloshi" Lofquist
|
|
||||||
http://www.aloshi.com
|
|
||||||
http://www.emulationstation.org
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
The EmulationStation theme 'rbsimple-DE' is based on 'recalbox-multi' by the Recalbox community.
|
The EmulationStation theme 'rbsimple-DE' is based on 'recalbox-multi' by the Recalbox community. \
|
||||||
Some graphics was also taken from 'carbon' by Rookervik.
|
Some graphics was also taken from 'carbon' by Rookervik.
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,8 +7,7 @@ Recalbox credits
|
||||||
- Supernature2k
|
- Supernature2k
|
||||||
- Paradadf
|
- Paradadf
|
||||||
|
|
||||||
Original work from
|
Original work from the Recalbox community:
|
||||||
Recalbox's community:
|
|
||||||
- Zuco
|
- Zuco
|
||||||
- Sm3ck
|
- Sm3ck
|
||||||
- Th4Shin
|
- Th4Shin
|
||||||
|
@ -25,5 +24,5 @@ Recalbox's community:
|
||||||
|
|
||||||
Other credits
|
Other credits
|
||||||
=============
|
=============
|
||||||
Theme 'carbon' v2.4 - 2016-08-16 by Rookervik
|
Theme 'carbon' v2.4 - 2016-08-16 by Rookervik, \
|
||||||
based on simple(c) Nils Bonenberger - nilsbyte@nilsbyte.de - http://blog.nilsbyte.de/
|
based on simple(c) Nils Bonenberger - nilsbyte@nilsbyte.de - http://blog.nilsbyte.de/
|
||||||
|
|
Loading…
Reference in a new issue