Lens Flare Tutorial
ObjectiveTo explain how to create the over-used, totally hyped "Lens Flare" effect that everyone seems to be talking about these days. "Did you see the screenshots for AssumptionsI assume that you are familiar with 2d coordinate systems. I assume that you are capable of using blit Explanation of the ConceptsThe basic idea is that when a bright light passes in front of a camera in real life, it typically creates a glare on each of the lenses within your camera. The physics of why and how the optics of lens flares work are irrelevant to achieving a believable effect. Now, in your typical polygon-based 3d engine, you don't actually use multiple lenses in your calculations so we need to find a way to "fake" the illusion that the light is glaring off of several lenses within your virtual camera. Ingredients:
Now that we have these two positions, we can calculate the direction vector from the center of the screen to the position of the light. // find the direction vector from the center to the light vx = cx - lx; vy = cy - ly; Then normalize the direction vector so we can use it for scaling purposes. NOTE: STORE THE LENGTH OF THE VECTOR...we'll call ours "length" You'll also need several images to use as components of the effect. One of these images is typically a star-burst type of image. The others are usually halo type images. See below. OK, so now we have three vectors:
and the four images from above... Here comes the easy part... Simply scale the normalized direction vector by the length to get the center coordinate of where to draw the primary "star-burst" image. vx = vx * distance; vy = vy * distance; If you are using blits, then you infer your top, left, right and bottom coordinates from this new center vector...for example an image that has dimensions of 128x128 you would do something like this...(plenty of room for optimizations here...) top = vy - 64 + cy; left = vx - 64 + cx; right = vx + 64 + cx; bottom = vy + 64 + cy; // NOTE: MAKE SURE TO OFFSET BY THE CENTER POINT Now, for each of the other elements of the lens flare, simply use variations of the length variable in the scaling of the direction vector: I've found the following values to work quite well...
Try playing around with different images, length scales and image scales. FYI...don't use divides, instead calculate the reciprocals and multiply by those...MUCH FASTER. (e.g. DIV2 = 1.0f/2.0f; newlength = length*DIV2;...this is the same as newlength = length / 2.0f, but around 15 times faster to process...) Below you can see a shot of the effect at work...Notice the lack of proper alpha-blending, this was due to the fact that I slapped the lens flare test project together with C++ Builder using straight SRCAND-style "blits"...gets the point across and only took about a half-hour to code... For an actual high-quality example of this algorithm at work, be sure to download the Venom demo on March 2, 1998. I hope you have enjoyed this short tutorial, if you have any questions or would like the source code to the C++ Builder project that this screen shot is from, send me an email. Reprinted with Permission Discuss this article in the forums
See Also: © 1999-2011 Gamedev.net. All rights reserved. Terms of Use Privacy Policy
|