Calculating which tiles are lit in a tile-based game ("raytracing") - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:21:33Z http://stackoverflow.com/feeds/question/174659 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing 15 Calculating which tiles are lit in a tile-based game ("raytracing") Zarkonnen 2008-10-06T15:02:47Z 2009-09-09T17:53:37Z <p>I'm writing a little tile-based game, for which I'd like to support light sources. But my algorithm-fu is too weak, hence I come to you for help.</p> <p>The situation is like this: There is a tile-based map (held as a 2D array), containing a single light source and several items standing around. I want to calculate which tiles are lit up by the light source, and which are in shadow.</p> <p>A visual aid of what it would look like, approximately. The L is the light source, the Xs are items blocking the light, the 0s are lit tiles, and the -s are tiles in shadow.</p> <pre><code>0 0 0 0 0 0 - - 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 X 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 L 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 X X X X 0 0 0 0 0 - - - - - 0 0 0 - - - - - - - </code></pre> <p>A fractional system would be even better, of course, where a tile can be in half-shadow due to being partially obscured. The algorithm wouldn't have to be perfect - just not obviously wrong and reasonably fast.</p> <p>(Of course, there would be multiple light sources, but that's just a loop.)</p> <p>Any takers?</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/174679#174679 4 Answer by TK for Calculating which tiles are lit in a tile-based game ("raytracing") TK 2008-10-06T15:09:28Z 2008-10-06T15:28:16Z <p>Quick and dirty:</p> <p>(Depending on how big the array is)</p> <ul> <li>Loop through each tile </li> <li>draw a line to the Light</li> <li>If any pary of the line hits an X, then it is in shadow</li> <li>(Optional): calculate the amount of X the line passes through and do fancy maths to determint the proportion of the tile in shadow. NB: This could be done by anti-aliasing the line between the tile and the Light (therefore looking at other tiles along the route back to the light source) during the thresholding procedure these will appear as small anomolies. Depending on the logic used you could potentially determine how much (if at all) the tile is in shadow.</li> </ul> <p>You could also keep a track of which pixels have been tested, therefore optimize the solution a little and not re-test pixels twice.</p> <p>This could be dome pretty well by using image manipulation and drawing straight lines between pixles (tiles) If the lines are semi transparent and the X blocks are semi-transparent again. You can threshold the image to determine if the line has intersected an 'X'</p> <p>If you have an option to use a 3rd party tool, then Id probably take it. In the long run it might turn out to be quicker, but you'd understand less about your game.</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/174690#174690 1 Answer by Bill the Lizard for Calculating which tiles are lit in a tile-based game ("raytracing") Bill the Lizard 2008-10-06T15:12:09Z 2008-10-06T15:12:09Z <p>To check if a tile is in shadow you need to draw a straight line back to the light source. If the line intersects another tile that's occupied, then the tile you were testing is in shadow. Raytracing algorithms do this for every object (in your case tile) in the view.</p> <p>The <a href="http://en.wikipedia.org/wiki/Ray_tracing_(graphics)#Algorithm:_classical_recursive_ray_tracing" rel="nofollow">Raytracing article</a> on Wikipedia has pseudocode.</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/174704#174704 0 Answer by Scottie T for Calculating which tiles are lit in a tile-based game ("raytracing") Scottie T 2008-10-06T15:14:50Z 2008-10-06T15:14:50Z <p>If you don't want to spend the time to reinvent/re-implement this, there are plenty of game engines out there. <a href="http://www.ogre3d.org/" rel="nofollow">Ogre3D</a> is an open source game engine that fully supports lighting, as well as sound and game controls.</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/174718#174718 11 Answer by Nick Johnson for Calculating which tiles are lit in a tile-based game ("raytracing") Nick Johnson 2008-10-06T15:18:20Z 2008-10-06T15:26:31Z <p>You can get into all sorts of complexities with calculating occlusion etc, or you can go for the simple brute force method: For every cell, use a line drawing algorithm such as the <a href="http://en.wikipedia.org/wiki/Bresenham%27s_line_algorithm" rel="nofollow">Bresenham Line Algorithm</a> to examine every cell between the current one and the light source. If any are filled cells or (if you have only one light source) cells that have already been tested and found to be in shadow, your cell is in shadow. If you encounter a cell known to be lit, your cell will likewise be lit. An easy optimisation to this is to set the state of any cells you encounter along the line to whatever the final outcome is.</p> <p>This is more or less what I used in my <a href="http://www0.us.ioccc.org/years.html#2004" rel="nofollow">2004 IOCCC winning entry</a>. Obviously that doesn't make good example code, though. ;)</p> <p>Edit: As loren points out, with these optimisations, you only need to pick the pixels along the edge of the map to trace from.</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/174735#174735 1 Answer by Carl for Calculating which tiles are lit in a tile-based game ("raytracing") Carl 2008-10-06T15:23:17Z 2008-10-06T15:23:17Z <p>TK's solution is the one that you would generally use for this sort of thing.</p> <p>For the partial lighting scenario, you could have it so that if a tile results in being in shadow, that tile is then split up into 4 tiles and each one of those is tested. You could then split that up as much as you wanted?</p> <p>Edit:</p> <p>You can also optimise it out a bit by not testing any of the tiles adjacent to a light - this would be more important to do when you have multiple light sources, I guess...</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/174746#174746 5 Answer by Loren Pechtel for Calculating which tiles are lit in a tile-based game ("raytracing") Loren Pechtel 2008-10-06T15:24:56Z 2008-10-06T15:24:56Z <p>The algorithms being presented here seem to me to be doing more calculations than I think are needed. I have not tested this but I think it would work:</p> <p>Initially, mark all pixels as lit.</p> <p>For every pixel on the edge of the map: As Arachnid suggested, use Bresenham to trace a line from the pixel to the light. If that line strikes an obstruction then mark all pixels from the edge to just beyond the obstruction as being in shadow.</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/174793#174793 9 Answer by Dana for Calculating which tiles are lit in a tile-based game ("raytracing") Dana 2008-10-06T15:35:42Z 2009-09-09T17:53:37Z <p>The roguelike development community has a bit of an obsession with line-of-sight, field-of-view algorithms.</p> <p>Here's a link to a roguelike wiki article on the subject: <a href="http://roguebasin.roguelikedevelopment.org/index.php?title=Field%5Fof%5FVision" rel="nofollow">http://roguebasin.roguelikedevelopment.org/index.php?title=Field%5Fof%5FVision</a></p> <p>For my roguelike game, I implemented a shadow casting algorithm (<a href="http://roguebasin.roguelikedevelopment.org/index.php?title=Shadow%5Fcasting" rel="nofollow">http://roguebasin.roguelikedevelopment.org/index.php?title=Shadow%5Fcasting</a>) in Python. It was a bit complicated to put together, but ran reasonably efficiently (even in pure Python) and generated nice results.</p> <p>The "Permissive Field of View" seems to be gaining popularity as well: <a href="http://roguebasin.roguelikedevelopment.org/index.php?title=Permissive%5FField%5Fof%5FView" rel="nofollow">http://roguebasin.roguelikedevelopment.org/index.php?title=Permissive%5FField%5Fof%5FView</a></p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/175004#175004 2 Answer by Kevin Conner for Calculating which tiles are lit in a tile-based game ("raytracing") Kevin Conner 2008-10-06T16:19:16Z 2008-10-06T16:19:16Z <p>This is just for fun:</p> <p>You can replicate the Doom 3 approach in 2D if you first do a step to convert your tiles into lines. For instance,</p> <pre><code>- - - - - - X X X - - X X - - - X - - - - - - - L </code></pre> <p>...would be reduced into three lines connecting the corners of the solid object in a triangle.</p> <p>Then, do what the Doom 3 engine does: From the perspective of the light source, consider each "wall" that faces the light. (In this scene, only the diagonal line would be considered.) For each such line, project it into a trapezoid whose front edge is the original line, whose sides lie on lines from the light source through each end point, and whose back is far away, past the whole scene. So, it's a trapezoid that "points at" the light. It contains all the space that the wall casts its shadow on. Fill every tile in this trapezoid with darkness.</p> <p>Proceed through all such lines and you will end up with a "stencil" that includes all the tiles visible from the light source. Fill these tiles with the light color. You may wish to light the tile a little less as you get away from the source ("attenuation") or do other fancy stuff.</p> <p>Repeat for every light source in your scene.</p> http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/497739#497739 0 Answer by Hazar for Calculating which tiles are lit in a tile-based game ("raytracing") Hazar 2009-01-30T23:57:39Z 2009-01-30T23:57:39Z <p>I've actually just recently wrote this functionality into one of my projects.</p> <pre><code>void Battle::CheckSensorRange(Unit* unit,bool fog){ int sensorRange = 0; for(int i=0; i &lt; unit-&gt;GetSensorSlots(); i++){ if(unit-&gt;GetSensorSlot(i)-&gt;GetSlotEmpty() == false){ sensorRange += unit-&gt;GetSensorSlot(i)-&gt;GetSensor()-&gt;GetRange()+1; } } int originX = unit-&gt;GetUnitX(); int originY = unit-&gt;GetUnitY(); float lineLength; vector &lt;Place&gt; maxCircle; //get a circle around the unit for(int i = originX - sensorRange; i &lt; originX + sensorRange; i++){ if(i &lt; 0){ continue; } for(int j = originY - sensorRange; j &lt; originY + sensorRange; j++){ if(j &lt; 0){ continue; } lineLength = sqrt( (float)((originX - i)*(originX - i)) + (float)((originY - j)*(originY - j))); if(lineLength &lt; (float)sensorRange){ Place tmp; tmp.x = i; tmp.y = j; maxCircle.push_back(tmp); } } } //if we're supposed to fog everything we don't have to do any fancy calculations if(fog){ for(int circleI = 0; circleI &lt; (int) maxCircle.size(); circleI++){ Map-&gt;GetGrid(maxCircle[circleI].x,maxCircle[circleI].y)-&gt;SetFog(fog); } }else{ bool LOSCheck = true; vector &lt;bool&gt; placeCheck; //have to check all of the tiles to begin with for(int circleI = 0; circleI &lt; (int) maxCircle.size(); circleI++){ placeCheck.push_back(true); } //for all tiles in the circle, check LOS for(int circleI = 0; circleI &lt; (int) maxCircle.size(); circleI++){ vector&lt;Place&gt; lineTiles; lineTiles = line(originX, originY, maxCircle[circleI].x, maxCircle[circleI].y); //check each tile in the line for LOS for(int lineI = 0; lineI &lt; (int) lineTiles.size(); lineI++){ if(false == CheckPlaceLOS(lineTiles[lineI], unit)){ LOSCheck = false; //mark this tile not to be checked again placeCheck[circleI] = false; } if(false == LOSCheck){ break; } } if(LOSCheck){ Map-&gt;GetGrid(maxCircle[circleI].x,maxCircle[circleI].y)-&gt;SetFog(fog); }else{ LOSCheck = true; } } } } </code></pre> <p>There's some extra stuff in there that you wouldn't need if you're adapting it for your own use. The type Place is just defined as an x and y position for conveniences sake.</p> <p>The line function is taken from Wikipedia with very small modifications. Instead of printing out x y coordinates I changed it to return a place vector with all the points in the line. The CheckPlaceLOS function just returns true or false based on if the tile has an object on it. There's some more optimizations that could be done with this but this is fine for my needs.</p>