License
Wumpus World in C is released under GPLv2 license.
Description
Hunt the Wumpus an early video game where player navigates cave in search for gold avoiding dangerous monsters (Wumpus) and bottomless pits. In modern studies of intelligent system this world is very often modeled using various programming languages where computer tries to intelligently find gold without being killed. This is my implementation of Wumpus World in C programming language.
Requirements
- Any standard C library and compiler.
Instructions for a Linux based operating system
First make sure you have C library and GCC compiler installed. If you're using Ubuntu based Linux distribution you can use following command to install required tools:
sudo apt-get install build-essential |
Now you can get the latest package, unpack it and compile the code using following commands:
1 2 3 4 5 | wget -c https://github.com/Marko-M/wumpus-world/archive/master.zip && unzip master.zip cd wumpus-world-master/src/ make chmod +x wumpus-world ./wumpus-world |
Download
Wumpus World in C source code is hosted by GitHub from where you can download current copy of its master branch:
You can also fork or contribute to Wumpus World in C by visiting its official GitHub repository page:
Sir I have downloaded ur game I am having problem in compiling it.
Please tell me the step by step procedure of running this game in C language.