raylib/examples/models_obj_loading.c

76 lines
2.9 KiB
C
Raw Normal View History

2013-11-24 23:30:05 +04:00
/*******************************************************************************************
*
* raylib [models] example - Load and draw a 3d model (OBJ)
2013-11-24 23:30:05 +04:00
*
2013-11-29 00:16:31 +04:00
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
2013-11-24 23:30:05 +04:00
*
* Copyright (c) 2014 Ramon Santamaria (Ray San - raysan@raysanweb.com)
2013-11-24 23:30:05 +04:00
*
********************************************************************************************/
#include "raylib.h"
int main()
{
2013-11-29 00:16:31 +04:00
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
2013-11-24 23:30:05 +04:00
InitWindow(screenWidth, screenHeight, "raylib [models] example - obj model loading");
2013-11-24 23:30:05 +04:00
// Define the camera to look into our 3d world
2013-11-29 00:16:31 +04:00
Camera camera = {{ 10.0, 8.0, 10.0 }, { 0.0, 0.0, 0.0 }, { 0.0, 1.0, 0.0 }};
Texture2D texture = LoadTexture("resources/catsham.png"); // Load model texture
Model cat = LoadModel("resources/cat.obj"); // Load OBJ model
SetModelTexture(&cat, texture); // Bind texture to model
Vector3 catPosition = { 0.0, 0.0, 0.0 }; // Set model position
2014-09-30 01:41:05 +04:00
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
2014-09-30 01:41:05 +04:00
2013-11-24 23:30:05 +04:00
// Main game loop
2013-11-29 00:16:31 +04:00
while (!WindowShouldClose()) // Detect window close button or ESC key
2013-11-24 23:30:05 +04:00
{
2013-11-29 00:16:31 +04:00
// Update
//----------------------------------------------------------------------------------
if (IsKeyDown(KEY_LEFT)) catPosition.x -= 0.2;
if (IsKeyDown(KEY_RIGHT)) catPosition.x += 0.2;
if (IsKeyDown(KEY_UP)) catPosition.z -= 0.2;
if (IsKeyDown(KEY_DOWN)) catPosition.z += 0.2;
2013-11-29 00:16:31 +04:00
//----------------------------------------------------------------------------------
2014-09-30 01:41:05 +04:00
2013-11-29 00:16:31 +04:00
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
2014-09-30 01:41:05 +04:00
2013-11-29 00:16:31 +04:00
ClearBackground(RAYWHITE);
2014-09-30 01:41:05 +04:00
2013-11-29 00:16:31 +04:00
Begin3dMode(camera);
2014-09-30 01:41:05 +04:00
DrawModel(cat, catPosition, 0.1f, WHITE); // Draw 3d model with texture
2013-11-24 23:30:05 +04:00
2013-11-29 00:16:31 +04:00
DrawGrid(10.0, 1.0); // Draw a grid
2014-09-30 01:41:05 +04:00
DrawGizmo(catPosition); // Draw gizmo
2014-09-30 01:41:05 +04:00
2013-11-29 00:16:31 +04:00
End3dMode();
2014-09-30 01:41:05 +04:00
2013-11-29 00:16:31 +04:00
DrawFPS(10, 10);
2014-09-30 01:41:05 +04:00
EndDrawing();
2013-11-29 00:16:31 +04:00
//----------------------------------------------------------------------------------
}
2013-11-29 00:16:31 +04:00
// De-Initialization
//--------------------------------------------------------------------------------------
2013-11-24 23:30:05 +04:00
UnloadTexture(texture); // Unload texture
2013-11-29 00:16:31 +04:00
UnloadModel(cat); // Unload model
2014-09-30 01:41:05 +04:00
2013-11-29 00:16:31 +04:00
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
2014-09-30 01:41:05 +04:00
2013-11-24 23:30:05 +04:00
return 0;
}