What is a scene graph in the game
engine development context?
Well it's some code that actively sort your game objects in the game space, in a way that makes easy to find quickly which objects are around a point in the game space.
That way, it's easy to :
- find quickly wich objects are in the camera view (and only send them to the graphic cards, making rendering very fast)
- find quickly where are objects around the player (and apply collision checks only to those ones)
And other things. It's about allowing quick search in space. It's called "space partitionning". It's about divide and conquer.
Why would I want to implement one for
my 2D game engine?
That depends on the type of game, more precisely on the structure of your game space.
For example, a game like Zelda could not need such technics if it's fast enough to test collision between all objects in the screen. However it can easily be reallly really slow, so most of the time you at least setup a scene graph (or space partition of any kind) to at least know what is around all the moving objects and only test collision on those objects.
So, that depends. Most of the time it's required for performance reasons. But the implementation of your space partitioning is totally relative to the way your game space is structured.
Does the usage of a scene graph stand
as an alternative to a classic entity
system with a linear entity manager?
No.
Whatever the way you manage your game entitie's object life, the space-partition/scene-graph is there only to allow you to search quickly objects in space, no more no less. Most of the time it will be an object that will have some slots of objects, corresponding to different parts of the game space and in those slots it will be objects that are in those parts.
It can be flat (like a 2D screen divider in 2 or 4), or it can be a tree (like binary tree or quad tree, or any other kind of tree) or any other sorting structure that limit the number of operations you have to execute to get some space-related informations.
Note one thing :
In some cases, you even need different separate space partition systems for different purpose. Often a "scene graph" is about rendering so it's optimized in a way that is dependent on the player's point of view and it's purpose is to allow quick gathering of a list of objects to render to send to the graphic card. It's not really suited to perform searches of objects around another object and that makes it hard to use for precise collision detection, like when you use a physic engine. So to help, you might have a different space partition system just for physics purpose.
To give an example, I want to make a "bullet hell" game, where there is a lot of balls that the player's spaceship have to dodge in a very precise way. To achieve enough rendering and collision detection performance I need to know :
- when bullets appear in the screen space
- when bullets get out of the screen space
- when the player enter in collision with bullets
- when the player enter in collision with monsters
So I cut recursively the screen that is 2D in 4 parts, that gives me a quadtree. The quadtree is updated each game tick, because everything moves constantly, so I have to keep track of wich object (spaceship, bullet, monster) position in the quadtree to know wich one is in wich part of the screen.
Achieving 1. is easy, just enter the bullet in the system.
To achieve 2. I kept a list of leaves in the quadtree (squared sections of the screen) that are on the border of the screen. Those leaves contain the ids/pointers of the bullets that are near the border so I just have to check that they are moving out to know if I can stop rendering them and managing collision too. (it might be bit more complex but you get the idea).
To achieve 3 and 4. I need to retrieve the objects that are near the player's spaceship. So first I get the leave where the player spacehip is and I get all the objects in it. That way I will only test the collision with the player spaceship on objects that are around it, not all objects. (it IS a bit more complex but you get the idea)
That way I can make sure that my game will run smoothly even with thousandths of bullets constantly moving.
In other type of space structure, other types of space partitioning are required. Typically, kart/auto games will have a "tunnel" scene-graph because visually the player will only see things along the road, so you just have to check where he is on the road to retrieve all visible objects around in the "tunnel".