Tower Defense Demo
A sandbox tower defense where path finding algorithms can be tested. A simple Djikstra and A Star algorithms are implemented. Blackboarding is also used for the sniper tower.
Last updated
A sandbox tower defense where path finding algorithms can be tested. A simple Djikstra and A Star algorithms are implemented. Blackboarding is also used for the sniper tower.
Last updated
This mini tower defense demo is used to demonstrate the different AI tools that were being created. It demonstrates the difference between A Star and Djikstra's algorithms when it comes to path finding.
The regular turret shoots flying agents by checking if any agent has moved into its attack range. They have medium range and are used throughout the maze to destroy agents that try to get to the end.
The sniper towers have infinite range at a cost. They can only shoot agents that are being spotted by active turrets. While there are no agents in the range of any turrets, it can not shoot as indicated by its dark blue colour. The towers use a blackboard to broadcast when an agent enters the range of any turret and the sniper towers use this information to fight back. As seen in the images below, once the sniper tower has been broadcasted an agent from the blackboard, it can start shooting the agents.