Angular movement and another question

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
StoveBacon
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 98
Joined: Mon Sep 20, 2010 6:09 pm
Favorite Gaming Platforms: PC Xbox360 SNES N64
Programming Language of Choice: c++

Angular movement and another question

Post by StoveBacon »

Ok, so I know basic movement (increasing an x and y and using that to draw whatever), but this only allows in 8 directions of movement. Whats the best way to move things in non straight or 45 degree angles (like move something in a parabola) aaaand i would like to know how to create multiple amounts of things(like in tetris how multiple blocks are created) and how to manage them automatically like collision detection)
k thanks :3
SeaNanners wrote:"I shall be Vince Bonesteel and you will be....Rick McLightning!"
Day[9] wrote:"Read a book to children. Mass genocide. Lunch. The life of Dr. Seuss himself."
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Angular movement and another question

Post by dandymcgee »

Say what? How does position limit your direction of movement at all? If either velocity is zero and the other is set it will move on the x or y plane respectively. If they are both equal it will move at a 45 degree angle, sure. But what if they x velocity and y velocity are different? You can set the velocities however you damn well please, nobody is forcing you to use straight lines.

For example let us assume:
x velocity = 3 pixel/second to the right
y velocity = 4 pixels/second up

Magnitude of movement would 5 pixels/second up and to the right following a line with slope 4/3. Decreasing the y velocity over time would cause an arc (and if done evenly a perfect parabola).

There are infinite number of ways to make an object move however you like, so think about this very simple example and see what you can come up with.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
davidthefat
Chaos Rift Maniac
Chaos Rift Maniac
Posts: 529
Joined: Mon Nov 10, 2008 3:51 pm
Current Project: Fully Autonomous Robot
Favorite Gaming Platforms: PS3
Programming Language of Choice: C++
Location: California
Contact:

Re: Angular movement and another question

Post by davidthefat »

Vectors:

Image
User avatar
Ginto8
ES Beta Backer
ES Beta Backer
Posts: 1064
Joined: Tue Jan 06, 2009 4:12 pm
Programming Language of Choice: C/C++, Java

Re: Angular movement and another question

Post by Ginto8 »

davidthefat wrote:Vectors:

Image
aaah, fuck those polar notation vectors! Just go straight (x,y). Believe me, the amount of stuff you can do with vectors is amazing. Never leave home without a pocketful of vectors.
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
User avatar
EccentricDuck
Chaos Rift Junior
Chaos Rift Junior
Posts: 305
Joined: Sun Feb 21, 2010 11:18 pm
Current Project: Isometric "2.5D" Airship Game
Favorite Gaming Platforms: PS2, SNES, GBA, PC
Programming Language of Choice: C#, Python, JScript
Location: Edmonton, Alberta

Re: Angular movement and another question

Post by EccentricDuck »

Why use vectors alone and wind up having an additional variable for rotation when you can use Quaternions!?
Image
(this shows two quaternions)

But in all seriousness, it sounds like you're doing 2D so a 2-part vector would be simplest. A vector either holds an x and a y component (cartesian), or a magnitude* and rotation value (polar). Both have their own advantages. If position is x and y, and you have a "facing" or "forward" vector with x and y components, as well as some velocity amount (let's say 2 arbitrary units), then you could adjust position by going position.x += forward.x * 2 and position.y += forward.y * 2. That's pretty easy if "forward" is dependent on whatever key you press (like most old school 2D games). However, if you want to smoothly rotate then you need to store "rotation" and do what was shown above in the picture. In that case it's a toss up between polar and cartesian, depending upon how often you calculate rotations (more of this favors polar)/how often you calculate movement in the given direction (more of this favors cartesian).

*(this would just be 1 in most situation, unless you wanted to store velocity here as well but that's prone to rounding errors)


To manage collisions automatically, one way would be to have a collision detection class (let's call it CollisionManager) and add all objects that apply to a collection inside the class. From there, check for collisions from any "active" objects (things that are moving around, like a player controlled ship). You could check by calling a checkCollision() function that is in the CollisionManager (I use a singleton, which is basically a class that is somewhat static in the sense that you can't create objects of it, except for one object that is created and is accessible to other classes in a namespace - at least in C#).
Post Reply