active questions tagged xna - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T18:15:39Zhttp://stackoverflow.com/feeds/tag/xnahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1789684/webcam-calling-in-xna1webcam calling in xnaeomer2009-11-24T12:12:36Z2009-12-05T21:54:01Z
<p>hi</p>
<p>i am new in xna </p>
<p>i want to use my webcam and make webcam image as a background texture for 3D models</p>
<p>is there a function that calls webcam </p>
<p>thanks for suggestions</p>
http://stackoverflow.com/questions/1365906/screensavers-with-xna-and-net4Screensavers With XNA and .NET?RCIX2009-09-02T05:00:22Z2009-12-04T15:25:17Z
<p>I'm fairly sure you can create screensavers with.NET but are there any tutorials on doing so? and how well can you make XNA screensavers?</p>
http://stackoverflow.com/questions/1765779/xna-fbx-textures0XNA .Fbx texturesviperld0022009-11-19T19:10:35Z2009-12-04T14:10:28Z
<p>Hello. I'm using the standard .fbx importer with custom shaders in XNA. The .fbx model is UV wrapped properly and is textured appropriately when I use BasicEffect. However when I use my custom effect I have to load the texture in as a parameter, and it is not mapped correctly. </p>
<p>Questions: 1) How can I texture my .fbx model properly using the included texture's coordinates with custom effects? 2) Is there a way to access the texture from the loaded .fbx model object? Where does this texture go?</p>
<p>Note: I've studied custom content pipelines and don't believe writing my own Fbx importer/processor will be efficient. However if someone can descriptively supply me with firsthand experience of this being the answer than I will use the custom pipeline.</p>
<p>Thank you for your time and for reading this post.</p>
http://stackoverflow.com/questions/1812710/farseer-physics-xna-geom-tripping0Farseer Physics XNA Geom 'Tripping'Shahin2009-11-28T15:02:02Z2009-12-04T13:54:45Z
<p>Hello, I have an issue similar to <a href="http://farseerphysics.codeplex.com/Thread/View.aspx?ThreadId=72364" rel="nofollow">http://farseerphysics.codeplex.com/Thread/View.aspx?ThreadId=72364</a></p>
<p>I have a rectangle player geom, and many rectangle tile geoms lined up next to each other.</p>
<p>Occasionally when the player geom is crossing between them he seems to clip onto the corners of the tile geom and as a result rotate over.</p>
<p>Even when switching the moment of inertia to infinity which prevents rotation, the player geom "hops" when it clips the edge.</p>
<p>Here is a screenshot of the geoms <img src="http://notspike.com/PrototypeG/trip.png" alt="tripping image"></p>
<p>Is there any fix for this? I've tried the Farseer forums but it seems pretty inactive</p>
<p>Here is a link to a video using a circle geom for the player</p>
<p><a href="http://www.notspike.com/PrototypeG/trip.avi" rel="nofollow">http://www.notspike.com/PrototypeG/trip.avi</a></p>
http://stackoverflow.com/questions/1829179/setting-the-form-icon-for-an-xna-window1Setting the form icon for an XNA window?Rezzie2009-12-01T21:50:13Z2009-12-04T00:04:55Z
<p>Is there any way of changing the icon for an XNA game form (i.e. the one that appears in the top left corner of the form, and on the taskbar)?</p>
<p>I currently have a multi-icon with a variety of sizes embedded, including a 16x16 one. Unfortunately the project property "Application -> Resources -> Icon and manifest" uses the 32x32 one and scales it down, rather than the native one.</p>
<p>I'd like to manually set the icon to use the 16x16 one contained in the icon I have, and if possible change it dynamically at run-time.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1834649/hiding-objects-that-obscure-the-player-in-a-3d-scene2Hiding objects that obscure the player in a 3D sceneKawa2009-12-02T17:52:23Z2009-12-03T11:22:48Z
<p>I'm designing a 3D game with a camera not entirely unlike that in The Sims and I want to prevent the player character from being hidden behind objects, including walls, pillars and other objects.</p>
<p>One easy way to handle the walls case is to have them face inwards and not have an other side, but that won't cover the <em>other</em> cases at all.</p>
<p>What I had planned is to somehow check for objects that are "in front" of the player, relative to the camera, and hide them - be it by alpha blending or not rendering at all.</p>
<p>One probably not so good idea I had in mind is to scan from the camera to the player in a straight line and see if you hit a non-hidden object, continuing until you reach the player. Unfortunately, I am an almost complete newbie on 3D programming.</p>
<p><a href="http://helmet.kafuka.org/wallspans2.svg" rel="nofollow" title="An SVG image to demonstrate">Demonstration SVG illustration</a> < that wall panel obscures the player, so it must be hidden. Another unrelated and pretty much already solved problem is removing <em>all three</em> wall panels on that side, which is irrelevant to this question and only caused by the mapping system I came up with.</p>
http://stackoverflow.com/questions/1832293/c-scripting-language4C# Scripting languageMartin2009-12-02T11:18:03Z2009-12-03T09:11:51Z
<p>This is a somewhat odd question.</p>
<p>I want to provide a scripting language for modding games that I build for XNA. If I was deplying these games for the PC then I would just be able to use C# files, compiled at runtime (Using <a href="http://msdn.microsoft.com/en-us/library/3y322t50.aspx" rel="nofollow">reflection.emit</a>) as scripts and that would be fine - a nice simple way to mod the game. However, the .net compact framework (which is what the xbox provides) does not support reflection.emit, so how can I write a scripting language taking this into account?</p>
<ol>
<li>Are there any projects already doing this</li>
<li>Are there any good resources to start my own project to do this</li>
<li>What would be the best language to choose? This is for games scripting so it can be a fairly small language so long as it's quite efficient and easy to implement an interpreter for</li>
</ol>
http://stackoverflow.com/questions/712296/xna-2d-camera-engine-that-follows-sprite1XNA 2D Camera Engine That Follows SpriteKhalid Abuhakmeh2009-04-03T01:55:07Z2009-12-02T13:04:23Z
<p>What is the best way to create a parallax effect in an XNA game? I would like the camera to follow my sprite as it moves across the world, that way I can build in effects like zoom, panning, shake, and other effects. Anybody have a solid example of how this is done, preferably in a GameComponent?</p>
http://stackoverflow.com/questions/1829290/chess-logic-in-xna1Chess Logic in XNASankar2009-12-01T22:09:09Z2009-12-01T22:48:26Z
<p>So I've created a 2D chess game board with all the pieces on it using the XNA library and all. However I don't know how to make the pieces move if I click them. This is what I have for the logic of one of the knight pieces.</p>
<pre><code>if(mouse.LeftButton == ButtonState.Pressed
&& mouse.X == wknight1.position.X
&& mouse.Y == wknight1.position.Y)
{
}
</code></pre>
<p>How do I select the piece then allow it to move?</p>
http://stackoverflow.com/questions/1823903/copying-a-texture-in-xna-into-another-texture0copying a texture in xna into another textureCasey2009-12-01T03:55:32Z2009-12-01T18:04:14Z
<p>I am loading a Texture2D that contains multiple sprite textures. I would like to pull the individual textures out when I load the initial Texture to store into separate Texture2D objects, but can't seem to find a method any where that would let me do this. SpriteBatch.Draw I believe should only be called from within a begin, end block right?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1807143/javascript-or-similar-gaming-scripts-for-c-xna6Javascript (or similar) gaming scripts for C# XNAthephpdeveloper2009-11-27T06:46:32Z2009-11-28T05:30:37Z
<p>Lately I am preparing myself to develop yet another game in XNA C#. </p>
<p>The last time I worked on a game in XNA C#, I ran into this problem of having to add maps and customizable data into the game. Each time I want to add in new content or change some values to the game character or something, I had to rebuild the whole game or what - which can take quite some time.</p>
<p>Is there any way which I can write gaming scripts to load the content that can be interpreted by my XNA C# game without having to compile? I am looking at hopefully Javascript.</p>
<p>I would hope that I can add in functions and other small API which can be called from the external gaming script to manipulate the game or load data so on. I am not concerned about the game being hacked since it's quite early yet - the development is of much priority.</p>
<p>Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/1797546/learning-c-xna-as-a-first-language-for-indie-games-dev4Learning C# / XNA as a first language for indie games devJoeBeez2009-11-25T15:07:53Z2009-11-25T16:31:31Z
<p>Hi all,</p>
<p>I'm really wanting to get into game development (childhood dream!) and i think I'm now in a position to finally invest enough time into it. However i have a few questions and I'd really like some feedback from some guys already involved in development, so i thought i would ask here :)</p>
<ol>
<li><p>How easy is it to learn?<br><br>
I have some programming experience: VB.net applications (only small ones), and a little C#, but I have never really been able to commit to learning a language to proficiency as i find reading from books etc very hard to concentrate on. <br><br>I made most of my VB apps from finding snippets and bodging them together, understanding what the code did as i went along. However XNA/C# games development is a lot more closed off, people don't seem to post a lot of their code the the internet (understandably), and I worry this might slow me down somewhat.</p></li>
<li><p>What sort of time frame should i be looking at to get a good understanding of the language?</p></li>
<li><p>Will XNA/C# stick around?<br><br>
Am i going to spend years learning the language only to find out that the C#/XNA combo is phased out for the next gen Microsoft devices?</p></li>
<li><p>How relevant is C# to the professional game studios?<br><br>
OK sure saying you've released a dozen highly popular Indie games looks great on your resume, but is it really going to land you a job? Don't big studio's mostly use C++? How much of C# is relevant to C++?</p></li>
<li><p>Finally, if I do decide to learn it, are there any books/sites/tools you reccomend for learning it?</p></li>
</ol>
<p>If your still reading this then thanks for taking the time, i know its a little drawn out but I would really like to know these things before putting in some serious time!</p>
<p>Any answers to any of my (many) questions are very appreciated!</p>
<p>Joe</p>
<p><strong>EDIT</strong></p>
<p>Thanks for all the answers guys it means a lot! I'm bookmarking all these sites :)</p>
http://stackoverflow.com/questions/270138/how-do-i-draw-lines-using-xna6How do I draw lines using XNA?Simucal2008-11-06T20:32:02Z2009-11-24T11:30:26Z
<p>I've read a bunch of tutorials involving XNA (and it's various versions) and I still am a little confused on drawing primitives. Everything seems to be really convoluted.</p>
<p>Can someone show me, using code, the simplest XNA implementation of drawing one or two lines on to the screen? Perhaps with a brief explanation (including the boilerplate)?</p>
<p>I'm not a games programmer and I have little XNA experience. My ultimate goal is to draw some lines onto the screen which I will eventually transform with rotations, etc (by hand). However, for this first step.. I need to simply draw the lines! I remember back in my ancient OpenGL days it was fairly straightforward when drawing a line with a few method calls. Should I simply revert to using unmanaged directx calls?</p>
http://stackoverflow.com/questions/1784466/xna-antialias-question0XNA Antialias question!Mat2009-11-23T16:54:06Z2009-11-23T18:48:03Z
<p>Hi!</p>
<p>I've got problems with XNA and antialiasing. I can activate it using</p>
<pre><code> graphics.PreferMultiSampling = true;
graphics.ApplyChanges();
</code></pre>
<p>however - it's only 2x antialiasing. Even if I set</p>
<pre><code>graphics.GraphicsDevice.PresentationParameters.MultiSampleType = MultiSampleType.SixteenSamples;
</code></pre>
<p>it stays only 2x antialiasing. If i go to my graphics driver settings (NVIDIA GeForce 9800 GT) and set Antialiastype from Application decides to 16x, then I get nice and clean antialiasing. But if it's set on 'Application decides' i don't get more than 2x</p>
<p>Anyone an idea why?
Thanks!</p>
http://stackoverflow.com/questions/1775196/take-screen-shot-in-xna3Take screen shot in XNAAlon2009-11-21T11:17:29Z2009-11-21T12:06:32Z
<p>How can I take a screen shot of the screen in XNA? Is it possible without <code>System.Drawing.Graphics.CopyFromScreen</code> or Win32API? If it's not possible, Is there any way to draw a <code>System.Drawing.Bitmap</code> to the game?</p>
<p>I want that it'll take a screen screenshot, then load the game in full screen mode, and then print the screenshot.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1747813/cant-install-xna0cant install xna eomer2009-11-17T10:07:03Z2009-11-17T21:43:45Z
<p>hi</p>
<p>i trying to install xna
when the installation starts i got an error says "XNA GSE 1.0 refresh requires Visual C# 2005 express edition sp1..."</p>
<p>i use windows 7
and i have visual studio 2008 & visual C 2008 express</p>
<p>when i see this message i install visual C 2005 express then i got the same error again and i install visual C 2005 sp1</p>
<p>i restart after installations and i still got this error </p>
<p>what should i do </p>
http://stackoverflow.com/questions/874875/basic-pathfinding-with-obstacle-avoidance-in-a-continuous-2d-space3Basic pathfinding with obstacle avoidance in a continuous 2D spaceKP2009-05-17T16:03:18Z2009-11-17T18:00:57Z
<p>I'm writing a simulation in which a creature object should be able to move towards some other arbitrary object in the environment, sliding around obstacles rather than doing any intelligent pathfinding. I'm not trying to have it <em>plan</em> a path -- just to move in one general direction, and bounce around obstacles.</p>
<p>It's a 2D environment (overhead view), and every object has a bounding rectangle for collision detection. There is no grid, and I am not looking for A* solution.</p>
<p>I haven't been able to find any tutorials on this kind of "dumb" collision-based pathfinding, so I might not be describing this using the most common terms.</p>
<p>Any recommendations on how to implement this (or links to tutorials)?</p>
http://stackoverflow.com/questions/1319239/is-it-possible-to-replace-traditional-event-handling-in-c-with-the-new-reactive5Is it possible to replace traditional event handling in C# with the new Reactive framework?kitsune2009-08-23T18:43:23Z2009-11-17T06:45:32Z
<p>All examples on System.Reactive.dll I've seen so far deal with Events, EventArgs and EventHandlers, I wonder whether someone can show me an example where event notification is handled without this.</p>
<p>For instance, in Microsoft's XNA framework, you have a static method called Mouse.GetState() which will return the current MouseState (with mouseState.LeftButton == ButtonState.Pressed you could see whether the left button is pressed, for instance). So there are no EventArgs, Events etc. in the first place and I think this could serve as an example of achieving event notification without introducing the concept of an event at all.</p>
<p>Could System.Reactive be of help here? Can anyone wrap this into an example with System.Reactive?</p>
http://stackoverflow.com/questions/1738083/fetching-the-vertices-from-the-backbuffer-hlsl-on-xna0Fetching the vertices from the backbuffer (HLSL) on XNAmakism2009-11-15T16:57:04Z2009-11-16T09:57:08Z
<p>Hello and sorry for the obscure title :}
I`ll try to explain the best i can.</p>
<p>First of all, i am new to HLSL but i understand about the pipeline and stuff that are from the fairy world. What i`m trying to do is use the gpu for general computations (GPGPU).</p>
<p>What i don`t know is: how can i read* the vertices (that have been transformed using vertex shaders) back to my xna application? I read something about using the texture memory of the gpu but i can't find anything solid...</p>
<p>Thanks in advance for any info/tip! :-)</p>
<p>*not sure if possible bacause of the rasterizer and the pixel shader (if any), i mean, in the end it's all about pixels, right?</p>
http://stackoverflow.com/questions/1739125/is-there-a-3d-equivalant-to-clamp-in-xna2 Is there a 3D equivalant to clamp in XNA?Lolacaust2009-11-15T22:40:09Z2009-11-16T06:01:33Z
<p>I'm building a 3D game but i only plan on using a 2D perspective thus not taking the z axis into the equasion,
i want to be able to limit the movement of one of my models so it doesn't move out of the unmoving field of view,</p>
<p>when i was designing 2D it was simple just use clamp, but i cant seem to figurebout how to do this in 3d</p>
<p>any help would be much appreciated</p>
<p>Regards</p>
http://stackoverflow.com/questions/1728207/xna-matrix-camera-scale-issue-in-2d-game0XNA Matrix Camera Scale Issue in 2D GameShahin2009-11-13T09:41:11Z2009-11-14T11:34:49Z
<p>Hi, I followed the tutorial on
<a href="http://www.david-amador.com/2009/10/xna-camera-2d-with-zoom-and-rotation/" rel="nofollow">http://www.david-amador.com/2009/10/xna-camera-2d-with-zoom-and-rotation/</a> to achieve a camera that follows my player sprite with zoom in/out functionality.</p>
<p>however, when I zoom in/out the camera seems to either slowly move away from the sprite whilst moving, I don't think I'm setting the position right, but I can't seem to figure out what it needs to be.</p>
<p>Here's some snippets if it helps</p>
<pre><code> if (cam.Follow)
{
RectangleF temp = playerBoundingBox;
cam.Pos = new Vector2(
(temp.X + temp.Width / 2)*cam.Zoom,
temp.Y + temp.Height / 2) * cam.Zoom;
}
public Matrix get_transformation(GraphicsDevice graphicsDevice)
{
_transform =
// Add Zoom
Matrix.CreateScale(
new Vector3((_zoom * _zoom * _zoom),
(_zoom * _zoom * _zoom), 0))
// Add Camera Rotation
* Matrix.CreateRotationZ(_rotation)
// Add Camera Position
* Matrix.CreateTranslation(
new Vector3((graphicsDevice.Viewport.Width * 0.5f) - _pos.X,
(graphicsDevice.Viewport.Height * 0.5f) - _pos.Y,
0));
return _transform;
}
</code></pre>
<p>thank you in advance.</p>
http://stackoverflow.com/questions/1730285/simple-xna-2d-physics-library4Simple XNA 2d physics libraryCasey2009-11-13T16:23:39Z2009-11-13T16:44:00Z
<p>Working on a 2D project and wanted some recommendations on a simple 2d physics library for use in C# with the XNA framework. I was looking at Farseer or physics2d. Anyone have any other suggestions?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/985101/filenotfound-exception-when-attempting-to-run-an-xna-f-project1FileNotFound exception when attempting to run an XNA F# projectRCIX2009-06-12T05:08:24Z2009-11-13T12:43:05Z
<p>I managed to cobble together a suitable implementation of a sample game in F# with xna. However when i try to instantiate my derived game class, the code throws a FileNotFound exception trying to access the Microsoft.Xna.Framework assembly. Why does this happen?</p>
<p>Code:</p>
<pre><code>#light
open System
open Microsoft.Xna.Framework
open Microsoft.Xna.Framework.Audio
open Microsoft.Xna.Framework.Content
open Microsoft.Xna.Framework.Design
open Microsoft.Xna.Framework.GamerServices
open Microsoft.Xna.Framework.Graphics
open Microsoft.Xna.Framework.Input
type SampleGame() as self =
class
inherit Game()
let mutable manager : GraphicsDeviceManager = null
let mutable spriteBatch : SpriteBatch = null
do
manager <- new GraphicsDeviceManager(self)
override Game.Initialize() =
base.Initialize()
override Game.LoadContent() =
spriteBatch <- new SpriteBatch(manager.GraphicsDevice)
base.LoadContent()
override Game.Update(gameTime) =
base.Update(gameTime)
if GamePad.GetState(PlayerIndex.One).Buttons.Back = ButtonState.Pressed then
self.Exit()
override Game.Draw(gameTime) =
manager.GraphicsDevice.Clear(Color.CornflowerBlue);
base.Draw(gameTime)
end
let game = new SampleGame()
game.Run()
</code></pre>
<p>I have added the proper references by the way.
Edit: after some exploration, i found that my F# project is being compiled to 64 bit, which does not work with the 32 bit XNA dlls. However VS 2010 doesnt let me change the solution platform. How do i fix this?</p>
http://stackoverflow.com/questions/1692990/which-would-be-the-best-2d-graphics-library3Which would be the best 2D graphics library?nullDev2009-11-07T13:13:52Z2009-11-11T07:06:10Z
<p>Okay, I bet this question might have been asked dozens of times before, but at the end of the day, I am still confused.</p>
<p>I am working on a charting/plotting application. My application will also have WinForms controls.</p>
<p><strong>Edit:</strong> Actually it's little bit more than a simple charting application. I need to plot hundreds of symbols on the plot. Additionally, the plot will be interactive, e.g., selecting, moving or editing the symbols, adding/editing text on the chart itself. WPF seems to be answer as far as the replies are concerned, but I am still skeptic whether it will scale well. <em>Any second opinions?</em></p>
<p>My current options are:</p>
<ol>
<li><strong>GdiPlus</strong>: Seems best, but does not supports hardware acceleration.</li>
<li><strong>WPF</strong>: Practically, its still too slow.</li>
<li><strong>SlimDX</strong>: Might be overkill</li>
<li><strong>Tao</strong>: Don't know much yet</li>
<li><strong>XNA</strong>: ditto</li>
</ol>
<p>Since I plan to use Windows 7 features in my application, So this will be a blend of WinForms and custom graphics.</p>
<p>Any help or links comparing the above would be greatly appreciated.</p>
http://stackoverflow.com/questions/1621843/xna-zune-hd-application-wont-exit-gracefully1XNA Zune HD application won't exit gracefullyMike Hall2009-10-25T19:36:09Z2009-11-09T14:32:48Z
<p>I have and built and deployed the application created by the new project template for the zune hd. The problem is whenever the application exits, the Zune reboots. This happens when remotely debugging from the PC or when running it right from the device. It happens both in debug mode and release. I've included the basic template code, but it's pretty generic. Anyone have any ideas?</p>
<pre><code>public class DrawGame : Microsoft.Xna.Framework.Game
{
private GraphicsDeviceManager m_graphics;
private SpriteBatch m_spriteBatch;
public DrawGame()
{
m_graphics = new GraphicsDeviceManager(this);
Content.RootDirectory = "Content";
TargetElapsedTime = TimeSpan.FromSeconds(1 / 30.0);
}
protected override void Initialize()
{
base.Initialize();
}
protected override void LoadContent()
{
m_spriteBatch = new SpriteBatch(GraphicsDevice);
}
protected override void UnloadContent()
{ }
protected override void Update(GameTime gameTime)
{
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
{
this.Exit();
}
base.Update(gameTime);
}
protected override void Draw(GameTime gameTime)
{
GraphicsDevice.Clear(Color.CornflowerBlue);
m_spriteBatch.Begin();
m_spriteBatch.End();
base.Draw(gameTime);
}
}
</code></pre>
http://stackoverflow.com/questions/1152074/how-do-i-install-visual-c-express-it-says-i-have-old-version-of-visual-studio0How do I install Visual C# express?? It says I have old version of Visual Studio but I don'tAli2009-07-20T07:12:55Z2009-11-07T16:09:46Z
<p>How do I stop Visual Studio Express SP1 install detecting old version that doesn’t exist? </p>
<p>I haven't installed Visual Studio before on my computer. However when I try to install Visual Studio C# 2008 Express SP1 I get an error message:</p>
<p>"Setup has detected that this computer does not meet the requirements to install this software. These requirements must be met before you can install Microsoft Visual C++ 2008 Express Edition with SP1 - ENU"</p>
<p>Requirements and Software Prerequisites Visual Studios 2008 Service Pack 1 An earlier version of Microsoft Visual Studio 2008 has been detected on the system that must be updated to SP1 before installation can proceed. Please update all other versions of Visual Studio 2008 to SP1 by visiting Microsoft Update and then install Visual Studio 2008 Express SP1.</p>
<p>I'm not sure why I get this message since I have not installed VS2008 before. I've tried to run the VS2008 Patch Removal Tool but it says "Visual Studio 2008 Service Pack Preparation does not apply". I've applied all the patches from Microsoft Update but still get the same error. Any ideas what could be wrong?</p>
http://stackoverflow.com/questions/628751/unit-testing-code-that-doesnt-execute-immediately2Unit Testing code that doesn't execute immediatelyplemarquand2009-03-10T02:48:40Z2009-11-06T21:45:38Z
<p>Hi,</p>
<p>I am using C# 3.0 and NUnit. I'm wondering if there is a standard way to perform unit tests on code that executes after some amount of time. For example, I have a simple static class that I can register methods with, and have them be called n milliseconds later. I need to assure that code in the delegate methods is being called.</p>
<p>For example, the following test will always pass, because there are no assertions made until after the method has exited.</p>
<pre><code>[Test]
public void SampleTest()
{
IntervalManager.SetTimeout(delegate{
Assert.Equals(now.Millisecond + 100, DateTime.Now.Millisecond);
}, 100);
}
</code></pre>
<p>Is it even possible to unit test code that doesn't execute immediately?</p>
<p>Cheers,</p>
<p>Paul</p>
http://stackoverflow.com/questions/32835/xna-unit-testing3XNA Unit TestingJoel Martinez2008-08-28T17:12:57Z2009-11-06T21:26:01Z
<p>So I'm interested in hearing different thoughts about what is the best way to go about unit testing XNA Game/Applications. Astute googlers can probably figure out why I'm asking, but I didn't want to bias the topic :-)</p>
http://stackoverflow.com/questions/1678908/applying-coefficient-of-restitution-in-a-collision-resolution-method1Applying Coefficient of Restitution in a collision resolution methodRCIX2009-11-05T07:27:49Z2009-11-05T22:30:38Z
<p>I have a collision resolution method in my physics engine, that goes like this:</p>
<pre><code>Vector2 n1pos = n1.NonLinearSpace != null ? n1.NonLinearPosition : n1.Position;
Vector2 n2pos = n2.NonLinearSpace != null ? n2.NonLinearPosition : n2.Position;
Vector2 posDiff = n2pos - n1pos;
Vector2 posDiffNormal = posDiff;
posDiffNormal.Normalize();
float totalRadius = n1.Radius + n2.Radius;
float posDiffLength = posDiff.Length();
float interPenetration = totalRadius - posDiffLength;
float averageRestitution = (n1.RestitutionCoefficient + n2.RestitutionCoefficient) / 2;
Vector2 forceAmount = Vector2.Multiply(posDiffNormal, interPenetration);
Vector2 n1force =
(
(n1.Velocity * n1.Mass) +
(n2.Velocity * n2.Mass) +
n2.Mass * averageRestitution * (n2.Velocity - n1.Velocity)
) /
(n1.Mass + n2.Mass);
Vector2 n2force =
(
(n1.Velocity * n1.Mass) +
(n2.Velocity * n2.Mass) +
n1.Mass * averageRestitution * (n2.Velocity - n1.Velocity)
) /
(n1.Mass + n2.Mass);
n1.ApplyForce(???);
if (!n1.IsStatic)
{
n1.Position += ???;
}
n2.ApplyForce(???);
if (!n2.IsStatic)
{
n2.Position += ???;
}
</code></pre>
<p>Now, i can't figure out what to apply to the bodies in my engine in order to get proper coefficient of restitution working. (the ??? parts). Can someone help?</p>
http://stackoverflow.com/questions/1298184/xbox-programming9Xbox programmingunknown (google)2009-08-19T06:51:57Z2009-11-05T16:32:25Z
<p>HiHi I am 12 years old learning the language c. After c I will probably move onto objective c and develop some iPhone applications. Then I was thinking about learning c# and xna. </p>
<p>How long do you guys think it will take before I can develop a pretty decent hitting or roleplay game for the xbox?</p>
<p>My friend is also learning game design s I will have a game designer and my other friend is going to learn code like me. </p>
<p>How long do you guys think it will take before we can develop a game like I said . </p>
<p>Any tips on books or? What kind of game engine we hould use? Anything at all so we can stratup and learn that you know of. Thank you:) sorry about spelling mistakes I am typing on iPod If you don't understand something tell me</p>