CommandLineOptions.wiki
changeset 277 718cb9d18147
parent 276 5d525c4b0130
child 290 b681434f3ef9
equal deleted inserted replaced
276:5d525c4b0130 277:718cb9d18147
    61 
    61 
    62 == Advanced Option Explanations ==
    62 == Advanced Option Explanations ==
    63 
    63 
    64 --prefix and --user-prefix should refer to an installation folder where the game content can be found (DATA_INSTALL_DIR cmake flag).
    64 --prefix and --user-prefix should refer to an installation folder where the game content can be found (DATA_INSTALL_DIR cmake flag).
    65 
    65 
    66 Personal game data is by default it is contained in the following directory:
    66 Personal game data is by default contained in the following directory:
    67 
    67 
    68   * _Windows_: {{{%USERPROFILE%\Hedgewars}}}
    68   * _Windows_: {{{%USERPROFILE%\Hedgewars}}}
    69   * _Linux_: {{{~/.hedgewars}}}
    69   * _Linux_: {{{~/.hedgewars}}}
    70   * _Mac OS X_: {{{~/Library/Application Support/Hedgewars}}}
    70   * _Mac OS X_: {{{~/Library/Application Support/Hedgewars}}}
    71 
    71 
    85   * {{{rqTooltipsOff  = 1024}}}
    85   * {{{rqTooltipsOff  = 1024}}}
    86   * {{{rqDesyncVBlank = 2048}}}
    86   * {{{rqDesyncVBlank = 2048}}}
    87 
    87 
    88 Ex: to have blurry land and simple rope, you would use the number 10 (2+8)
    88 Ex: to have blurry land and simple rope, you would use the number 10 (2+8)
    89 
    89 
       
    90 If you want to get your hands dirty and see how the engine interprets commands, you can check out the source code.
       
    91 [http://code.google.com/p/hedgewars/source/browse/hedgewars/ArgParsers.inc ArgParsers.inc]
       
    92 
    90 == Some examples ==
    93 == Some examples ==
    91 let's see some *GOOD* examples
    94 let's see some *GOOD* examples
    92 
    95 
    93 {{{
    96 {{{
    94 $ hwengine installpath/hedgewars/Data anywhere/replay.hwd
    97 $ hwengine installpath/hedgewars/Data anywhere/replay.hwd
   101 {{{
   104 {{{
   102 $ hwengine anywhere/replay.hwd
   105 $ hwengine anywhere/replay.hwd
   103 $ hwengine installpath/hedgewars/Data anywhere/replay.hwd --set-video 1024 768
   106 $ hwengine installpath/hedgewars/Data anywhere/replay.hwd --set-video 1024 768
   104 $ hwengine installpath/hedgewars/Data anywhere/replay.hwd --nosound 1
   107 $ hwengine installpath/hedgewars/Data anywhere/replay.hwd --nosound 1
   105 }}}
   108 }}}
   106 
       
   107 If you want to get your hands dirty and see how the engine interprets commands, you can check out the source code.
       
   108 [http://code.google.com/p/hedgewars/source/browse/hedgewars/ArgParsers.inc ArgParsers.inc]