public:t-gede-13-1:lab6
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
public:t-gede-13-1:lab6 [2013/03/05 10:29] – [Lab Project] hannes | public:t-gede-13-1:lab6 [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 13: | Line 13: | ||
===== Preparation ===== | ===== Preparation ===== | ||
- | No special preparation is required. | + | From previous labs you should already have a '' |
+ | FileSystem=Models | ||
+ | FileSystem=Materials | ||
+ | </ | ||
===== Lab Project ===== | ===== Lab Project ===== | ||
Line 19: | Line 22: | ||
Follow these steps to complete the lab project: | Follow these steps to complete the lab project: | ||
- | - **Create a New Project** Create a new empty project called "Lab5" in the same way you have created new projects for other lab projects. | + | - **Create a New Project** Create a new empty project called "Lab6" in the same way you have created new projects for other lab projects. |
- | - **Fixed Diffuse Color Fragment Shader** | + | #include " |
- | - **Parametric Diffuse Color Fragment Shader** | + | |
- | - **Texture Vertex and Fragment Shaders** | + | class MyApplication { |
- | - **Animated Vertex Shader** | + | private: |
- | - **Per Pixel Phong Shader** | + | Ogre:: |
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | |||
+ | public: | ||
+ | |||
+ | MyApplication() { | ||
+ | _sceneManager = NULL; | ||
+ | _root = NULL; | ||
+ | _ogre = NULL; | ||
+ | _ground = NULL; | ||
+ | } | ||
+ | |||
+ | ~MyApplication() { | ||
+ | delete _root; | ||
+ | } | ||
+ | |||
+ | void loadResources() { | ||
+ | Ogre:: | ||
+ | cf.load(" | ||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | while(sectionIter.hasMoreElements()) { | ||
+ | sectionName=sectionIter.peekNextKey(); | ||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | for(i=settings-> | ||
+ | typeName=i-> | ||
+ | dataName=i-> | ||
+ | Ogre:: | ||
+ | } | ||
+ | } | ||
+ | Ogre:: | ||
+ | } | ||
+ | |||
+ | void createScene() { | ||
+ | _ogre =_sceneManager-> | ||
+ | _sceneManager-> | ||
+ | |||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | Ogre:: | ||
+ | _sceneManager-> | ||
+ | |||
+ | // HERE YOU SET THE MATERIALS FOR EACH OBJECT | ||
+ | // e.g. _ogre-> | ||
+ | // e.g. _ground-> | ||
+ | |||
+ | Ogre:: | ||
+ | light-> | ||
+ | light-> | ||
+ | } | ||
+ | |||
+ | int startup() { | ||
+ | _root=new Ogre:: | ||
+ | if(!_root-> | ||
+ | return -1; | ||
+ | } | ||
+ | |||
+ | Ogre:: | ||
+ | _sceneManager=_root-> | ||
+ | |||
+ | _camera=_sceneManager-> | ||
+ | _camera-> | ||
+ | _camera-> | ||
+ | _camera-> | ||
+ | |||
+ | Ogre:: | ||
+ | viewport-> | ||
+ | _camera-> | ||
+ | |||
+ | loadResources(); | ||
+ | createScene(); | ||
+ | |||
+ | _root-> | ||
+ | return 0; | ||
+ | |||
+ | } | ||
+ | }; | ||
+ | |||
+ | |||
+ | int main(void) { | ||
+ | MyApplication app; | ||
+ | app.startup(); | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | - **Fixed Diffuse Color Fragment Shader** | ||
+ | float4 main_orange_fp(in float3 TexelPos : TEXCOORD0) : COLOR { | ||
+ | float4 oColor; | ||
+ | |||
+ | oColor.r = 1.0; | ||
+ | oColor.g = 0.8; | ||
+ | oColor.b = 0.0; | ||
+ | oColor.a = 0.0; | ||
+ | |||
+ | return oColor; | ||
+ | } | ||
+ | </ | ||
+ | fragment_program shader/ | ||
+ | source diffuseshader.cg | ||
+ | entry_point main_orange_fp | ||
+ | profiles ps_1_1 arbfp1 | ||
+ | |||
+ | } | ||
+ | |||
+ | material shader/ | ||
+ | technique { | ||
+ | pass { | ||
+ | fragment_program_ref shader/ | ||
+ | } | ||
+ | texture_unit { | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | _ogre-> | ||
+ | _ground-> | ||
+ | </ | ||
+ | - **Parametric Diffuse Color Fragment Shader**You can use the same shader program in many materials and simply let each material pass a parameter into the program to tell it how to paint a given surface. This makes more sense than writing a new shader program every time you want to paint an object in a different color for example. You can pass parameters into Cg shader programs through the so called **uniform** parameter. In the '' | ||
+ | float4 main_color_fp(in float3 TexelPos : TEXCOORD0, uniform float4 color) : COLOR { | ||
+ | float4 oColor = color; | ||
+ | return oColor; | ||
+ | }</ | ||
+ | fragment_program shader/ | ||
+ | source diffuseshader.cg | ||
+ | entry_point main_color_fp | ||
+ | profiles ps_1_1 arbfp1 | ||
+ | |||
+ | default_params { | ||
+ | param_named color float4 0.7 0.2 0.2 1.0 | ||
+ | } | ||
+ | } | ||
+ | |||
+ | material shader/ | ||
+ | technique { | ||
+ | pass { | ||
+ | fragment_program_ref shader/ | ||
+ | param_named color float4 0.8 0.8 0.8 1.0 | ||
+ | } | ||
+ | texture_unit { | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | }</ | ||
+ | _ogre-> | ||
+ | </ | ||
+ | - **Custom Diffuse Color Fragment Shader** You may also want to control some parameter in a shader program from within the application code. To do this, you indicate that a shader program parameter should be a **custom** parameter. You do not have to change your diffuse fragment shader program to do this (it is already expecting an external color parameter), but you need to create a new shader program definition and a new material in the **materials** file to do this:< | ||
+ | fragment_program shader/ | ||
+ | source diffuseshader.cg | ||
+ | entry_point main_color_fp | ||
+ | profiles ps_1_1 arbfp1 | ||
+ | |||
+ | default_params { | ||
+ | param_named_auto color custom 1 | ||
+ | } | ||
+ | } | ||
+ | |||
+ | material shader/ | ||
+ | technique { | ||
+ | pass { | ||
+ | fragment_program_ref shader/ | ||
+ | param_named_auto color custom 1 | ||
+ | } | ||
+ | texture_unit { | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | }</ | ||
+ | _ogre-> | ||
+ | _ogre-> | ||
+ | </ | ||
+ | - **Texture Vertex and Fragment Shaders**Painting an object in a single color is not particularly interesting. More commonly we read diffuse color information from a texture as we process each fragment. We can do this if we supply each fragment with texture coordinates that are interpolated from texture coordinates stored at the nearest vertices. To do texturing, we should create two shader programs: (1) We should make sure that a **vertex program** provides texture coordinates and (2) we should use the interpolated texture coordinates in a **fragment program** that returns the right color value from a texture. You should now create a new shader program file called '' | ||
+ | void main_vp( | ||
+ | // Per-vertex information | ||
+ | float4 vtx_position | ||
+ | float2 vtx_texcoord0 | ||
+ | // Provided parameters | ||
+ | uniform float4x4 | ||
+ | // Shader outputs | ||
+ | out float4 l_position | ||
+ | out float2 l_texcoord0 | ||
+ | |||
+ | { | ||
+ | // Calculate output position (a vertex shader is expected to at least do this!) | ||
+ | l_position = mul(mat_modelproj, | ||
+ | // Simply copy the input vertex UV to the output | ||
+ | l_texcoord0 = vtx_texcoord0; | ||
+ | } | ||
+ | |||
+ | void main_fp( | ||
+ | // Interpolated fragment values | ||
+ | float2 l_texcoord0 | ||
+ | // Provided parameters and data | ||
+ | uniform sampler2D texture, | ||
+ | // Shader output | ||
+ | out float4 o_color | ||
+ | { | ||
+ | // Just sample texture using supplied UV | ||
+ | o_color = tex2D(texture, | ||
+ | } | ||
+ | </ | ||
+ | vertex_program shader/ | ||
+ | source textureshader.cg | ||
+ | entry_point main_vp | ||
+ | profiles vs_1_1 arbvp1 | ||
+ | |||
+ | default_params { | ||
+ | param_named_auto mat_modelproj worldviewproj_matrix | ||
+ | } | ||
+ | } | ||
+ | |||
+ | fragment_program shader/ | ||
+ | source textureshader.cg | ||
+ | entry_point main_fp | ||
+ | profiles ps_1_1 arbfp1 | ||
+ | } | ||
+ | </ | ||
+ | material shader/ | ||
+ | technique { | ||
+ | pass { | ||
+ | vertex_program_ref shader/ | ||
+ | } | ||
+ | fragment_program_ref shader/ | ||
+ | } | ||
+ | texture_unit { | ||
+ | texture Water02.jpg 2d | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | }</ | ||
+ | - **Animated Vertex Shader**To try to have a vertex shader to something a little more interesting, | ||
+ | void main_time_vp( | ||
+ | // Per-vertex information | ||
+ | float4 vtx_position | ||
+ | float2 vtx_texcoord0 | ||
+ | // Provided parameters | ||
+ | uniform float4x4 | ||
+ | uniform float t, // Expecting time here | ||
+ | // Shader outputs | ||
+ | out float4 l_position | ||
+ | out float2 l_texcoord0 | ||
+ | |||
+ | { | ||
+ | // Displace the vertical coordinate based on x-location and time | ||
+ | float4 temp = vtx_position; | ||
+ | temp.y = temp.y+cos(temp.x+t); | ||
+ | |||
+ | // Calculate output position | ||
+ | l_position = mul(mat_modelproj, | ||
+ | // Simply copy the input vertex UV to the output | ||
+ | l_texcoord0 = vtx_texcoord0; | ||
+ | } | ||
+ | </ | ||
+ | vertex_program shader/ | ||
+ | source textureshader.cg | ||
+ | entry_point main_time_vp | ||
+ | profiles vs_1_1 arbvp1 | ||
+ | |||
+ | default_params { | ||
+ | param_named_auto mat_modelproj worldviewproj_matrix | ||
+ | param_named_auto t time | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | - **Per Pixel Phong Shader**Finally, let's try calculating the color value of a fragment based on an actual lighting model such as the Phong lighting model. Since we will be calculating the lighting value inside each fragment, we call this **per-pixel lighting**. This basically means that instead of using interpolated color values from the nearby vertices, we use interpolated vector values (model space vertex position, normal, view direction and light direction) to calculate the color value inside the fragment program. Create a new shader program file called '' | ||
+ | // Cg | ||
+ | void main_vp( | ||
+ | float4 vtx_position | ||
+ | float3 vtx_normal | ||
+ | float2 vtx_texcoord0 | ||
+ | |||
+ | uniform float4x4 mat_modelproj, | ||
+ | uniform float4 | ||
+ | uniform float4 | ||
+ | |||
+ | out float4 l_position | ||
+ | out float2 l_texcoord0 : TEXCOORD0, | ||
+ | out float3 l_N : TEXCOORD1, | ||
+ | out float3 l_L : TEXCOORD2, | ||
+ | out float3 l_V : TEXCOORD3, | ||
+ | out float3 l_P : TEXCOORD4 | ||
+ | ) | ||
+ | { | ||
+ | l_position = mul(mat_modelproj, | ||
+ | l_texcoord0 = vtx_texcoord0; | ||
+ | |||
+ | // The principal vectors for our Phong lighting model calculation: | ||
+ | // L = Light Vector, N = Vertex Normal, V = View Vector R = Light Reflection Vector | ||
+ | l_N = vtx_normal; | ||
+ | // We passed in the light and camera NodePaths and get their model space coordinates | ||
+ | // here through the " | ||
+ | l_L = normalize(mspos_light.xyz - vtx_position.xyz); | ||
+ | l_V = normalize(mspos_camera.xyz - vtx_position.xyz); | ||
+ | l_P = vtx_position.xyz; | ||
+ | // We can't calculate the R vector here because it won't interpolate correctly for each fragment | ||
+ | // (it relies on a dot product which complicates things for it), so we'll calculate it inside the | ||
+ | // fragment shader. The other vectors will all get interpolated and passed to the fragments. | ||
+ | |||
+ | } | ||
+ | |||
+ | void main_fp( | ||
+ | float2 l_texcoord0 : TEXCOORD0, | ||
+ | float3 l_N : TEXCOORD1, | ||
+ | float3 l_L : TEXCOORD2, | ||
+ | float3 l_V : TEXCOORD3, | ||
+ | float3 l_P : TEXCOORD4, | ||
+ | |||
+ | uniform float4 k_ambientc, | ||
+ | uniform float4 k_diffusec, | ||
+ | uniform float4 k_specularc, | ||
+ | |||
+ | out float4 o_color : COLOR) | ||
+ | { | ||
+ | // Inside the fragment shader, we get all the interpolated vectors | ||
+ | // The Diffuse Attenuation follows under what angle the light shines on the fragment | ||
+ | float diffuse_attn = saturate(dot(l_L, | ||
+ | |||
+ | // The Specular Attenuation follows how close to the line of light reflection you are looking | ||
+ | float3 R = normalize(2*l_N*dot(l_N, | ||
+ | float specular_attn = pow(saturate(dot(R, | ||
+ | |||
+ | // Here we return the color based on the full phong light model | ||
+ | o_color = 0.2*k_ambientc + diffuse_attn*k_diffusec+specular_attn*k_specularc; | ||
+ | |||
+ | } | ||
+ | </ | ||
+ | vertex_program shader/ | ||
+ | source lightingshader.cg | ||
+ | entry_point main_vp | ||
+ | profiles vs_1_1 arbvp1 | ||
+ | |||
+ | default_params { | ||
+ | param_named_auto mat_modelproj worldviewproj_matrix | ||
+ | param_named_auto mspos_light light_position_object_space 0 | ||
+ | param_named_auto mspos_camera camera_position_object_space | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | fragment_program shader/ | ||
+ | source lightingshader.cg | ||
+ | entry_point main_fp | ||
+ | profiles ps_2_0 arbfp1 | ||
+ | |||
+ | default_params { | ||
+ | param_named k_ambientc float4 0.5 0.5 0.5 1.0 | ||
+ | param_named k_diffusec float4 0.8 0.1 0.1 1.0 | ||
+ | param_named k_specularc float4 0.6 0.6 0.6 1.0 | ||
+ | } | ||
+ | } | ||
+ | </ | ||
/var/www/cadia.ru.is/wiki/data/attic/public/t-gede-13-1/lab6.1362479393.txt.gz · Last modified: 2024/04/29 13:32 (external edit)