Game Development Community

Does any article describe the framework of SDK

by Kenny · in Torque Game Engine · 01/29/2007 (7:30 pm) · 1 replies

When i open engine/game folder,there are lots of source codes. I am not pretty sure what each file do for and what's interrelation among others. i just can figure out some of those. So does anyone know any article or book describing the framework and relation of source code;well, i thought i could do some deep modification, if i knew them.
thanks.

#1
01/29/2007 (9:06 pm)
Start at SimBase.h

This has a lot of explanation of what each object does and these objects are fun to work with. You can then go here:
tdn.garagegames.com/wiki/Torque_Game_Engine#coder

Look specifically at these links:

Make a scriptable object?
Make a renderable object?
Make a ghostable object?
Make a control-able object?
Make a tickable object?
Make an object with a datablock?

Then go to game dir and look at gamebase.h and sceneobject.h.

I think you will see how these build up in functionality.