| To build simulator: ~> javac WorldApplication.java | ||
| To run simulator: ~> java WorldApplication [options] | ||
| Command-line options available: | ||
| -d <dimension> | : sets the dimensions of the Wumpus World to be dimension x dimension. Default: 4 (a 4x4 world) | |
| -s <steps> | : sets the maximum number of time steps. Default: 50 | |
| -t <trials> | : sets the number of trials. Default: 1 | |
| -a <randAgent> | : sets whether the agent's location and orientation is randomly generated. Default: true | |
| -r <seed> | : sets the seed for the random Wumpus World generator. Default: (random integer) | |
| -n <nonDeterm> | : sets whether the agent's GO_FORWARD action behavior is non-deterministic. Default: false | |
| NOTE: modify AgentFunction.java to implement your own agent. | ||
| Gameplay Legend: | ||
| P - Pit | ||
| W - live Wumpus | ||
| * - dead Wumpus | ||
| G - Gold | ||
| A - agent facing North > - agent facing East V - agent facing South < - agent facing West |
||