raylib/examples/models/models_obj_loading.c

80 lines
3.2 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
*
* This example has been created using raylib 1.3 (www.raylib.com)
2013-11-29 00:16:31 +04:00
* 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 (@raysan5)
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
2018-04-11 11:13:00 +03:00
Camera camera = { 0 };
2018-05-11 19:14:51 +03:00
camera.position = (Vector3){ 3.0f, 3.0f, 3.0f }; // Camera position
camera.target = (Vector3){ 0.0f, 1.5f, 0.0f }; // Camera looking at point
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
camera.fovy = 45.0f; // Camera field-of-view Y
camera.type = CAMERA_PERSPECTIVE; // Camera mode type
2015-09-02 21:33:58 +03:00
Model dwarf = LoadModel("resources/model/dwarf.obj"); // Load OBJ model
Texture2D texture = LoadTexture("resources/model/dwarf_diffuse.png"); // Load model texture
2017-07-21 18:17:37 +03:00
dwarf.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture
2016-01-16 14:52:55 +03:00
Vector3 position = { 0.0f, 0.0f, 0.0f }; // 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
//----------------------------------------------------------------------------------
2015-09-02 02:07:16 +03:00
//...
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
BeginMode3D(camera);
2014-09-30 01:41:05 +04:00
DrawModel(dwarf, position, 2.0f, WHITE); // Draw 3d model with texture
2013-11-24 23:30:05 +04:00
2016-07-12 02:54:47 +03:00
DrawGrid(10, 1.0f); // Draw a grid
2014-09-30 01:41:05 +04:00
2015-09-02 02:07:16 +03:00
DrawGizmo(position); // Draw gizmo
2014-09-30 01:41:05 +04:00
EndMode3D();
DrawText("(c) Dwarf 3D model by David Moreno", screenWidth - 200, screenHeight - 20, 10, GRAY);
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
UnloadModel(dwarf); // 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;
}