StartedNovember 29th 2021

Time6 weeks

LanguageC#

EngineUnity

AI Playground

C#UnitySchoolAIFSMSoloGroup

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.

States

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.

behaviours

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.

Simulation

Ecosystem

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.

Brains

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.

fsm - variables & brain

Group - Castle Siege

Team

DeveloperJariUI, unit stats
DeveloperJeroenUnit AI, Enemy AI
DeveloperJoepUnit Spawning

Castle Sige

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.

Behaviours

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.

The unit FSM