Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've started reading into the material on Wikipedia, but I still feel like I don't really understand how a scene graph works and how it can provide benefits for a game.

  • What is a scene graph in the game engine development context?
  • Why would I want to implement one for my 2D game engine?
  • Does the usage of a scene graph stand as an alternative to a classic entity system with a linear entity manager?
share|improve this question
3  
There is a gamedev StackExchange that you might want to check out. It's all about game development. – Zan Lynx Mar 15 '11 at 23:41
1  
Whoever wrote the "Try Google..." comment, it would have been nice if you had read my questions before saying that! Apparently, you can't answer it either :P – Loms Mar 15 '11 at 23:41
2  
@Zan: Well this is not so specifically targeted at game development only. Scene graphs probably work the same way even if it's not a game you're making, correct me if I'm wrong. Also, I hope that I have better chances at getting answers to my questions here than on the GameDev StackExchange – Loms Mar 15 '11 at 23:42
1  
Your question subject starts with "Game engines", it's tagged "game-development" and so it seems ideal for gamedev. shrug – Zan Lynx Mar 16 '11 at 0:36

4 Answers

up vote 8 down vote accepted

What is a scene graph? A Scene graph contains all of the geometry of a particular scene. They are useful for representing translations, rotations and scales (along with other affine transformations) of objects relative to each other.

For instance, consider a tank (the type with tracks and a gun). Your scene may have multiple tanks, but each one be oriented and positioned differently, with each having its turret rotated to different azimuth and with a different gun elevation. Rather than figuring out exactly how the gun should be positioned for each tank, you can accumulate affine transformations as you traverse your scene graph to properly position it. It makes computation of such things much easier.

2D Scene Graphs: Use of a scene graph for 2D may be useful if your content is sufficiently complex and if your objects have a number of sub components not rigidly fixed to the larger body. Otherwise, as others have mentioned, it's probably overkill. The complexity of affine transformations in 2D is quite a bit less than in the 3D case.

Linear Entity Manager: I'm not clear on exactly what you mean by a linear entity manager, but if you are refering to just keeping track of where things are positioned in your scene, then scene graphs can make things easier if there is a high degree of spatial dependence between the various objects or sub-objects in your scene.

share|improve this answer

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 :

  1. find quickly wich objects are in the camera view (and only send them to the graphic cards, making rendering very fast)
  2. 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 :

  1. when bullets appear in the screen space
  2. when bullets get out of the screen space
  3. when the player enter in collision with bullets
  4. 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".

share|improve this answer
1  
Excellent answer! – Eonil Sep 23 '12 at 10:46

A scene graph is a way of organizing all objects in the environment. Usually care is taken to organize the data for efficient rendering. The graph, or tree if you like, can show ownership of sub objects. For example, at the highest level there may be a city object, under it would be many building objects, under those may be walls, furniture...

For the most part though, these are only used for 3D scenes. I would suggest not going with something that complicated for a 2D scene.

share|improve this answer
I see, thanks for sharing your point of view! – Loms Mar 15 '11 at 23:45
What kind of 2D scene are you creating? – gamernb Mar 15 '11 at 23:48
I'm creating an engine that should support as many kinds of different scenes as possible, varying from quite small to huge. – Loms Mar 15 '11 at 23:51

In practice, scene objects in videogames are rarely organized into a graph that is "walked" as a tree when the scene is rendered. A graphics system typically expects one big array of stuff to render, and this big array is walked linearly.

Games that require geometric parenting relationships, such as those with people holding guns or tanks with turrets, define and enforce those relationships on an as-needed basis outside of the graphics system. These relationships tend to be only one-deep, and so there is almost never a need for an arbitrarily deep tree structure.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.