Tagged Questions
Game Physics is about implementation, creation, optimization and any other thing related to physics in games. Physics controls the interaction of every physical object in a game, where any 2d or3d model interacts with any other 2d or 3d model of an object in a game. Physics is used to give realistic effects of this interaction.
20
votes
3answers
833 views
How to make a 2D Soft-body physics engine?
The definition of rigid body in Box2d is
A chunk of matter that is so strong
that the distance between any two bits
of matter on the chunk is completely
constant.
And this is exactly what ...
9
votes
1answer
2k views
Quadtree for 2D collision detection
I'm trying to use a quadtree for 2D collision detection, but I'm a little stumped on how to implement it. First of all, I'd have a quadtree which contains four subtrees (one representing each ...
9
votes
6answers
2k views
Good 2D Collision Response References
Hey, I'm currently looking for various methods of implementing collision response in 2D video games, something similar to this tutorial Metanet has: N Tutorial I'm looking to implement something in ...
8
votes
3answers
202 views
Math/Calculations for infinite/repeating world with rotation
How do I make a infinite/repeating world that handles rotation, just like in this game:
http://bloodfromastone.co.uk/retaliation.html
I have coded my rotating moving world by having a hierarchy like ...
8
votes
1answer
556 views
KDTree Splitting
I am currently writing a KDTree for a physics engine (Hobby project).
The KDTree does not contain points.
Instead it contains Axis Aligned bounding boxes which bound the different objects in the ...
8
votes
3answers
349 views
2D platformers: why make the physics dependent on the framerate?
"Super Meat Boy" is a difficult platformer that recently came out for PC, requiring exceptional control and pixel-perfect jumping. The physics code in the game is dependent on the framerate, which is ...
8
votes
2answers
866 views
2D orbital physics
I'm working on a 2D physics engine for a game. I have gravity and masses working, using a simple iterative approach (that I know I'll have to upgrade eventually); I can push the masses around manually ...
8
votes
2answers
2k views
Kalman Filter for Android
Is there a Kalman filter implementation I can use to fliter my gyroscope and acceleration data from an Android Phone?
8
votes
2answers
448 views
The physics of turning in a boat
I am writing a small simulation of a boat (a sailboat under power rather than sail). It has a rudder and a keel and I have most of the physics working for the thrust and drag. I have modelled the ...
7
votes
3answers
1k views
Why is Verlet integration better than Euler integration?
Can someone explain me why Verlet integration is better than Euler integration? And why RK4 better than Verlet? I don't understand why it is a better method :/
6
votes
1answer
61 views
Handling strafing / side stepping in a 3D game
I am quite new to game development and have successfully modelled a 3D terrain, and have a camera that is able to freely move around in the game world, I have however run into a snag that I am unable ...
6
votes
3answers
362 views
TDD And Game Physics
I'm playing around with a small game project and as I'm not very experienced in TDD I'd love to get some expert opinions on a couple of things.
First of all, I realized early on that TDD did not seem ...
6
votes
3answers
491 views
Circle to Circle Segment Collision
I'm struggling to find a rock solid solution to detecting collisions between a circle and a circle segment. Imagine a Field of View cone for a game enemy, with the circles representing objects of ...
6
votes
2answers
209 views
What is the best location to find tutorials on physics in game development?
I'm very new to game development (iPhone/iPad specifically, if that matters at all) and am having a tough time with working with the physics part of animation. Specifically I'm trying to give several ...
6
votes
2answers
232 views
Materials science for game programming
Does anybody know of a good resource for programming the behaviors of various materials interacting?
Game programming physics resources usually cover collision detection, momentum, intertia, etc., ...
5
votes
2answers
262 views
Trying to use templates to double dispatch physics collision
I want to let the compiler build the connections of functions for a physics collision system. I have the test collision function:
template <typename T, typename U>
inline void Collision(T& ...
5
votes
5answers
222 views
Using A* and still avoiding collisions?
I am designing a tower-defense game, and for that I am using the A* pathfinding algorithm to reach my destination from my spawn-areas.
The problem here is that all the units stack, which doesn't look ...
5
votes
4answers
1k views
Bullet physics engine, how to freeze an object?
Using Bullet 2.76 I'm trying to freeze an object (rigid body) so that it instantly stops moving, but still responds to collisions.
I tried setting it's activation state to DISABLE_SIMULATION, but ...
5
votes
3answers
2k views
Farseer or Box2D? Top-down shooter physics implementation
Which one of these would fit a top down shooter better?
I've heard that Box2D performs faster, but I've also noticed that it lacks wider community support for XNA (it rather seems to be used for ...
4
votes
2answers
133 views
Android Game Development - Moving the phone
First of all, sorry for the vague title. I have no other ideas of what could possibly be put there, but you'll see this for yourself as you read on.
I am a very new Java developer for android and a ...
4
votes
2answers
145 views
How do I efficiently simulate a grid of static rectangles in a physics engine?
I'm making a space shooter which takes place in a big dungeon, which consists of large rectangles to define walls. Everything in the game is physically simulated using Farseer Physics. There's one ...
4
votes
2answers
127 views
Ball Physics problem Python
I am trying to make a ball bounce within a box correctly, specifically handling corners at specific angles and handling a corner head on. I have a problem, because my ball keeps coming out of the box. ...
4
votes
4answers
720 views
Sliding AABB collision - getting stuck on edges
I'm working on a 3D tile based game and I'm using AABB collision detection. For every cube that the player is intersecting, I find the axis along which the player is intersecting the cube the least, ...
3
votes
1answer
56 views
What exactly does this platformer scrolling code do?
I am reading the source code of an existing platformer game and I came accross this:
/* assign the horizontal position of the TileMap on the screen to offsetX
* this, center aligns the ...
3
votes
3answers
138 views
Calculating and applying friction
I have been researching how to apply friction and there is a part I am stuck on, which is how to apply that friction to the velocityy (if in fact I am calculating the friction force correctly that ...
3
votes
2answers
140 views
moving an object from point to point in a linear path
I'm trying to move a sprite across the screen in a straight line, towards on the location where've I touched the screen, what i did was upon the update() in each loop , it checks to see if the current ...
3
votes
3answers
436 views
Problem with collision detection of a fast moving ball with a racket controlled by mouse
In unity, i have a racket which is supposed to hit a ball, and the racket is controlled directly by the mouse, i.e the bat is being moved by the mouse using mouse axes and the using ...
3
votes
2answers
282 views
Mathematical Vectors and Rotations (Topdown java game dev - physics problem)
I've been working on a top down car game for quite a while now, and it seems it always comes back to being able to do one thing properly. In my instance it's getting my car physics properly done.
...
3
votes
2answers
264 views
gravity simulation
I want to simulate a free fall and a collision with the ground (for example a bouncing ball). The object will fall in a vacuum - an air resistance can be omitted. A collision with the ground should ...
3
votes
1answer
578 views
Whats the best way to do character animations with Box2D?
I am developing a 2D, underwater, action-RPG for Android, using Box2D as the physics engine, mainly for collision detection, collision response and movement of in-game characters within an environment ...
3
votes
2answers
409 views
2d parabolic projectile
I'm looking to create a basic Javascript implementation of a projectile that follows a parabolic arc (or something close to one) to arrive at a specific point. I'm not particularly well versed when it ...
3
votes
3answers
303 views
Modelling clothing in C++
Gents and Ladies,
I'm looking to write a bit of software that will end up drawing a human frame (which can be configured with various parameters), and the plan is to have some sort of clothing placed ...
3
votes
2answers
2k views
Xna adding gravity to a 2d sprite
I am trying to simulate gravity in my first xna 2d game. I have the following
//Used for Jumping
double elapsedAirTime = 0.0;
double maxAirTime = 8.35;
//End Jumping
So I am ...
3
votes
1answer
168 views
Force-based graph: 3D edge collision
Imagine a moving 3D force-based graph with colliding edges. How easy it is to write a specific physics engine for calculating edge (strings, ropes) collision so that every object would behave like in ...
3
votes
4answers
257 views
What technologies to use for a particle system with enormous calculation demand?
I have a particle system with X particles.
Each particle tests for collision with other particles. This gives X*X = X^2 collision tests per frame. For 60f/s, this corresponds to 60*X^2 collision ...
3
votes
7answers
963 views
Bouncing a ball off a surface
I'm currently in the middle of writing a game like Breakout, and I was wondering how I could properly bounce a ball off a surface.
I went with the naive way of rotating the velocity by 90 degrees, ...
3
votes
2answers
180 views
magnetism simulation
Say I have p nodes on a n by m pixel 2D surface, I want the nodes to be attracted to each other such that the further they are apart the strong the attraction. But if the distance between two nodes, ...
2
votes
1answer
39 views
Make ball bounce and eventually come to rest
I've written some code to move a ball around the screen using an orientation sensor. I wanted to get the ball to bounce when it hits the bottom of the screen, sort of like under gravity. Could ...
2
votes
1answer
36 views
Navigating a view with Gyroscopes - iOS
i'm new to game developing so i might be a little confusing on defining what i need.
Assume i have a wide background picture, much bigger than the screen(e.g.4000*3000px), how should i approach if i ...
2
votes
1answer
101 views
Simulating gravity in XNA
I'm trying to animate a 2d sprite in my XNA 2D game, by the force of gravity. I've developed a very basic class to achieve the simulation effect. This is my sample code.
namespace Capture
{
class ...
2
votes
2answers
102 views
How to sync physics in a multiplayer game?
I try to found the best method to do this, considering a turn by turn cross-plateform game on mobile (3G bandwidth) with projectile and falling blocks.
I wonder if one device (the current player turn ...
2
votes
1answer
167 views
Cocos2d: Calculate bounce of bullet when colliding with a block
I have a bullet that can bounce against a block. I want to find out whether the bullet bounces in x or y direction. Like you can see on the image, only a few pixels difference let the bullet bounce ...
2
votes
1answer
225 views
Should I build a physics engine for my game, or use an already made one [closed]
I am planning on making a game for Android with some 2d rope physics. The core mechanic involves dragging strings around an environment. This is basically the extent of the physics in the game, at ...
2
votes
2answers
76 views
Using time to increase velocity due to gravity problem (fail to get perfect elasticity)
I am just trying to bounce a ball to the same height it was at originally. But as soon as I introduce time, rather than frame, i lose momentum somewhere.
Taking the code down to its bare minimum I ...
2
votes
4answers
1k views
Optimization of AndEngine game
I am using java + AndEngine in my game.
During the game i have some freezes, i looked for the information and found some steps how to optimize game performance:
Avoid GC (garbage collector) to be
...
2
votes
3answers
259 views
How to throw a ball in an arc?
I am trying to throw a ball in an arc, either an arc going left or right.
Here is my code:
var gravity = 2;
this.velocity.y += gravity;
_angle = 5;
var theta:Number;
...
2
votes
1answer
306 views
Very basic collision resolution with verlet integration
I'm learning how to do some very basic physics stuff for my own amusement, but I'm running into an odd issue.
I'm using a time-corrected verlet integration method as described on ...
2
votes
2answers
268 views
Help with physics simulation in WPF
I'm studying simple physics for 2d games and I would like a help with a simulation I'm trying to do.
I have a bar that will fall over a fixed ball in the ground, xaml below:
<Canvas ...
2
votes
1answer
348 views
How to create a rotation based Impulse Vector (Cocos2d, Chipmunk, Spacemanager)
So im trying to create character with two jetpacks - either of which can be fired independently of one another to create an impulse offset from the center of gravity (Using Cocos2d, Chipmunk, and ...
2
votes
3answers
605 views
2d Ball Collision Problem: no conservation of energy
I am trying to write a simple physics simulation where balls with varying radii and masses bounce around in a perfectly elastic and frictionless environment. I wrote my own code following this ...