Difference between revisions of "Lesson 5 - experimentation"

From Bo3b's School for Shaderhackers
Jump to: navigation, search
Line 60: Line 60:
 
*# Fix lava by killing one texture instead of the entire shader.
 
*# Fix lava by killing one texture instead of the entire shader.
 
*# optional: Fix the lava from the VertexShader output side, where v1 is created.
 
*# optional: Fix the lava from the VertexShader output side, where v1 is created.
 +
  
 
----
 
----
Line 72: Line 73:
 
*# Experiment with it to fix it to where it's acceptable.
 
*# Experiment with it to fix it to where it's acceptable.
 
*# Save a screenshot to your personal page.
 
*# Save a screenshot to your personal page.
 +
  
 
* optional: Fix the entire game.
 
* optional: Fix the entire game.
Line 78: Line 80:
 
*# Fix the lava effect by disabling the texture.
 
*# Fix the lava effect by disabling the texture.
 
*# Save your complete list of modified shaders to your personal page.
 
*# Save your complete list of modified shaders to your personal page.
 +
 +
<br>

Revision as of 01:27, 13 September 2014

Summary

This lesson we will talk about the role of experimentation when trying to fix shaders.


Level of difficulty: Easy
Time required: 30 minutes

Video Walkthrough on YouTube
Video Walkthrough direct download link

Objective

Experiment on a broken shader to see how the pieces work together.
Fix the lava shader so it still works.

Quiz

Fix the water shader in the last room.



After we've found a broken shader, we want to disable or fix them. We can't always do the easiest fix though, and this is where experimentation comes in. This is the puzzle aspect of fixing shaders, where it's not always clear how to fix a shader, even after having seen a lot of variants.

The basic premise is to experiment on the shader by commenting out pieces of the code, and reloading it live with F10, and see any change. As you do these experiments, you can get a feel for what pieces of code affect what part of the image, which can lead you to the best fix.

It can be quite a bit of trial and error, but can allow you to figure out fixes that don't match common patterns, or to find the right spot for a common pattern.



Let's take a look at the basics of 3D graphics, so you can have a very rough idea of how the pieces fit together. This will give you some understanding of how shaders work.


  • Play with the Principles of Shading demo.
    1. Get the demo from here
    2. Run the demo and get an understanding of the wireframe vertexes versus the textures.
    3. Look at the Display menu in particular.
    4. Take a first look at the 0.5*D*T formula as a basic building block.
    5. Take a look at the graphics pipeline here
    6. Get a basic idea of the flow of graphics operations, especially noting VertexShaders run before PixelShaders.


After playing with this demo you should have a sense for how 3D graphics are built out of a list of vertices, that make up an array of triangles, that have textures applied to the triangles.



Sometimes we will run into an effect that really cannot be disabled without making the game a lot worse.

In this game, the Lava effect is an example. It's annoyingly broken, and makes those parts of the games unplayable. But, disabling it altogether removes the visual cue of the dangerous areas.

Let's experiment with it, to see if we can make something better.


  • Experiment on lava shaders.
    1. Inspect and experiment on lava in PS.
    2. In pixel shader, try changing each texld to invisible.
    3. Those don't work, look next at the input section with interesting stereo fix.
    4. See that v1 is an input location.
    5. Experiment by changing v1 to null.
    6. Fix lava by killing one texture instead of the entire shader.
    7. optional: Fix the lava from the VertexShader output side, where v1 is created.



Quiz: Go to the end of the demo, and figure out a way to fix the broken water.

  • Fix the water shader at the last level.
    1. Play through to the giant worm at the end, it's not far.
    2. See the water has double-imaging like the water in the hall earlier.
    3. Find the shader for the water effect.
    4. Disable it. Note that it's really not good enough disabled.
    5. Experiment with it to fix it to where it's acceptable.
    6. Save a screenshot to your personal page.


  • optional: Fix the entire game.
    1. Go through at least 3 levels, and find and mark all broken effects.
    2. Disable all broken effects.
    3. Fix the lava effect by disabling the texture.
    4. Save your complete list of modified shaders to your personal page.