Implementation of the A* pathfinding algorithm I wrote as part of my Artificial Intelligence module.
It was implemented by using nodes to represent different positions on the map.
The map can consist of multiple types of terrain, each of them having an associated cost:
- Road - move cost 1
- Grass - move cost 3
- Swamp - move cost 5
- Mountain - cannot be traversed
- Water - cannot be traversed