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 (404)
games submitted by our members
Games in WIP (289)
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  
  Gradually slow an images movement.  (Read 330 times)
0 Members and 1 Guest are viewing this topic.
Offline wreed12345
« Posted 2013-02-03 04:24:12 »

Right now i have just started a new game and i am controlling basic movement by this code:
1  
2  
3  
4  
5  
6  
7  
8  
      if ((Gdx.input.isKeyPressed(Keys.W)))
         levelY -= 5;
      if ((Gdx.input.isKeyPressed(Keys.A)))
         levelX += 5;
      if ((Gdx.input.isKeyPressed(Keys.S)))
         levelY += 5;
      if ((Gdx.input.isKeyPressed(Keys.D)))
         levelX -= 5;

Now when the keys aren't pressed the motion stops instantly so I was wondering if there was some formula I could use to gradually slow the movement or maybe not even a formula just another way of doing this. I thought this would be a somewhat discussed subject but my Google searching hasn't found anything. Thanks in advanced!
Offline Phased
« Reply #1 - Posted 2013-02-03 04:32:51 »

By completely controlling the X and Y by inside the if pressed, you wont.

You would need to have a variable like up= true;

I have never done anything like this, so my first thought might not be a very good implementation of this, but here is a example.

1  
2  
3  
4  
5  
6  
7  
if(up){
y -= 5;
slowingDown = 5;
}else if(slowingDown > 0){
y -= slowingDown;
slowingDown--;
}


should slow down till it reaches 0. and the same for left, right and down. you could control it by time differences if you want it to slow down after a certain amount of time instead of after 5 updates.
Offline wreed12345
« Reply #2 - Posted 2013-02-03 04:38:57 »

Wow thank you! That was surprisingly simple. For some reason I thought this would be much more complex....
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline Best Username Ever

Junior Member





« Reply #3 - Posted 2013-02-03 05:12:16 »

Uh. That's kind of bad practice. You should base your game mechanics on physics.

An object in motion stays in motion (Okay. It's already moving so I should not change an objects velocity.) unless acted upon by an outside force. (Okay. Friction is a force. I will use that.)

There are two types of friction. If you only care about coasting when the arrow key is released, then you only need to worry about kinetic friction. If you're moving across a solid surface, then friction is proportional to your speed. f = -k * x' = -k * v = -kinetic_friction_coefficient * speed. Force increases or (in this case) decreases speed in a given direction over time. So you just subtract more or less from the speed depending on the friction, which depends on the speed you are traveling.

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
if(right && !left)
{
  vx = 5;
}
else if(left && !right)
{
  vx = -5;
}
else
{
  vx -= 0.5 * vx;
}
x += vx;


If you wanted acceleration when the key is pressed, you would use vx += something instead of vx = something.

Changing k changes how slippery the surface is. A value of zero is frictionless, so you never lose speed. A value of 1 makes you stop instantaneously.
Online Jimmt
« Reply #4 - Posted 2013-02-03 05:32:01 »

yes, this kind of stuff is all about velocity (how did google not return anything Huh)
Just think of a vector pointing in the direction of the image's movement, and the slow down the speed. Thinking with vectors in libgdx makes things a lot easier.
Pages: [1]
  ignore  |  Print  
 
 

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

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!
cubemaster21 (32 views)
2013-05-17 21:29:12

alaslipknot (41 views)
2013-05-16 21:24:48

gouessej (71 views)
2013-05-16 00:53:38

gouessej (70 views)
2013-05-16 00:17:58

theagentd (78 views)
2013-05-15 15:01:13

theagentd (73 views)
2013-05-15 15:00:54

StreetDoggy (113 views)
2013-05-14 15:56:26

kutucuk (137 views)
2013-05-12 17:10:36

kutucuk (137 views)
2013-05-12 15:36:09

UnluckyDevil (145 views)
2013-05-12 05:09:57
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

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
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!
Page created in 0.661 seconds with 21 queries.