<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Configuration</title><link>https://sourceforge.net/p/ms-pacman/wiki/Configuration/</link><description>Recent changes to Configuration</description><atom:link href="https://sourceforge.net/p/ms-pacman/wiki/Configuration/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 20 Sep 2012 16:04:10 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/ms-pacman/wiki/Configuration/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/Configuration/</link><description>&lt;pre&gt;--- v11
+++ v12
@@ -1,5 +1,5 @@
 Configuration
-===
+----------
 
 All aspects of the simulation, the learning process and the user interface, may be altered using the Global settings. These can be found in the file Globals.java, along with a short explanation of each setting. We'll now walk through the various parameters and explain their function. Details on how to properly set them should still be looked up in Globals.java. The file also contains a number of constants, which should in principle not be changed.
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Thu, 20 Sep 2012 16:04:10 -0000</pubDate><guid>https://sourceforge.netb3a87e9e34fcb30f2061ad4c1e748700d40562c0</guid></item><item><title>WikiPage Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/Configuration/</link><description>&lt;pre&gt;--- v10
+++ v11
@@ -41,4 +41,4 @@
 It is possible to force all ghosts into a specific state, instead of letting them automatically cycle through them. To enable this, set alwaysEnabled to true and set alwaysState to either GHOST_RANDOM, GHOST_CHASE, GHOST_SCATTER or GHOST_AFRAID.
 
 ##### activeNet #####
-You can set which neural networks should be used using this value. The framework incorporates three neural networks: one called DODGE for dodging the ghosts and collecting pills and one called HUNT for chasing scared ghosts. By setting activeNet to either NETWORK_DODGE or NETWORK_HUNT, only the corresponding neural network will be used. By setting it to NETWORK_AUTO, the framework will automatically switch between the two of them. Alternatively activeNet can be set to NETWORK_ACTION, to let the framework use one neural network per action (left, right, up, down).
+Out of the box, the framework incorporates three neural networks which were dubbed DODGE, ROBERT and HUNT. By setting activeNet to either NETWORK_DODGE, NETWORK_ROBERT or NETWORK_HUNT, only the corresponding neural network will be used. By setting it to NETWORK_AUTO, the framework will automatically switch between the three of them using the function SelectProperNetwork in PacMan.java. Alternatively activeNet can be set to NETWORK_ACTION, to let the framework use one neural network per action (left, right, up, down).
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Thu, 20 Sep 2012 16:03:10 -0000</pubDate><guid>https://sourceforge.net722d154f368842a7090783ba3e6e8cc832b6904d</guid></item><item><title>WikiPage Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/Configuration/</link><description>&lt;pre&gt;--- v9
+++ v10
@@ -37,3 +37,8 @@
 ##### effectPill #####
 When Ms. Pac-Man is eating pills she travels slightly slower. When this is the case Ms. Pac-Man's normal speed will be multiplied with the value of this setting. So setting it to 0.5 will half the speed.
 
+##### alwaysEnabled #####
+It is possible to force all ghosts into a specific state, instead of letting them automatically cycle through them. To enable this, set alwaysEnabled to true and set alwaysState to either GHOST_RANDOM, GHOST_CHASE, GHOST_SCATTER or GHOST_AFRAID.
+
+##### activeNet #####
+You can set which neural networks should be used using this value. The framework incorporates three neural networks: one called DODGE for dodging the ghosts and collecting pills and one called HUNT for chasing scared ghosts. By setting activeNet to either NETWORK_DODGE or NETWORK_HUNT, only the corresponding neural network will be used. By setting it to NETWORK_AUTO, the framework will automatically switch between the two of them. Alternatively activeNet can be set to NETWORK_ACTION, to let the framework use one neural network per action (left, right, up, down).
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Thu, 20 Sep 2012 16:01:04 -0000</pubDate><guid>https://sourceforge.nete62a713121049e8b337421742a6407d0221a561f</guid></item><item><title>WikiPage Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/Configuration/</link><description>&lt;pre&gt;--- v8
+++ v9
@@ -1,7 +1,7 @@
 Configuration
 ===
 
-All aspects of the simulation, the learning process and the user interface, may be altered using the Global settings. These can be found in the file Globals.java, along with a short explanation of each setting. We'll now walk through the various parameters and explain their function. Details on how to properly set them should still be looked up in Globals.java.
+All aspects of the simulation, the learning process and the user interface, may be altered using the Global settings. These can be found in the file Globals.java, along with a short explanation of each setting. We'll now walk through the various parameters and explain their function. Details on how to properly set them should still be looked up in Globals.java. The file also contains a number of constants, which should in principle not be changed.
 
 --------------------
 ##### loadFile #####
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Thu, 20 Sep 2012 15:52:50 -0000</pubDate><guid>https://sourceforge.netf0112c78eb2a7e88c51175e759cc2643bbf359b6</guid></item><item><title>WikiPage Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/Configuration/</link><description>&lt;pre&gt;--- v7
+++ v8
@@ -11,7 +11,7 @@
 The various input algorithms require to know the maximum path length between two points in the maze. Because it is computationally heavy to calculate this in every game, it must be statically set using this variable.
 
 ##### enableTraining #####
-Optionally, you might want certain settings to change throughout the game. You can do this by settings this variable to true and enabling a training regimen. You will be required to properly alter the contents of the function trainingRegimen, which can be found below this setting. See [Training Regimens] for more information on how to set this up. Please note that enabling a training regimen can sometimes produce odd results in the various graphical plots.
+Optionally, you might want certain settings to change throughout the game. You can do this by settings this variable to true and enabling a training regimen. You will be required to properly alter the contents of the function trainingRegimen, which can be found below this setting. See [Training regimens] for more information on how to set this up. Please note that enabling a training regimen can sometimes produce odd results in the various graphical plots.
 
 ##### startingGhostState #####
 When ghosts are spawned, what should be there initial ghost state? You can set this to either GHOST_RANDOM, GHOST_CHASE, GHOST_SCATTER or GHOST_AFRAID.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Thu, 20 Sep 2012 15:26:48 -0000</pubDate><guid>https://sourceforge.netea7971292364bc3ec96f791c8724b104fe23d936</guid></item><item><title>WikiPage Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/Configuration/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Wed, 19 Sep 2012 23:45:15 -0000</pubDate><guid>https://sourceforge.net248e584ba6f5d0c1eca3e55300c3c48f065bb76f</guid></item><item><title>WikiPage  Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/%2520Configuration/</link><description>&lt;pre&gt;--- v5
+++ v6
@@ -24,3 +24,16 @@
 
 ##### eternalGame #####
 The framework will automatically let the agent play all mazes in the directory maze. Set this setting to false to let the simulation end once all mazes have been played once. Set this setting to true to let the framework keep selecting a random maze.
+
+##### durationPowerpill #####
+How long should the effect of a power pill last? Set this setting to the amount of distance Ms. Pac-Man should travel before a power pill loses its effect.
+
+##### effectPowerpill #####
+Ghosts travel less quickly when Ms. Pac-Man eats a power pill and they become afraid. When a ghost is afraid its normal speed will be multiplied with the value of this setting. So setting it to 0.5 will half the speed.
+
+##### effectEaten #####
+When a ghost is eaten it quickly travels back towards its spawn point. During this time he cannot interact with objects or players. When a ghost is eaten its normal speed will be multiplied with the value of this setting. So setting it to 2 will double the speed.
+
+##### effectPill #####
+When Ms. Pac-Man is eating pills she travels slightly slower. When this is the case Ms. Pac-Man's normal speed will be multiplied with the value of this setting. So setting it to 0.5 will half the speed.
+
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Wed, 19 Sep 2012 23:14:28 -0000</pubDate><guid>https://sourceforge.neta5ad8deb13cc98d6b9ded633ab7def77f342eaa9</guid></item><item><title>WikiPage  Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/%2520Configuration/</link><description>&lt;pre&gt;--- v4
+++ v5
@@ -5,17 +5,13 @@
 
 --------------------
 ##### loadFile #####
-Some settings influence the structure of the network and altering them at a later time will make the simulation unreliable. During training, the framework automatically stores the values of these settings along with the current weights of the network, in the directory NN. By setting this variable, one might load a file from the NN directory and so continue an earlier simulation. This makes it easy to train without the graphical interface and later visualize the results.
-
-Set to the filename to load an earlier simulation. Leave empty to start a new simulation. Even if an earlier simulation is loaded, training will still continue in a new file.
+Some settings influence the structure of the network and altering them at a later time will make the simulation unreliable. During training, the framework automatically stores the values of these settings along with the current weights of the network, in the directory NN. By setting this variable, one might load a file from the NN directory and so continue an earlier simulation. This makes it easy to train without the graphical interface and later visualize the results. Set to the filename to load an earlier simulation. Leave empty to start a new simulation. Even if an earlier simulation is loaded, training will still continue in a new file.
 
 ##### pathLength #####
 The various input algorithms require to know the maximum path length between two points in the maze. Because it is computationally heavy to calculate this in every game, it must be statically set using this variable.
 
 ##### enableTraining #####
-Optionally, you might want certain settings to change throughout the game. You can do this by settings this variable to true and enabling a training regimen. You will be required to properly alter the contents of the function trainingRegimen, which can be found below this setting.
-
-See [Training Regimens] for more information on how to set this up. Please note that enabling a training regimen can sometimes produce odd results in the various graphical plots.
+Optionally, you might want certain settings to change throughout the game. You can do this by settings this variable to true and enabling a training regimen. You will be required to properly alter the contents of the function trainingRegimen, which can be found below this setting. See [Training Regimens] for more information on how to set this up. Please note that enabling a training regimen can sometimes produce odd results in the various graphical plots.
 
 ##### startingGhostState #####
 When ghosts are spawned, what should be there initial ghost state? You can set this to either GHOST_RANDOM, GHOST_CHASE, GHOST_SCATTER or GHOST_AFRAID.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Wed, 19 Sep 2012 23:05:17 -0000</pubDate><guid>https://sourceforge.netc4fa99edb5e66d1c85002842570adc1864b5bb96</guid></item><item><title>WikiPage  Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/%2520Configuration/</link><description>&lt;pre&gt;--- v3
+++ v4
@@ -1,8 +1,9 @@
-Documentation
+Configuration
 ===
 
 All aspects of the simulation, the learning process and the user interface, may be altered using the Global settings. These can be found in the file Globals.java, along with a short explanation of each setting. We'll now walk through the various parameters and explain their function. Details on how to properly set them should still be looked up in Globals.java.
 
+--------------------
 ##### loadFile #####
 Some settings influence the structure of the network and altering them at a later time will make the simulation unreliable. During training, the framework automatically stores the values of these settings along with the current weights of the network, in the directory NN. By setting this variable, one might load a file from the NN directory and so continue an earlier simulation. This makes it easy to train without the graphical interface and later visualize the results.
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Wed, 19 Sep 2012 23:02:29 -0000</pubDate><guid>https://sourceforge.nete67be2378b2bc91073972c5282797b065197c702</guid></item><item><title>WikiPage  Configuration modified by Luuk Bom</title><link>https://sourceforge.net/p/ms-pacman/wiki/%2520Configuration/</link><description>&lt;pre&gt;--- v2
+++ v3
@@ -1,3 +1,6 @@
+Documentation
+===
+
 All aspects of the simulation, the learning process and the user interface, may be altered using the Global settings. These can be found in the file Globals.java, along with a short explanation of each setting. We'll now walk through the various parameters and explain their function. Details on how to properly set them should still be looked up in Globals.java.
 
 ##### loadFile #####
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luuk Bom</dc:creator><pubDate>Wed, 19 Sep 2012 23:02:12 -0000</pubDate><guid>https://sourceforge.net4f33350eeba59680e27f733d2160f4588879f4df</guid></item></channel></rss>