2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Merge pull request #14 from mikaelssen/master

example update, missing lights still but progress is forwards
This commit is contained in:
ChrisDill 2018-10-24 21:05:52 +01:00 committed by GitHub
commit 21e4a18b84
13 changed files with 91376 additions and 261 deletions

1
.gitignore vendored
View File

@ -61,7 +61,6 @@ artifacts/
*_i.h *_i.h
*.ilk *.ilk
*.meta *.meta
*.obj
*.pch *.pch
*.pdb *.pdb
*.pgc *.pgc

View File

@ -4,270 +4,264 @@ using static Raylib.Model;
using static Raylib.CameraMode; using static Raylib.CameraMode;
using System; using System;
public enum LightType public enum LightType
{ {
LIGHT_DIRECTIONAL, LIGHT_DIRECTIONAL,
LIGHT_POINT LIGHT_POINT
}; };
//TODO: move the light system out into it's own class file, rlights.h original //TODO: move the light system out into it's own class file, rlights.h original
//also make it work properly //also make it work properly
public struct Light public struct Light
{ {
public bool enabled; public bool enabled;
public LightType type; public LightType type;
public Vector3 position; public Vector3 position;
public Vector3 target; public Vector3 target;
public Color color; public Color color;
public int enabledLoc; public int enabledLoc;
public int typeLoc; public int typeLoc;
public int posLoc; public int posLoc;
public int targetLoc; public int targetLoc;
public int colorLoc; public int colorLoc;
} }
public partial class models_material_pbr public partial class models_material_pbr
{ {
/*******************************************************************************************
*
* raylib [models] example - PBR material
*
* This example has been created using raylib 1.8 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2017 Ramon Santamaria (@raysan5)
*
********************************************************************************************/ /******************************************************************************************* * * raylib [models] example - PBR material * * This example has been created using raylib 1.8 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2017 Ramon Santamaria (@raysan5) * ********************************************************************************************/
public const int CUBEMAP_SIZE = 512; public const int CUBEMAP_SIZE = 512;
public const int IRRADIANCE_SIZE = 32; public const int IRRADIANCE_SIZE = 32;
public const int PREFILTERED_SIZE = 256; public const int PREFILTERED_SIZE = 256;
public const int BRDF_SIZE = 512; public const int BRDF_SIZE = 512;
public const int MAX_LIGHTS = 4;
// PBR material loading public static int lightsCount = 0;
//private static Material LoadMaterialPBR(Color albedo, float metalness, float roughness); public const float LIGHT_DISTANCE = 3.5f;
public const float LIGHT_HEIGHT = 1.0f;
public static int Main()
{ // PBR material loading
// Initialization //private static Material LoadMaterialPBR(Color albedo, float metalness, float roughness);
//--------------------------------------------------------------------------------------
int screenWidth = 800; public unsafe static int Main()
int screenHeight = 450; {
// Initialization
float LIGHT_DISTANCE = 3.5f; //--------------------------------------------------------------------------------------
float LIGHT_HEIGHT = 1.0f; int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
InitWindow(screenWidth, screenHeight, "raylib [models] example - pbr material");
SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
// Define the camera to look into our 3d world InitWindow(screenWidth, screenHeight, "raylib [models] example - pbr material");
Camera3D camera = new Camera3D(new Vector3(4.0f, 4.0f, 4.0f), new Vector3(0.0f, 0.5f, 0.0f), new Vector3(0.0f, 1.0f, 0.0f), 45.0f, 0);
// Define the camera to look into our 3d world
// Load model and PBR material Camera3D camera = new Camera3D(new Vector3(4.0f, 4.0f, 4.0f), new Vector3(0.0f, 0.5f, 0.0f), new Vector3(0.0f, 1.0f, 0.0f), 45.0f, 0);
Model model = LoadModel("resources/pbr/trooper.obj");
MeshTangents(ref model.mesh); // Load model and PBR material
model.material = LoadMaterialPBR(new Color(255, 255, 255, 255), 1.0f, 1.0f); Model model = LoadModel("resources/pbr/trooper.obj");
MeshTangents(ref model.mesh);
// Define lights attributes model.material = LoadMaterialPBR(new Color(255, 255, 255, 255), 1.0f, 1.0f);
// NOTE: Shader is passed to every light on creation to define shader bindings internally
Light[] lights = new Light[] // Define lights attributes
{ // NOTE: Shader is passed to every light on creation to define shader bindings internally
CreateLight(LightType.LIGHT_POINT, new Vector3( LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f ), new Vector3( 0.0f, 0.0f, 0.0f ), new Color( 255, 0, 0, 255 ), model.material.shader), Light[] lights = new Light[]
CreateLight(LightType.LIGHT_POINT, new Vector3( 0.0f, LIGHT_HEIGHT, LIGHT_DISTANCE ), new Vector3( 0.0f, 0.0f, 0.0f ), new Color( 0, 255, 0, 255 ), model.material.shader), {
CreateLight(LightType.LIGHT_POINT, new Vector3( -LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f ), new Vector3( 0.0f, 0.0f, 0.0f ),new Color( 0, 0, 255, 255 ), model.material.shader), CreateLight(LightType.LIGHT_POINT, new Vector3( LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f ), new Vector3( 0.0f, 0.0f, 0.0f ), new Color( 255, 0, 0, 255 ), model.material.shader),
CreateLight(LightType.LIGHT_DIRECTIONAL, new Vector3(0.0f, LIGHT_HEIGHT * 2.0f, -LIGHT_DISTANCE ), new Vector3( 0.0f, 0.0f, 0.0f ), new Color(255, 0, 255, 255 ), model.material.shader) CreateLight(LightType.LIGHT_POINT, new Vector3( 0.0f, LIGHT_HEIGHT, LIGHT_DISTANCE ), new Vector3( 0.0f, 0.0f, 0.0f ), new Color( 0, 255, 0, 255 ), model.material.shader),
}; CreateLight(LightType.LIGHT_POINT, new Vector3( -LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f ), new Vector3( 0.0f, 0.0f, 0.0f ),new Color( 0, 0, 255, 255 ), model.material.shader), CreateLight(LightType.LIGHT_DIRECTIONAL, new Vector3(0.0f, LIGHT_HEIGHT * 2.0f, -LIGHT_DISTANCE ), new Vector3( 0.0f, 0.0f, 0.0f ), new Color(255, 0, 255, 255 ), model.material.shader)
};
SetCameraMode(camera, (int)CameraMode.CAMERA_ORBITAL); // Set an orbital camera mode
SetCameraMode(camera, (int)CameraMode.CAMERA_ORBITAL); // Set an orbital camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//-------------------------------------------------------------------------------------- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key // Main game loop
{ while (!WindowShouldClose()) // Detect window close button or ESC key
// Update {
//---------------------------------------------------------------------------------- // Update
UpdateCamera(ref camera); // Update camera //----------------------------------------------------------------------------------
UpdateCamera(ref camera); // Update camera
// Send to material PBR shader camera view position
float[] cameraPos = { camera.position.x, camera.position.y, camera.position.z }; // Send to material PBR shader camera view position
SetShaderValue(model.material.shader, 0, cameraPos, 3); //(int)model.material.shader.locs, cameraPos, 3); float[] cameraPos = { camera.position.x, camera.position.y, camera.position.z };
//---------------------------------------------------------------------------------- SetShaderValue(model.material.shader, model.material.shader.locs[(int)ShaderLocationIndex.LOC_VECTOR_VIEW], cameraPos, 3);
// Draw
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
BeginDrawing(); // Draw
//----------------------------------------------------------------------------------
ClearBackground(RAYWHITE); BeginDrawing();
BeginMode3D(camera); ClearBackground(RAYWHITE);
DrawModel(model, Vector3Zero(), 1.0f, WHITE); BeginMode3D(camera);
DrawGrid(10, 1.0f); DrawModel(model, Vector3Zero(), 1.0f, WHITE);
EndMode3D(); DrawGrid(10, 1.0f);
DrawFPS(10, 10); EndMode3D();
EndDrawing(); DrawFPS(10, 10);
//----------------------------------------------------------------------------------
} EndDrawing();
//----------------------------------------------------------------------------------
// De-Initialization }
//--------------------------------------------------------------------------------------
UnloadModel(model); // Unload skybox model // De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context UnloadModel(model); // Unload skybox model
//--------------------------------------------------------------------------------------
return 0; CloseWindow(); // Close window and OpenGL context
} //--------------------------------------------------------------------------------------
return 0; }
public static Light CreateLight(LightType type, Vector3 pos, Vector3 targ, Color color, Shader shader)
{ // Load PBR material (Supports: ALBEDO, NORMAL, METALNESS, ROUGHNESS, AO, EMMISIVE, HEIGHT maps)
Light light = new Light() { // NOTE: PBR shader is loaded inside this function
enabled = true, unsafe public static Material LoadMaterialPBR(Color albedo, float metalness, float roughness)
type = type, {
position = pos, Material mat = new Material(); // NOTE: All maps textures are set to { 0 )
target = targ,
color = color, string PATH_PBR_VS = "resources/shaders/pbr.vs";
}; string PATH_PBR_FS = "resources/shaders/pbr.fs";
string enabledName = "lights[x].enabled\0"; mat.shader = LoadShader(PATH_PBR_VS, PATH_PBR_FS);
string typeName = "lights[x].type\0";
string posName = "lights[x].position\0"; // Get required locations points for PBR material
string targetName = "lights[x].target\0"; // NOTE: Those location names must be available and used in the shader code
string colorName = "lights[x].color\0";
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_ALBEDO] = GetShaderLocation(mat.shader, "albedo.sampler");
light.enabledLoc = GetShaderLocation(shader, enabledName); mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_METALNESS] = GetShaderLocation(mat.shader, "metalness.sampler");
light.typeLoc = GetShaderLocation(shader, typeName); mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_NORMAL] = GetShaderLocation(mat.shader, "normals.sampler");
light.posLoc = GetShaderLocation(shader, posName); mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_ROUGHNESS] = GetShaderLocation(mat.shader, "roughness.sampler");
light.targetLoc = GetShaderLocation(shader, targetName); mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_OCCLUSION] = GetShaderLocation(mat.shader, "occlusion.sampler");
light.colorLoc = GetShaderLocation(shader, colorName); //mat.shader.locs[LOC_MAP_EMISSION] = GetShaderLocation(mat.shader, "emission.sampler");
//mat.shader.locs[LOC_MAP_HEIGHT] = GetShaderLocation(mat.shader, "height.sampler");
UpdateLightValues(shader, light); mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_IRRADIANCE] = GetShaderLocation(mat.shader, "irradianceMap");
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_PREFILTER] = GetShaderLocation(mat.shader, "prefilterMap");
return light; mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_BRDF] = GetShaderLocation(mat.shader, "brdfLUT");
}
// Set view matrix location
public static void UpdateLightValues(Shader shader, Light light) mat.shader.locs[(int)ShaderLocationIndex.LOC_MATRIX_MODEL] = GetShaderLocation(mat.shader, "matModel");
{ mat.shader.locs[(int)ShaderLocationIndex.LOC_MATRIX_VIEW] = GetShaderLocation(mat.shader, "view");
// Send to shader light enabled state and type mat.shader.locs[(int)ShaderLocationIndex.LOC_VECTOR_VIEW] = GetShaderLocation(mat.shader, "viewPos");
SetShaderValuei(shader, light.enabledLoc, new int[] { Convert.ToInt32(light.enabled) }, 1);
SetShaderValuei(shader, light.typeLoc, new int[] { Convert.ToInt32(light.type) }, 1); // Set PBR standard maps
mat.maps[(int)TexmapIndex.MAP_ALBEDO].texture = LoadTexture("resources/pbr/trooper_albedo.png");
// Send to shader light position values mat.maps[(int)TexmapIndex.MAP_NORMAL].texture = LoadTexture("resources/pbr/trooper_normals.png");
float[] position = { light.position.x, light.position.y, light.position.z }; mat.maps[(int)TexmapIndex.MAP_METALNESS].texture = LoadTexture("resources/pbr/trooper_metalness.png");
SetShaderValue(shader, light.posLoc, position, 3); mat.maps[(int)TexmapIndex.MAP_ROUGHNESS].texture = LoadTexture("resources/pbr/trooper_roughness.png");
mat.maps[(int)TexmapIndex.MAP_OCCLUSION].texture = LoadTexture("resources/pbr/trooper_ao.png");
// Send to shader light target position values
float[] target = { light.target.x, light.target.y, light.target.z }; // Set environment maps
SetShaderValue(shader, light.targetLoc, target, 3); const string PATH_CUBEMAP_VS = "resources/shaders/cubemap.vs"; // Path to equirectangular to cubemap vertex shader
const string PATH_CUBEMAP_FS = "resources/shaders/cubemap.fs"; // Path to equirectangular to cubemap fragment shader
// Send to shader light color values const string PATH_SKYBOX_VS = "resources/shaders/skybox.vs"; // Path to skybox vertex shader
float[] diff = { light.color.r / 255, light.color.g / 255, light.color.b / 255, light.color.a / 255 }; const string PATH_IRRADIANCE_FS = "resources/shaders/irradiance.fs"; // Path to irradiance (GI) calculation fragment shader
SetShaderValue(shader, light.colorLoc, diff, 4); const string PATH_PREFILTER_FS = "resources/shaders/prefilter.fs"; // Path to reflection prefilter calculation fragment shader
} const string PATH_BRDF_VS = "resources/shaders/brdf.vs"; // Path to bidirectional reflectance distribution function vertex shader
const string PATH_BRDF_FS = "resources/shaders/brdf.fs"; // Path to bidirectional reflectance distribution function fragment shader
// Load PBR material (Supports: ALBEDO, NORMAL, METALNESS, ROUGHNESS, AO, EMMISIVE, HEIGHT maps)
// NOTE: PBR shader is loaded inside this function Shader shdrCubemap = LoadShader(PATH_CUBEMAP_VS, PATH_CUBEMAP_FS);
unsafe public static Material LoadMaterialPBR(Color albedo, float metalness, float roughness) Shader shdrIrradiance = LoadShader(PATH_SKYBOX_VS, PATH_IRRADIANCE_FS);
{ Shader shdrPrefilter = LoadShader(PATH_SKYBOX_VS, PATH_PREFILTER_FS);
Material mat = new Material(); // NOTE: All maps textures are set to { 0 ) Shader shdrBRDF = LoadShader(PATH_BRDF_VS, PATH_BRDF_FS);
string PATH_PBR_VS = "resources/shaders/pbr.vs"; // Setup required shader locations
string PATH_PBR_FS = "resources/shaders/pbr.fs"; SetShaderValuei(shdrCubemap, GetShaderLocation(shdrCubemap, "equirectangularMap"), new int[] { 0 }, 1); SetShaderValuei(shdrIrradiance, GetShaderLocation(shdrIrradiance, "environmentMap"), new int[] { 0 }, 1); SetShaderValuei(shdrPrefilter, GetShaderLocation(shdrPrefilter, "environmentMap"), new int[] { 0 }, 1);
mat.shader = LoadShader(PATH_PBR_VS, PATH_PBR_FS); Texture2D texHDR = LoadTexture("resources/dresden_square.hdr");
Texture2D cubemap = GenTextureCubemap(shdrCubemap, texHDR, CUBEMAP_SIZE);
// Get required locations points for PBR material mat.maps[(int)TexmapIndex.MAP_IRRADIANCE].texture = GenTextureIrradiance(shdrIrradiance, cubemap, IRRADIANCE_SIZE);
// NOTE: Those location names must be available and used in the shader code mat.maps[(int)TexmapIndex.MAP_PREFILTER].texture = GenTexturePrefilter(shdrPrefilter, cubemap, PREFILTERED_SIZE);
mat.maps[(int)TexmapIndex.MAP_BRDF].texture = GenTextureBRDF(shdrBRDF, cubemap, BRDF_SIZE);
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_ALBEDO] = GetShaderLocation(mat.shader, "albedo.sampler"); UnloadTexture(cubemap);
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_METALNESS] = GetShaderLocation(mat.shader, "metalness.sampler"); UnloadTexture(texHDR);
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_NORMAL] = GetShaderLocation(mat.shader, "normals.sampler");
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_ROUGHNESS] = GetShaderLocation(mat.shader, "roughness.sampler"); // Unload already used shaders (to create specific textures)
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_OCCLUSION] = GetShaderLocation(mat.shader, "occlusion.sampler"); UnloadShader(shdrCubemap);
//mat.shader.locs[LOC_MAP_EMISSION] = GetShaderLocation(mat.shader, "emission.sampler"); UnloadShader(shdrIrradiance);
//mat.shader.locs[LOC_MAP_HEIGHT] = GetShaderLocation(mat.shader, "height.sampler"); UnloadShader(shdrPrefilter);
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_IRRADIANCE] = GetShaderLocation(mat.shader, "irradianceMap"); UnloadShader(shdrBRDF);
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_PREFILTER] = GetShaderLocation(mat.shader, "prefilterMap");
mat.shader.locs[(int)ShaderLocationIndex.LOC_MAP_BRDF] = GetShaderLocation(mat.shader, "brdfLUT"); // Set textures filtering for better quality
SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_ALBEDO].texture, (int)TextureFilterMode.FILTER_BILINEAR);
// Set view matrix location SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_NORMAL].texture, (int)TextureFilterMode.FILTER_BILINEAR);
mat.shader.locs[(int)ShaderLocationIndex.LOC_MATRIX_MODEL] = GetShaderLocation(mat.shader, "matModel"); SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_METALNESS].texture, (int)TextureFilterMode.FILTER_BILINEAR);
mat.shader.locs[(int)ShaderLocationIndex.LOC_MATRIX_VIEW] = GetShaderLocation(mat.shader, "view"); SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_ROUGHNESS].texture, (int)TextureFilterMode.FILTER_BILINEAR);
mat.shader.locs[(int)ShaderLocationIndex.LOC_VECTOR_VIEW] = GetShaderLocation(mat.shader, "viewPos"); SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_OCCLUSION].texture, (int)TextureFilterMode.FILTER_BILINEAR);
// Set PBR standard maps // Enable sample usage in shader for assigned textures
mat.maps[(int)TexmapIndex.MAP_ALBEDO].texture = LoadTexture("resources/pbr/trooper_albedo.png"); SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "albedo.useSampler"), new int[] { 1 }, 1); SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "normals.useSampler"), new int[] { 1 }, 1); SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "metalness.useSampler"), new int[] { 1 }, 1); SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "roughness.useSampler"), new int[] { 1 }, 1); SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "occlusion.useSampler"), new int[] { 1 }, 1);
mat.maps[(int)TexmapIndex.MAP_NORMAL].texture = LoadTexture("resources/pbr/trooper_normals.png");
mat.maps[(int)TexmapIndex.MAP_METALNESS].texture = LoadTexture("resources/pbr/trooper_metalness.png"); int renderModeLoc = GetShaderLocation(mat.shader, "renderMode");
mat.maps[(int)TexmapIndex.MAP_ROUGHNESS].texture = LoadTexture("resources/pbr/trooper_roughness.png"); SetShaderValuei(mat.shader, renderModeLoc, new int[] { 0 }, 1);
mat.maps[(int)TexmapIndex.MAP_OCCLUSION].texture = LoadTexture("resources/pbr/trooper_ao.png");
// Set up material properties color
// Set environment maps mat.maps[(int)TexmapIndex.MAP_ALBEDO].color = albedo; mat.maps[(int)TexmapIndex.MAP_NORMAL].color = new Color(128, 128, 255, 255);
const string PATH_CUBEMAP_VS = "resources/shaders/cubemap.vs"; mat.maps[(int)TexmapIndex.MAP_METALNESS].value = metalness; mat.maps[(int)TexmapIndex.MAP_ROUGHNESS].value = roughness; mat.maps[(int)TexmapIndex.MAP_OCCLUSION].value = 1.0f; mat.maps[(int)TexmapIndex.MAP_EMISSION].value = 0.5f; mat.maps[(int)TexmapIndex.MAP_HEIGHT].value = 0.5f;
const string PATH_CUBEMAP_FS = "resources/shaders/cubemap.fs";
const string PATH_SKYBOX_VS = "resources/shaders/skybox.vs"; return mat;
const string PATH_IRRADIANCE_FS = "resources/shaders/irradiance.fs"; }
const string PATH_PREFILTER_FS = "resources/shaders/prefilter.fs";
const string PATH_BRDF_VS = "resources/shaders/brdf.vs"; public static Light CreateLight(LightType type, Vector3 pos, Vector3 targ, Color color, Shader shader)
const string PATH_BRDF_FS = "resources/shaders/brdf.fs"; {
Shader shdrCubemap = LoadShader(PATH_CUBEMAP_VS, PATH_CUBEMAP_FS); Light light = new Light();
Shader shdrIrradiance = LoadShader(PATH_SKYBOX_VS, PATH_IRRADIANCE_FS);
Shader shdrPrefilter = LoadShader(PATH_SKYBOX_VS, PATH_PREFILTER_FS); if (lightsCount < MAX_LIGHTS)
Shader shdrBRDF = LoadShader(PATH_BRDF_VS, PATH_BRDF_FS); {
light.enabled = true;
// Setup required shader locations light.type = type;
SetShaderValuei(shdrCubemap, GetShaderLocation(shdrCubemap, "equirectangularMap"), new int[] { 0 }, 1); light.position = pos;
SetShaderValuei(shdrIrradiance, GetShaderLocation(shdrIrradiance, "environmentMap"), new int[] { 0 }, 1); light.target = targ;
SetShaderValuei(shdrPrefilter, GetShaderLocation(shdrPrefilter, "environmentMap"), new int[] { 0 }, 1); light.color = color;
Texture2D texHDR = LoadTexture("resources/dresden_square.hdr"); string enabledName = $"lights[{lightsCount}].enabled\0";
Texture2D cubemap = GenTextureCubemap(shdrCubemap, texHDR, CUBEMAP_SIZE); string typeName = $"lights[{lightsCount}].type\0";
mat.maps[(int)TexmapIndex.MAP_IRRADIANCE].texture = GenTextureIrradiance(shdrIrradiance, cubemap, IRRADIANCE_SIZE); string posName = $"lights[{lightsCount}].position\0";
mat.maps[(int)TexmapIndex.MAP_PREFILTER].texture = GenTexturePrefilter(shdrPrefilter, cubemap, PREFILTERED_SIZE); string targetName = $"lights[{lightsCount}].target\0";
mat.maps[(int)TexmapIndex.MAP_BRDF].texture = GenTextureBRDF(shdrBRDF, cubemap, BRDF_SIZE); string colorName = $"lights[{lightsCount}].color\0";
UnloadTexture(cubemap);
UnloadTexture(texHDR); light.enabledLoc = GetShaderLocation(shader, enabledName);
light.typeLoc = GetShaderLocation(shader, typeName);
// Unload already used shaders (to create specific textures) light.posLoc = GetShaderLocation(shader, posName);
UnloadShader(shdrCubemap); light.targetLoc = GetShaderLocation(shader, targetName);
UnloadShader(shdrIrradiance); light.colorLoc = GetShaderLocation(shader, colorName);
UnloadShader(shdrPrefilter);
UnloadShader(shdrBRDF); UpdateLightValues(shader, light);
lightsCount++;
// Set textures filtering for better quality }
SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_ALBEDO].texture, (int)TextureFilterMode.FILTER_BILINEAR); return light;
SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_NORMAL].texture, (int)TextureFilterMode.FILTER_BILINEAR); }
SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_METALNESS].texture, (int)TextureFilterMode.FILTER_BILINEAR);
SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_ROUGHNESS].texture, (int)TextureFilterMode.FILTER_BILINEAR); public static void UpdateLightValues(Shader shader, Light light)
SetTextureFilter(mat.maps[(int)TexmapIndex.MAP_OCCLUSION].texture, (int)TextureFilterMode.FILTER_BILINEAR); {
// Send to shader light enabled state and type
// Enable sample usage in shader for assigned textures SetShaderValuei(shader, light.enabledLoc, new int[] { light.enabled ? 1 : 0 }, 1);
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "albedo.useSampler"), new int[] { 1 }, 1); SetShaderValuei(shader, light.typeLoc, new int[] { (int)light.type }, 1);
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "normals.useSampler"), new int[] { 1 }, 1);
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "metalness.useSampler"), new int[] { 1 }, 1); // Send to shader light position values
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "roughness.useSampler"), new int[] { 1 }, 1); float[] position = { light.position.x, light.position.y, light.position.z };
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "occlusion.useSampler"), new int[] { 1 }, 1); SetShaderValue(shader, light.posLoc, position, 3);
int renderModeLoc = GetShaderLocation(mat.shader, "renderMode"); // Send to shader light target position values
SetShaderValuei(mat.shader, renderModeLoc, new int[] { 0 }, 1); float[] target = { light.target.x, light.target.y, light.target.z };
SetShaderValue(shader, light.targetLoc, target, 3);
// Set up material properties color
mat.maps[(int)TexmapIndex.MAP_ALBEDO].color = albedo; // Send to shader light color values
mat.maps[(int)TexmapIndex.MAP_NORMAL].color = new Color( 128, 128, 255, 255 ); float[] diff = { light.color.r / 255, light.color.g / 255, light.color.b / 255, light.color.a / 255 };
mat.maps[(int)TexmapIndex.MAP_METALNESS].value = metalness; SetShaderValue(shader, light.colorLoc, diff, 4);
mat.maps[(int)TexmapIndex.MAP_ROUGHNESS].value = roughness; }
mat.maps[(int)TexmapIndex.MAP_OCCLUSION].value = 1.0f; }
mat.maps[(int)TexmapIndex.MAP_EMISSION].value = 0.5f;
mat.maps[(int)TexmapIndex.MAP_HEIGHT].value = 0.5f;
return mat;
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff