Faking 2D Shadows

Published February 28, 2017 by Emeric Beaufays, posted by olgalatepu
Do you see issues with this article? Let us know.
Advertisement

Introduction

The technique presented here runs at 60 fps on a decent android phone (one+3). and more than 30 fps on my old nexus 7 (2012). The main advantage of the technique are great looking soft shadows with minimal development effort. The code was written for android and renderscript but the concepts are so simple it'll be easy to port to anything else.

Just fake it!

The idea here is that we're not going to get into any complex calculations or mind-bending projection of our game world, we're just going to fake it. The algorithm isn't "pixel perfect", it's essentially a hack and it's probably not the fastest technique but the advantages definitely outweigh the drawbacks for quick and small projects.

Base concept

The concept is to paint every shadow-caster in black several times with increasing scale, Apply some blur and you're done. By tweaking the bluring and the scaling steps, you get something like the pictures below. shadows0.jpg This looks pretty good when the light-source is far away from the shadow-caster but when it's close to it, the shadows don't extend very far. we can extend the shadows further by adding more shadow painting passes but the algorithm becomes costly while if we increase the scaling steps, artifacts become apparent. Still, this approach has great looking soft shadows and the shadows are actually correct for a light-source floating a little above the screen. The other advantage of the approach is that it's independent of the number of shadow-caster objects you have on screen, so unlike in a ray-casting approach, you don't need any spacial indexing and collision detection work.

An improved approach

The problem with the algorithm above was that we need multiple render passes for longer shadows, making things really slow, especially on a phone or tablet. The idea is to paint the shadow-casters once in black and then for each pixels, to advance in steps towards the light until a black pixel is encountered. In the picture below, pixel A will be in the shade while pixel B will be in the light. shadows1.jpg The risk is that by using a large step size, we may step over a shadow caster, so we'll need to adapt our step-size depending on the size of shadow-casting objects. shadows2.jpg

Optimization

The most important optimization to keep in mind is that the shadow computing pass and the blurring pass should always be done on a scaled down image. We can also hardware accelerate the work. The following bit of code is a RenderScript script (Android exclusive) that will run on every pixel on an image where shadow-casters are painted in black, and every other pixel is transparent. #pragma version(1) #pragma rs java_package_name(com.olgames.hideandeatbrains.painting) //these variables are set directly from java code. float light_x; float light_y; float stepSize; // The input allocation is a copy of the Bitmap, giving us access to all the pixels of the bitmap. rs_allocation input; // out contains the currently processed pixel while x and y contain the indices of that pixel. void root(uchar4 *out, uint32_t x, uint32_t y) { // First get the current pixel's value in RGBA. float4 pixel = convert_float4(out[0]).rgba; // if the current pixel is already drawn to, we can early exit. if(pixel.a>0.f) { return; } // We'll increment this variable as we go. float currentStep = stepSize; // We need to calculate the distance to the light in order not to step past it. float dX = x-light_x; float dY = y-light_y; float dist = sqrt(pow(dX,2)+pow(dY,2)); // we loop and check for "collision" until either we collide or until we step past the light. // if we collide, we set the current pixel to black. while(dist>currentStep) { float4 in = convert_float4( rsGetElementAt_uchar4( input, floor(x-((dX/dist)*currentStep)+0.5f), floor(y-((dY/dist)*currentStep)+0.5f) )).rgba; if (in.a >0.f) { pixel.r=0; pixel.g=0; pixel.b=0; pixel.a = 255; out->xyzw = convert_uchar4(pixel); break; } currentStep+= stepSize; } } We'll still need to apply blurring. RenderScript offers very efficient API for that purpose on android.

Conclusion

I almost gave up on implementing shadows for my androidgame because I simply did not have the time to implement more complex algorithms. This technique can be implemented in a few hours. I sincerely hope this will be useful to some of you.

Article Update Log

1 Feb 2017: Initial release

Cancel Save
0 Likes 4 Comments

Comments

matt77hias

"Software engineer in the geo-spatial industry in Belgium."

Just say "Luciad" ;)

March 16, 2017 02:53 PM
olgalatepu
Haha, there are others.. but yeah, Luciad
March 23, 2017 08:00 AM
ingframin

Cool! We should have a drink in Oudemarkt from time to time ;)

May 04, 2017 11:54 AM
olgalatepu

Oh yeah, such a nice city in the summer, we could talk game development and watch the students in miniskirt pass by..

May 26, 2017 06:08 PM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!

Creating 2D shadows for an android game should be easy right !? Yet, if you've looked into it, you may have stumbled on some pretty complicated tutorials that seem way too complex for what you want to achieve. At least, that's what happened to me. In this post, I want to share a technique for great looking 2D shadows that's actually super simple to do.

Advertisement

Other Tutorials by olgalatepu

Advertisement