User Jonathan C Dickinson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:33:54Z http://stackoverflow.com/feeds/user/24064 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1302237/marshalling-codeelements-to-an-intptr-in-c/1322084#1322084 1 Answer by Jonathan C Dickinson for Marshalling CodeElements to an IntPtr in C# Jonathan C Dickinson 2009-08-24T12:30:33Z 2009-08-24T12:30:33Z <p>As soon as you see a star or ampersand you should start by converting it to ref (safe version of a pointer). I have had reference types magically start working when I used the ref keyword in the past (which is highly contradictory - but I think it's one of those interop things):</p> <pre><code>[DllImport("example.dll")] private static extern void DoStuff(ref CodeElements codeElements); </code></pre> <p>You could also try:</p> <pre><code>[DllImport("example.dll")] private static extern void DoStuff([In, Out] ref CodeElements codeElements); </code></pre> <p>Or one of the permutations of those attributes.</p> <p>One thing you might want to try is to use the MFC (I think, been a long time since C++) to make the COM library. Don't use a native call, <a href="http://msdn.microsoft.com/en-us/library/z6tx9dw3.aspx" rel="nofollow">export the thing as a type library</a> and add it as a reference in Visual Studio (yes, it's that easy). Thus you will land up with something like:</p> <pre><code>myCoolClass.DoStuff(codeElements); </code></pre> <p>You might also want to pin it (if you need to pin it the error will be intermittent). I can't remember if the <a href="http://msdn.microsoft.com/en-us/library/8bwh56xe.aspx" rel="nofollow">RCW</a> will do that for you (I am almost certain it will), so here is the code to do it:</p> <pre><code>GCHandle handle = new GCHandle(); try { handle = GCHandle.Alloc(fooz, GCHandleType.Pinned); // Use fooz. } finally { if (handle.IsAllocated) handle.Free(); } </code></pre> http://stackoverflow.com/questions/1194876/redirect-configurationmanager-to-another-file 1 Redirect ConfigurationManager to Another File Jonathan C Dickinson 2009-07-28T15:22:32Z 2009-08-13T09:37:42Z <p>I am looking to redirect the <em>standard</em> .Net ConfigurationManager class to another file; <em>entirely</em>. The path is determined at runtime so <strong>I can't use configSource</strong> or such (this is not a duplicate question - I have looked at the others).</p> <p>I am essentially trying to duplicate what ASP.Net is doing behind the covers. Thus not only my classes should read from the new config file, but also any standard .Net stuff (the one I am specifically trying to get to work is the system.codeDom element).</p> <p>I have cracked open Reflector and started looking at how ASP.Net does it - it's pretty hairy and completely undocumented. I was hoping someone else has reverse-engineered the process. Not necessarily looking for a complete solution (would be nice) but merely <em>documentation</em>.</p> http://stackoverflow.com/questions/1194876/redirect-configurationmanager-to-another-file/1271018#1271018 0 Answer by Jonathan C Dickinson for Redirect ConfigurationManager to Another File Jonathan C Dickinson 2009-08-13T09:37:42Z 2009-08-13T09:37:42Z <p>I finally figured it out. There is a public <em>documented</em> means to do this - but it's hidden away in the depths of the .Net framework. Changing your own config file requires reflection (to do no more than refresh the ConfigurationManager); but it is possible to alter the configuration file of an AppDomain that you create via public APIs.</p> <p>No thanks to the Microsoft Connect feature I submitted, here is the code:</p> <pre><code>class Program { static void Main(string[] args) { // Setup information for the new appdomain. AppDomainSetup setup = new AppDomainSetup(); setup.ConfigurationFile = "C:\\my.config"; // Create the new appdomain with the new config. AppDomain d2 = AppDomain.CreateDomain("customDomain", AppDomain.CurrentDomain.Evidence, setup); // Call the write config method in that appdomain. CrossAppDomainDelegate del = new CrossAppDomainDelegate(WriteConfig); d2.DoCallBack(del); // Call the write config in our appdomain. WriteConfig(); Console.ReadLine(); } static void WriteConfig() { // Get our config file. Configuration c = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); // Write it out. Console.WriteLine("{0}: {1}", AppDomain.CurrentDomain.FriendlyName, c.FilePath); } } </code></pre> <p>Output:</p> <pre><code>customDomain: C:\my.config InternalConfigTest.vshost.exe: D:\Profile\...\InternalConfigTest.vshost.exe.config </code></pre> http://stackoverflow.com/questions/1204804/word-wrap-for-label-in-winforms/1204821#1204821 7 Answer by Jonathan C Dickinson for word wrap for label in winforms Jonathan C Dickinson 2009-07-30T06:37:06Z 2009-07-30T06:37:06Z <p>The quick answer: switch <strong>off</strong> AutoSize.</p> <p>The big problem here is that the label will not change it's height automatically (only width). To get this right you will need to subclass the label and include vertical resize logic.</p> <p>Basically what you need to do in OnPaint is:</p> <ol> <li>Measure the height of the text (Graphics.MeasureString).</li> <li>If the label height is not equal to the height of the text set the height and return.</li> <li>Draw the text.</li> </ol> <p>You will also need to set the ResizeRedraw style flag in the constructor.</p> http://stackoverflow.com/questions/1118754/mmc-net-runtime-version 0 MMC .Net Runtime Version Jonathan C Dickinson 2009-07-13T10:38:50Z 2009-07-22T07:07:00Z <p>Hey All,</p> <p>I am currently developing an MMC snap-in but have hit a big snag - it's done using the .Net 4.0 framework; and MMC is loading a previous version of the runtime.</p> <p>Using an older version of the runtime isn't really an option, as the entire project is written for 4.0 (so far 5000 LOC); this is merely a management front-end (fancy that :P).</p> <p>I checked the MMC registry key and it has version v4.0.20506 there. I can't find any other MMC .Net interop configuration anywhere.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/7017/what-is-the-best-way-to-draw-skinnable-buttons-in-a-video-game/1038162#1038162 0 Answer by Jonathan C Dickinson for What is the best way to draw skinnable "buttons" in a video game? Jonathan C Dickinson 2009-06-24T12:49:17Z 2009-06-24T12:49:17Z <p>It should be possible with shaders. You would probably have to do texel lookups, but it would cut down on the number of triangles in a complex UI.</p> http://stackoverflow.com/questions/838484/any-suggestions-for-a-crash-course-on-design-patterns 4 Any suggestions for a crash course on design patterns? Jonathan C Dickinson 2009-05-08T06:35:29Z 2009-06-23T15:24:26Z <p>I am going to be giving developers at my company a crash course on design patterns (after coming across some scary code recently).</p> <p>One of the most important things I want to put across is that they save time in both the long and short term (which they really do!) - as developers here are put under quite a bit of time strain. All in all I need to demonstrate the every day benefits - things that will let them go home early.</p> <p>Telling them that it might mean less bugs probably isn't going to hit home. I need stuff that is going to sink in.</p> <p>I will probably do three to four sessions of an hour each. Do you guys have any suggestions on what to touch on/to do?</p> http://stackoverflow.com/questions/1030295/make-y-up-move-origin-c-system-drawing-graphics/1031033#1031033 1 Answer by Jonathan C Dickinson for Make +y UP, Move Origin C# System.Drawing.Graphics Jonathan C Dickinson 2009-06-23T07:06:07Z 2009-06-23T07:06:07Z <p>One solution would be to use the TranslateTransform property. Then, instead of using the Point/PointF structs you could create a FlippedPoint/FlippedPointF structs of your own that have implicit casts to Point/PointF (but by casting them the coords get flipped):</p> <pre><code>public struct FlippedPoint { public int X { get; set; } public int Y { get; set; } public FlippedPoint(int x, int y) : this() { X = x; Y = y; } public static implicit operator Point(FlippedPoint point) { return new Point(-point.X, -point.Y); } public static implicit operator FlippedPoint(Point point) { return new FlippedPoint(-point.X, -point.Y); } } </code></pre> http://stackoverflow.com/questions/369074/should-we-run-anti-virus-software-on-our-dedicated-sql-server/953011#953011 0 Answer by Jonathan C Dickinson for Should we run anti-virus software on our dedicated sql server? Jonathan C Dickinson 2009-06-04T20:51:40Z 2009-06-04T20:51:40Z <p>I certainly wouldn't risk no anti-virus, but it is a big performance hit. Making the assumption that no-one will ever use that machine is dangerous (because you might need to install updates etc.), I guess a good compromise would be:</p> <ol> <li>Install the Antivirus.</li> <li>Lock the machine down - e.g. no Windows File Sharing, small set of authorized users, etc.</li> <li>Turn the antivirus resident shield off.</li> <li>When you copy something onto the machine update the AV and scan the file before opening it.</li> </ol> <p>This is based heavily on the assumption that the people who you allow to log into the machine are <em>responsible</em>. And as always, make sure you are backing up often onto disconnected media (e.g. tapes/DVDs/Internet etc.) - you never know when the next blaster is going to strike.</p> http://stackoverflow.com/questions/952023/in-c-net-how-does-one-access-a-control-from-a-static-method/952188#952188 0 Answer by Jonathan C Dickinson for In C# .net, How does one access a control from a static method? Jonathan C Dickinson 2009-06-04T18:06:49Z 2009-06-04T18:06:49Z <p>Seeing as you are new to C# I will keep this as simple as possible. You should have a Program.cs file that has a single method Main (this would have been generated by Visual Studio). You will need to make it look like the following:</p> <pre><code>class Program { public static readonly MainForm MainForm; static void Main() { Application.EnableVisualStyles(); MainForm = new MainForm(); // These two lines Application.Run(MainForm); // are the important ones. } } </code></pre> <p>Now in your incoming message you will have a way to access that form.</p> <pre><code> public void IncomingMessage(IncomingMessageType message) { Program.MainForm.RecieveMSG(message); } </code></pre> <p>That method in the form would then be a instance (not static) method. E.g.</p> <pre><code> public void RecieveMSG(IncomingMessageType message) // NB: No static { txtDisplayMessages.Text = message.Text; // Or whatever. } </code></pre> <p>There are better ways to do it - but as a beginner I think this would be the best approach.</p> <p>The difference between static and instance (instance is when you don't say static) is huge. To get to an instance method, field or property (which are collectively called members in C#) you need to have the containing instance. So:</p> <pre><code> Person p = new Person(); // You now have an instance. p.Name = "Fred"; // You are using an instance property. </code></pre> <p>Static are the opposite, they are the same anywhere in your application (more technically within the same AppDomain - but if you are a beginner you won't need to worry about that for a while). You don't need an instance to get to them (props to codewidgets "Static methods can access only static members"). For example:</p> <pre><code> // Where Planet is a class and People is a static property. // Somewhat confusingly the Add method is an instance - best left for the student :). Planet.People.Add(new Person("Fred")); </code></pre> <p>Hopefully that gives you a good indication of what static and instance is and where to use them. The most important thing though is to try and avoid static members as best as you can - they can cause maintenance nightmares. </p> <p>Microsoft has a whole <a href="http://msdn.microsoft.com/en-us/library/79b3xss3.aspx" rel="nofollow" title="Difference between static and instance members">write-up</a> on the important concepts in regard to this.</p> http://stackoverflow.com/questions/945055/header-file-template/945308#945308 0 Answer by Jonathan C Dickinson for Header File Template Jonathan C Dickinson 2009-06-03T15:05:04Z 2009-06-03T15:05:04Z <p>Just a thought and by no means a standard (or for that matter, possibly a good idea). Have you thought about maybe using attributes? E.g.</p> <pre><code>[Author("Jonathan Dickinson")] [Copyright("Copyright (c) Jonathan Dickinson 2009")] [RevisionHistory( "jcd: Made the class.", "jcd: Made the class internal.")] [License("GPL", LicenseType = LicenseType.CopyLeft)] // Etc. class Foo { } </code></pre> <p>Anyone have any ideas why this would be a terrible practice?</p> <p>In any case - StyleCop was made primarily for <em>commercial</em> projects (who typically don't do code headers). In other words - ignore or disable the friggen warning. Time and time I have read that StyleCop and FXCop are too nit-picky. I have seen header comments in the following format.</p> <pre><code>// &lt;code-header&gt; // &lt;author&gt;Jonathan Dickinson&lt;/author&gt; // &lt;copyright&gt;Copyright (c) Jonathan Dickinson 2009&lt;/copyright&gt; // &lt;license href="license.txt"&gt;New BSD&lt;/license&gt; // &lt;revisions&gt; // &lt;revision initials="jcd"&gt;Made the file and class&lt;/revision&gt; // &lt;revision intiails="jcd"&gt;Made the class internal&lt;/revision&gt; // &lt;/revisions&gt; // &lt;/code-header&gt; </code></pre> <p>It has obvious advantages - statistics (like Ohloh does) and verification of a code-base come to mind straight away.</p> http://stackoverflow.com/questions/944962/convert-32-bit-dll-to-64-bit-dll/945073#945073 2 Answer by Jonathan C Dickinson for Convert 32 bit dll to 64 bit dll Jonathan C Dickinson 2009-06-03T14:25:57Z 2009-06-03T14:25:57Z <p>Windows CAN NOT load a 32bit dll into a 64bit process - this is a limitation that you can not circumvent. This means that if your 32bit DLL does any P/Invokes to other 32bit DLLS (or uses any 32bit .Net DLLS) you will be entirely out of luck (you will need to run the entire website in 32bit).</p> <p>You are not entirely clear on when it works and when it doesn't. Here are the explanations:</p> <ol> <li>x86 - 32bit - Can not be loaded into a 64bit process.</li> <li>x64 - 64bit - Can not be executed on a 32bit machine.</li> <li>AnyCPU - dual - Can be loaded and executed in both environments.</li> </ol> <p>In terms of AnyCPU:</p> <ol> <li>64bit process on 64bit machine - DLL is loaded as 64bit.</li> <li>32bit process on 32bit machine - DLL is loaded as 32bit.</li> <li>32bit process on 64bit machine - DLL is loaded as 32bit.</li> </ol> <p>In most cases it's fine to leave it as AnyCPU. However, as I said, if you are using any native or .Net 32bit DLLs you will need to make your entire application 32bit (and there is nothing you can, or Microsoft could, do about this).</p> http://stackoverflow.com/questions/939167/c-circular-reference-and-cannot-see-namespace/939590#939590 0 Answer by Jonathan C Dickinson for C# - Circular Reference and cannot see Namespace Jonathan C Dickinson 2009-06-02T13:36:51Z 2009-06-02T13:36:51Z <p>It is fortunate that you can not add circular references - because they cause maintenance nightmares.</p> <p>You want Raven to launch PPather? Is PPather as console/windows application? Use Process.Start to do that (and store the location of PPather in the registry somewhere).</p> <p>Alternatively create interfaces for the classes that you need out of PPather - and make the classes in PPather implement those interfaces.</p> <pre><code>interface IPPatherInterface // Inside of Raven. { void Foo(); } class PPatherClass : IPPatherInterface // Inside of PPather { // ... } class SomeRavenClass // Static maybe? Inside of Raven { void SupplyPPatherClass(IPPatherInterface item) { ... } } </code></pre> <p>You now have a way for PPather to supply that interface's implementation to Raven.</p> http://stackoverflow.com/questions/938291/import-csv-file-into-c/938434#938434 0 Answer by Jonathan C Dickinson for Import CSV file into c# Jonathan C Dickinson 2009-06-02T08:09:41Z 2009-06-02T08:09:41Z <p>Plan A seems sensible. I wouldn't think that there would be too many field names (if any) with commas or tabs. So the statistic would be accurate 90% of the time. If the statistic is 'close' enough (e.g. 15 commas and 12 tabs) what you could do is:</p> <pre><code>int i = line.IndexOf("email", StringCompareOptions.CultureInvariantIgnoreCase); if(i == -1) i = line.IndexOf("e-mail", StringCompareOptions.CultureInvariantIgnoreCase); else i += 5; // Length of "email" if(i == -1) throw new Exception("You should select the email field when exporting."); else i += 6; // Length of "e-mail" // Find the next delimeter. string delim = null; for(int k = i; k &lt; line.Count; k++) { char c = line[k]; if(c == '\t' || c == ',') { delim = c.ToString(); break; } } if(delim == null) throw new Exception("Unrecognised file format."); </code></pre> <p>On top of that you said that there would be problem with the first name and last name fields - as well as things like email and e-mail. You would need a pretty good design pattern here. In the true interests of normalized data I would store the first name and last name (and combine them in the UI). Thus:</p> <pre><code>interface IField { string[] Accepts { get; } // Gets the fields that this can accept. string[] Gives { get; } // Gets the field that this would give. IEnumerable&lt;KeyValuePair&lt;string, string&gt;&gt; Handle(IEnumerable&lt;KeyValuePair&lt;string, string&gt;&gt; fields); } class NameField { string[] Accepts { get return new string[] { "FirstName", "LastName", "Name", "First Name", etc. }; } string[] Gives { get return new string[] { "FirstName", "LastName" }; } IEnumerable&lt;KeyValuePair&lt;string, string&gt;&gt; Handle(IEnumerable&lt;KeyValuePair&lt;string, string&gt;&gt; fields) { string firstName = null, lastName = null; foreach(KeyValuePair&lt;string, string&gt; field in fields) { switch(field.Key) { case "FirstName": case "First Name": firstName = field.Value; break; // ... case "FullName": case "Full Name": // Split into fn and ln. break; // ... } } yield return new KeyValuePair&lt;string, string&gt;("FirstName", firstName); yield return new KeyValuePair&lt;string, string&gt;("LastName", lastName); } } </code></pre> <p>In any case, I am sure you get the idea. A bunch of transforms that will turn fields into recognized ones.</p> http://stackoverflow.com/questions/925450/remote-locking 0 Remote Locking Jonathan C Dickinson 2009-05-29T10:58:38Z 2009-05-29T22:13:24Z <p>I am designing a remote threading primitive protocol. Currently we only needs mutexes (i.e. Monitors) and semaphores. The main idea is that there doesn't need to be a central authority - the primitives should be orchestrated amongst the peers that are interested in them.</p> <p>I have bashed a few ideas around on paper and in my head for a few weeks; but I think I should really have a look at prior literature. Is there any?</p> <p>It will run over XMPP - but that is an implementation detail. I am just looking for a specification or such on the actual protocol flow - so it doesn't really matter what protocol the literature originates from.</p> <p>Thanks a million.</p> http://stackoverflow.com/questions/925356/caching-a-binary-file-in-c/925464#925464 0 Answer by Jonathan C Dickinson for Caching a binary file in C# Jonathan C Dickinson 2009-05-29T11:03:47Z 2009-05-29T11:03:47Z <p>There is a very elegant caching system in <a href="http://incubator.apache.org/lucene.net/" rel="nofollow" title="Lucene Home Page">Lucene</a> that caches bytes from the disk into memory and intelligently updates the store etc. You might want to have a look at that code to get an idea of how they do it. You might also want to read up on the Microsoft SQL Server data storage layer - as the MSSQL team is pretty forthcoming about some of the more crucial implementation details.</p> http://stackoverflow.com/questions/886194/is-there-any-reason-not-to-use-aliases-in-the-system-namespace/886204#886204 0 Answer by Jonathan C Dickinson for Is there any reason not to use Aliases in the System namespace? Jonathan C Dickinson 2009-05-20T05:01:29Z 2009-05-21T05:19:30Z <p>There is no reason that would affect the behavior or performance of your application. It is a recommended style guideline - and as with all style guidelines you can ignore it if you see fit. Nearly all OSS and corporate style policies will stipulate that you need to use the aliases - so keep that in mind.</p> http://stackoverflow.com/questions/882061/what-do-you-do-while-rebuilddeploystarting/882079#882079 1 Answer by Jonathan C Dickinson for What do you do while re(build|deploy|start)ing? Jonathan C Dickinson 2009-05-19T10:55:59Z 2009-05-19T10:55:59Z <p>I slit my wrists. Honestly - one of the teams here has Code Analysis turned on for their projects; they don't pay heed to a single warning. Do you know how long it takes for VS to parse those warnings (about 24 000 in total - takes 3 minutes)?</p> <p>Honestly:</p> <ul> <li>Take a smoke</li> <li>Get food</li> <li>Visit SO</li> <li>Do something on another project (most often a pet project)</li> </ul> http://stackoverflow.com/questions/867017/performance-cost-of-try/867086#867086 1 Answer by Jonathan C Dickinson for Performance Cost Of 'try' Jonathan C Dickinson 2009-05-15T05:26:33Z 2009-05-15T05:26:33Z <p>A common saying is that exceptions are expensive when they are caught - not thrown. This is because <em>most</em> of the exception metadata gathering (such as getting a stack trace etc.) only really happens on the try-catch side (not on the throw side).</p> <p>Unwinding the stack is actually pretty quick - the CLR walks up the call stack and only pays heed to the finally blocks it finds; at no point in a pure try-finally block does the runtime attempt to 'complete' an exception (it's metadata etc.).</p> <p>From what I remember, any try-catches with filters (such as "catch (FooException) {}") are just as expensive - even if they do not do anything with the exception.</p> <p>I would venture to say that a method (call it CatchesAndRethrows) with the following block:</p> <pre><code>try { ThrowsAnException(); } catch { throw; } </code></pre> <p>Might result in a faster stack walk in a method - such as:</p> <pre><code>try { CatchesAndRethrows(); } catch (Exception ex) // The runtime has already done most of the work. { // Some fancy logic } </code></pre> <p>Some numbers:</p> <pre><code>With: 0.13905ms Without: 0.096ms Percent difference: 144% </code></pre> <p>Here is the benchmark I ran (remember, release mode - run without debug):</p> <pre><code> static void Main(string[] args) { Stopwatch withCatch = new Stopwatch(); Stopwatch withoutCatch = new Stopwatch(); int iterations = 20000; for (int i = 0; i &lt; iterations; i++) { if (i % 100 == 0) { Console.Write("{0}%", 100 * i / iterations); Console.CursorLeft = 0; Console.CursorTop = 0; } CatchIt(withCatch, withoutCatch); } Console.WriteLine("With: {0}ms", ((float)(withCatch.ElapsedMilliseconds)) / iterations); Console.WriteLine("Without: {0}ms", ((float)(withoutCatch.ElapsedMilliseconds)) / iterations); Console.WriteLine("Percent difference: {0}%", 100 * withCatch.ElapsedMilliseconds / withoutCatch.ElapsedMilliseconds); Console.ReadKey(true); } static void CatchIt(Stopwatch withCatch, Stopwatch withoutCatch) { withCatch.Start(); try { FinallyIt(withoutCatch); } catch { } withCatch.Stop(); } static void FinallyIt(Stopwatch withoutCatch) { try { withoutCatch.Start(); ThrowIt(withoutCatch); } finally { withoutCatch.Stop(); } } private static void ThrowIt(Stopwatch withoutCatch) { throw new NotImplementedException(); } </code></pre> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/854793#854793 5 Answer by Jonathan C Dickinson for What is your best programmer joke? Jonathan C Dickinson 2009-05-12T20:47:50Z 2009-05-12T20:47:50Z <p>Two threads are fighting over a stack of papers.</p> <p>The one says to the other, "Take these copies and fork off."</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/854761#854761 9 Answer by Jonathan C Dickinson for What is your best programmer joke? Jonathan C Dickinson 2009-05-12T20:41:28Z 2009-05-12T20:41:28Z <p>Two threads climb out of the pool...</p> http://stackoverflow.com/questions/834257/any-pointers-to-smallest-cli-runtime/834313#834313 0 Answer by Jonathan C Dickinson for Any pointers to smallest CLI runtime? Jonathan C Dickinson 2009-05-07T12:17:00Z 2009-05-07T12:17:00Z <p>Your build script may turn out to be a PITA - but <a href="http://crossnet.codeplex.com/" rel="nofollow" title="Codeplex">CrossNet</a> might be a good idea. It compiles MSIL into C++.</p> <p>So you could land up with no CLR at all :).</p> http://stackoverflow.com/questions/828531/how-to-generate-a-universe/828798#828798 7 Answer by Jonathan C Dickinson for How to generate a universe? Jonathan C Dickinson 2009-05-06T09:24:09Z 2009-05-06T09:24:09Z <p>You should read up on <a href="http://en.wikipedia.org/wiki/Procedural%5Fgeneration" rel="nofollow" title="Wikipedia Article">procedural content generation</a>.</p> <p><strong>Idea 1</strong></p> <ol> <li>Create a variety of P<a href="http://en.wikipedia.org/wiki/RNG" rel="nofollow" title="Wikipedia Article">RNG</a>s that always return the same sequence of numbers when given a duplicate seed.</li> <li>Create a universe seed number (you can use a standard (P)RNG to do this).</li> <li>Save this seed.</li> <li>Use the PRNGs that <em>you</em> created to populate the universe with stars and planets. You will need to create at least five properties for each: X,Y,Z,Mass,Seed - add more as you see fit (e.g. Spore would have GroundColor, AtmosphereColor, Temperature, e.t.c.)</li> <li>When you draw near to a planet use it's seed to create the heightmap and features on it.</li> </ol> <p>Any changes that the player makes will need to be persisted somewhere. Basically you will need a transactional store (with CRUD operations) to indicate what the player has done.</p> <p>Tree #44072:</p> <ul> <li>Eaten</li> <li>Deleted</li> </ul> <p>Planet #14325:</p> <ul> <li>Changed to blue</li> </ul> <p><strong>Idea 2</strong></p> <p>Instead of using a PNRG to create positions you could use <a href="http://en.wikipedia.org/wiki/Perlin%5Fnoise" rel="nofollow" title="Wikipedia Article">perlin noise</a>. If you create a few image filters (with deterministic outcomes) you could use the results as:</p> <ul> <li>Star density maps</li> <li>Planet seeds</li> <li>Properties</li> </ul> <p>By getting really clever you could even create specific filters that could:</p> <ul> <li>Make stars in the center of galaxies hotter</li> <li>Make different types of galaxies</li> </ul> <p>The advantage of this is obviously the speed - you won't be creating or storing (in RAM) the whole universe in one shot (you simply work out the relevant 'quadrant' you are in).</p> <p>You will obviously still need to store player modifications.</p> <p>Hope this gives you a good head start!</p> http://stackoverflow.com/questions/800591/how-to-perform-asynchronous-file-reads-in-c-2-0/801150#801150 5 Answer by Jonathan C Dickinson for How to Perform Asynchronous File Reads in C# 2.0? Jonathan C Dickinson 2009-04-29T06:42:50Z 2009-04-29T06:42:50Z <p>Instead of making the line reads Async you might try making the file reads Async. That is encompass all of the code in your question in a single worker delegate.</p> <pre><code> static void Main(string[] args) { WorkerDelegate worker = new WorkerDelegate(Worker); // Used for thread and result management. List&lt;IAsyncResult&gt; results = new List&lt;IAsyncResult&gt;(); List&lt;WaitHandle&gt; waitHandles = new List&lt;WaitHandle&gt;(); foreach (string file in Directory.GetFiles(args[0], "*.txt")) { // Start a new thread. IAsyncResult res = worker.BeginInvoke(file, null, null); // Store the IAsyncResult for that thread. results.Add(res); // Store the wait handle. waitHandles.Add(res.AsyncWaitHandle); } // Wait for all the threads to complete. WaitHandle.WaitAll(waitHandles.ToArray(), -1, false); // for &lt; .Net 2.0 SP1 Compatibility // Gather all the results. foreach (IAsyncResult res in results) { try { worker.EndInvoke(res); // object result = worker.EndInvoke(res); // For a worker with a result. } catch (Exception ex) { // Something happened in the thread. } } } delegate void WorkerDelegate(string fileName); static void Worker(string fileName) { // Your code. using (FileStream stream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read)) { using (StreamReader streamReader = new StreamReader(stream)) { string line; while (!string.IsNullOrEmpty(line = streamReader.ReadLine())) { //do stuff with the line string... } } } } </code></pre> http://stackoverflow.com/questions/801019/visual-studio-2008-how-to-step-into-f11-reflected-code/801102#801102 5 Answer by Jonathan C Dickinson for Visual Studio 2008 - how to step into (F11) reflected code Jonathan C Dickinson 2009-04-29T06:22:53Z 2009-04-29T06:22:53Z <p>Just My Code might be what is causing problems.</p> <p>In Visual Studio:</p> <ol> <li>Tools --> Options</li> <li>Debugging (on the left)</li> <li>Untick "Enable Just My Code (Managed Only)" on the right.</li> </ol> <p>I can't guarantee that is what is causing the problem - but it is my best bet.</p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/784955#784955 1 Answer by Jonathan C Dickinson for What is the best comment in source code you have ever encountered? Jonathan C Dickinson 2009-04-24T08:20:15Z 2009-04-24T08:20:15Z <p>I just finished a logging framework (that uses Trace, why nothing like this exists I don't know). I made a convenience base class that inherits from TraceListener. It overrides all of the TraceListener methods and routes them into one method - so that is a lot of doc commenting:</p> <pre><code>// TODO: Need some codemonkey to doc comment this class. </code></pre> http://stackoverflow.com/questions/782776/thread-modelling 0 Thread Modelling Jonathan C Dickinson 2009-04-23T17:30:06Z 2009-04-23T17:46:33Z <p>In my university days I came across a Java app in one of my courses. You basically modeled your threads (any actions they perform etc.) in a simple language. It would draw a diagram and identify and issues with your threading. Does anyone know what this app is called? I have tried for the last 30 mins on Google but can't find anything.</p> http://stackoverflow.com/questions/767215/how-to-do-a-udp-multicast-across-the-local-network-in-c/767262#767262 0 Answer by Jonathan C Dickinson for How to do a UDP multicast across the local network in c#? Jonathan C Dickinson 2009-04-20T07:37:23Z 2009-04-20T07:54:42Z <p>I can't see a <a href="http://en.wikipedia.org/wiki/Time%5Fto%5Flive#Time%5Fto%5Flive%5Fof%5FIP%5Fpackets" rel="nofollow" title="Wikipedia Article">TTL</a> specified anywhere in the code. Remember that TTL was originally meant to be in unit seconds, but is has become unit hops. This means that by using a clever TTL you could eliminate passing through the router. The default TTL on my machine is 32 - I think that should be more than adequate; but yours may actually be different (UdpClient.Ttl) if your system has been through any form of a security lockdown.</p> <p>I can't recommend the TTL you need - as I personally need to do a lot of experimentation.</p> <p>If that doesn't work, you could have a look at these articles:</p> <ul> <li><a href="http://www.osix.net/modules/article/?id=409" rel="nofollow" title="OSIX Article">OSIX Article</a></li> <li><a href="http://www.codeproject.com/KB/IP/multicast.aspx" rel="nofollow" title="CodeProject Article">CodeProject Article</a></li> </ul> <p>All-in-all it looks like there has been success with using Sockets and not UdpClients.</p> <p>Your chosen multicast group could also be local-only. <a href="http://www.29west.com/docs/THPM/multicast-address-assignment.html" rel="nofollow" title="Tips for assigning Multicast IPs">Try another one.</a></p> <p>Your physical network layer could also be causing issues. I would venture to question switches and direct (x-over) connections. Hubs and all more intelligent should handle them fine. I don't have any literature to back that, however.</p> http://stackoverflow.com/questions/767101/c-generics/767162#767162 1 Answer by Jonathan C Dickinson for C# Generics Jonathan C Dickinson 2009-04-20T06:49:16Z 2009-04-20T06:49:16Z <p>It's a lot of code to put on SO, but here y'go. There are a few overloads for Marshal.Copy that suit your needs.</p> <pre><code>class Program { static void Main(string[] args) { TestStruct test = new TestStruct(); test.Bar = 100; test.Foo = 200; using (MemoryStream ms = new MemoryStream()) { using (ObjectStream os = new ObjectStream(ms, false)) { os.Write(test); } ms.Seek(0, SeekOrigin.Begin); Console.WriteLine(BitConverter.ToString(ms.ToArray())); using (ObjectStream os = new ObjectStream(ms, false)) { TestStruct result = os.Read&lt;TestStruct&gt;(); Console.WriteLine(result.Bar); Console.WriteLine(result.Foo); } } Console.ReadLine(); } } struct TestStruct { public int Foo; public int Bar; } class ObjectStream : Stream { private Stream _backing; private bool _ownsStream = true; public ObjectStream(Stream source) :this(source, true) { } public ObjectStream(Stream source, bool ownsStream) { if (source == null) throw new ArgumentNullException("source"); _backing = source; _ownsStream = ownsStream; } public override bool CanRead { get { return _backing.CanRead; } } public override bool CanSeek { get { return _backing.CanSeek; } } public override bool CanWrite { get { return _backing.CanWrite; } } public override void Flush() { _backing.Flush(); } public override long Length { get { return _backing.Length; } } public override long Position { get { return _backing.Position; } set { _backing.Position = value; } } public override int Read(byte[] buffer, int offset, int count) { return _backing.Read(buffer, offset, count); } public override long Seek(long offset, SeekOrigin origin) { return _backing.Seek(offset, origin); } public override void SetLength(long value) { _backing.SetLength(value); } public override void Write(byte[] buffer, int offset, int count) { _backing.Write(buffer, offset, count); } /// &lt;summary&gt; /// Writes a value type to the stream. /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;The type of value.&lt;/typeparam&gt; /// &lt;param name="value"&gt;The value.&lt;/param&gt; /// &lt;returns&gt;The number of bytes written to the stream.&lt;/returns&gt; public int Write&lt;T&gt;(T value) { // An T[] would be a reference type, and alot easier to work with. T[] t = new T[1]; t[0] = value; // Marshal.SizeOf will fail with types of unknown size. Try and see... int s = Marshal.SizeOf(typeof(T)); // Create a temp array. byte[] target = new byte[s]; // Grab a handle of the array we just created, pin it to avoid the gc // from moving it, then copy bytes from our stream into the address // of our array. GCHandle handle = GCHandle.Alloc(t, GCHandleType.Pinned); Marshal.Copy(handle.AddrOfPinnedObject(), target, 0, s); // ?? Problem // Write to the stream. Write(target, 0, s); return s; } /// &lt;summary&gt; /// Reads a value type from the stream. /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;The type to read.&lt;/typeparam&gt; /// &lt;returns&gt;The data read from the stream.&lt;/returns&gt; public T Read&lt;T&gt;() { // An T[] would be a reference type, and alot easier to work with. T[] t = new T[1]; // Marshal.SizeOf will fail with types of unknown size. Try and see... int s = Marshal.SizeOf(typeof(T)); byte[] target = new byte[s]; // Make sure there is enough data. if (Read(target, 0, s) != s) throw new InvalidDataException("Not enough data."); // Grab a handle of the array we just created, pin it to avoid the gc // from moving it, then copy bytes from our stream into the address // of our array. GCHandle handle = GCHandle.Alloc(t, GCHandleType.Pinned); Marshal.Copy(target, 0, handle.AddrOfPinnedObject(), s); // Return the first (and only) element in the array. return t[0]; } protected override void Dispose(bool disposing) { if (disposing &amp;&amp; _ownsStream) _backing.Dispose(); base.Dispose(disposing); } } </code></pre> http://stackoverflow.com/questions/748573/why-executecodewithguaranteedcleanup-doesnt-work/749393#749393 1 Answer by Jonathan C Dickinson for Why ExecuteCodeWithGuaranteedCleanup doesn't work? Jonathan C Dickinson 2009-04-14T21:14:12Z 2009-04-14T21:37:48Z <p>If you want to catch it, load it into another process (that calls-back to yours via remoting) and lets the miscreant code execute there. The other process may terminate, and you <em>could</em> get a neat SOE popping out the end of the pipe on your side - without the adverse effects of the rather inconvenient exception.</p> <p>Note that a separate AppDomain in the same process won't cut it.</p> <p>If you want to get the stack trace from an exception the following code will do you great justice:</p> <pre><code> class Program { static void Main(string[] args) { try { Recurse(0); } catch (Exception ex) { StackTrace st = new StackTrace(ex); // Go wild. Console.WriteLine(st.FrameCount); } Console.ReadLine(); } static void Recurse(int counter) { if (counter &gt;= 100) throw new Exception(); Recurse(++counter); } } </code></pre> http://stackoverflow.com/questions/605124/fixed-point-math-in-c Comment by Jonathan C Dickinson on Fixed point math in c#? Jonathan C Dickinson 2009-11-10T11:43:32Z 2009-11-10T11:43:32Z just to qualify that more; the FPU doesn't start doing wierd things the most common calculation (units/timeElapsed) starts doing strange things. http://stackoverflow.com/questions/605124/fixed-point-math-in-c Comment by Jonathan C Dickinson on Fixed point math in c#? Jonathan C Dickinson 2009-11-10T09:34:27Z 2009-11-10T09:34:27Z @kquinn the problem is framerate. If one machine is doing the calculations at 60hz where another is at, say, 42.567hz IEEE/float arithmetic starts doing wierd things. http://stackoverflow.com/questions/1302237/marshalling-codeelements-to-an-intptr-in-c/1322084#1322084 Comment by Jonathan C Dickinson on Marshalling CodeElements to an IntPtr in C# Jonathan C Dickinson 2009-08-25T08:37:49Z 2009-08-25T08:37:49Z @dtb - read! It said it has made a difference in the past; even though it seems as it should not - the MSIL generated is NOT identical and the interop layer might see the keyword as pertinent. In pure .Net to .Net calls it would, agreed, have no effect. http://stackoverflow.com/questions/399114/why-are-c-c-floating-point-types-so-oddly-named/399120#399120 Comment by Jonathan C Dickinson on Why are c/c++ floating point types so oddly named? Jonathan C Dickinson 2009-08-24T12:03:47Z 2009-08-24T12:03:47Z Very good explanation. You might want to add that some libraries/languages call a float a single. http://stackoverflow.com/questions/1118754/mmc-net-runtime-version/1163296#1163296 Comment by Jonathan C Dickinson on MMC .Net Runtime Version Jonathan C Dickinson 2009-07-22T10:51:39Z 2009-07-22T10:51:39Z Nope - not going to 2.0. I had a bunch of custom classes (e.g. thread-safe collections) that are now in the framework; so I got rid of them. On top of that I am not (yet) using dynamic, but will be. I guess it will have to wait for an update. Thanks for the help though. Well earned bounty! http://stackoverflow.com/questions/1118754/mmc-net-runtime-version/1163296#1163296 Comment by Jonathan C Dickinson on MMC .Net Runtime Version Jonathan C Dickinson 2009-07-22T10:16:20Z 2009-07-22T10:16:20Z Thanks. I am going to give this a shot - how badly do I need them? 6000 LOC that I wrote personally that have since been upgraded to Framework 4... http://stackoverflow.com/questions/298872/integrated-security/299048#299048 Comment by Jonathan C Dickinson on Integrated Security Jonathan C Dickinson 2009-07-21T18:04:50Z 2009-07-21T18:04:50Z Ah you freaken SAVIOUR!!!! The only thing I could find on the tubes was that there was a wrapper - not where it was! Thanks a million. http://stackoverflow.com/questions/1118754/mmc-net-runtime-version Comment by Jonathan C Dickinson on MMC .Net Runtime Version Jonathan C Dickinson 2009-07-21T14:13:24Z 2009-07-21T14:13:24Z @mfawzymkh yep - that is where I am sitting http://stackoverflow.com/questions/114735/potential-other-uses-of-a-jabber-server Comment by Jonathan C Dickinson on Potential other uses of a jabber server Jonathan C Dickinson 2009-07-20T20:02:10Z 2009-07-20T20:02:10Z Just thought of one: XMPP meetings. Sort of like Live Meeting or such. http://stackoverflow.com/questions/114735/potential-other-uses-of-a-jabber-server Comment by Jonathan C Dickinson on Potential other uses of a jabber server Jonathan C Dickinson 2009-07-20T16:05:51Z 2009-07-20T16:05:51Z Not going to shamelessly plug in an answer; so you might want to keep an eye on what I am up to - might spawn a few ideas. Right now it's still a development blog; but I will be posting ideas and applications of xmpp soon: <a href="http://jonathan.dickinsons.co.za/blog/category/xmpp-server/" rel="nofollow">jonathan.dickinsons.co.za/blog/category/&hellip;</a> Look at the one about XMPP and K2. http://stackoverflow.com/questions/708856/how-do-you-select-a-transparency-color-of-a-jpeg-in-xna Comment by Jonathan C Dickinson on How do you select a transparency color of a JPEG in XNA ? Jonathan C Dickinson 2009-06-24T12:38:25Z 2009-06-24T12:38:25Z Do not use JPEG for this! JPEG will changes the colors of your image so your color key will be 'spotty' (if at all present). Rather use PNG 24, or PNG 32 (and using 32 will save you from the color key in the first place). http://stackoverflow.com/questions/993219/projecting-a-sphere-onto-a-cube Comment by Jonathan C Dickinson on Projecting a sphere onto a cube Jonathan C Dickinson 2009-06-24T12:32:10Z 2009-06-24T12:32:10Z You should look at starting with a cube and tessellating it. You may notice a singularity if your sphere is one derived from trigonometric functions (the landscape will 'pinch' at the poles). If you do it that way your mapping problem disappears. http://stackoverflow.com/questions/1024832/d3derrinvalidcall-error-teamcity-builder/1037995#1037995 Comment by Jonathan C Dickinson on D3DERR_INVALIDCALL error, TeamCity builder Jonathan C Dickinson 2009-06-24T12:29:20Z 2009-06-24T12:29:20Z I would go for (2). As a solution to (1) he could install the DX SDK - it has the reference device, which wouldn't cause these problems. http://stackoverflow.com/questions/838484/any-suggestions-for-a-crash-course-on-design-patterns/1033283#1033283 Comment by Jonathan C Dickinson on Any suggestions for a crash course on design patterns? Jonathan C Dickinson 2009-06-24T07:20:56Z 2009-06-24T07:20:56Z that is a fantastic overview. thanks for all the links and pointers - maybe I will have a look at doing a few more sessions. http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424226#424226 Comment by Jonathan C Dickinson on What's your favorite "programmer ignorance" pet peeve? Jonathan C Dickinson 2009-06-24T07:17:54Z 2009-06-24T07:17:54Z @Ian - it does. Look at the intellisense icon for the field.