XNA mock the Game object or decoupling your Game - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:37:25Z http://stackoverflow.com/feeds/question/804904 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/804904/xna-mock-the-game-object-or-decoupling-your-game 4 XNA mock the Game object or decoupling your Game drozzy 2009-04-30T00:27:20Z 2009-05-09T17:43:18Z <p>I was wandering if it's possible to mock a Game object in order to test my DrawableGameComponent component?</p> <p>I know that mocking frameworks need an interface in order to function, but I need to mock the actual <a href="http://msdn.microsoft.com/en-us/library/microsoft.xna.framework.game.aspx" rel="nofollow">Game</a> object.</p> <p>edit: Here is a <a href="http://forums.xna.com/forums/t/30645.aspx" rel="nofollow">link</a> to respective discussion on XNA Community forums. Any help?</p> http://stackoverflow.com/questions/804904/xna-mock-the-game-object-or-decoupling-your-game/819941#819941 2 Answer by IAmCodeMonkey for XNA mock the Game object or decoupling your Game IAmCodeMonkey 2009-05-04T12:46:36Z 2009-05-04T12:46:36Z <p>You can use a tool called TypeMock that I believe does not require you to have an interface. Your other and more commonly followed method is to create a new class that inherits from Game and also implements an interface that you create that matches the Game object. You can then code against that interface and pass in your 'custom' Game object.</p> <pre><code>public class MyGameObject : Game, IGame { //you can leave this empty since you are inheriting from Game. } public IGame { public GameComponentCollection Components { get; set; } public ContentManager Content { get; set; } //etc... } </code></pre> <p>Its a bit tedious, but it lets you achieve mockability.</p> http://stackoverflow.com/questions/804904/xna-mock-the-game-object-or-decoupling-your-game/825636#825636 3 Answer by Joel Martinez for XNA mock the Game object or decoupling your Game Joel Martinez 2009-05-05T16:06:16Z 2009-05-05T16:16:09Z <p>frameworks like <a href="http://code.google.com/p/moq/" rel="nofollow">MOQ</a> and <a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a> don't specifically need an interface. They can mock any non-sealed and/or abstract class as well. Game is an abstract class, so you shouldn't have any trouble mocking it :-)</p> <p>The one thing to note with at least those two frameworks is that to set any expectations on methods or properties, they must be virtual or abstract. The reason for this is that the mocked instance it generates needs to be able to override. The typemock mentioned by IAmCodeMonkey I believe has a way around this, but I don't think typemock is free, while the two I mentioned are.</p> <p>As an aside, you can also check out a project of mine that could help in creating unit tests for XNA games without the need to make mocks: <a href="http://scurvytest.codeplex.com/" rel="nofollow">http://scurvytest.codeplex.com/</a></p> http://stackoverflow.com/questions/804904/xna-mock-the-game-object-or-decoupling-your-game/826052#826052 3 Answer by SnOrfus for XNA mock the Game object or decoupling your Game SnOrfus 2009-05-05T17:31:58Z 2009-05-05T17:31:58Z <p>You don't have to mock it. Why not make a fake game object?</p> <p>Inherit from Game and override the methods you intend to use in your tests to return canned values or shortcut calculations for whatever methods/properties that you need. Then pass the fake to your tests.</p> <p>Before mocking frameworks, people rolled their own mocks/stubs/fakes - maybe it's not as quick and easy, but you still can.</p> http://stackoverflow.com/questions/804904/xna-mock-the-game-object-or-decoupling-your-game/828226#828226 4 Answer by ojrac for XNA mock the Game object or decoupling your Game ojrac 2009-05-06T06:02:10Z 2009-05-08T19:30:30Z <p>There are some good posts in that forum on the topic of unit testing. Here's my personal approach to unit testing in XNA:</p> <ul> <li>Ignore the Draw() method</li> <li>Isolate complicated behavior in your own class methods</li> <li>Test the tricky stuff, don't sweat the rest</li> </ul> <p>Here's an example of a test to confirm that my Update method moves Entities the right distance between Update() calls. (I'm using <a href="http://en.wikipedia.org/wiki/NUnit" rel="nofollow">NUnit</a>.) I trimmed out a couple lines with different move vectors, but you get the idea: you shouldn't need a Game to drive your tests.</p> <pre><code>[TestFixture] public class EntityTest { [Test] public void testMovement() { float speed = 1.0f; // units per second float updateDuration = 1.0f; // seconds Vector2 moveVector = new Vector2(0f, 1f); Vector2 originalPosition = new Vector2(8f, 12f); Entity entity = new Entity("testGuy"); entity.NextStep = moveVector; entity.Position = originalPosition; entity.Speed = speed; /*** Look ma, no Game! ***/ entity.Update(updateDuration); Vector2 moveVectorDirection = moveVector; moveVectorDirection.Normalize(); Vector2 expected = originalPosition + (speed * updateDuration * moveVectorDirection); float epsilon = 0.0001f; // using == on floats: bad idea Assert.Less(Math.Abs(expected.X - entity.Position.X), epsilon); Assert.Less(Math.Abs(expected.Y - entity.Position.Y), epsilon); } } </code></pre> <p>Edit: Some other notes from the comments:</p> <p><strong>My Entity Class</strong>: I chose to wrap all my game objects up in a centralized Entity class, that looks something like this:</p> <pre><code>public class Entity { public Vector2 Position { get; set; } public Drawable Drawable { get; set; } public void Update(double seconds) { // Entity Update logic... if (Drawable != null) { Drawable.Update(seconds); } } public void LoadContent(/* I forget the args */) { // Entity LoadContent logic... if (Drawable != null) { Drawable.LoadContent(seconds); } } } </code></pre> <p>This gives me a lot of flexibility to make subclasses of Entity (AIEntity, NonInteractiveEntity...) which probably override Update(). It also lets me subclass Drawable freely, without the hell of n^2 subclasses like <code>AnimatedSpriteAIEntity</code>, <code>ParticleEffectNonInteractiveEntity</code> and <code>AnimatedSpriteNoninteractiveEntity</code>. Instead, I can do this:</p> <pre><code>Entity torch = new NonInteractiveEntity(); torch.Drawable = new AnimatedSpriteDrawable("Animations\litTorch"); SomeGameScreen.AddEntity(torch); // let's say you can load an enemy AI script like this Entity enemy = new AIEntity("AIScritps\hostile"); enemy.Drawable = new AnimatedSpriteDrawable("Animations\ogre"); SomeGameScreen.AddEntity(enemy); </code></pre> <p><strong>My Drawable class</strong>: I have an abstract class from which all my drawn objects are derived. I chose an abstract class because some of the behavior will be shared. It'd be perfectly acceptable to define this as an <a href="http://msdn.microsoft.com/en-us/library/ms173156.aspx" rel="nofollow">interface</a> instead, if that's not true of your code.</p> <pre><code>public abstract class Drawable { // my game is 2d, so I use a Point to draw... public Point Coordinates { get; set; } // But I usually store my game state in a Vector2, // so I need a convenient way to convert. If this // were an interface, I'd have to write this code everywhere public void SetPosition(Vector2 value) { Coordinates = new Point((int)value.X, (int)value.Y); } // This is overridden by subclasses like AnimatedSprite and ParticleEffect public abstract void Draw(SpriteBatch spriteBatch, Rectangle visibleArea); } </code></pre> <p>The subclasses define their own Draw logic. In your tank example, you could do a few things:</p> <ul> <li>Add a new entity for each bullet</li> <li>Make a TankEntity class which defines a List, and overrides Draw() to iterate over the Bullets (which define a Draw method of their own)</li> <li>Make a ListDrawable</li> </ul> <p>Here's an example implementation of ListDrawable, ignoring the question of how to manage the list itself.</p> <pre><code>public class ListDrawable : Drawable { private List&lt;Drawable&gt; Children; // ... public override void Draw(SpriteBatch spriteBatch, Rectangle visibleArea) { if (Children == null) { return; } foreach (Drawable child in children) { child.Draw(spriteBatch, visibleArea); } } } </code></pre> http://stackoverflow.com/questions/804904/xna-mock-the-game-object-or-decoupling-your-game/828301#828301 0 Answer by Jeremy for XNA mock the Game object or decoupling your Game Jeremy 2009-05-06T06:34:58Z 2009-05-06T06:34:58Z <p>For a starting point on something like this, I would hit up the <a href="http://creators.xna.com/en-US/sample/winforms%5Fseries1" rel="nofollow">XNA WinForms Sample</a>. Using this sample as a model, it appears that one way to visualize components in a WinForm is to create a control for it in the same style as the SpinningTriangleControl from the sample. This demonstrates how to render XNA code without a Game instance. Really the Game isn't important, its what it does for you that matters. So what you would do is create a Library project which has the Load/Draw logic of the Component in a class and in your other projects, create a Control class and a Component class which are wrappers for the library code in their respective environments. This way, the code your testing isn't duplicated and you don't have to worry about writing code that'll always be viable in two different scenarios.</p> http://stackoverflow.com/questions/804904/xna-mock-the-game-object-or-decoupling-your-game/828482#828482 1 Answer by boris callens for XNA mock the Game object or decoupling your Game boris callens 2009-05-06T07:48:17Z 2009-05-06T07:48:17Z <p>I'm gonna piggy back on your post if you don't mind since <a href="http://stackoverflow.com/questions/799869/unit-testing-xna-do-i-need-to-mock-my-graphicsdevice">mine</a> seems to be less active and you already put your rep on the line ;)</p> <p>As I read through your posts (both here &amp; XNAForum) I'm thinking it's both the framework that could be more approachable and my (our) design that's not flawless. </p> <p>The framework could have be designed to be easier to extended. I'm having a hard time to believe <a href="http://forums.xna.com/forums/p/30645/173406.aspx#173406" rel="nofollow">Shawn</a>'s main argument of a <a href="http://stackoverflow.com/questions/828476/does-coding-towards-an-interface-rather-then-an-implementation-imply-a-performanc">perf hit on interfaces</a>. To back me up <a href="http://forums.xna.com/forums/p/30645/173421.aspx#173421" rel="nofollow">his colleague</a> says the perf hit could be easely evaded.<br /> Do note that the framework already has an IUpdatable and IDrawable interface. Why not go all the way? </p> <p>On the other hand I also think that indeed my (and your) design are not flawless. Where I don't depend on the Game object, I do depend on the GraphicsDevice object a lot. I'm gonna look at how I can circumvent this. It's gonna make code more complicated, but I think I can indeed break those dependencies.</p> http://stackoverflow.com/questions/804904/xna-mock-the-game-object-or-decoupling-your-game/831714#831714 0 Answer by Dockers for XNA mock the Game object or decoupling your Game Dockers 2009-05-06T20:57:41Z 2009-05-06T20:57:41Z <p>I've had exactly the same problems as you too.</p> <p>For the last few weeks I've been trying all sorts of methods to unit test without using 'Game' but to mixed results. </p> <p>Basically I think we can learn from this and the XNA Forum not to use 'Drawable/GameComponent' classes and instead use the interfaces. As you mentioned why they don't provide IGame etc... is madness considering it was THEIR choice to make Drawable/GameComponents take a Game object in their constructor.</p> <p>If you do so, you at least have decoupled classes and providing your design is good (TDD will help) you should be ok. Some integration tests can test whether or not your Game class works.</p> <p>Still, it's been a great help. I'm gonna try and bash out Pong or something with this new approach.</p> <p>Good luck.</p>