Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 1.21 KB

README.md

File metadata and controls

22 lines (15 loc) · 1.21 KB

Wumpus World Simulator

This project was build to practise building different AI agents to score the maximum possible points

To run the app

  1. Clone the project
  2. Use npm i to install dependencies.
  3. Use npm start to run the app.

Click here to see the hosted app image

image

Rules:

  1. Stench can be perceived in the squares adjacent to the wumpus.
  2. Breeze can be perceived in the squares adjacent to the pits. There will be two pits in the simulation.
  3. The Agent can shoot in the direction he is facing with spacebar. The agent has only one arrow in the game. Shooting the wumpus will kill it and the stench will disappear.
  4. The penalty is -1000 if the agent dies, -1 per move and +1000 if agent grabs the gold.
  5. The goal of the agent is to maximize the score by grabbing the gold. (Note that the gold can be co-located with the wumpus or pits. So it will not always be possible to get the gold)