StartedNovember 29th 2021
Time6 weeks
LanguageC#
EngineUnity
This is a project about learning and experimenting with AI. I needed to create a bunch of different AI steering behaviours. And at the end, implement them into a game or simulation. For the second part of this Project we worked in groups of three, picked the best steering behaviour (which was mine) and implemented it into a game.
For this project, we needed to make a bunch of different steering behaviours, then control them via an enum in a script. But I did it a bit different. About 2 weeks in, I changed my base class to a StateMachineBehaviour. This made it easier for me to create the state machines.
When a state first gets created, It will try and get all references it wants from the gameobject it is attached to. Then when it gets activated, it will be added to the StateController. This controller will call FixedUpdate & OnDrawGizmos on all active states.
To finish off the solo part of this project. I tried to simulate a small ecosystem of about 200 animals. There are 2 types of animals: Rabbit and the Cat. The rabbit survives by eating berries and the cat by eating the rabbits. I think the result is quite interesting to look at.
This script is responsible for sending all the values to the animatorThe animator is used as the Finite State Machine. There are also a couple of seperate components that are responsible for the movement, hunger, sight, etc. The animator is responsible for managing all the states & animations.
Developer | Jari | UI, unit stats |
Developer | Jeroen | Unit AI, Enemy AI |
Developer | Joep | Unit Spawning |
For this exercise, we worked on a small castle siege game. The player could spawn units with stats that add up to 100% total, and attack the enemy castle. The enemy would spawn units with random stats, and attack the player's castle. Units had 6 behaviours, which would determine what they would do. The player would have to kill the enemy castle to win.
For Castle Siege, we added a few different behaviours. Some for attacking, others for walking towards different points on the map. For the AI I Inherited the BaseBrain and extended it so it could see where the enemy castle is, the healing & damage ring, etc.