├── Fittest-Individual ├── Ice-Fishing-Display.py ├── Images ├── Barrel.png ├── Boot.png ├── Crab.png ├── Fish.png ├── Hook.png ├── HookShocked.png ├── Ice_Fishing.PNG.png ├── Jellyfish.png ├── PenguinArt.xcf ├── bg.png └── fishgame.py ├── README.md ├── Sounds ├── Catch.wav ├── Deliver.wav ├── Music.mp3 ├── Obstacle.wav └── Shock.wav ├── config.txt ├── requirements.txt └── state.txt /Fittest-Individual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Fittest-Individual -------------------------------------------------------------------------------- /Ice-Fishing-Display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Ice-Fishing-Display.py -------------------------------------------------------------------------------- /Images/Barrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/Barrel.png -------------------------------------------------------------------------------- /Images/Boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/Boot.png -------------------------------------------------------------------------------- /Images/Crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/Crab.png -------------------------------------------------------------------------------- /Images/Fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/Fish.png -------------------------------------------------------------------------------- /Images/Hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/Hook.png -------------------------------------------------------------------------------- /Images/HookShocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/HookShocked.png -------------------------------------------------------------------------------- /Images/Ice_Fishing.PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/Ice_Fishing.PNG.png -------------------------------------------------------------------------------- /Images/Jellyfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/Jellyfish.png -------------------------------------------------------------------------------- /Images/PenguinArt.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/PenguinArt.xcf -------------------------------------------------------------------------------- /Images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/bg.png -------------------------------------------------------------------------------- /Images/fishgame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Images/fishgame.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/README.md -------------------------------------------------------------------------------- /Sounds/Catch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Sounds/Catch.wav -------------------------------------------------------------------------------- /Sounds/Deliver.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Sounds/Deliver.wav -------------------------------------------------------------------------------- /Sounds/Music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Sounds/Music.mp3 -------------------------------------------------------------------------------- /Sounds/Obstacle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Sounds/Obstacle.wav -------------------------------------------------------------------------------- /Sounds/Shock.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/Sounds/Shock.wav -------------------------------------------------------------------------------- /config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt-Jennings-GitHub/Fishing-Game-NEAT/HEAD/config.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pygame 2 | numpy 3 | neat-python 4 | matplotlib -------------------------------------------------------------------------------- /state.txt: -------------------------------------------------------------------------------- 1 | NotDone --------------------------------------------------------------------------------