2015-09-01 23:59:43 +03:00
|
|
|
/*******************************************************************************************
|
|
|
|
*
|
|
|
|
* raylib [shaders] example - Apply a postprocessing shader and connect a custom uniform variable
|
|
|
|
*
|
|
|
|
* NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support,
|
|
|
|
* OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version.
|
|
|
|
*
|
|
|
|
* NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example
|
|
|
|
* on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders
|
|
|
|
* raylib comes with shaders ready for both versions, check raylib/shaders install folder
|
|
|
|
*
|
|
|
|
* This example has been created using raylib 1.3 (www.raylib.com)
|
|
|
|
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
|
|
|
|
*
|
|
|
|
********************************************************************************************/
|
|
|
|
|
|
|
|
#include "raylib.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// Initialization
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
int screenWidth = 800;
|
|
|
|
int screenHeight = 450;
|
|
|
|
|
|
|
|
SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
|
|
|
|
|
|
|
|
InitWindow(screenWidth, screenHeight, "raylib [shaders] example - custom uniform variable");
|
|
|
|
|
|
|
|
// Define the camera to look into our 3d world
|
2016-03-05 15:05:45 +03:00
|
|
|
Camera camera = {{ 3.0f, 3.0f, 3.0f }, { 0.0f, 1.5f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f };
|
2015-09-01 23:59:43 +03:00
|
|
|
|
|
|
|
Model dwarf = LoadModel("resources/model/dwarf.obj"); // Load OBJ model
|
2016-05-31 18:11:02 +03:00
|
|
|
Texture2D texture = LoadTexture("resources/model/dwarf_diffuse.png"); // Load model texture (diffuse map)
|
2016-06-24 20:49:36 +03:00
|
|
|
dwarf.material.texDiffuse = texture; // Set dwarf model diffuse texture
|
2015-09-01 23:59:43 +03:00
|
|
|
|
2016-04-07 13:32:32 +03:00
|
|
|
Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
|
2015-09-01 23:59:43 +03:00
|
|
|
|
2016-04-07 13:32:32 +03:00
|
|
|
Shader shader = LoadShader("resources/shaders/glsl330/base.vs",
|
|
|
|
"resources/shaders/glsl330/swirl.fs"); // Load postpro shader
|
2015-09-01 23:59:43 +03:00
|
|
|
|
|
|
|
// Get variable (uniform) location on the shader to connect with the program
|
|
|
|
// NOTE: If uniform variable could not be found in the shader, function returns -1
|
|
|
|
int swirlCenterLoc = GetShaderLocation(shader, "center");
|
|
|
|
|
2016-01-16 14:52:55 +03:00
|
|
|
float swirlCenter[2] = { (float)screenWidth/2, (float)screenHeight/2 };
|
2015-09-01 23:59:43 +03:00
|
|
|
|
2016-04-01 11:39:33 +03:00
|
|
|
// Create a RenderTexture2D to be used for render to texture
|
2016-03-30 21:19:46 +03:00
|
|
|
RenderTexture2D target = LoadRenderTexture(screenWidth, screenHeight);
|
2015-09-01 23:59:43 +03:00
|
|
|
|
|
|
|
// Setup orbital camera
|
2016-10-10 20:43:27 +03:00
|
|
|
SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
|
2015-09-01 23:59:43 +03:00
|
|
|
|
|
|
|
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Main game loop
|
|
|
|
while (!WindowShouldClose()) // Detect window close button or ESC key
|
|
|
|
{
|
|
|
|
// Update
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
Vector2 mousePosition = GetMousePosition();
|
|
|
|
|
|
|
|
swirlCenter[0] = mousePosition.x;
|
|
|
|
swirlCenter[1] = screenHeight - mousePosition.y;
|
|
|
|
|
|
|
|
// Send new value to the shader to be used on drawing
|
|
|
|
SetShaderValue(shader, swirlCenterLoc, swirlCenter, 2);
|
|
|
|
|
2016-10-10 20:43:27 +03:00
|
|
|
UpdateCamera(&camera); // Update camera
|
2015-09-01 23:59:43 +03:00
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Draw
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
BeginDrawing();
|
|
|
|
|
|
|
|
ClearBackground(RAYWHITE);
|
2016-03-30 21:19:46 +03:00
|
|
|
|
2016-04-01 11:39:33 +03:00
|
|
|
BeginTextureMode(target); // Enable drawing to texture
|
2015-09-01 23:59:43 +03:00
|
|
|
|
2016-03-30 21:19:46 +03:00
|
|
|
Begin3dMode(camera);
|
2015-09-01 23:59:43 +03:00
|
|
|
|
2016-03-30 21:19:46 +03:00
|
|
|
DrawModel(dwarf, position, 2.0f, WHITE); // Draw 3d model with texture
|
2015-09-01 23:59:43 +03:00
|
|
|
|
2016-03-30 21:19:46 +03:00
|
|
|
DrawGrid(10, 1.0f); // Draw a grid
|
2015-09-01 23:59:43 +03:00
|
|
|
|
2016-03-30 21:19:46 +03:00
|
|
|
End3dMode();
|
2016-05-29 12:49:13 +03:00
|
|
|
|
|
|
|
DrawText("TEXT DRAWN IN RENDER TEXTURE", 200, 10, 30, RED);
|
2016-03-30 21:19:46 +03:00
|
|
|
|
|
|
|
EndTextureMode(); // End drawing to texture (now we have a texture available for next passes)
|
|
|
|
|
2016-05-31 18:11:02 +03:00
|
|
|
BeginShaderMode(shader);
|
|
|
|
|
|
|
|
// NOTE: Render texture must be y-flipped due to default OpenGL coordinates (left-bottom)
|
|
|
|
DrawTextureRec(target.texture, (Rectangle){ 0, 0, target.texture.width, -target.texture.height }, (Vector2){ 0, 0 }, WHITE);
|
|
|
|
|
|
|
|
EndShaderMode();
|
2015-09-01 23:59:43 +03:00
|
|
|
|
|
|
|
DrawText("(c) Dwarf 3D model by David Moreno", screenWidth - 200, screenHeight - 20, 10, GRAY);
|
|
|
|
|
|
|
|
DrawFPS(10, 10);
|
|
|
|
|
|
|
|
EndDrawing();
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
}
|
|
|
|
|
|
|
|
// De-Initialization
|
|
|
|
//--------------------------------------------------------------------------------------
|
2016-03-30 21:19:46 +03:00
|
|
|
UnloadShader(shader); // Unload shader
|
|
|
|
UnloadTexture(texture); // Unload texture
|
|
|
|
UnloadModel(dwarf); // Unload model
|
|
|
|
UnloadRenderTexture(target); // Unload render texture
|
2015-09-01 23:59:43 +03:00
|
|
|
|
2016-03-30 21:19:46 +03:00
|
|
|
CloseWindow(); // Close window and OpenGL context
|
2015-09-01 23:59:43 +03:00
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|