• Register
Post tutorial Report RSS Shaders for beginners (with Defold example)

I had many problems with understanding shaders, but after getting a grasp - it is so easy, convenient and powerful! I present to you **my twisted version of understanding this**, hoping it will help other aspiring devs ;) This is my slow path from a total noob to a less-noob-ish shader programmer!

Posted by on - Basic Textures

I had many problems with understanding shaders, but after getting a grasp - it is so easy, convenient and powerful! I present to you my twisted version of understanding this, hoping it will help other aspiring devs πŸ˜‰

This is my slow path from a total noob to a less-noob-ish shader programmer πŸ˜ƒ It will be for someone totally new, so don't mind a plain style and many simplifications or depictions (not exactly totally true, because saying them totally true demands more explanations and those explanations demands more explanations and so on, and so on πŸ˜‰ ) Later, things will be clear for you and you will get to know easily how it is really working.

The post is full of useful links and you should check them all - additionally I am encouraging you to check out all the awesome documentation Defold has after reading this post.


πŸ–ŒοΈ Drawing a picture

You use a sprite to see a visual in your game. Defold uses (Nerd's babble alert! 🚨) OpenGL (a framework to draw graphics) to draw your sprite to a screen. There is a special way of telling the graphics card how it should be drawn. There are two programs that runs for every pixel every frame before the final color of that particular pixel is displayed on the screen.
Those are (OMG more babble! 🚨) vertex program and fragment program. There are joined together in something called a material.

image


image


πŸ‘š Materials to study

In Poland we say "How a horse looks like? Everyone sees!" (a not-so-scientific explanation of Mr. Chmielowski in his New Athens (encyclopedia) πŸ˜ƒ)
Material is like it looks like - in our real world we have materials like silk, wool or cotton. They have, let's think, a texture and a colour! (pun intended, you will get it soon πŸ˜ƒ ). In computer's world it specifies how a sprite/particle/mesh and other visual assets are rendered (displayed on a screen) to resemble something. πŸ–₯️


🧾Recipe for an image

This is a recipe (from here):

image

I will refer to it many times below:

In a 3D engine (like Defold is) everything visual is a bunch of points (vertices). They are transformed from 3D space to a 2D screen space like a camera captures a 2D image of a real 3D world. From those points we can specify some basic geometrical shapes (primitives), imagine retro style 3D:

image
(source: Wallpapersden.com)


But screen is consisting only of pixels, and each of them can glow in one of different colors so we can see a picture on the screen. So we are taking the picture we have (continuous geometry) and chop it into a handful of small pieces πŸ”ͺ (aka rasterize it into fragments). Then, we have an interpolated colour of a fragment (and we can modify it) so we can light that one diode in our newest OLED monitor. And another. And another... πŸ˜ƒ


πŸ“ Vertex program

It's taking care of the first part of that process - calculating position of vertices (aka points in a 3D space that specify the geometry) from 3D space to a 2D screen space - so it somehow answers a question - where to draw. But let's leave it for now - it demands some further explanations about cameras, projections and so on and you will need it mostly for 3D games. For now we are taking care of sprites in single 2D games and sprite geometry is simple as is - a rectangle. We'll use a default vertex program.

image


πŸš₯ Fragment program

It simply defines what colour should have each fragment (pixel). It's used in the last stage of the process of preparation of your image to be displayed on the screen. So it somehow answers a question what to draw. That's it, can't say here anything more useful or wiser πŸ§™ , but I want that definition to be a little bit longer so it looks professional πŸ˜ƒ

image

After reading above and getting a grasp of what it is, you should read about those programs for a correct and deeper understanding.


πŸ’ͺExcersises

You must try something in order to stop being afraid of that thing. You must face a demon before it hits you. But when it hits you, you will probably blink in white (games are teaching!)

We will make that effect in shaders, but normally it will be more efficient to just tell your graphic designer (or yourself) to just draw that one frame in white, ok? Although such exercise will teach you:

1. getting pixels from a texture
2. changing color of pixels
3. sending a data to a shader

🏁Let's start!

Create an empty project in Defold with a sprite.
Add an image - make an atlas and add that image into it. Add game object with sprite to your collection to it and set its image and default animation to you new image. Do I need to describe it?? It is probably a thing you did dozen times in Defold πŸ˜ƒ

image

Copy a default sprite material, fragment and vertex program to your working folder. I don't care about tidiness so much for this exercise. (But that alter ago speaking in brackets will be watching you! πŸ‘οΈ Remember for future that a good structure is crucial! 🧹 ):

image


You can (should! πŸ‘οΈ) rename them. Open your new material and change the fragment program to your new fp (fragment program), however you named it (however?! πŸ‘οΈ):

image


Save it (save frequently! πŸ‘οΈ) and open you new fragment program. (and do backups! πŸ‘οΈ)

Magic explained line by line, just like here, but, you know, without Nerd's babble (it's a professional documentation! πŸ‘οΈ)
It's a code written in GLSL (OpenGL Shading Language), something similar to C++. You will notice I commented out some lines that are useless here. (if there is a useless code remove it! don't leave comments! πŸ‘οΈ) For now just focus on the essence which is for each fragment to:

1. Get a position from vertex program
2. Get your image data
3. Get a colour of that particular pixel by sampling your texture at an interpolated position
4. and write it to the output (gl_FragColor)

/*1*/ varying mediump vec2 var_texcoord0; // position of your fragment = output from vertex shader = input for fragment shader

/*2*/ uniform lowp sampler2D texture_sampler; // your image = texture data used like a reference here to create an image = this is automatically assigned by Defold engine, because you specified an image for a sprite
//uniform lowp vec4 tint; //vector representing a color in RGBA (red, green, blue, alpha)
// above are uniform variables - passed to the fragment program (first by engine, second by user)

void main() //this is hmm, a main function of your program, it looks like it has no output (void), but you'll know it's not particularly true
{
//lowp vec4 tint_pm = vec4(tint.xyz * tint.w, tint.w);

/*3+4*/ gl_FragColor = texture2D(texture_sampler, var_texcoord0.xy); // * tint_pm; I commented out multiplying the color by tint, texture2D() is a function that takes sampler data and interpolated position and gives you a color of the fragment as a vector in RGBA (red, green blue, alpha)
}

Save it. Open you collection with a game object with a sprite and change its Material property to your new material.

image


If everything is ok, you should see a sprite as it was. Nothing changed. So now, let's have a fun:
Get back to your fragment program and add in the last line of main:

gl_FragColor = texture2D(texture_sampler, var_texcoord0.xy) * vec4(1.0, 0.0, 0.0, 1.0);

So I just added vec4(1.0, 0.0, 0.0, 1.0) - multiplied the color by another color (red (because vector represents the color in RGBA)) so whatever the color of the pixel was it will have 0 * blue color and 0 * green color. Save it. And check in your collection if the sprite changes (ooh I love Defold πŸ’– , you don't need to build your project to check if such simple shader is working!). Your image should be more aggressive now:

image


That is, you wrote your first post-process effect! But we wanted to blink in white, so let's change the values in the vector to : (1.0, 1.0, 1.0, 1.0) - and you will see that this will not affect you sprite much - because any value multiplied by 1.0 will be still the same value. You can tinker a little bit with the vector, probably you will get to the solution that you could multiply it by e.g. 10.0 to get a very bright image, but it's still not pure white everywhere. Just try to leave one vector here:

gl_FragColor = vec4(1., 1., 1., 1.)

You will get:

image


It's because you set the color of every pixel of that texture to white. And you see that the texture is rectangular even if you have a character on a transparent background. So let's assume for now you have some transparent part, ok? Hmm. Use that tip to distinguish background and sprite!

Check if color of the pixel has alpha = 0 - if so, use the old way for setting a color, if not, it's a part of your character, so set the color to white. I will tidy up the code a little bit (finally! πŸ‘οΈ)

varying mediump vec2 var_texcoord0; // as it was
uniform lowp sampler2D texture_sampler; // as it was

void main()
{
//write a color of the current fragment to a variable (lowp = low precision (it's enough))
lowp vec4 color_of_pixel = texture2D(texture_sampler, var_texcoord0.xy);

if(color_of_pixel.a != 0) // when alpha value of the color is not 0 (not transparent) (you can get components of this vector like .r, .b, .g and .a)
{
color_of_pixel = vec4(1.,1.,1.,1.); // then it's your character - turn the color to white
}
gl_FragColor = color_of_pixel; // write the color_of_pixel to the output gl_FragColor
}

(Save it! πŸ‘οΈ) Result:

image


We finally hit that minotaur! Audience is clapping! Critical hit!

The only thing left is that we should trigger blink on and off.

___

πŸ—ͺ Talking to the shady guy

We will tell the shader to turn on the blink effect and after some time to turn it off.

We will do it by setting a constant* of a fragment program. If you didn't removed it you should already have on in your material - tint. We will use it. You can rename it however you like it (for example blink_effect_trigger πŸ‘οΈ)

image

*in runtime! - it should be confusing now, but if you will treat each run of the fragment program as a separate operation you will understand that it is indeed a constant specified before the "runtime" of the fragment program

Open your fragment program and add that constant as a uniform variable at top (I hope you renamed it! πŸ‘οΈ):

uniform lowp vec4 blink_effect_trigger;

Wrap your current if(){} statement with another if or just add another condition to your if() (let's choose second πŸ‘οΈ):

if((blink_effect_trigger.r == 1) && (color_of_pixel.a != 0))
{
color_of_pixel = vec4(1.,1.,1.,1.);
}

This will means that only when the first component of the vector blink_effect_trigger is set to 1.0 our post-process blink will be working.

Yes, you can test it without building and running your code, just in Defold Editor! Save everything and your sprite should be now white, but change the X of vector blink_effect_trigger to 0:

image

Click somewhere outside (to confirm your change) and save. Check out your sprite - it should be like on a color TV! πŸ“Ί
So we can now manually turn on and off our post-process! πŸ₯³

Now you will need to create a Lua script:

image

And attach it to your game object with a sprite:

image


(Save everything πŸ‘οΈ)
Open your script and leave only init function. Write here only:

function init(self)
go.set("#sprite", "blink_effect_trigger", vmath.vector4(1)) -- set property of "#sprite" component called "blink_effect_trigger" to vector of four components all equal to 1) = aka turn on your post-process
end

You told your sprite to set its constant blink_effect_trigger to vector with 1, meaning the post-process will be turned on
Now, finally, after hours of working without building our game - save it and build it!
You should see:

image

We just told that shady guy to turn on the post-process in runtime, at the very beginning of the program (aka in init)!

*Champagne pops!* 🍾
But hey! Where's turning off the effect??
*Champagne floods the floor* πŸ’¦

Ok, ok, here's a fancy script:

function init(self)
go.set("#sprite", "blink_effect_trigger", vmath.vector4(0)) -- at first turn off the post-process

timer.delay(1, true, function() -- every second

go.set("#sprite", "blink_effect_trigger", vmath.vector4(1)) --blink

timer.delay(0.1, false, function() --and after 0.1 sec
go.set("#sprite", "blink_effect_trigger", vmath.vector4(0)) -- turn of the post-process
end)
end)
end

Save it, build it, make a gif and post it to social media announcing that you are working on Dark Souls in 2D and finally managed to hit your first boss: πŸ˜ƒ

Honeycam 2020-10-16 13-32-21

Aaaa, and open another champagne! 🍾


🎣Summary

It's not perfect (you should listen to me instead, it would be! πŸ‘οΈ) and as I said, you should utilize shaders for much better effects - but hey, in few minutes you learned basics of computer graphics, OpenGL and how to write fragment programs, set up everything in Defold, test it, use shader constants and communicate with your shaders from a Lua script! I'm proud of you!

I was using such shader for enemies hit indication in a current demo of my Witchcrafter and I'm using fragment program on a hero sprite to modify his equipment even! And I wrote everything about it in details (with code) here!

Store.steampowered.com

Changing this:

png


to this:

Honeycam 2020-08-11 10-42-24


Shaders are very powerful, just experiment!

Honeycam 2020-07-26 21-58-47


And thank you so much for reading this!

PaweΕ‚

Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: