Difference between revisions of "Tutorial - Hello World"
From Horde3D Wiki
(Updated the code to work with Beta4 and SVN trunk.) |
(Updated the references to function names in the tutorial text.) |
||
Line 46: | Line 46: | ||
}} | }} | ||
− | The first line of the code above declares two global handles to Horde scene graph nodes. All objects in Horde are accessible via handles, a concept similar to pointers. The first thing we need to do in our initGame function to use Horde3D is initializing the engine. This happens with the function | + | The first line of the code above declares two global handles to Horde scene graph nodes. All objects in Horde are accessible via handles, a concept similar to pointers. The first thing we need to do in our initGame function to use Horde3D is initializing the engine. This happens with the function h3dInit. After that we tell the engine the size of our rendering window so that it can adjust the viewport. |
− | The next step is to load the required resources. In Horde resources are data files that are loaded once and can be referenced by several objects for rendering. The function | + | The next step is to load the required resources. In Horde resources are data files that are loaded once and can be referenced by several objects for rendering. The function h3dAddResource takes the resource type we want to add and the name of the resource (usually the filename) as parameters and returns a handle to the created resource object. In our case we want a model which is represented as a scene graph file in Horde and additionally an animation. Now the resources are created but we still need to load them. Horde supports loading from any sources including encrypted archives or a network but in this case we just want to load our resources from the local hard disk which is done with the utility function h3dutLoadResourcesFromDisk. Besides our model and animation we also load a pipeline resource. A pipeline defines how the the scene is rendered and can be used to realize post-processing effects or high dynamic range rendering. For the beginning you can just use the files that come with the SDK samples. |
− | After we have loaded the required resources we can finally build up the scene graph. The scene graph represents the objects in our virtual world in a hierarchical tree structure. First we add the model that we have loaded before. We use the function | + | After we have loaded the required resources we can finally build up the scene graph. The scene graph represents the objects in our virtual world in a hierarchical tree structure. First we add the model that we have loaded before. We use the function h3dAddNodes for doing this which takes a scene graph resource and a parent node. The parent is the scene object to which the new node is attached, in our case just the root node which is the base of the virtual world. Similar to h3dAddResource this function also returns a handle to the created scene graph subtree. After that we assign the loaded animation to our model node with the function h3dSetupModelAnimStage. Horde allows you to apply several different animations to a model and makes it possible to blend and mix them but for the beginning one should be enough. Now that adding the model is finished we still need a light source. It would be possible to load another scene graph file which contains the light source but we want to add it manually by using the h3dAddLightNode function. This function requires several parameters specifying the shaders used for rendering. More information on this can be found in other sections of the manual. The next step is to set the position and orientation which is done with h3dSetNodeTransform. After that we specify the light radius which defines the zone of influence using h3dSetNodeParamF. Finally we still need a camera which represents the viewer. It is added with the function h3dAddCameraNode and takes our loaded pipeline resource as parameter. |
{{CppSourceCode| | {{CppSourceCode| | ||
Line 87: | Line 87: | ||
}} | }} | ||
− | The next function in our sample is the game loop which is called once every frame. Here we will animate our character model. For doing this we define a time counter which is increased in every frame. To make the animation speed independent from the framerate, we scale the time step by the inverse of the current frames per second value. After that we tell the engine to update the model animation using the | + | The next function in our sample is the game loop which is called once every frame. Here we will animate our character model. For doing this we define a time counter which is increased in every frame. To make the animation speed independent from the framerate, we scale the time step by the inverse of the current frames per second value. After that we tell the engine to update the model animation using the h3dSetModelAnimParams function. We could also specify a blend weight for combining animations here but since we have only one animation we don't need that. Now we can displace our character a bit so that it moves through the scene. This is achieved by updating the model node transformation. Finally we need to tell the engine to render the scene and recalculate the model animation. This happens with the function h3dRender that expects the camera from which the scene is viewed. |
− | The last function releaseGame is called when the application is closed. All we have to do here is freeing the engine with the | + | The last function releaseGame is called when the application is closed. All we have to do here is freeing the engine with the h3dRelease function. |
That's it so far with the basic tutorial. You can have a look at the Usage Guide now to learn more details. | That's it so far with the basic tutorial. You can have a look at the Usage Guide now to learn more details. |