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 ...

learn more… | top users | synonyms

0
votes
0answers
7 views

How fast is PhysX on GPU compared to physics engines on CPU?

I have an application that is written to use the Bullet physics engine. I am running it on an Intel i7 2600K CPU with 8 cores. The application has to process millions of chunks of physics work, each ...
0
votes
1answer
18 views

Android Game Programming — Accelerometer vs. Compass

Hello StackOverflowers, I am designing a game for Android where I plan on allowing the user to move in four different directions (up, down, left, and right). I would like to implement this using ...
1
vote
0answers
26 views

Android getX/getY interleaves relative/absolute coordinates

There are a lot of discussions of how MotionEvent.getX/.getY are "unreliable" (or other terms) and that we should use the Raw versions of these calls to get coordinates. On my Nexus 7, I have ...
0
votes
1answer
27 views

Difficulties with Farseer documentation

I tried the "Texture to polygon" example in the Farseer documentation. https://farseerphysics.codeplex.com/documentation But I always get this error message in the following line: //Find the ...
0
votes
1answer
25 views

How can I create polygons in Farseer?

I always get many error messages when I want to create polygons in Farseer. 'FarseerPhysics.Common.Vertices' does not contain a definition for 'CreatePolygon' ...
0
votes
1answer
30 views

Farseer ContactListener is not working

I'm using Farseer in my XNA project, but I have some trouble with the ContactListener. I created a class for my ContactListener but I always get these two error messages and I don't know how to fix ...
0
votes
0answers
12 views

How to transition smoothly between CABasicAnimations?

I would like to imitate the feel of a spinning disk (like a vinyl record) in Core Animation. The disk is implemented using a CALayer. Here is what I would like to have: Dampening of the rotation of ...
2
votes
1answer
39 views

Hit incoming missile (simple projectile missile) in Unity3D

I want to make Surface to Air Missile System in unity3D that could predict the incoming missile position after time 't' and set its interceptor missile angle and position in 3D coordinates so that it ...
0
votes
0answers
15 views

360 degree gravity game mechanic like “They Need To Be Fed” game

I am a fan of "They Need To Be Fed" game and I want to understand the game mechanic at a deeper level. What are some good resources for the basic Box2d (or similar) physics behind the 360 degree ...
1
vote
1answer
31 views

Pygame mouse movement failing

I am working through pygame tutorials and at the moment I am trying to figure out how to select a circle which is firing a ball where a ball hits another ball which in turn knocks a box down. The ...
0
votes
0answers
20 views

Move 3d body using keyboard

I want control model using arrays. I have code for now: For rotation: rotation=0.0f; if(Gdx.input.isKeyPressed(Keys.A)) { rotation += 80; }else ...
0
votes
1answer
68 views

How to check for hollow_square if soldiers are in formation on board game?

In game ( it is c++ board game like matrix with soldiers which can use formation) soldiers can be deployed in formations. ( Only one soldier can be deployed on one cell on map/matrix, formation can be ...
0
votes
1answer
14 views

how to increase the score in cocos2d android when two sprites gets deleted

I have a sprite(image) when it collide with another score should be increament by 10, related code is given in the update method, but instead of this it increases randomly. here's my code. public ...
-3
votes
1answer
27 views

Access variable from a different class in a different package?

I want to set it so igAS for each igCharacter will be limited by a variable in igMech. Here is what I have first : package igCharacters; import igMech.*; protected class igBrand { ...
1
vote
1answer
36 views

Get distance of sprite and Screen

How to get the distance between the edge of the screen and a vector moving sprite? I want to get the distance between my moving sprite and the edge of the screen so that when my sprite touches the ...
1
vote
0answers
42 views

Corona SDK physics with line, why does the line turn into rectangle in the physics engine?

The issue I am having is simple. I have an object in the center of the screen, and then a circle orbiting that object. what i want to do is have the object orbit around the object, when the use ...
0
votes
1answer
50 views

Table structure for poker hands [closed]

I'm making an api for a game call shelem by PHP, the hands logic is kinda like poker. I was wondering what is the best and fastest way to store hands into mysql table. I'm concerning about table ...
2
votes
3answers
26 views

Dynamic Methods for Collision Handler in Java

I want to have a set collision handeler for my game so i dont have to copy alot of code and keep the storage short. In a method i would have in a class, it would look like this for two specific ...
-4
votes
0answers
29 views

What is the terminology for playing the game by programming against opponents programs? [closed]

Some time ago i saw a gaming website, which requires the players to program their bots in JavaScript and let it play with other programmed bots. I for got the link. What is the name of these kind of ...
1
vote
0answers
48 views

Exponential rate of change [closed]

First of all, i have made a drawing to illustrate what i need, please view the attached image. Now my question is. How do i calculate the exponential rate, so that my rate has the value of zero (0) ...
-1
votes
1answer
59 views

which android toolkit functions/classes would I need to use to implement a slingshot mechanism in an android game? [closed]

which android toolkit functions/classes would I need to use to implement a slingshot like character control mechanism? (for android game) I want a character that can fly around by repeatedly being ...
0
votes
1answer
38 views

How to get a ball/sphere to stop

I got a field in unity3d that has some depressions in it (like small holes). The field's slope always leads towards the nearest depression. A sphere is dropped at random somewhere in the field, rolls ...
0
votes
1answer
27 views

Algorithm for ConnectAll game

here is the video of game I am interested in. http://www.youtube.com/watch?v=UhWeLmSf6pA I would like to know the algorithm that is used to make a pattern for challenge as shown in video. Can ...
1
vote
1answer
51 views

Bouncing ball gains momentum

I have the following functions running in a loop. It is a basic bouncing ball. My problem is that the balls dy increases every bounce. How would I make it so it bounces to the same height every time? ...
2
votes
1answer
81 views

Checking if a Touch point is inside box collider in Unity

Please see the below images. In the first image you can see that there is box collider. The second image is when I run the code on Android device Here is the code which is attached to Play Game ...
4
votes
3answers
67 views

How to handle multiple simultaneous elastic collisions?

I'm computing the result by colliding pairs of 2D convex objects (without rotation), using the basic equations on wikipedia. However, when there are dependencies, like two objects hitting another ...
2
votes
2answers
69 views

WebGL model simplification

I'm currently planning a Web GL game and am starting to make the models for it, I need to know if anyone knows if say my model is 1X scale, my camera zooms/pans out from the object and my models ...
0
votes
0answers
47 views

Collisions in simple javascript game

I'm writing a simple game in javascript and I'm wondering what the best way to handle collisions between the player and the world objects. <script> var isJumping = false; var isFalling = ...
0
votes
1answer
49 views

collision test for 2d polygon physics

I want to do some 2D rigid body (polygon) physics and I've found an elaborate equation to calculate the collision response. But, before that I would need a good way of finding 'input' to that ...
0
votes
1answer
44 views

Corona SDK Physics goes on and off while object is in motion

Below is my main file. essentially what is happening is that the collision is working when the "rect" object is not moving but as soon as i move the rect object, the collision stops taking affect. I ...
0
votes
0answers
25 views

How to add basic physics to UIViewController and Gestures

What's the best way to add physics to UIViewControllers in a UIPanGesture driven interface. Imagine a board (UIViewController) containing multiple cards (UIViewController). And those cards should ...
1
vote
1answer
41 views

Is it a big difference to use Box2D in native Android game instead of Box2Dweb with HTML5 canvas?

I have to write a simulation of balls falling in a container for Android. First, I tried using Box2Dweb in a HTML5 canvas, but with 3 solid bodies and 50 balls, it performs really slow, even in ...
0
votes
1answer
32 views

Cocos2D + Chipmunk: Disallowing Movement Along the X-axis & Preventing Rotation

What I want... The goal is to make an endless running game with obstacles and pitfalls that the player must avoid by jumping. In order to do that, the character cannot be allowed to move horizontally ...
-1
votes
0answers
38 views

How to create circle with hole [closed]

I want a circle in that anther circle the both circles have small exit using the exit move ball in to the circle . I tried this but i want like ![circle with hole ][1] type cirle b2BodyDef ...
0
votes
1answer
15 views

nape - targeting only one body

I have a few body in nape one is a loop of 'baddies' the other is a single 'hero' I call my updateGraphics function but how to I taget the hero within this function, I have tried ...
0
votes
1answer
12 views

nape making a body follow the mouse

I have a dynamic body in name and want to make its x position follow the mouse, is this possible. player = new Body(BodyType.DYNAMIC); player.shapes.add(new Polygon(Polygon.rect(400, 350, ...
0
votes
1answer
55 views

Box2d AS3 Flash simulating wind on top down view with friction

I am trying to make a top down game where you throw a disc using Box2d. The world has no gravity so the disc can be thrown and just bounces around the stage with the inertia and linear damping that I ...
0
votes
0answers
16 views

What would engine would be optimal to use for a tangible-item-based project? [closed]

My colleagues and I have been planning on development for a while now, and we're curious as to what we should use to provide media into the game. Everything will be composed of picture-based ...
-3
votes
0answers
144 views

I need andengine gles2 anchor center branch [closed]

I have andengine-gles2 but I need andengine gles2 anchor center branch. where can I download it? I can not find.
0
votes
1answer
40 views

When to start braking when heading for a position?

With only 1 dimension, you want to get to position X and stop there. you have a maximum acceleration A you can apply yourself; each frame you choose what direction to accelerate. So if you have a ...
-4
votes
1answer
104 views

collision detection between ball/sphere and hoop/ring [closed]

I am trying to implement collision between a hoop and a ball. the following image shows this. I want to be able to detect collisions if the ball hits the ring and no collisions between if the ball ...
1
vote
1answer
35 views

What repulsion direction do we use for Smoothed Particle Hydrodynamics when radius is 0?

When doing SPH, the paper by Kelagar recommends using a particular kernel for pressure induced forces between particles. The kernel it recommends is the following when the radius is within the kernel ...
0
votes
1answer
32 views

Projectile Rotation in Unity3D

I want to simulate a projectile motion. I use the following Code if (Input.GetButtonDown("Fire1")) { Rigidbody clone; clone = Instantiate(projectile, transform.position+ new ...
0
votes
1answer
111 views

I've rendered a shere to the Glut Window now how do I make it move around with the keyboard? [closed]

Cutting and pasting the cl-glut-examples code I rendered a sphere to the display. Now how do I move It on a x,y and z axis using the keyboard. Also is there an online resource to learn game ...
0
votes
2answers
61 views

Corona: How to detect the direction of an object with physics

I would like to know how to detect the direction of an object with physics, I mean when is falling down. can it be by a eventListener? any idea how to do it? I need it for know can I change the ...
1
vote
1answer
74 views

Find the closest brick to the ball in a bricks breaking game

I am building a JavaScript bricks breaking game from scratch for fun. A demo can be played here. However, you will see that all collisions are not handled. In an attempt to handle collisions by ...
0
votes
1answer
42 views

Variable Jump Height

I have been having great difficulty creating a jumping system whereby the user can tap the jump button for a small jump and hold it down for a higher jump. I stumbled upon this topic: ...
0
votes
2answers
48 views

Variable assignment in function

I'm writing a basic fighting game and am trying to make it so that with each attack it subtracts the amount of the attack from the enemy's health and prints the enemy's current health. However, the ...
0
votes
1answer
75 views

Flash Collision Detection (Platformer game)

I am trying to make a platformer game in flash, using ActionScript 3. Currently everything is working except for one thing. The Problem: When the player collides with the bottom of a platform, if ...
1
vote
0answers
40 views

Collision between a mass and a line attached to two masses

I'm currently in the making of a small c++ simulation program and, as I am very new to physics, I am struggling with what seems to be a simple 2D collision handling problem. I spent quite some time ...

1 2 3 4 5 12