Implementing the AI Path Follow Algorithm

Hi guys,

I'm posting my latest Twitch live stream in case you missed it. I talked about the Path Follow Behavior algorithm and how I implemented it in the game engine. I shared tips that novice Game Engine Developers may find useful. It was a short Live Stream but packed with useful information that you may find helpful.

If you want to check out my other streams, feel free to do so at http://www.twitch.tv/haroldserrano

I hope this is helpful.

 

Highlights

In case you don't have time to watch my live stream, here are some highlights:

Things to be aware before you develop a game engine

How the Path Follow AI Steering Behavior works

Thanks for watching.

 

Implementing Steering Behaviors in AI

Hi guys,

Just sharing my latest live stream I did on Twitch. My current goal is to implement an AI system in the game engine. So, Throughout the week I've been reading about Autonomous Agents and Steering Behaviors in AI. I share what I have learned on the live stream below. I hope you enjoy it.

BTW, if you want to watch my live streams, you can visit my Twitch channel at http://www.twitch.tv/haroldserrano

Enjoy.

 
 

Hightlights

In case you don't have time to watch the whole live stream, here are some hightlights:

Basic AI Steering Behaviors

 
 

Thanks for watching.

Implementing an Octree and RayCast

Hi guys,

Sharing a live stream I did on my Twitch channel. I talk about how I use Octrees and Raycast to enable 3D characters go up and down slopes. I Also share how I smooth the motion of a camera using a Recency Weighted Average. And lastly, I share how I enable a child character follow the armature animation of a parent character.

If you want to watch my live stream, you can visit my Twitch channel at http://www.twitch.tv/haroldserrano.

Enjoy

 

Highlights

If you don't have time to watch the whole live stream, no worries, I got you. Here are some highlights that you may find interesting:

Enabling a Character to climb a hill using Octrees and RayCasts

Using Recency Weighted Average to smooth the motion of a camera

Enabling a Child Entity to follow the armature animation of the Parent Entity

Thanks for watching.

 

I just started a Youtube Channel

Hi there,

If you are new to this site, my name is Harold Serrano, and one of the things I’m very passionate about is 3D Game Engine Development. I actually developed a 3D game engine.

Aside from spending my free time working on my game engine, I also blog about...guess what?... yep. I share everything I have learned throughout the development of the engine on this blog.

I write articles about how a game engine works, how to develop your own, about their architecture, etc. Check them out here.

And I want to share the same kind of content through my new Youtube channel. So if you are passionate or interested in knowing what makes a video game tick, how game engines make your favorite games possible, subscribe to my Youtube Channel.

 

Thank you!

 

How does the Game Engine Loop make a game possible?

Ever since I was a kid, I've always been captivated by computer graphics effects. The day I decided to look more into computer graphics was when Angry Bird became popular. I was amazed at the "sling-shot" effect and the collision between the blocks. Honestly, I would play the game to figure out how the collision worked.

So, I picked up a Game Development book and learned how to use the cocos2d game engine and the Box2d Physics system. Creating my first game demo with collision detection was exciting. However, the more I learned, the more I became intrigued. I wanted to learn more; I wanted to dig deeper into computer graphics.

Eventually, I decided to develop my 3D game engine, and it was then when I had to opportunity to dive deeper into Computer Graphics, OpenGL, C++, Design Patterns, Linear Algebra, and Computational Geometry.

Throughout the five years of the engine's development, I deciphered how a game engine truly works, what makes it tick and how each component is linked together to make a game possible.

In this post, I'm going to demystify the purpose of the Game Engine Loop.

Game Engine Loop

The heart of a game engine is the Game Engine Loop. It is through this loop that the interaction between the Math, Rendering and Physics Engine occurs.

 
gameengineloopflowpost1.png
 

During every game-tick, a character flows through these sub-engines, where it is rendered, and subject to physical-simulated forces, such as gravity and collision-responses.

At a minimum, a Game Engine Loop consists of a Rendering Engine and the Update stage.

 
gameengineloopflowpost2.png
 

Rendering Engine

The first stop of a character is the Rendering Engine. The Rendering Engine's responsibility is to render the character depending on the entity's property. For example, if the object is a 3D character, it will enable the proper GPU Shaders (programs) that will utilize the appropriate attributes to recreate the character on the screen. When it comes to rendering a 3D character, a GPU will require at least these attributes: Vertices, Normal Vectors, and UV Coordinates.

 
gameengineloopflowpost4.png
 

However, if the entity is a 2D entity, the GPU will require only the Vertices and UV-Coordinates of the entity.

 
gameengineloopflowpost5.png
 

Unless you have never seen a video game, you know that a typical game contains more than just 3D or 2D characters. It contains skyboxes, explosion effects, etc. A Rendering Engine is capable of rendering each of these entities by activating the correct GPU Shader during the rendering process.

 
gameengineloopflowpost3.png
 

Updating the Coordinate Space

As mentioned above, to properly render an entity, the GPU requires the attributes of the entity. However, it also needs the space coordinates of the entity.

A Space-Coordinate defines the position of an object. Since a game character is made up of hundreds or thousands of vertices, a space-coordinate is assigned to the character, which defines the position of its vertices.

gameengineloopflowpost7.png

The space coordinates contain rotation and translation information of the character. Mathematically, the space coordinate is represented as a 4x4 matrix. The upper 3x3 matrix contains Rotation information, whereas the right-most vector contains Position information.

gameengineloopflowpost6.png

The space coordinate of an entity is known as the Model Space.

If you were to send the Model Space to the GPU, a game engine would render the entity on the wrong location on the screen. You may not even see it at all.

Why?

Because the GPU needs the Model-View-Projection (MVP) coordinate space to place the character on the screen correctly.

To produce the MVP space, the Model Space is transformed into the World Space. The product is then transformed into the Camera (View) Space. Finally, the resulting space is transformed by the Perspective- Projection Space, thus producing the correct MVP space required by the GPU.

 
gameengineloopflowpost8.png
 

The attributes of the entities are sent to the GPU during the initialization of the game whereas the space coordinate is continuously transmitted to the GPU during every game tick by the engine loop.

With these set of information, the GPU can adequately render the 3D entity.

Updating the character state

The next stop in the engine loop is the update stage. The engine calls each entity's update method and checks for the current state of the character. And depending on the state, the game developer sets the appropriate actions.

For example, let's say that you are moving the joystick in the game controller which makes the character walk. The moment that you move the joystick, the state of the character is changed to Walk. When the engine calls the update method of the entity, the walk animation is applied.

walkinganimation.gif

However, at this moment, the space-coordinate of the entity is also modified — specifically the rotation and translation components of the 4x4 matrix. And the new values are transformed into the MVP space and sent to the GPU, thus creating the walking motion that you see in games.

tutorial101.gif

Physics Engine

Most game engines provide a Physics Engine (with Collision-Detection System). A game engine interacts with this system through the Engine Loop.

gameengineloopflowpost9.png

The primary purpose of the Physics Engine is to integrate the Equation of Motion; which means to compute the velocity and position of an object from an applied force. From the newly calculated position, the space coordinate of the model is modified, which creates the illusion of motion.

For example, let's say a game has Gravity enabled. Gravity is a force that acts downward.

During every game-tick, the physics engine computes the new velocity and position of the character, thus modifying the coordinate system of the entity. Which upon rendering, creates the illusion that the character is falling due to gravity.

gravity.gif

Collision-Detection System

The Collision-Detection System works hand in hand with the Physics Engine. And it's purpose is to detect a collision, determine where the collision occurred and computed the resultant impulse force. Just like the other components, this system is called continuously by the Game Engine Loop.

gameengineloopflowpost10.png

Once the system detects a collision between two objects, it tries to determine the exact location of the collision. It uses this information to compute the collision response correctly. That is the impulse force that will separate the two colliding objects. And once again, the space-coordinates are modified, sent to the GPU, thus creating the illusion of collision.

collisionlab6a.gif

Entity Manager

There is a fourth component that works hand-in-hand with the engine loop. It's the Entity Manager. Its purpose is to provide game entities to the engine loop as efficiently as possible.

 
gameengineloopflowpost11.png
 

Let's say that a game has over 100 game entities; 3D characters, 2D sprites, images, etc. The data structure that you use to store these entities will affect the speed of the game engine. If you were to store these entities into a C++ Vector Container, the engine would slow down since it takes time to traverse the elements in a vector container. However, if these objects were stored in a data structure known as a Scenegraph, the engine's speed will not take a hit.

Why?

Because a scenegraph has a fast-traversal property.

The Entity Manager is in charge of managing the scenegraph, which provides the entities to the Engine Loop for rendering and update.

It is the Game Engine Loop that connects all the components of a game engine that makes video games possible. In my opinion, it is the heart of a game engine.

Hope this helps.