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  
  Image following line  (Read 1668 times)
0 Members and 1 Guest are viewing this topic.
Offline MindOfCorruption97

Senior Newbie





« Posted 2012-09-29 04:16:23 »

Hi, I have a question about Images. Is there a way to make an image trace/follow a line? If so, can you please explain on how to do it? I want know how to make the image trace a line from point A to point B.

Chaos is Beatiful...
For without Chaos the world will never spin...
Offline Vladiedoo

Senior Member


Medals: 11



« Reply #1 - Posted 2012-09-29 05:20:56 »

Reading parts of this might help you http://www.java-gaming.org/index.php?topic=25402.0. I have yet to add this feature myself so that is all I can provide, good luck!
Offline ReBirth
« Reply #2 - Posted 2012-09-29 14:35:19 »

Or you meant follow complex line like tower defense, with all of that curves?

Games published by our own members! Check 'em out!
Try the Free Demo of Droid Assault
Offline Roquen

JGO Ninja


Medals: 68



« Reply #3 - Posted 2012-09-29 15:18:34 »

direction of line: D=|B-A|
parameterize:  F(t) =Dt+A
where 't' is on [0,1]

brain-dump untested pseudocode:

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
public void setup(Vect2f a, Vect2f b)
{
  // store initial point
 x0 = a.x;
  y1 = a.y;

  // compute and store direction of line
 dx = b.x-x0;
  dy = b.y-y0;

  // compute and store length of the line segment
 len = (float)(Math.sqrt(dx*dx+dy*dy));

  // normalize direction
 float t = 1.f/len;
  dx *= t;
  dy *= t;
}

/** Set 'r' to the blah, blah and returns 'r'. */
public Vect2f position(Vect2f r, float t)
{
  r.x = x0 + t*dx;
  r.y = y0 + t*dy;
 
  return r;
}
Offline MindOfCorruption97

Senior Newbie





« Reply #4 - Posted 2012-09-30 01:48:37 »

I meant more of, just following a straight line.

Chaos is Beatiful...
For without Chaos the world will never spin...
Offline Phased
« Reply #5 - Posted 2012-09-30 03:43:31 »

Just set the y to a number and never change the y, but every update add to the x of the image.

If you want it to go up add to the y instead of the x.
Sorry if any spelling mistakes I'm on my phone
Offline ReBirth
« Reply #6 - Posted 2012-09-30 04:45:13 »

Never change X -> vertical move.
Never change Y -> horizontal move.

Offline Roquen

JGO Ninja


Medals: 68



« Reply #7 - Posted 2012-09-30 09:44:04 »

I meant more of, just following a straight line.
All lines are straight. Smiley
Offline Jimmt
« Reply #8 - Posted 2012-09-30 17:45:50 »

Yeah I think he means any line not just vertical/horiz lines.
Offline MindOfCorruption97

Senior Newbie





« Reply #9 - Posted 2012-10-01 03:07:53 »

Yeah I think he means any line not just vertical/horiz lines.
Yea, that's what I was asking for. I understand how to make Vert and Horiz lines, just wondering how to make an image follow a line that has a certain amount of degrees to it.

Chaos is Beatiful...
For without Chaos the world will never spin...
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!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

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 (16 views)
2013-06-19 14:55:23

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

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

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

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

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

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

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

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

Roquen (88 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!