Debugging is a methodical process of finding and reducing the number of bugs in a game, thus making it behave as expected.
0
votes
1answer
28 views
Android Live Testing
I am making a game for android and in it I am using sensors which are not available in the emulator. At the moment I am connecting my device and transferring the apk, then installing to test but that ...
-1
votes
2answers
92 views
Velocity deacceleration working incorrectly
Basicly, I've tried to code velocity into my game, which works sort of. The deaccelaration works sort of, but not correctly.
The problem is, that the positive values, decreases just fine and dandy to ...
0
votes
0answers
43 views
SFML programs fails to debug with glslDevil
I'm testing the glslDevil debugger with a simple (and working) SFML application in Linux + NVidia. But it always fails in the window creation step:
W! Program Start
| glXGetConfig(0x86a50b0, ...
1
vote
1answer
61 views
How can I show information from a variety of sources in my debug menu?
I'm creating a debug menu, and I want to be able to show a lot of information (variables) on that menu. This information will come from a lot of classes (instances).
How can I show a lot of ...
3
votes
1answer
156 views
Bullet physics debug drawing not working
Background
I am following on from this question, which isn't answered yet. Basically I have a cube and a UVSphere in my scene, with UVSphere on the top of the cube without touching the cube. Both ...
0
votes
1answer
81 views
Displaying performance data per engine subsystem
Our game (Android based) traces how long it takes to do the world logic updates, and how long it takes to a render a frame to the device screen.
These traces are collected every frame, and displayed ...
5
votes
1answer
112 views
Is it possible to show vertex information in tables in VS2012 like in PIX?
In PIX I was able to watch the objects' vertex data at different stages in tables, like before vertex shader, between vertex and pixel shaders, and so on. Can you see this in Visual Studio 2012 ...
2
votes
1answer
417 views
Android emulator with acceleration and gyroscope simulation
Is there an Android emulator that is compatible with eclipse that can simulate acceleration and tilting of a mobile device?
-2
votes
1answer
95 views
Help me debug my 3-d collision code [closed]
I have been havaing a problem doing 3-d collision in a game i have been trying to make for several weeks now. What i am trying to do is prevent a PlayerModel object from colliding with Obstacle(cube) ...
0
votes
2answers
144 views
Why does my sprite animation sometimes runs faster? [closed]
I don't know why each time I call the Update_Animation function, my sprite animation runs faster. Is it caused by gameTime? How to fix it?
Here's the relevant code:
class Character
{
// ...
1
vote
1answer
243 views
Perlin Noise for game terrain; math error (unexpected breaks in terrain (3D grid))
So, I'm learning how to generate terrain using Perlin Noise, and I came across this code: http://stackoverflow.com/questions/4753055/perlin-noise-generation-for-terrain/4753123#4753123
PerlinNoise.h
...
4
votes
1answer
203 views
How do I debug two android devices simultaneously in Eclipse?
I have a multiplayer game which should be tested on two devices at the same time, if possible, with debugging.
Can eclipse do this? If so, how?
0
votes
0answers
356 views
Limited Screen Switching Count Memory Issue
When making my simple app for revisions to update the latest changes, I test it first between the device (Google Nexus 7) and desktop using Eclipse IDE. I made eleven screens for the game in terms of ...
8
votes
1answer
260 views
Curious Transparent Holes Render Artifact
So I'm trying to implement "smooth" terrain in my block engine by giving each surface block a heightmap.
Basically, what I do to generate these "heightmaps" for each block is I generate the heights ...
4
votes
6answers
270 views
Object oriented approach to debug mode
I'd like to introduce a way to turn off/on debug messages and in-game tooling (tweak menus, for example) without non-game related branches, e.g:
if(DEBUG_MODE) {
// show tweak menu
// some ...