Started commandline documents update to dismiss items no longer in source and start listing recently added commands. More work to come. [Tafoid]

This commit is contained in:
Scott Stone 2018-09-24 13:55:18 -04:00
parent 02de010497
commit fdb070c61d
2 changed files with 145 additions and 22 deletions

View File

@ -349,6 +349,12 @@ Configuration Options
Core Search Path Options Core Search Path Options
------------------------ ------------------------
.. _mame-commandline-homepath:
**-homepath** *<path>*
Specifies a path within which to find the plugins base folder. The default is '.' (that is, in the same directory as the MAME executable).
.. _mame-commandline-rompath: .. _mame-commandline-rompath:
**-rompath** / **-rp** *<path>* **-rompath** / **-rp** *<path>*
@ -415,6 +421,11 @@ Core Search Path Options
Specifies a list of paths within which to find language files for localized UI text. Specifies a list of paths within which to find language files for localized UI text.
.. _mame-commandline-swpath:
**-swpath** *<path>*
Specifies a path within which to find loose software to be used by emulation.
Core Output Directory Options Core Output Directory Options
@ -915,6 +926,18 @@ Core Artwork Options
Enables/disables the display of marquees. The default is ON (*-use_marquees*). Enables/disables the display of marquees. The default is ON (*-use_marquees*).
.. _mame-commandline-fallbackartwork:
**-fallback_artwork**
Specifies fallback artwork if no external artwork or internal driver layout is defined.
.. _mame-commandline-overrideartwork:
**-override_artwork**
Specifies override artwork for external artwork and internal driver layout.
Core Screen Options Core Screen Options
@ -957,15 +980,21 @@ Core Vector Options
.. _mame-commandline-noantialias: .. _mame-commandline-noantialias:
**-[no]antialias** / **-[no]aa** **-beam_width_min** *<width>*
Enables antialiased line rendering for vector systems. The default is ON (*-antialias*). Sets the vector beam minimum width.
.. _mame-commandline-beam: .. _mame-commandline-beam:
**-beam** *<width>* **-beam_width_max** *<width>*
Sets the width of the vectors. This is a scaling factor against the standard vector width. A value of 1.0 will keep the default vector line width. Smaller values will reduce the width, and larger values will increase the width. The default is *1.0*. Sets the vector beam maximum width.
.. _mame-commandline-beamintensityweight:
**-beam_intensity_weight** *<weight>*
Sets the vector beam intensity weight.
.. _mame-commandline-flicker: .. _mame-commandline-flicker:
@ -1372,6 +1401,12 @@ Core Communication Options
Remote port to connect to. This can be any traditional communications port as an unsigned 16-bit integer (0-65535). The default value is "*15122*". Remote port to connect to. This can be any traditional communications port as an unsigned 16-bit integer (0-65535). The default value is "*15122*".
.. _mame-commandline-commframesync:
**-[no]comm_framesync**
Synchronize frames between the communications network. The default is OFF (*-nocomm_framesync*)".
Core Misc Options Core Misc Options
@ -1424,6 +1459,12 @@ Core Misc Options
Specifies the name of a font file to use for the UI font. If this font cannot be found or cannot be loaded, the system will fall back to its built-in UI font. On some platforms *fontname* can be a system font name instead of a BDF font file. The default is *default* (use the OSD-determined default font). Specifies the name of a font file to use for the UI font. If this font cannot be found or cannot be loaded, the system will fall back to its built-in UI font. On some platforms *fontname* can be a system font name instead of a BDF font file. The default is *default* (use the OSD-determined default font).
.. _mame-commandline-ui:
**-ui** *<type>*
Specifies the type of UI to use, either 'simple' or 'cabinet'. The default is Cabinet (*-ui cabinet*).
.. _mame-commandline-ramsize: .. _mame-commandline-ramsize:
**-ramsize** *[n]* **-ramsize** *[n]*
@ -1442,6 +1483,23 @@ Core Misc Options
Displays a mouse cursor when using the built-in UI for MAME. The default is (*-noui_mouse*). Displays a mouse cursor when using the built-in UI for MAME. The default is (*-noui_mouse*).
.. _mame-commandline-language:
**-language** *<language>*
Specify a localization language found in the *languagepath* tree.
.. _mame-commandline-nvramsave:
**-nvram_save**
Save the NVRAM from being overwitten on exit. The default of OFF (*-nonvram_save*).
Scripting Options
-----------------
.. _mame-commandline-autobootcommand: .. _mame-commandline-autobootcommand:
**-autoboot_command** *"<command>"* **-autoboot_command** *"<command>"*
@ -1462,8 +1520,48 @@ Core Misc Options
File containing scripting to execute after machine boot. File containing scripting to execute after machine boot.
.. _mame-commandline-language: .. _mame-commandline-console:
**-language** *<language>* **-console**
Specify a localization language found in the *languagepath* tree. Enables emulator Lua Console window. The default of OFF (*-noconsole*).
.. _mame-commandline-plugins:
**-plugins**
Enable the use of Lua Plugins. The default is ON (*-plugins*).
.. _mame-plugin:
**-plugin* *[plugin shortname]*
A list of Lua Plugins to enable, comma separated.
.. _mame-commandline-noplugin:
**-noplugin** *[plugin shortname]*
A list of Lua Plugins to disable, comma separated.
HTTP SERVER OPTIONS
-------------------
.. _mame-commandline-http:
**-http**
Enable HTTP server. The default is OFF (*-nohttp*).
.. _mame-commandline-httpport:
**-http_port** *[port]*
Choose HTTP server port. The default is *8080*.
.. _mame-commandline-httproot:
**-http_root** *[rootfolder]*
Choose HTTP server document root. The default os *web*.

View File

@ -82,6 +82,7 @@ Configuration Options
Core Search Path Options Core Search Path Options
~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
| :ref:`homepath <mame-commandline-homepath>`
| :ref:`rompath <mame-commandline-rompath>` | :ref:`rompath <mame-commandline-rompath>`
| :ref:`hashpath <mame-commandline-hashpath>` | :ref:`hashpath <mame-commandline-hashpath>`
| :ref:`samplepath <mame-commandline-samplepath>` | :ref:`samplepath <mame-commandline-samplepath>`
@ -93,6 +94,7 @@ Core Search Path Options
| :ref:`crosshairpath <mame-commandline-crosshairpath>` | :ref:`crosshairpath <mame-commandline-crosshairpath>`
| :ref:`pluginspath <mame-commandline-pluginspath>` | :ref:`pluginspath <mame-commandline-pluginspath>`
| :ref:`languagepath <mame-commandline-languagepath>` | :ref:`languagepath <mame-commandline-languagepath>`
| :ref:`swpath <mame-commandline-swpath>`
Core Output Directory Options Core Output Directory Options
@ -194,6 +196,8 @@ Core Artwork Options
| :ref:`[no]use_bezels <mame-commandline-nousebezels>` | :ref:`[no]use_bezels <mame-commandline-nousebezels>`
| :ref:`[no]use_cpanels <mame-commandline-nousecpanels>` | :ref:`[no]use_cpanels <mame-commandline-nousecpanels>`
| :ref:`[no]use_marquees <mame-commandline-nousemarquees>` | :ref:`[no]use_marquees <mame-commandline-nousemarquees>`
| :ref:`fallback_artwork <mame-commandline-fallbackartwork>`
| :ref:`override_artwork <mame-commandline-overrideartwork>`
Core Screen Options Core Screen Options
@ -209,8 +213,9 @@ Core Screen Options
Core Vector Options Core Vector Options
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
| :ref:`[no]antialias <mame-commandline-noantialias>` | :ref:`beam_width_min <mame-commandline-beamwidthmin>`
| :ref:`beam <mame-commandline-beam>` | :ref:`beam_width_max <mame-commandline-beamwidthmax>`
| :ref:`beam_intensity_weight <mame-commandline-beamintensityweight>`
| :ref:`flicker <mame-commandline-flicker>` | :ref:`flicker <mame-commandline-flicker>`
@ -299,6 +304,7 @@ Core Communication Options
| :ref:`comm_localport <mame-commandline-commlocalport>` | :ref:`comm_localport <mame-commandline-commlocalport>`
| :ref:`comm_remotehost <mame-commandline-commremotehost>` | :ref:`comm_remotehost <mame-commandline-commremotehost>`
| :ref:`comm_remoteport <mame-commandline-commremoteport>` | :ref:`comm_remoteport <mame-commandline-commremoteport>`
| :ref:`[no]comm_framesync <mame-commandline-commframesync>`
Core Misc Options Core Misc Options
@ -312,13 +318,32 @@ Core Misc Options
| :ref:`[no]cheat <mame-commandline-cheat>` | :ref:`[no]cheat <mame-commandline-cheat>`
| :ref:`[no]skip_gameinfo <mame-commandline-skipgameinfo>` | :ref:`[no]skip_gameinfo <mame-commandline-skipgameinfo>`
| :ref:`uifont <mame-commandline-uifont>` | :ref:`uifont <mame-commandline-uifont>`
| :ref:`ui <mame-commandline-ui>`
| :ref:`ramsize <mame-commandline-ramsize>` | :ref:`ramsize <mame-commandline-ramsize>`
| :ref:`confirm_quit <mame-commandline-confirmquit>` | :ref:`confirm_quit <mame-commandline-confirmquit>`
| :ref:`ui_mouse <mame-commandline-uimouse>` | :ref:`ui_mouse <mame-commandline-uimouse>`
| :ref:`language <mame-commandline-language>`
| :ref:`[no]nvram_save <mame-commandline-nvramsave>`
Scripting Options
-----------------
| :ref:`autoboot_command <mame-commandline-autobootcommand>` | :ref:`autoboot_command <mame-commandline-autobootcommand>`
| :ref:`autoboot_delay <mame-commandline-autobootdelay>` | :ref:`autoboot_delay <mame-commandline-autobootdelay>`
| :ref:`autoboot_script <mame-commandline-autobootscript>` | :ref:`autoboot_script <mame-commandline-autobootscript>`
| :ref:`language <mame-commandline-language>` | :ref:`[no]console <mame-commandline-console>`
| :ref:`[no]plugins <mame-commandline-plugins>`
| :ref:`plugin <mame-commandline-plugin>`
| :ref:`noplugin <mame-commandline-noplugin>`
HTTP SERVER OPTIONS
-------------------
| :ref:`http <mame-commandline-http>`
| :ref:`http_port <mame-commandline-httpport>`
| :ref:`http_root <mame-commandline-httproot>`
Windows-Specific Commandline Options Windows-Specific Commandline Options