Overview
Project: Mothership Mayhem
Estimated Development Time: 10hrs
Lines Of Code: 300 (Including comments and spacing)
Description: The slot system manages how enemies surround the player, creating a more fluid like approach towards the player and preventing pileups.
Objectives:
1. Track open spaces around the player.
2. Assign or refuse slots to requesting enemies.
Thought Process and Choices
Why I chose to use a Slot System:
A slot system is a simplistic solution for coordinating movement and positions for a large number of npc(non-player character) units. It also integrated very smoothly with the AI Director approach I was already taking. Lastly, developing a slot system is not very time consuming, making it ideal for a 5 month project.
Risks:
The aspect I feared the most with the concept of a slot system was a very square-ish/structured looked to the positioning of enemy units.
Results:
I was given a decent amount of advice for the slot system prior to starting on it. Some of it was good and some parts I ended up changing to match more of the style we wanted in Mothership Mayhem. These changes are what helped me avoid my initial fear of an unnatural positioning of enemies. In the end, however, the slot system was by far the easiest system to develop, finishing about a day ahead of schedule.
Design and Development
Although, the slot system was one of quickest systems to implement it was also had some of the largest redesigns during its creation. In order to explain these changes I'm going to separate this section into two parts: original design and final product.
Original Design:
A slot system is basically a series of positions around the player from which enemies can attack. These positions are 'rented out' to enemies temporarily rather than a single enemy holding claim to one for their lifespan. When creating the design documents I initially had a slot for every enemy type and the layout was a square as per the advice I had been given.
The heavy bot was replaced by the flying bot in the final version of the game
At this point the game also took place mostly at ground level. As you can guess, these were a lot of positions to keep track of, but at the same time I was told it wasn't the systems job to determine whether or not a slot was viable, as in there could possibly be a huge pillar sitting on top of that slot. It was this aspect, along with the square shape, that really bothered me. The whole point with the AI Director was to keep the individual units 'dumb.' The director handled their line-of-sight checks, pathing, and target choices so why should I force the units to have to determine the viability of a slot they are given.
Final Product:
There were three main changes I made to the original design. Firstly, Light Bots are the only units using the system. They are the only enemy type that show up in large numbers. Forcing the Flying bots and Ranged Bots into this system actually limited their behaviors. This decision greatly reduced the total number of slots. Since the slot system is one of the few AI Updates that happens every single frame this was a decent optimization.
The next aspect to be changed was the shape. It turned into a circle, with circular boundaries for each individual slot. The layout is scaled to the radius and attack range of each slot.
Each of the white balls around the player represents a viable slot
Along with changing the shape, I added an additional vertical tier to the slot layout.
The third major change is I gave the responsibility of determining slot viability to the slot system. When a slot is has its line-of-sight to the player obstructed or is positioned within an object the slot is locked. Enemies currently within the slot are removed and the slot is not passed out to anyone else until it becomes viable again.
The black balls represent non-viable slots
Postmortem
What I Would Have Done Differently:
There is not anything specifically I would have done differently with the system itself. However, I did rely too heavily on a single source for the original design of the system. This threw me off course for a bit, making me hesitant in the beginning to change from what I thought was the 'correct' way of developing a slot system.