User Martin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:40:18Z http://stackoverflow.com/feeds/user/108234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1832293/c-scripting-language 4 C# Scripting language Martin 2009-12-02T11:18:03Z 2009-12-20T16:16:21Z <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/1925740/c-marshal-class-available-on-xbox 2 C# Marshal class available on Xbox? Martin 2009-12-18T01:27:40Z 2009-12-18T01:33:09Z <p>does anyone know if the Marshal class is available on the xbox360, specifically the AllocHGlobal method.</p> <p>Unfortunately I don't have access to an xbox right now, otherwise I would test it myself!</p> <p>Basically I want to be able to allocate unmanaged memory myself, ie. this piece of code should work:</p> <pre><code>IntPtr ptr = Marshal.AllocHGlobal(10000); void* v = (void*)ptr.ToPointer(); byte* b = (byte*)v; b[0] = 1; b[2] = 3; Marshal.FreeHGlobal(ptr); </code></pre> <p>If anyone is in a kind mood and has access to an xbox and an XNA creators club subscription, you can stick that piece of code into the update method of your game and see if it works.</p> http://stackoverflow.com/questions/1910514/why-is-the-second-databaseconflictexception-being-thrown/1910677#1910677 0 Answer by Martin for why is the second DatabaseConflictException being thrown? Martin 2009-12-15T21:55:17Z 2009-12-15T21:55:17Z <p>If this is something you need to keep retrying, then an obvious reordering of the code is:</p> <pre><code>bool success = false; while (!success) { try { database.SubmitChanges(); success = true; } catch (ChangeConflictException) { database.ChangeConflicts.ResolveAll(RefreshMode.KeepChanges); } } </code></pre> <p>I don't know much about databases, so I'll stay away from theorising about what your actual problem is, but maybe this will fix it :/</p> http://stackoverflow.com/questions/1910300/2d-rendering-with-per-pixel-lighting-normal-map-directx/1910663#1910663 0 Answer by Martin for 2D rendering with per-pixel lighting/normal map - directX Martin 2009-12-15T21:52:38Z 2009-12-15T21:52:38Z <p>I'm more experienced with XNA rather than directX, but the principle is the same.</p> <p>You need a normal map, this tells your shader exactly what the surface normal is at a given point. You then need your quads to be texture mapped (they probably already are, so this isn't really any extra work). Then you draw the quads with a pixel shader, inside the shader you do something like:</p> <pre><code>//This shader only handles one directional light, there are various tecnhiques for handling multiple lights. float3 LightDirection; //Normal map, set this before rendering the quad Texture NormalMap; //sampler sampler normalSampler = sampler_state { texture = &lt;NormalMap&gt;; } //Diffusemap, set this before rendering the quad. This is just your normal texture you want applied to the quad Texture DiffuseMap; //sampler sampler diffuseSampler = sampler_state { texture = &lt;DiffuseMap&gt;; } /* you probably need a vertex shader to run all your translations etc, that's pretty bog standard stuff so I won't include one here */ float4 PixelShader(float2 texCoord : TEXCOORD0) : COLOR0 { //standard directional lighting equation with normals float3 Normal = tex2D(normalSampler, texCoord); float dot = dot(LightDirection, Normal); return tex2D(normalSampler, texCoord) * dot; } </code></pre> http://stackoverflow.com/questions/1908995/xna-dynamic-content-loading-without-game-studio-installed/1910579#1910579 1 Answer by Martin for XNA: Dynamic content loading without Game Studio installed? Martin 2009-12-15T21:36:23Z 2009-12-15T21:36:23Z <p>For loading a texture you can use <a href="http://msdn.microsoft.com/en-us/library/microsoft.xna.framework.graphics.texture2d.fromfile.aspx" rel="nofollow">Texture2D.FromFile</a> method.</p> <p>As for models I don't think there is a way to load them. If you just want to load vertex and index data then loading that from a file into buffers is fairly simple. If, however, you actually want a model instance then I know of no way (other than using the content pipeline)</p> http://stackoverflow.com/questions/1870383/python-to-generate-output-ready-for-excel/1870411#1870411 0 Answer by Martin for Python to generate output ready for Excel Martin 2009-12-08T22:42:19Z 2009-12-08T22:42:19Z <p>Reformat it as CSV. It's dead easy to do, is fairly human readable, and can be read by loads of pieces of spreadsheet software.</p> http://stackoverflow.com/questions/1789684/webcam-calling-in-xna/1790312#1790312 0 Answer by Martin for webcam calling in xna Martin 2009-11-24T14:09:25Z 2009-12-01T15:44:30Z <p>I ran into this problem myself a while ago, it's quite a messy solution that I came up with.</p> <p>First, you need to use the motion_src library, you can find that here:</p> <p><a href="http://www.codeproject.com/KB/audio-video/Motion%5FDetection.aspx" rel="nofollow">http://www.codeproject.com/KB/audio-video/Motion%5FDetection.aspx</a></p> <p>That tutorial is all about motion detection, but if you download the demo code you can take the bit where it captures the input from the camera.</p> <p>Now, add that as a reference to your xna project.</p> <p>Once you have the system set up capturing a feed from the camera (all the details are in that tutorial, I won't repeat them here) you'll need to copy the feed (which is captured into a System.Drawing.Bitmap into an xna texture.</p> <pre><code>Texture2D image; b = (System.Drawing.Bitmap)camera.LastFrame.Clone(); for (int j = 0; j &lt; image.Height; j++) { for (int i = 0; i &lt; image.Width; i++) { c = b.GetPixel(i, j); colours[i + j * image.Width] = new Color(c.R, c.G, c.B, byte.MaxValue); } } image.SetData&lt;Color&gt;(colours); </code></pre> <p>You can then display the <em>image</em> texture using a normal call to spritebatch :)</p> http://stackoverflow.com/questions/1821300/why-do-garbage-collectors-freeze-execution 5 Why do garbage collectors freeze execution? Martin 2009-11-30T17:50:33Z 2009-11-30T18:37:20Z <p>I was thinking about garbage collection on the way home, and I began wondering, why does the garbage collector totally freeze execution of a program? Personally I would have designed it to block any threads which try to allocate a new object, but threads which were running would be left alone. I can't imagine any situation where this would be a problem compared to how a garbage collector currently works.</p> http://stackoverflow.com/questions/1820210/does-lock-allocate 1 Does lock allocate Martin 2009-11-30T14:41:16Z 2009-11-30T15:00:27Z <p>I read somewhere, although I can't remember where, that using the lock keyword in C# can allocate.</p> <p>I know that trying to lock a ValueType will box the valuetype, but are there any other situations?</p> <p>EDIT::</p> <ol> <li>Everyone seems to be answer the valuetype case, I already know this!</li> <li>I also know what locks are and how to use them in great depth, general advice on best practice is nice - but useless ;)</li> <li>I need to know because I'm building an XNA app for deployment on the xbox. The xbox garbage collector is really slow - this means I need to keep allocations to a minimum, preferably non-existent (which prevents the collector from ever running)</li> </ol> http://stackoverflow.com/questions/1816419/does-passing-a-struct-into-an-interface-field-allocate 3 Does passing a struct into an interface field allocate? Martin 2009-11-29T19:00:54Z 2009-11-30T00:05:23Z <p>I have a structure something like this</p> <pre><code>struct MyStructure :IFoo { } </code></pre> <p>and a method like this:</p> <pre><code>public BarThisFoo(IFoo a) { } </code></pre> <p>my question is does passing the structure into that method "box" the structure, thus causing a garbage allocation?</p> <p>Addendum: Before anyone says it, garbage collection is not free in this application, it's actually very sensitive to garbage collections, so allocation free code is important.</p> http://stackoverflow.com/questions/1784594/why-is-this-haskell-incorrect 2 Why is this Haskell incorrect? Martin 2009-11-23T17:12:42Z 2009-11-24T08:47:31Z <p>I have a Haskell file which looks like this:</p> <pre><code>longest::[Integer]-&gt;[Integer]-&gt;[Integer] max a b = if length a &gt; length b then a else b llfs::[Integer]-&gt;Integer llfs li = length(foldl longest group(li)) llfs([1, 2, 3, 3, 4, 5, 1, 1, 1]) </code></pre> <p>Which should print out the result of the function call at the end, however when I run the file I get this error:</p> <pre><code>C:\Users\Martin\Desktop\Haskell\Q1.hs:7:33: parse error (possibly incorrect indentation) </code></pre> <p>I don't understand what I'm doing wrong.</p> <p>Edit:: Now I now, gotta call things inside a main function. However having fixed that to look like this:</p> <pre><code>import List longest::[Integer]-&gt;[Integer]-&gt;[Integer] longest a b = if length a &gt; length b then a else b llfs::[Integer]-&gt;Integer llfs li = length(foldl longest group(li)) main = print (llfs [1, 2, 3, 3, 4, 5, 1, 1, 1]) </code></pre> <p>I now get this:</p> <pre><code>C:\Users\Martin\Desktop\Haskell\Q1.hs:7:31: Couldn't match expected type `[Integer]' against inferred type `[a] -&gt; [[a]]' In the second argument of `foldl', namely `group' In the first argument of `length', namely `(foldl longest group (li))' In the expression: length (foldl longest group (li)) </code></pre> <p>This one looks a little more difficult to solve!</p> http://stackoverflow.com/questions/1785279/generating-an-infinite-sequence-in-haskell 0 Generating an infinite sequence in Haskell Martin 2009-11-23T19:05:46Z 2009-11-23T21:40:33Z <p>I know that infinite sequences are possible in Haskell - however, I'm not entirely sure how to generate one</p> <p>Given a method</p> <pre><code>generate::Integer-&gt;Integer </code></pre> <p>which take an integer and produces the next integer in the sequence, how would I build an infinite sequence out of this?</p> http://stackoverflow.com/questions/1768197/bounding-ellipse 1 Bounding ellipse Martin 2009-11-20T03:40:24Z 2009-11-22T07:42:12Z <p>I have been given an assignement for a graphics module, one part of which is to calculate the minimum bounding ellipse of a set of arbitrary shapes. The ellipse doesn't have to be axis aligned.</p> <p>This is working in java (euch) using the AWT shapes, so I can use all the tools shape provides for checking containment/intersection of objects.</p> http://stackoverflow.com/questions/1604220/interacting-with-svn-from-appengine 3 Interacting with SVN from appengine Martin 2009-10-21T23:28:20Z 2009-11-21T01:47:09Z <p>I've got a couple of projects where it would be useful to be able to interact with an SVN server from appengine.</p> <ul> <li>Pull specific files from the svn (fairly easy, since there is a web interface which I can grab the data off automatically, but how do I authenticate)</li> <li>Commit changes to the svn (this is the really hard/important part)</li> <li>Possibly run an SVN server (from an appengine app, I'm guessing this isn't possible)</li> </ul> <p>I would prefer a python solution, but I can survive with java if I must</p> http://stackoverflow.com/questions/1763199/surjective-functions 3 Surjective functions Martin 2009-11-19T13:12:20Z 2009-11-19T15:28:47Z <p>As an extension question my lecturer for my maths in computer science module asked us to find examples of when a surjective function is vital to the operation of a system, he said he can't think of any!</p> <p>I've been doing some googling and have only found a single outdated paper about non surjective rounding functions creating some flaws in some cryptographic systems.</p> http://stackoverflow.com/questions/1749234/nix-cloud-cluster-solutions-for-bulding-fast-scalable-web-services/1750431#1750431 0 Answer by Martin for (*nix) Cloud/Cluster solutions for bulding fast & scalable web-services Martin 2009-11-17T17:25:47Z 2009-11-17T17:25:47Z <p>It's hard to make specific recommendations since you've been a bit vague, but I would recommend <a href="http://code.google.com/appengine/" rel="nofollow">Google Appengine</a> for basically any web service. It's reliable, easy to use, and is built on the google architecture so is fast and reliable.</p> http://stackoverflow.com/questions/1738083/fetching-the-vertices-from-the-backbuffer-hlsl-on-xna/1740804#1740804 1 Answer by Martin for Fetching the vertices from the backbuffer (HLSL) on XNA Martin 2009-11-16T08:20:49Z 2009-11-16T09:57:08Z <p>As far as I know this isn't generally possible.</p> <p>What exactly are you trying to do? There is probably another solution</p> <p>EDIT:: Taking into account the comment. If all you want to do is general vector calculations on the GPU try doing them in the pixel shader rather than the vertex shader.</p> <p>So for example, say you want to do cross two vectors, first we need to write the data into a texture</p> <pre><code>//Data must be in the 0-1 range before writing into the texture, so you'll need to scale everything appropriately Vector4 a = new Vector4(1, 0, 1, 1); Vector4 b = new Vector4(0, 1, 0, 0); Texture2D dataTexture = new Texture2D(device, 2, 1); dataTexture.SetData&lt;Vector4&gt;(new Vector4[] { a, b }); </code></pre> <p>So now we've got a 2*1 texture with the data in, render the texture simply using spritebatch and an effect:</p> <pre><code>Effect gpgpu; gpgpu.Begin(); gpgpu.CurrentTechnique = gpgpu.Techniques["DotProduct"]; gpgpu.CurrentTechnique.Begin(); spriteBatch.Begin(); gpgpu.CurrentTechnique.Passes[0].Begin(); spriteBatch.Draw(dataTexture, new Rectangle(0,0,2,1), Color.White); spriteBatch.end(); gpgpu.CurrentTechnique.Passes[0].End(); gpgpu.CurrentTechnique.End(); </code></pre> <p>All we need now is the gpgpu effect I've shown above. That's just a standard post processing shader, looking something like this:</p> <pre><code>sampler2D DataSampler = sampler_state { MinFilter = Point; MagFilter = Point; MipFilter = Point; AddressU = Clamp; AddressV = Clamp; }; float4 PixelShaderFunction(float2 texCoord : TEXCOORD0) : COLOR0 { float4 A = tex2D(s, texCoord); float4 B = tex2D(s, texCoord + float2(0.5, 0); //0.5 is the size of 1 pixel, 1 / textureWidth float d = dot(a, b) return float4(d, 0, 0, 0); } technique DotProduct { pass Pass1 { PixelShader = compile ps_3_0 PixelShaderFunction(); } } </code></pre> <p>This will write out the dot product of A and B into the first pixel, and the dot product of B and B into the second pixel. Then you can read these answers back (ignoring the useless ones)</p> <pre><code>Vector4[] v = new Vector4[2]; dataTexture.GetData(v); float dotOfAandB = v[0]; float dotOfBandB = v[1]; </code></pre> <p>tada! There are a whole load of little issues with trying to do this on a larger scale, comment here and I'll try to help you with any you run into :)</p> http://stackoverflow.com/questions/1651487/python-parsing-bracketed-blocks 2 Python parsing bracketed blocks Martin 2009-10-30T18:18:26Z 2009-11-03T22:26:36Z <p>What would be the best way in python to parse out chunks of text contained in matching brackets?</p> <p>"{ { a } { b } { { { c } } } }"</p> <p>should initially return:</p> <p>[ "{ a } { b } { { { c } } }" ]</p> <p>putting that as an input should return:</p> <p>[ "a", "b", "{ { c } }" ]</p> <p>which should return:</p> <p>[ "{ c }" ]</p> <p>[ "c" ]</p> <p>[]</p> http://stackoverflow.com/questions/1561655/google-wave-robot-inline-reply 5 Google wave robot inline reply Martin 2009-10-13T17:14:10Z 2009-10-30T10:32:15Z <p>I've been working on my first robot for google wave recently, a vital part of what it does is to insert inline replies into a blip. I can't for the life of me figure out how to do this!</p> <p>The API docs have a function <a href="http://wave-robot-python-client.googlecode.com/svn/trunk/pydocs/waveapi.ops.OpBasedDocument-class.html#InsertInlineBlip" rel="nofollow">InsertInlineBlip</a> which sounded promising, however calling that doesn't appear to do anything!</p> <p>EDIT:: It seems that this is a known bug. However, the question still stands what is the correct way to insert an inline blip? I'm assuming something like this:</p> <pre><code>inline = blip.GetDocument().InsertInlineBlip(positionInText) inline.GetDocument().SetText("some text") </code></pre> http://stackoverflow.com/questions/738039/whats-your-most-reused-class/1604263#1604263 1 Answer by Martin for What's your most reused class? Martin 2009-10-21T23:44:22Z 2009-10-21T23:44:22Z <p>A ConcurrentDictionary I wrote, which I now seem to use everywhere (I write lots of parallel programs)</p> http://stackoverflow.com/questions/1596403/c-network-encoding 0 C# Network encoding Martin 2009-10-20T18:14:43Z 2009-10-21T07:12:16Z <p>I'm working on a networking application in C#, sending a lot of plain numbers across the network. I discovered the <em>IPAddress.HostToNetworkOrder</em> and <em>IPAddress.NetworkToHostOrder</em> methods, which are very useful, but they left me with a few questions:</p> <ol> <li><p><strong>I know I need to encode and decode integers, what about unsigned ones?</strong> I think yes, so at the moment I'm doing it by casting a pointer to the unsigned int into a pointer to an int, and then doing a network conversion for the int (since there is no method overload that takes unsigned ints)</p> <pre><code>public static UInt64 HostToNetworkOrder(UInt64 i) { Int64 a = *((Int64*)&amp;i); a = IPAddress.HostToNetworkOrder(a); return *((UInt64*)&amp;a); } public static UInt64 NetworkToHostOrder(UInt64 a) { Int64 i = *((Int64*)&amp;a); i = IPAddress.HostToNetworkOrder(i); return *((UInt64*)&amp;i); } </code></pre> <p><em>2. <strong>What about floating point numbers (single and double)</strong>. I think no, however If I do need to should I do a similar method to the unsigned ints and cast a single pointer into a int pointer and convert like so?</em></p></li> </ol> <p>EDIT:: Jons answer doesn't answer the second half of the question (it doesn't really answer the first either!), I would appreciate someone answering part 2</p> http://stackoverflow.com/questions/1582754/does-using-a-delegate-create-garbage 3 Does using a delegate create garbage Martin 2009-10-17T17:36:40Z 2009-10-17T21:23:48Z <p>I'm working on a game for the xbox360, using XNA. On the Xbox the garbage collector performs rather badly compared to the one on a PC, so keeping garbage generated to a minimum is vital for a smoothly performing game.</p> <p>I remember reading once that calling a delegate creates garbage, but now for the life of me can't find any references to delegates creating garbage. Did I just make this up or are delegates messy?</p> <p>If delegates are messy, bonus points for suggesting a workaround.</p> <pre><code>public delegate T GetValue&lt;T&gt;(T value, T[] args); public static T Transaction&lt;T&gt;(GetValue&lt;T&gt; calculate, ref T value, params T[] args) where T : class { T newValue = calculate(value, args); return foo(newValue); } </code></pre> <p>My code looks vaguely like that at the moment, the only solution I can think of to rid myself of delegates is to pass in a class which inherits an interface IValueCalculator, and then I can call the method on that interface, that's not really very neat though!</p> http://stackoverflow.com/questions/1547856/crazy-python-behaviour 1 Crazy python behaviour Martin 2009-10-10T12:45:38Z 2009-10-10T12:51:04Z <p>I have a little piece of python code in the server script for my website which looks a little bit like this:</p> <pre><code>console.append([str(x) for x in data]) console.append(str(max(data))) </code></pre> <p>quite simple, you might think, however the result it's outputting is this:</p> <pre><code>['3', '12', '3'] 3 </code></pre> <p>for some reason python thinks 3 is the max of [3,12,3]!</p> <p>So am I doing something wrong? Or this is misbehaviour on the part of python?</p> http://stackoverflow.com/questions/1533694/graph-expansion 1 Graph Expansion Martin 2009-10-07T19:32:49Z 2009-10-07T21:04:18Z <p>I'm currently working on an interesting graph problem, I can't find any algorithms or other stackoverflow questions which mention anything like this.</p> <p><strong>If I have a graph (undirected, cyclic) and a list of commonly used paths, what is the best way to reduce the average path length by adding in N more edges?</strong></p> <p>EDIT:: Important point, which might help, all paths start at the same node.</p> http://stackoverflow.com/questions/1533694/graph-expansion/1534177#1534177 0 Answer by Martin for Graph Expansion Martin 2009-10-07T21:04:18Z 2009-10-07T21:04:18Z <p>Another possible solution, which sounds like it might be the best heuristic, is to take the weighted average of all the end nodes (weighted by path importance), then find the node which is closest to the computed average point. Connect to that node.</p> <p>Obviously that only works if the nodes are laid out in space somehow, but it's a good analogy.</p> http://stackoverflow.com/questions/1533694/graph-expansion/1533704#1533704 0 Answer by Martin for Graph Expansion Martin 2009-10-07T19:34:05Z 2009-10-07T19:34:05Z <p>Answering my own question, to cover what I've already considered.</p> <p>The obvious solution is simply to sort the common paths by order, and slot in a connection between the two ends, and keep doing this until you run out of edges to insert. However, I suspect there is a more intelligent solution.</p> http://stackoverflow.com/questions/1408407/circle-aabb-containment-test 0 circle-AABB containment test Martin 2009-09-11T00:19:39Z 2009-09-11T21:52:41Z <p>I'm currently in the throes of writing a system based on subdividing space (it's for a game), I need to be able to test if a circle completely contains a square.</p> <p>For bonus points, I should point out that my system works in N dimensions, so if your algorithm works by looping through each dimension and doing something, present it as such ;)</p> http://stackoverflow.com/questions/1396651/regular-space-subdivision 0 Regular space subdivision Martin 2009-09-08T22:20:56Z 2009-09-09T01:09:57Z <p>I am writing an application which subdivides an N-dimensional axis aligned bounding box into smaller N-dimensional bounding boxes, I need an algorithm which will do this. <br /> For example:</p> <p>in 1 dimension a "bounding box" is simply a length<br /> e.g. { Min=0, Max=100 }<br /> which would be subdivided into<br /> {Min=0, Max=50} and {Min=50, Max=100}<br /></p> <p>in 2 dimensions a "bounding box" is a square<br /> e.g. {Min=[0,0], Max=[100,100]}<br /> would be divided into<br /> {Min=[0,0], Max=[50,50]}<br /> {Min=[0,50], Max=[50,100]}<br /> {Min=[50,0], Max=[100,50]}<br /> {Min=[50,50], Max=[100,100]}<br /></p> <p>And so on, all I need is a description of an algorithm for doing this, language doesn't particularly matter, since once I know how to do it I can translate it into the language of choice (C# in this case)</p> <p>EDIT:: In response to questions in comments:<br /></p> <ul> <li>subdivisions must always be equal (as in the examples)</li> <li>boundaries are floating points, so divisibility by two isn't a problem</li> </ul> http://stackoverflow.com/questions/1388474/graph-algorithm-looking-to-improve-scalability/1396684#1396684 0 Answer by Martin for Graph algorithm - Looking to improve scalability Martin 2009-09-08T22:32:59Z 2009-09-08T22:32:59Z <p>A simple modification (depending on how you use the data) might be to load the paths lazily, that way if you tend to only use a few paths you'll never even generate some paths.</p> <p>Of course, this depends entirely on expected use</p> http://stackoverflow.com/questions/1359893/problem-with-hlsl-looping-sampling 1 Problem with HLSL looping/sampling Martin 2009-08-31T23:40:15Z 2009-09-01T09:05:50Z <p>I have a piece of HLSL code which looks like this:</p> <pre><code>float4 GetIndirection(float2 TexCoord) { float4 indirection = tex2D(IndirectionSampler, TexCoord); for (half mip = indirection.b * 255; mip &gt; 1 &amp;&amp; indirection.a &lt; 128; mip--) { indirection = tex2Dlod(IndirectionSampler, float4(TexCoord, 0, mip)); } return indirection; } </code></pre> <p>The results I am getting are consistent with that loop only executing once. I checked the shader in PIX and things got even more weird, the yellow arrow indicating position in the code gets to the loop, goes through it once, and jumps back to the start, at that point the yellow arrow never moves again but the cursor moves through the code and returns a result (a bug in PIX, or am I just using it wrong?)</p> <p>I have a suspicion this may be a problem to do with texture reads getting moved outside the loop by the compiler, however I thought that didn't happen with tex2Dlod since I'm setting the LOD manually :/</p> <p>So:</p> <p>1) What's the problem?</p> <p>2) Any suggested solutions? </p> http://stackoverflow.com/questions/1832293/c-scripting-language/1936243#1936243 Comment by Martin on C# Scripting language Martin 2009-12-21T02:36:52Z 2009-12-21T02:36:52Z The javascript approach was looking god, but technical issues with type safety sank it, so this is the new approach I'm going to try :D http://stackoverflow.com/questions/1908995/xna-dynamic-content-loading-without-game-studio-installed/1910579#1910579 Comment by Martin on XNA: Dynamic content loading without Game Studio installed? Martin 2009-12-21T02:35:57Z 2009-12-21T02:35:57Z oh heh small world in the SO XNA section ;) I'll go check it out http://stackoverflow.com/questions/1908995/xna-dynamic-content-loading-without-game-studio-installed/1910579#1910579 Comment by Martin on XNA: Dynamic content loading without Game Studio installed? Martin 2009-12-20T12:58:07Z 2009-12-20T12:58:07Z glad to help :) http://stackoverflow.com/questions/1929753/optimize-color-manipulation-on-xna Comment by Martin on Optimize color manipulation on XNA Martin 2009-12-19T15:39:23Z 2009-12-19T15:39:23Z You could try calculating tile colour on the GPU of course... http://stackoverflow.com/questions/1908995/xna-dynamic-content-loading-without-game-studio-installed/1910579#1910579 Comment by Martin on XNA: Dynamic content loading without Game Studio installed? Martin 2009-12-19T15:29:04Z 2009-12-19T15:29:04Z If the model were in xnb format you could do it with the normal Content.Load, the problem is that the content pipeline for compiling resources from formats other than xnb isn't available on the redist of XNA (except for images, they're an exception that proves the rule). If you wanted to import models you'd have to use a filestream and parse the model file manually. Which is doable but not exactly trivial. Your best bet might be to look for a library for doing so, saving you at least parsing the model file, leaving you with the job of just putting it into an appropriate form to render with XNA http://stackoverflow.com/questions/1925740/c-marshal-class-available-on-xbox/1925759#1925759 Comment by Martin on C# Marshal class available on Xbox? Martin 2009-12-19T15:26:24Z 2009-12-19T15:26:24Z My google foo is obviously low :( What did you search for? http://stackoverflow.com/questions/1925740/c-marshal-class-available-on-xbox Comment by Martin on C# Marshal class available on Xbox? Martin 2009-12-18T01:38:58Z 2009-12-18T01:38:58Z I could, but performance of the GC scales with size of the heap. So pooling lots of large arrays would be a generally bad idea. Also, this code is multithreaded and a thread safe pool is a real pain in the arse to build http://stackoverflow.com/questions/1925740/c-marshal-class-available-on-xbox Comment by Martin on C# Marshal class available on Xbox? Martin 2009-12-18T01:36:23Z 2009-12-18T01:36:23Z Because the xbox garbage collector sucks, so allocating lots and lots of things only to lose the references is a bad idea. I'm writing some code which needs very short lived large arrays of numbers, perfect for a little bit of manual memory management. http://stackoverflow.com/questions/1925740/c-marshal-class-available-on-xbox/1925759#1925759 Comment by Martin on C# Marshal class available on Xbox? Martin 2009-12-18T01:35:14Z 2009-12-18T01:35:14Z Damn, I even searched on the XNA forums for this. Thanks. http://stackoverflow.com/questions/1908995/xna-dynamic-content-loading-without-game-studio-installed/1910579#1910579 Comment by Martin on XNA: Dynamic content loading without Game Studio installed? Martin 2009-12-17T14:18:44Z 2009-12-17T14:18:44Z What do you need from your model class? Having a vertex buffer and an index buffer loaded in from a file is quite simple, doing things with animations etc will be quite difficult http://stackoverflow.com/questions/1914115/converting-color-value-from-float-0-1-to-byte-0-255/1914157#1914157 Comment by Martin on Converting color value from float 0..1 to byte 0..255 Martin 2009-12-16T14:04:49Z 2009-12-16T14:04:49Z floor(clamp(f, 0, 0.9999999)*256) http://stackoverflow.com/questions/1910514/why-is-the-second-databaseconflictexception-being-thrown/1910677#1910677 Comment by Martin on why is the second DatabaseConflictException being thrown? Martin 2009-12-15T22:17:45Z 2009-12-15T22:17:45Z What kind of concurrency do you have going on in your system? http://stackoverflow.com/questions/1910514/why-is-the-second-databaseconflictexception-being-thrown/1910677#1910677 Comment by Martin on why is the second DatabaseConflictException being thrown? Martin 2009-12-15T22:09:24Z 2009-12-15T22:09:24Z try resolving without keeping changes? http://stackoverflow.com/questions/1910633/are-spinlocks-a-good-choice-for-a-memory-allocator/1910652#1910652 Comment by Martin on Are spinlocks a good choice for a memory allocator? Martin 2009-12-15T22:01:09Z 2009-12-15T22:01:09Z They're pointless on single threaded programs, but even a single core computer running multiple threads needs locks. Using a spinlock is so cheap that a single thread program would have no slow down (it's a few instructions) http://stackoverflow.com/questions/1910300/2d-rendering-with-per-pixel-lighting-normal-map-directx/1910577#1910577 Comment by Martin on 2D rendering with per-pixel lighting/normal map - directX Martin 2009-12-15T21:58:44Z 2009-12-15T21:58:44Z All of your normals are the same? <i>exactly</i> the same? Then all you need to do is modify the approach I suggested in my answer, but instead of having a normal map simply pass in the one single normal you need. For added efficiency just pass the dot product of the light direction and the normal in directly.