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 (407)
games submitted by our members
Games in WIP (293)
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  
  Controls of vehicle in "Micro-Machines"-like racing game  (Read 1186 times)
0 Members and 1 Guest are viewing this topic.
Offline zeastarr

Junior Newbie





« Posted 2008-06-22 13:59:04 »

Hi everyone,

I'm new in Java Game Development and would like to create a "Micro-Machine"-like racing game. Just simple with a fixed size fullscreen-track without scrolling and in bird's eye view. My recent problem is the realization of the control.

Every direction in this kind of game is only relative to the actual direction of the car. E.g. if the car moves from east to west on the screen and there is no bend then i just press the cursor-up key to accelerate. If there is a bend at the end of the screen which leads the track from south to north I have to press cursor right + cursor up and so on...   It wouldn't be a problem for me if the up/down would steer the y-movement and the left/right would take control of the x-movement like in games like Boulder Dash for example...

I think I have to work with angles but I don't have much ideas how to do that. I also could add an y-acceleration to a x-acceleration, but how can i determine the current direction of my car?

Do you have any clues for me?  Thanks alot and if I got this working I gonna post the code in here.

Cheers,

Sascha   Smiley
Offline SimonH
« Reply #1 - Posted 2008-06-22 15:39:02 »

Your car has a location (x,y) a direction angle in radians (a) and a speed (s).
To move the car forward;
1  
2  
 x+=(int)(s*Math.cos(a));
 y+=(int)(s*Math.sin(a));


To turn the car change a, to speed up or slow down the car change s (or make s less than 0 to reverse).


Heroes' Keep is in development.
Meanwhile try Bloodridge
Offline zeastarr

Junior Newbie





« Reply #2 - Posted 2008-06-29 14:53:07 »

thanks alot! that helped me!   Smiley
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline Eli Delventhal
« League of Dukes »

JGO Kernel


Medals: 39
Projects: 12


Game Engineer


« Reply #3 - Posted 2008-06-29 16:30:15 »

You can also give the car a velocity, and then apply acceleration in the correct direction (as posted above). That way you can have drifting and whatnot.

See my work:
OTC Software
Offline Del

Senior Newbie





« Reply #4 - Posted 2008-07-08 17:23:09 »

how would you apply velocity, my math is terrible, before reading this post my attempt at moving a car "micro-machine"-like was

 if ((upPressed) && (!downPressed)) {
                accelerateY = 1;
                    if (ySpeed <51){
                        ySpeed = (ySpeed+1);
                    }
                } else accelerateY = 0;
               
                if (accelerateY == 0){
                ySpeed=(ySpeed-1);
                }
            }
 if (ySpeed < 1){
            ySpeed = (ySpeed+1);
            }
            if ((ySpeed >1) && (ySpeed < 10)){
            carYaxisPosition = (carYaxisPosition -1);
            }
            if ((ySpeed >10) && (ySpeed < 20)){
            carYaxisPosition = (carYaxisPosition -2);
            }
             if ((ySpeed >20) && (ySpeed < 30)){
            carYaxisPosition = (carYaxisPosition -3);
            }
            if ((ySpeed >30) && (ySpeed < 40)){
            carYaxisPosition = (carYaxisPosition -4);
            }
            if (ySpeed >50){
            carYaxisPosition = (carYaxisPosition -5);
            }
and that was just forward motion
Offline Eli Delventhal
« League of Dukes »

JGO Kernel


Medals: 39
Projects: 12


Game Engineer


« Reply #5 - Posted 2008-07-09 01:43:17 »

To apply velocity all you do is add the acceleration! It's also good to have a maximum value.

See my work:
OTC Software
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!
 
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 (94 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (199 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.077 seconds with 20 queries.