Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (307)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Scan if unit is visible to an other unit  (Read 612 times)
0 Members and 1 Guest are viewing this topic.
Offline P0jahn

Junior Member


Projects: 1



« Posted 2012-12-05 12:28:17 »

In my 2D game, the stage is an 2d char array.The values of the array is either 0, for solid(wall), or 1, for hollow.
So if unit stands on x:150 y:200, I want to check if he can "see" an other unit that stands on for example x: 450 y:300.
By "see" I mean there is not a wall(solid space) between them.

Any tips?
Offline Varkas

JGO Knight


Medals: 14
Projects: 5


iDream


« Reply #1 - Posted 2012-12-05 12:44:44 »

Try a line algorithm, like Bresenhams, or just this:

http://en.wikipedia.org/wiki/Line_drawing_algorithm

Check if no square on the line is blocked. Then the units can see each other. Some line algorithms are unsymmetric, in that case you need to check both directions (lines from->to and to->from)

if (error) throw new Brick();
Offline saifix

Senior Newbie


Medals: 1



« Reply #2 - Posted 2012-12-05 12:46:22 »

There are several examples of how to do this on: http://roguebasin.roguelikedevelopment.org/index.php?title=Field_of_Vision

You can use this code to check if a wall is in a units line of sight.
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
Unit u = ...;
Vec2 direction = new Vec2(1, 0); // whatever direction the unit is facing, 1,0 = along the X axis
Vec2 searchPosition = u.position().clone();
for(int i = 0; i < u.searchDistance /* how far should we cast a ray*/; i++) {
     if(map[searchPosition.x][searchPosition.y] == 0) {
         return true;
     }
     searchPosition.add(direction);
}
return false;


If a wall is in the way this code will return true, if not it will return the opposite. With a few modifications you can make it check for another unit.
Games published by our own members! Check 'em out!
Play the free demo of Revenge of the Titans!
Offline Orangy Tang

JGO Kernel


Medals: 48
Projects: 11


Monkey for a head


« Reply #3 - Posted 2012-12-05 13:32:31 »

Try a line algorithm, like Bresenhams, or just this:

http://en.wikipedia.org/wiki/Line_drawing_algorithm

Check if no square on the line is blocked. Then the units can see each other. Some line algorithms are unsymmetric, in that case you need to check both directions (lines from->to and to->from)
Bresenhams is not really appropriate since it may jump over solid cells or around corners. A specific visibility algorithm (like the ones saifix linked to) give much better results.

I ended up adapting the Wolf3d cell scanning algorithm.

[ TriangularPixels.com - Play Growth Spurt, Rescue Squad and Snowman Village ] [ Rebirth - game resource library ]
Offline P0jahn

Junior Member


Projects: 1



« Reply #4 - Posted 2012-12-05 17:09:52 »

Thanks for the code saifix. I will try to understand the code instead of just copy and paste.
Could you please give a more detailed explanation of the code? For instance, what is Vec2? The arg to direction, is that X Y coordinates to an object?

Also, your code just check a straight line, right?
Offline saifix

Senior Newbie


Medals: 1



« Reply #5 - Posted 2012-12-06 00:11:45 »

Thanks for the code saifix. I will try to understand the code instead of just copy and paste.
Could you please give a more detailed explanation of the code? For instance, what is Vec2? The arg to direction, is that X Y coordinates to an object?

Also, your code just check a straight line, right?

Vec2 is a vector made up of 2 components, x & y. The arguments are the direction which the casted ray is traveling in, if it were (-1, 0) it'd test a straight line starting going to the left of the unit and if it were (0, 1) it'd test a line traveling up from the unit.

Yes, it only checks a straight line.
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Try the Free Demo of Revenge of the Titans

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
mrbenebob (20 views)
2013-06-19 14:55:23

BrassApparatus (30 views)
2013-06-19 08:52:37

NegativeZero (34 views)
2013-06-19 03:31:52

NegativeZero (35 views)
2013-06-19 03:24:09

Jesse_Attard (40 views)
2013-06-18 22:03:02

HeroesGraveDev (76 views)
2013-06-15 23:35:23

Vermeer (77 views)
2013-06-14 20:08:06

davedes (78 views)
2013-06-14 16:03:55

alaslipknot (70 views)
2013-06-13 07:56:31

Roquen (93 views)
2013-06-12 04:12:32
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!