SFML community forums

Help => Graphics => Topic started by: eventhorizon02 on April 12, 2016, 08:55:18 pm

Title: shader scanline or interlace effect.
Post by: eventhorizon02 on April 12, 2016, 08:55:18 pm
Hi,
I'm working on a SFML game and need a nice interlace or scan line effect. That sort of look old CRT monitors had.
It seems super easy to load shaders and apply them to sf::Drawable's.
My problem is that I just started learning the witchcraft of GLSL and have a hard time achieving anything near the desired effect.
If you have some GLSL code that I can use for that purpose I will greatly appreciate it.

cheers.
Title: AW: shader scanline or interlace effect.
Post by: eXpl0it3r on April 13, 2016, 08:11:16 am
I'm pretty sure you could find one by googling a bit. ;)
Title: Re: shader scanline or interlace effect.
Post by: eventhorizon02 on April 13, 2016, 08:40:31 am
Thanks for the awesome advice! I have never thought about  the option of using the ultimate all knowing search engine. Maybe I need to improve my googling skills but all I found was code that I never managed to integrate into SFML.  It seems like there is plenty out there, the sort of sudo GLSL code that works with LOVE, unity or whatever.
My understanding of GLSL is still minimal and I'm not able to migrate those code snippets to works with my C++ SFML project. That is the reason I came to this forum to ask if anybody has or knows about something I can use.
Title: Re: shader scanline or interlace effect.
Post by: fallahn on April 13, 2016, 11:59:21 pm
Few people are going to be willing to write code for you, although if you're lucky some might Google up a few resources ;) You could try this effect in at least two ways: use gl_FragCoord (https://www.opengl.org/sdk/docs/man/html/gl_FragCoord.xhtml) to skip every other row of your texture giving you black lines across the image, or more subtly (https://github.com/fallahn/xygine/blob/master/xygine/include/xygine/shaders/PostChromeAb.hpp#L100) using a combination of sin (https://www.opengl.org/sdk/docs/man/html/sin.xhtml) and cos (https://www.opengl.org/sdk/docs/man/html/cos.xhtml) to offset your texture lookup by some amount. Experimenting is half the fun!
Title: Re: shader scanline or interlace effect.
Post by: Nexus on April 14, 2016, 12:09:09 am
If you are more precise about your problem at integrating GLSL to SFML, you will get more helpful answers. Also, it's not true that one can't find examples -- a lot of SFML projects use shaders, and some developers even write a blog/article about it. This in addition to the plenty of official SFML learning resources (http://www.sfml-dev.org/learn.php).

Of course you don't have to look for somebody that has had exactly the same problem (implementing a scanline shader in SFML). But you can search for scanline GLSL implementations and read tutorial + doc + example code + 3rd party sources about SFML shaders, and if there are still questions regarding specific parts of this task, ask them here.
Title: Re: shader scanline or interlace effect.
Post by: DarkRoku12 on April 14, 2016, 02:55:17 am
This tutorial (http://gamedevelopment.tutsplus.com/tutorials/a-beginners-guide-to-coding-graphics-shaders--cms-23313) help me a lot with shaders and GLSL.
Title: Re: shader scanline or interlace effect.
Post by: eventhorizon02 on April 14, 2016, 09:46:07 am
Thanks for all the replies. I finally managed to get shaders from repositories implemented. My main issue was passing data such as time, mouse position and resolution over to the shader. After further investigation I figured out about the shader.setParameter way to communicate with it.
Again being completely new to GLSL I was not aware of uniform variable etc.
I guess now it's time to crank out the old linear algebra college books to some nice effects going on.
Cheers.
Title: Re: shader scanline or interlace effect.
Post by: Hapax on April 14, 2016, 10:31:45 pm
I don't know how realistic you want this scanline effect but for a simple one, that alternates light (unaltered texture) and dark (darkened texture) blocks of customisable size, you can use this one that I made (https://github.com/Hapaxia/Lens/blob/master/Lens/scanline.frag). thickness and spacing determine the size (in pixels) of the light and dark blocks, and amount is how dark the dark blocks are. (don't forget to set the texture!)