Difference between revisions of "Tutorial - Setup Horde with SDL"
From Horde3D Wiki
m (Fixed a few mistakes with the previous update.) |
|||
(3 intermediate revisions by 3 users not shown) | |||
Line 9: | Line 9: | ||
#include <iostream> | #include <iostream> | ||
− | #include < | + | #include <Horde3DUtils.h> |
#include <SDL.h> | #include <SDL.h> | ||
using namespace std; | using namespace std; | ||
+ | |||
+ | H3DNode model = 0, cam = 0; | ||
int main(int argc, char* args[]){ | int main(int argc, char* args[]){ | ||
Line 19: | Line 21: | ||
//Inits sdl with only the video extention. | //Inits sdl with only the video extention. | ||
− | SDL_Init(SDL_INIT_VIDEO); | + | if (SDL_Init(SDL_INIT_VIDEO) != 0) { |
+ | std::cerr << "SDL_Init failed: " << SDL_GetError() << std::endl; | ||
+ | return 0; | ||
+ | } | ||
+ | |||
//Sets are window Caption | //Sets are window Caption | ||
SDL_WM_SetCaption("Simple SDL Frame",NULL); | SDL_WM_SetCaption("Simple SDL Frame",NULL); | ||
+ | |||
//Sets the sdl video mode width and height as well has creates are opengl context. | //Sets the sdl video mode width and height as well has creates are opengl context. | ||
− | SDL_SetVideoMode(800,600,32,SDL_OPENGL); | + | if (!SDL_SetVideoMode(800,600,32,SDL_OPENGL)) { |
+ | std::cerr << "SDL_SetVideoMode failed: " << SDL_GetError() << std::endl; | ||
+ | return 0; | ||
+ | } | ||
+ | |||
//Creates Our Event Reciver | //Creates Our Event Reciver | ||
SDL_Event event; | SDL_Event event; | ||
//Inits Horde3D | //Inits Horde3D | ||
− | + | h3dInit(); | |
//Sizes the Horde3D View | //Sizes the Horde3D View | ||
− | + | h3dSetupViewport( 0, 0, 800, 600, true ); | |
// Add pipeline resource | // Add pipeline resource | ||
− | + | H3DRes pipeRes = h3dAddResource( H3DResTypes::Pipeline, "standard.pipeline.xml", 0 ); | |
// Add model resource | // Add model resource | ||
− | + | H3DRes modelRes = h3dAddResource( H3DResTypes::SceneGraph, "character.scene.xml", 0 ); | |
// Add animation resource | // Add animation resource | ||
− | + | H3DRes animRes = h3dAddResource( H3DResTypes::Animation, "walk.anim.xml", 0 ); | |
// Load added resources | // Load added resources | ||
− | + | h3dutLoadResourcesFromDisk( "" ); | |
// Add model to scene | // Add model to scene | ||
− | model = | + | model = h3dAddNodes( H3DRootNode, modelRes ); |
// Apply animation | // Apply animation | ||
− | + | h3dSetupModelAnimStage( model, 0, animRes, 0, "", false ); | |
// Add light source | // Add light source | ||
− | + | H3DNode light = h3dAddLightNode( H3DRootNode, "Light1", 0, "LIGHTING", "SHADOWMAP" ); | |
// Set light position and radius | // Set light position and radius | ||
− | + | h3dSetNodeTransform( light, 0, 20, 0, 0, 0, 0, 1, 1, 1 ); | |
//Sets the lightnodes radius | //Sets the lightnodes radius | ||
− | + | h3dSetNodeParamF( light, H3DLight::RadiusF, 0, 50 ); | |
//Sets the lightnodes Field of view | //Sets the lightnodes Field of view | ||
− | + | h3dSetNodeParamF( light, H3DLight::FovF, 0, 90 ); | |
//Sets the lightnodes ShadowMapCOunt | //Sets the lightnodes ShadowMapCOunt | ||
− | + | h3dSetNodeParamI( light, H3DLight::ShadowMapCountI, 3 ); | |
//Sets the lightnodes ShadowSplitLambda | //Sets the lightnodes ShadowSplitLambda | ||
− | + | h3dSetNodeParamF( light, H3DLight::ShadowSplitLambdaF, 0, 0.9f ); | |
//Sets the lightnodes ShadowMapBias | //Sets the lightnodes ShadowMapBias | ||
− | + | h3dSetNodeParamF( light, H3DLight::ShadowMapBiasF, 0, 0.001f ); | |
//Sets the lightnodes red value | //Sets the lightnodes red value | ||
− | + | h3dSetNodeParamF( light, H3DLight::ColorF3, 0, 0.9f ); | |
//Sets the lightnodes green value | //Sets the lightnodes green value | ||
− | + | h3dSetNodeParamF( light, H3DLight::ColorF3, 1, 0.7f ); | |
//Sets the lightnodes blue value | //Sets the lightnodes blue value | ||
− | + | h3dSetNodeParamF( light, H3DLight::ColorF3, 2, 0.75f ); | |
// Add camera | // Add camera | ||
− | cam = | + | cam = h3dAddCameraNode( H3DRootNode, "Camera", pipeRes ); |
// Our While loop | // Our While loop | ||
Line 88: | Line 99: | ||
// Play animation | // Play animation | ||
− | + | h3dSetModelAnimParams( model, 0, t, 1.0f ); | |
// Set new model position | // Set new model position | ||
− | + | h3dSetNodeTransform( model, t * 10, 0, 0, // Translation | |
0, 0, 0, // Rotation | 0, 0, 0, // Rotation | ||
1, 1, 1 ); // Scale | 1, 1, 1 ); // Scale | ||
// Render scene | // Render scene | ||
− | + | h3dRender( cam ); | |
//Swaps the sdl opengl buffers | //Swaps the sdl opengl buffers | ||
Line 101: | Line 112: | ||
} | } | ||
//Releases the Horde3D Engine | //Releases the Horde3D Engine | ||
− | + | h3dRelease(); | |
//Releases SDL and quits the program | //Releases SDL and quits the program | ||
SDL_Quit(); | SDL_Quit(); | ||
} | } | ||
− | |||
− | |||
− | |||
</source> | </source> | ||
}} | }} |
Latest revision as of 15:33, 28 June 2010
|
|