I have been trialling farseer 3.3 in XNA. For the life of me I cannot get DebugViewXNA to work.

I have a World object with a couple of bodies in there. The bodies are fixed to polygonal models, so I need the debugviewXNA class to draw these for me but cant find how to do it. I assume I need to pass it the vertices but cannot find how to access these from the World object nor do I understand which method to call exactly. One of the issues I find with farseer 3.3 is the support seems limited to "look at the examples" but they just dont seem to show the answers, google tells me I am not the only one feeling this way.

Any help from those more experienced would be very much appreciated!

Thanks in advance

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You shouldn't need to pass DebugViewXNA any vertices - it grabs that info from the Fixtures attached to the Bodies in the World. Here's how I got it working:

physicsWorld = new World(GRAVITY);
physicsDebug = new DebugViewXNA(physicsWorld);
physicsDebug.LoadContent(this.GraphicsDevice, this.Content);
physicsDebug.AppendFlags(DebugViewFlags.Shape);
physicsDebug.AppendFlags(DebugViewFlags.PolygonPoints);

And later on for drawing:

Matrix proj = Matrix.CreateOrthographicOffCenter(0f, GraphicsDevice.Viewport.Width, GraphicsDevice.Viewport.Height, 0f, 0f, 1f);
Matrix view = camera.GetViewMatrix(Vector2.One);
physicsDebug.RenderDebugData(ref proj, ref view);
link|improve this answer
Thanks Aranda thats the best example I have seen. Its only the camera object part that I dont get... I have it hooked up just passing the proj matrix and that outputs a tiny version in the corner. – Nick Jul 24 '11 at 20:24
Sorry an update, managed to develop my own camera class which I can use to generate a matrix for the view parameter. I cant seem to get it to size up correctly though which is the odd thing. The project I am testing it in is nothing fancy, just a 1280 x 720 environment with no zoom or movement needed. – Nick Jul 25 '11 at 10:06
1  
That particular camera class was ripped from here. Nothing special. Hope it helps. – Aranda Jul 25 '11 at 12:11
Thanks, ill implement it over my own later and see if it starts to look better :o) – Nick Jul 25 '11 at 13:10
1  
On second thoughts, if all you need is a static world, a camera may be overkill. Note that the view matrix generated by this camera is the same view matrix passed to SpriteBatch.Begin(). You can possibly get away with just using Matrix view = Matrix.CreateTranslation(new Vector3(viewport.Width / 2.0f, viewport.Height / 2.0f, 0.0f));, and not passing a matrix to SpriteBatch.Begin(). Have you studied how they do it in the Farseer samples? I think theirs is a similar setup with a static world. – Aranda Jul 25 '11 at 14:27
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.