User John Richardson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T01:06:16Z http://stackoverflow.com/feeds/user/887 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/9667/validating-a-win32-window-handle 2 Validating a Win32 Window Handle John Richardson 2008-08-13T11:42:13Z 2009-09-12T14:33:20Z <p>Given a handle of type HWND is it possible to confirm that the handle represents a real window?</p> http://stackoverflow.com/questions/738564/handling-interrupt-in-c/738649#738649 1 Answer by John Richardson for Handling Interrupt in C++ John Richardson 2009-04-10T19:36:20Z 2009-04-10T19:36:20Z <p>So you have two threads: one running the kernel and one running the app? You will need to make a function in your kernel say ReadyToYield() that the application can call when it's happy for you to close it down. ReadyToYield() would flag the kernel thread to give it the good news and then sit and wait until the kernel thread decides what to do. It might look something like this:</p> <pre><code>volatile bool appWaitingOnKernel = false; volatile bool continueWaitingForKernel; </code></pre> <p>On the app thread call:</p> <pre><code>void ReadyToYield(void) { continueWaitingForKernel = true; appWaitingOnKernel = true; while(continueWaitingForKernel == true); } </code></pre> <p>On the kernel thread call:</p> <pre><code>void CheckForWaitingApp(void) { if(appWaitingOnKernel == true) { appWaitingOnKernel = false; if(needToDeleteApp) DeleteApp(); else continueWaitingForKernel = false; } } </code></pre> <p>Obviously, the actual implementation here depends on the underlying O/S but this is the gist.</p> <p>John.</p> http://stackoverflow.com/questions/14300/how-do-i-make-powershell-run-a-batch-file-and-then-stay-open 3 How do I make Powershell run a batch file and then stay open? John Richardson 2008-08-18T08:00:15Z 2009-02-05T10:38:45Z <p>For example; with the old command prompt it would be:</p> <pre><code>cmd.exe /k mybatchfile.bat </code></pre> <p>Thanks.</p> <p>John.</p> http://stackoverflow.com/questions/321298/ffmpeg-frame-to-directx-surface 1 FFMPEG Frame to DirectX Surface John Richardson 2008-11-26T16:22:39Z 2009-01-02T23:47:55Z <p>Given a pointer to an AVFrame from FFMPEG's <code>avcodec_decode_video</code>() function how do I copy the image to a DirectX surface? (Assume I have a pointer to an appropriately sized DX X8R8G8B8 surface.)</p> <p>Thanks.</p> <p>John.</p> http://stackoverflow.com/questions/56424/what-can-cause-a-reduction-in-frame-rate-when-upgrading-a-graphics-card 2 What can cause a reduction in frame rate when upgrading a graphics card? John Richardson 2008-09-11T12:31:09Z 2008-09-17T07:10:25Z <p>We have a two-screen DirectX application that previously ran at a consistent 60 FPS (the monitors' sync rate) using a NVIDIA 8400GS (256MB). However, when we swapped out the card for one with 512 MB of RAM the frame rate struggles to get above 40 FPS. (It only gets this high because we're using triple-buffering.) The two cards are from the same manufacturer (PNY). All other things are equal, this is a Windows XP Embedded application and we started from a fresh image for each card. The driver version number is 169.21.</p> <p>The application is all 2D. I.E. just a bunch of textured quads and a whole lot of pre-rendered graphics (hence the need to upgrade the card's memory). We also have compressed animations which the CPU decodes on the fly - this involves a texture lock. The locks take forever but I've also tried having a separate system memory texture for the CPU to update and then updating the rendered texture using the device's UpdateTexture method. No overall difference in performance.</p> <p>Although I've read through every FAQ I can find on the internet about DirectX performance, this is still the first time I've worked on a DirectX project so any arcane bits of knowledge you have would be useful. :)</p> <p>One other thing whilst I'm on the subject; when calling Present on the swap chains it seems DirectX waits for the present to complete regardless of the fact that I'm using D3DPRESENT_DONOTWAIT in both present parameters (PresentationInterval) and the flags of the call itself. Because this is a two-screen application this is a problem as the two monitors do not appear to be genlocked, I'm working around it by running the Present calls through a threadpool. What could the underlying cause of this be?</p> <p>Thanks.</p> http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008/39518#39518 9 Answer by John Richardson for How to get intellisense to reliably work in Visual Studio 2008 John Richardson 2008-09-02T13:33:01Z 2008-09-02T14:30:39Z <p>Native C++ intellisense does not work reliably in any version of Visual Studio. I find there are two common problems: </p> <p>1) Header file paths are not set-up correctly. When you find a type where intellisense is not working, use the IDE to click through each header file to find the one containing the type. (Right click on #include and select Open Document...). If this fails before you get to the file which declares the type then this is your problem. Make sure header file search paths are set-up correctly.</p> <p>And,</p> <p>2) The intellisense database is corrupt. This happens ALL The time. You need to close the solution, delete the .ncb file, and then reopen the solution. I posted the macro I use for this in answer to another question <a href="http://beta.stackoverflow.com/questions/15056/do-you-have-any-recommended-macros-for-microsoft-visual-studio#32884" rel="nofollow">here</a>.</p> <p><hr /></p> <p>The preprocessor can also confuse intellisense - so make sure any #defines during build are also available to intellisense. Other than that, I don't know what else can break it. I've not seen any particular issues with forward declarations.</p> http://stackoverflow.com/questions/34635/how-do-i-get-the-assembler-output-from-a-c-file-in-vs2005/34650#34650 3 Answer by John Richardson for How do I get the assembler output from a C file in VS2005 John Richardson 2008-08-29T16:31:18Z 2008-08-29T16:31:18Z <p>Project->Properties->Configuration Properties->C/C++->Output Files</p> <p>There you should see an option for Assembler Output.</p> <p>John.</p> http://stackoverflow.com/questions/15056/do-you-have-any-recommended-macros-for-microsoft-visual-studio/32884#32884 3 Answer by John Richardson for Do you have any recommended macros for Microsoft Visual Studio? John Richardson 2008-08-28T17:41:12Z 2008-08-28T17:54:19Z <p>This is my macro to close the solution, delete the intellisense file, and reopen the solution. Essential if you're working in native C++.</p> <pre><code>Sub UpdateIntellisense() Dim solution As Solution = DTE.Solution Dim filename As String = solution.FullName Dim ncbFile As System.Text.StringBuilder = New System.Text.StringBuilder ncbFile.Append(System.IO.Path.GetDirectoryName(filename) + "\") ncbFile.Append(System.IO.Path.GetFileNameWithoutExtension(filename)) ncbFile.Append(".ncb") Dim ncbString = ncbFile.ToString() solution.Close(True) System.IO.File.Delete(ncbFile.ToString()) solution.Open(filename) End Sub </code></pre> http://stackoverflow.com/questions/17032/should-i-always-favour-implictly-typed-local-variables-in-c-3-0/17126#17126 0 Answer by John Richardson for Should I *always* favour implictly typed local variables in C# 3.0? John Richardson 2008-08-19T22:46:10Z 2008-08-19T22:46:10Z <p>One of the advantages of a tool like ReSharper is that you can write the code however you like and have it reformat to something more maintainable afterwards. I have R# set to always reformat such that the actual type in use is visible, however, when writing code I nearly always type 'var'.</p> <p>Good tools let you have the best of both worlds.</p> <p>John.</p> http://stackoverflow.com/questions/15678/can-i-configure-visualstudio-2008-to-always-build-the-startup-project/16098#16098 1 Answer by John Richardson for Can I configure VisualStudio 2008 to always build the startup project? John Richardson 2008-08-19T12:49:46Z 2008-08-19T12:49:46Z <p>flipdoubt: they are projects created originally in 2008. My suggestion if it's not working C# is to look in the Build Events tab and check the setting of the "Run the post-build event:" drop down. If it is set to 'When the build updates the project output' this might be your problem, try setting to 'On successful build'.</p> <p>John.</p> http://stackoverflow.com/questions/15678/can-i-configure-visualstudio-2008-to-always-build-the-startup-project/16045#16045 2 Answer by John Richardson for Can I configure VisualStudio 2008 to always build the startup project? John Richardson 2008-08-19T12:12:43Z 2008-08-19T12:12:43Z <p>This is a pain. What we really need is for Microsoft to allow us to hook into a Post-Solution Build event. You can do this via macros but that's too complicated.</p> <p>I'm assuming this is a C++ project because I don't have this problem with C#.</p> <p>This is my solution, it's not elegant but it works:</p> <ul> <li>Create a new project whose only purpose is to run the post-build script. Mark it as dependent on every other project in the solution.</li> <li>Add a dummy file to that project called dummy.h or whatever.</li> <li>Right click on dummy.h in Solution Explorer and select Properties.</li> <li>Select 'Custom Build Step'.</li> <li>For the command line type 'echo' and for Outputs just type 'dummy' or something else that will never exist.</li> </ul> <p>This project, and therefore the post-build script, will now be run on every build.</p> <p>John.</p> http://stackoverflow.com/questions/15784/what-visual-studio-add-ins-do-you-use/15806#15806 1 Answer by John Richardson for What Visual Studio add-ins do you use? John Richardson 2008-08-19T06:41:56Z 2008-08-19T06:41:56Z <p>I use:</p> <ul> <li>ReSharper</li> <li>VisualSVN</li> <li>TestDriven.net</li> </ul> <p>If anyone knows of a good native C++ refactoring tool that doesn't bring the system to a standstill all the time, please post it. Refactor! Pro isn't bad by itself but I can't get it to play nicely with R#. I found Visual Assist too slow even when it's the only plug-in installed.</p> http://stackoverflow.com/questions/14300/how-do-i-make-powershell-run-a-batch-file-and-then-stay-open/14315#14315 4 Answer by John Richardson for How do I make Powershell run a batch file and then stay open? John Richardson 2008-08-18T08:16:20Z 2008-08-18T08:16:20Z <p>Thanks, Matt, that's just the job. It also needs you to specify the directory of the batch file so the exact conversion is:</p> <pre><code>powershell.exe -noexit .\mybatchfile.bat </code></pre> <p>John.</p> http://stackoverflow.com/questions/13537/bootstrapping-a-language/13559#13559 7 Answer by John Richardson for Bootstrapping a language John Richardson 2008-08-17T07:59:04Z 2008-08-17T07:59:04Z <blockquote> <p>There is a really good writeup about bootstrapping a compiler from the lowest possible level (which on a modern machine is basically a hex editor), titled Bootstrapping a simple compiler from nothing. It used to be hosted at <a href="http://www.rano.org/bcompiler.html" rel="nofollow">http://www.rano.org/bcompiler.html</a>, but that link is dead now. If you run across it, it's a great read. (And if anyone knows where I could get a working copy, I'd really appreciate a link.)</p> </blockquote> <p>Derek, I don't know if or where this is still available online but I've copied it up onto <a href="http://www.shorttext.com/g14day9" rel="nofollow">shorttext.com</a>. </p> http://stackoverflow.com/questions/13170/a-threadstateexception-occures-when-trying-to-restart-a-thread/13214#13214 2 Answer by John Richardson for A ThreadStateException occures when trying to restart a thread John Richardson 2008-08-16T16:25:07Z 2008-08-16T16:25:07Z <p>It's possible for a thread to be in more than one state at once therefore the ThreadState property is actually a bitmap of possible states. So testing for equality with just one state will not give you the right result. You would need to do something like:</p> <pre><code>if((mThread.ThreadState &amp; ThreadState.Running) != 0) </code></pre> <p>However, checking thread state is the wrong to do anything. I'm not entirely clear what you're trying to achieve but I will guess that you're waiting for a thread to terminate before restarting it. In that case you should do:</p> <pre><code>mThread.Join(); mThread = new Thread(new ParameterizedThreadStart(Monitor)); if(check) mThread.Start(60000); else mThread.Start(0); </code></pre> <p>Although if you describe the problem you're trying to solve in more detail I'm almost certain there will be a better solution. Waiting around for a thread to end just to restart it again doesn't seem that efficient to me. Perhaps you just need some kind of inter-thread communication?</p> <p>John.</p> http://stackoverflow.com/questions/11992/how-do-i-transition-to-management/12017#12017 0 Answer by John Richardson for How do I transition to management? John Richardson 2008-08-15T06:17:44Z 2008-08-15T06:17:44Z <p>This is a cheap reply, but I think Steve Yegge's <a href="http://steve-yegge.blogspot.com/2006/05/not-managing-software-developers.html" rel="nofollow" title="Coding Guidelines for Cocoa">article on software managers</a> is both insightful and short - the defining qualities of any must read.</p> http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/9792#9792 1 Answer by John Richardson for Is accessing a variable in C# an atomic operation? John Richardson 2008-08-13T13:28:47Z 2008-08-13T13:28:47Z <blockquote> <p>You could also decorate s_Initialized with the volatile keyword and forego the use of lock entirely.</p> </blockquote> <p>That is not correct. You will still encounter the problem of a second thread passing the check before the first thread has had a chance to to set the flag which will result in multiple executions of the initialisation code.</p> <p>John.</p> http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/9788#9788 16 Answer by John Richardson for Is accessing a variable in C# an atomic operation? John Richardson 2008-08-13T13:24:41Z 2008-08-13T13:24:41Z <p>For the definitive answer go to the spec. :)</p> <p>Partition I, Section 12.6.6 of the CLI spec states: "A conforming CLI shall guarantee that read and write access to properly aligned memory locations no larger than the native word size is atomic when all the write accesses to a location are the same size."</p> <p>So that confirms that s_Initialized will never be unstable, and that read and writes to primitve types are atomic.</p> <p>Interlocking creates a memory barrier to prevent the processor from reordering reads and writes. The lock creates the only required barrier in this example. </p> <p>John.</p> http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/9711#9711 0 Answer by John Richardson for Is accessing a variable in C# an atomic operation? John Richardson 2008-08-13T12:34:20Z 2008-08-13T12:34:20Z <p>I think you're asking if s_Initialized could be in an unstable state when read outside the lock. The short answer is no. A simple assignment/read will boil down to a single assembly instruction which is atomic on every processor I can think of. </p> <p>I'm not sure what the case is for assignment to 64 bit variables, it depends on the processor, I would assume that it is not atomic but it probably is on modern 32 bit processors and certainly on all 64 bit processors. Assignment of complex value types will not be atomic.</p> <p>John.</p> http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/9689#9689 3 Answer by John Richardson for Is accessing a variable in C# an atomic operation? John Richardson 2008-08-13T12:08:29Z 2008-08-13T12:08:29Z <p>The Initialize function is faulty. It should look more like this:</p> <pre><code>private static void Initialize() { if(s_initialized) return; lock(s_lock) { if(s_Initialized) return; s_Initialized = true; } } </code></pre> <p>Without the second check inside the lock it's possible the initialisation code will be executed twice. So the first check is for performance to save you taking a lock unnecessarily, and the second check is for the case where a thread is executing the initialisation code but hasn't yet set the s_Initialized flag and so a second thread would pass the first check and be waiting at the lock.</p> <p>John.</p> http://stackoverflow.com/questions/321298/ffmpeg-frame-to-directx-surface/408331#408331 Comment by John Richardson on FFMPEG Frame to DirectX Surface John Richardson 2009-01-13T13:40:34Z 2009-01-13T13:40:34Z Thanks, Adam. That's pretty much what I ended up with. :) http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/9788#9788 Comment by John Richardson on Is accessing a variable in C# an atomic operation? John Richardson 2008-09-24T06:12:33Z 2008-09-24T06:12:33Z Good spot, Thomas. Everyone should read be sure to read your answer as well. http://stackoverflow.com/questions/56424/what-can-cause-a-reduction-in-frame-rate-when-upgrading-a-graphics-card/80707#80707 Comment by John Richardson on What can cause a reduction in frame rate when upgrading a graphics card? John Richardson 2008-09-17T13:47:05Z 2008-09-17T13:47:05Z I think this is the reason. Thanks. http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/9689#9689 Comment by John Richardson on Is accessing a variable in C# an atomic operation? John Richardson 2008-09-13T08:23:43Z 2008-09-13T08:23:43Z I did say that the first check is for performance. Locks are very expensive so it's always worth doing. On the second point, I think it's reasonable to assume more complex code has been omitted. I somehow doubt MS would go to the expense of a lock unnecessarily. http://stackoverflow.com/questions/56424/what-can-cause-a-reduction-in-frame-rate-when-upgrading-a-graphics-card/56486#56486 Comment by John Richardson on What can cause a reduction in frame rate when upgrading a graphics card? John Richardson 2008-09-11T14:49:37Z 2008-09-11T14:49:37Z Mipmaps are disabled. I'll try double-buffering the dynamic textures and see what happens. Thanks.