User kevin42 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T19:57:23Zhttp://stackoverflow.com/feeds/user/10705http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1780860/what-is-the-correct-way-to-customize-the-install-output-directory-for-each-develo0What is the correct way to customize the install output directory for each developer in CMake?kevin422009-11-23T02:43:38Z2009-11-23T08:44:56Z
<p>I've been working on an old game that I created CMake files for to get rid of a mix of Makefiles and visual studio projects. Everything is working well, but I'm having a hard time figuring out what the correct way to allow the developer to specify where the output files are copied to when install is run.</p>
<p>The issue is there are many DLLs and some custom targets that need their output copied into a directory structure that includes the game data (levels, art, sound, etc) before they can test the code.</p>
<p>My install commands currently uses a variable that I 'SET' at the top level CMakeLists.txt to specify the output directory. I've tried overriding it with -DD3_GAMEDIR on the cmake command line. That variable gets set in the CMakeCache, but the SET command appears to override it still.</p>
<p>Should I be checking the length of the variable before using SET to see if the user specified a value? That seems like a hack to me, but I'm having a hard time finding the correct way to do it.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/860575/building-opensource-qt-for-visual-studio-2005-20083Building Opensource QT for Visual Studio 2005/2008kevin422009-05-13T21:41:16Z2009-11-13T15:14:35Z
<p>Does anyone have instructions on building the opensource version of QT? Now that the repository is opened up, I'm trying to build for VS2008 but I'm getting errors when it tries to build qmake.</p>
<p>I found the question <a href="http://stackoverflow.com/questions/74521/im-looking-to-use-visual-studio-to-write-and-compile-using-the-open-source-versi">http://stackoverflow.com/questions/74521/im-looking-to-use-visual-studio-to-write-and-compile-using-the-open-source-versi</a> but this information is out of date, and doesn't really help me. For reference, here's what happens when I try to build with <code>configure -platform win32-msvc2008</code></p>
<pre><code>Microsoft (R) Program Maintenance Utility Version 9.00.30729.01
Copyright (C) Microsoft Corporation. All rights reserved.
cl -c -Foproject.obj -W3 -nologo -O2 -I. -Igenerators -Igenerators\unix -Igenerators\win32 -Igenerators\mac -
IC:\dev\open_source\qt\include -IC:\dev\open_source\qt\include\QtCore -IC:\dev\open_source\qt\include -IC:\dev\open_sou
rce\qt\include\QtCore -IC:\dev\open_source\qt\src\corelib\global -IC:\dev\open_source\qt\include\QtScript -IC:\dev\op
en_source\qt\mkspecs\win32-msvc2008 -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_LITE_COMPONENT -DQT_NODLL -DQT_NO_STL
-DQT_NO_COMPRESS -DUNICODE -DHAVE_QCONFIG_CPP -DQT_BUILD_QMAKE -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT -D
QT_NO_DATASTREAM -DQT_NO_PCRE -DQT_BOOTSTRAPPED -DQMAKE_OPENSOURCE_EDITION project.cpp
project.cpp
c:\dev\open_source\qt\src\corelib\tools\qstringlist.h(45) : fatal error C1083: Cannot open include file: 'QtCore/qalgori
thms.h': No such file or directory
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.EXE"' : return code '0x2'
Stop.
Building qmake failed, return code 2
</code></pre>
http://stackoverflow.com/questions/203068/xmlsocket-working-in-firefox-but-not-ie0XMLSocket working in firefox but not IEkevin422008-10-14T22:17:07Z2009-08-31T07:50:20Z
<p>I'm helping a customer who has a problem with a flash app. The flash app uses an XMLSocket to connect to a service running on localhost. It works fine under firefox. </p>
<p>It uses the following line to setup the security policy:</p>
<p>System.security.loadPolicyFile("xmlsocket://localhost:10032");</p>
<p>Running the flash app under firefox, the service listening on port 10032 gets a connection with a <policy-file-request/>, responds to it, and it works well. Under IE, the service never gets the connection and the subsequent socket connection do not work.</p>
<p>EDIT:
The problem turned out to be caused by embedding flash in a hidden div tag. In that case it refused to send out the policy file request. With the div not hidden it works. The answer about different versions of flash between FF and IE was right on, that's why it was working in FF (it was an older version). The newer version didn't like the hidden DIV tag.</p>
http://stackoverflow.com/questions/513650/offscreen-rendering-to-a-texture-in-a-win32-service1Offscreen rendering to a texture in a win32 servicekevin422009-02-04T22:20:57Z2009-06-25T23:09:35Z
<p>I'm trying to write a C++ windows service that can render to a texture. I've got the code working as a regular console app, but when run as a service <code>wglGetProcAddress()</code> returns NULL.</p>
<p>Can anyone tell me if this is possible, and if so, what do I need to do to make OpenGL work inside a service process? </p>
<p><hr /></p>
<h3>Edit:</h3>
<p>I still haven't got this to work under Vista, but it does work under XP.</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020080#10200801Answer by kevin42 for C++ for gameskevin422009-06-19T21:24:15Z2009-06-19T21:24:15Z<p>You should check out wildmagic at <a href="http://www.geometrictools.com/" rel="nofollow">http://www.geometrictools.com/</a>. This is a nice game engine with lots of sample code and related books. I'd highly recommend it as a deep examination of game engines on c++.</p>
http://stackoverflow.com/questions/989795/example-for-boost-sharedmutex-multiple-reads-one-write0Example for boost shared_mutex (multiple reads/one write)?kevin422009-06-13T02:38:59Z2009-06-13T03:52:46Z
<p>I have a multithreaded app that has to read some data often, and occasionally that data is updated. Right now a mutex keeps access to that data safe, but it's expensive because I would like multiple threads to be able to read simultaneously, and only lock them out when an update is needed (the updating thread could wait for the other threads to finish).</p>
<p>I think this is what boost::shared_mutex is supposed to do, but I'm not clear on how to use it, and haven't found a clear example.</p>
<p>Does anyone have a simple example I could use to get started?</p>
http://stackoverflow.com/questions/897809/i-cant-build-a-library-that-needs-wow64-api/897942#8979423Answer by kevin42 for I can't build a library that needs WOW64 Apikevin422009-05-22T13:49:57Z2009-05-22T13:49:57Z<p>Your platform SDK files are probably too old to have that function. That function first appeared in the XP 64 bit platform SDK. You can get the latest SDK here: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e6e1c3df-a74f-4207-8586-711ebe331cdc&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=e6e1c3df-a74f-4207-8586-711ebe331cdc&displaylang=en</a></p>
<p>Even though it says it's "The Windows SDK for Windows Server® 2008" it is just the latest SDK and will have all the backwards compatible files you need.</p>
<p>After you install it, depending on your compiler you'll probably have to point the include directory to it. </p>
http://stackoverflow.com/questions/889596/calculating-the-bounding-rectangle-at-an-angle-of-a-polygon3Calculating the Bounding Rectangle at an Angle of a Polygonkevin422009-05-20T18:53:03Z2009-05-20T20:15:15Z
<p>I have the need to determine the bounding rectangle for a polygon at an arbitrary angle. This picture illustrates what I need to do:</p>
<p><img src="http://kevlar.net/RotatedBoundingRectangle.png" alt="alt text" /></p>
<p>The pink rectangle is what I need to determine at various angles for simple 2d polygons. </p>
<p>Any solutions are much appreciated!</p>
<p><strong>Edit:</strong></p>
<p>Thanks for the answers, I got it working once I got the center points correct. You guys are awesome!</p>
http://stackoverflow.com/questions/883717/c-opengl-application-as-a-web-service/883846#8838462Answer by kevin42 for C++ OpenGL application as a web servicekevin422009-05-19T16:40:16Z2009-05-19T16:40:16Z<p>I had a similar <a href="http://stackoverflow.com/questions/513650/offscreen-rendering-to-a-texture-in-a-win32-service">project/question</a>, that although it wasn't a web service, it required OpenGL rendering in a windows service. I had tons of problems getting it to work on Vista, although eventually it did work on XP with regular OpenGL.</p>
<p>I finally tried using <a href="http://www.mesa3d.org/" rel="nofollow">Mesa</a>, which I built to work as a private DLL for my service. It was a great decision because I could now actually step into the OpenGL calls and see where things were going wrong. It ran fine in software mode under the service, and while it wasn't hardware accelerated, it worked very well.</p>
http://stackoverflow.com/questions/860151/what-is-the-standard-method-for-a-website-to-communicate-with-a-win32-executable/860267#8602672Answer by kevin42 for What is the standard method for a website to communicate with a win32 executable?kevin422009-05-13T20:35:17Z2009-05-13T20:35:17Z<p>If you can modify the delphi app to take an XML request and respond with an XML answer over a TCP socket (ideally using the HTTP protocol), you will be able to make it interoperate with most web server frameworks relatively easily. But the exact details of how to make that integration happen will depend on the language/framework it was written in. </p>
<p>If the web server is on windows you can compile your delphi app as a DLL that can return XML or HTML, taking parameters as part of the URL or a POST operation. Some details on making a Delphi DLL for web servers <a href="http://mc-computing.com/Databases/Delphi/WebServers/WebServers.html" rel="nofollow">are here</a>.</p>
http://stackoverflow.com/questions/859793/federal-government-coding-style-guide/860063#8600631Answer by kevin42 for Federal Government Coding Style Guidekevin422009-05-13T19:52:13Z2009-05-13T19:52:13Z<p>In my experience, each contractor has their own style guidelines. Even within one area of the federal government I've seen several different styles used by different projects (and rightly so IMO).</p>
<p>It's pretty common for government projects to require you adhere to certain principals, such as <a href="http://www.acq.osd.mil/osjtf/pdf/pmg%5Fsection2.pdf" rel="nofollow">MOSA</a>, but that's way more abstract than a coding style.</p>
http://stackoverflow.com/questions/859535/how-do-i-convert-a-big-endian-struct-to-a-little-endian-struct/859773#8597731Answer by kevin42 for How do I convert a big-endian struct to a little endian-struct?kevin422009-05-13T19:02:01Z2009-05-13T19:02:01Z<p>I like to implement a SwapBytes method for each data type that needs swapping, like this:</p>
<pre><code>inline u_int ByteSwap(u_int in)
{
u_int out;
char *indata = (char *)&in;
char *outdata = (char *)&out;
outdata[0] = indata[3] ;
outdata[3] = indata[0] ;
outdata[1] = indata[2] ;
outdata[2] = indata[1] ;
return out;
}
inline u_short ByteSwap(u_short in)
{
u_short out;
char *indata = (char *)&in;
char *outdata = (char *)&out;
outdata[0] = indata[1] ;
outdata[1] = indata[0] ;
return out;
}
</code></pre>
<p>Then I add a function to the structure that needs swapping, like this:</p>
<pre><code>struct RECORD {
UINT32 foo;
UINT32 bar;
CHAR fooword[11];
CHAR barword[11];
UNIT16 baz;
void SwapBytes()
{
foo = ByteSwap(foo);
bar = ByteSwap(bar);
baz = ByteSwap(baz);
}
}
</code></pre>
<p>Then you can modify your code that reads (or writes) the structure like this:</p>
<pre><code>fstream f;
f.open("file.bin", ios::in | ios::binary);
RECORD r;
f.read((char*)&detail, sizeof(RECORD));
r.SwapBytes();
cout << "fooword = " << r.fooword << endl;
</code></pre>
<p>To support different platforms you just need to have a platform specific implementation of each ByteSwap overload.</p>
http://stackoverflow.com/questions/809276/why-is-a-guid-is-the-best-choice-for-a-pk-if-youre-going-to-be-doing-replication/809323#8093231Answer by kevin42 for Why is a GUID is the best choice for a PK if you're going to be doing replication?kevin422009-04-30T22:01:39Z2009-04-30T22:01:39Z<p>If you consider what happens when two servers that are replicated with each other and have data being added to them between synchronization, the problem becomes apparent:</p>
<pre><code>Time Server NewID
001 A 1
002 A 2
003 <sync of server A and B>
004 A 3
005 B 3
006 <sync of server A and B>
</code></pre>
<p><---two different records have the same ID now, so there's a conflict!</p>
http://stackoverflow.com/questions/807245/good-simple-configuration-library-for-large-c-project/808103#8081030Answer by kevin42 for Good, simple configuration library for large c++ project?kevin422009-04-30T17:24:17Z2009-04-30T17:24:17Z<p>I've often used a simple wrapper around <a href="http://code.google.com/p/pugixml/" rel="nofollow" title="pugxml">pugxml</a>. I find that creating a configuration class with parameter validation for enumerated types and so on makes the rest of the code much cleaner. If you are just dealing with key/value pairs you will have to validate the data all throughout your code. By writing a custom class for each application you can put all that in one place.</p>
http://stackoverflow.com/questions/753503/polygon-math3Polygon mathkevin422009-04-15T20:12:37Z2009-04-17T08:28:47Z
<p>Given a list of points that form a simple 2d polygon oriented in 3d space and a normal for that polygon, what is a good way to determine which points are specific 'corner' points?</p>
<p>For example, which point is at the lower left, or the lower right, or the top most point? The polygon may be oriented in any 3d orientation, so I'm pretty sure I need to do something with the normal, but I'm having trouble getting the math right.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/709543/loadlibrary-fails-when-including-a-specific-file-during-dll-build/709565#7095652Answer by kevin42 for LoadLibrary fails when including a specific file during DLL build.kevin422009-04-02T12:45:59Z2009-04-02T12:45:59Z<p>Is it possible that header includes a #pragma comment(lib,"somelibrary.lib") statement somewhere? If so it's automatically trying to import a library.</p>
<p>To troubleshoot this I'd start by looking at the binary with depends (<a href="http://www.dependencywalker.com/" rel="nofollow">http://www.dependencywalker.com/</a>), to see if there are any DLL dependencies you don't expect. If you do find something and you are in Visual Studio, you should turn on "Show Progress" AKA /VERBOSE on the linker.</p>
<p>Since you are getting the Invalid Access to memory location, it's possible there's something in the DLLMAIN or some static initializer that is crashing. Can you simplify the MatrixWorkset.dll (assuming you wrote it)?</p>
http://stackoverflow.com/questions/131196/convert-console-exe-to-dll-in-c/131249#1312492Answer by kevin42 for Convert console exe to dll in Ckevin422008-09-25T03:01:36Z2008-09-25T03:01:36Z<p>Disclaimer: I know nothing about SoX. It might be that the code is structured to make this easy, or it might be more hard. Either way, the process is the same:</p>
<p>First you want to find the functions in the SoX application that you want to call. Most likely the console app has code to parse the command line and call the appropriate functions. So first off, find the functions you want to use.</p>
<p>Next, check out the info on exporting functions in DLLs from C at this site: <a href="http://www.flipcode.com/archives/Creating_And_Using_DLLs.shtml" rel="nofollow">Creating And Using DLLs</a></p>
<p>Then make a new makefile or visual studio project file with the target being a DLL, and add the sourcefiles from the SoX program that you have modified to be exported. </p>
http://stackoverflow.com/questions/104959/what-is-the-best-way-to-inspect-stl-containers-in-visual-studio-debugging2What is the best way to inspect STL containers in Visual Studio debugging?kevin422008-09-19T19:49:50Z2008-09-21T18:28:50Z
<p>If I have a std::vector or std::map variable, and I want to see the contents, it's a big pain to see the nth element while debugging. Is there a plugin, or some trick to making it easier to watch STL container variables while debugging (VS2003/2005/2008)?</p>
http://stackoverflow.com/questions/72121/finding-the-variable-name-passed-to-a-function-in-c/72197#721970Answer by kevin42 for Finding the Variable Name passed to a Function in C#kevin422008-09-16T13:32:09Z2008-09-16T13:32:09Z<p>System.Environment.StackTrace will give you a string that includes the current call stack. You could parse that to get the information, which includes the variable names for each call. </p>
http://stackoverflow.com/questions/889596/calculating-the-bounding-rectangle-at-an-angle-of-a-polygon/889721#889721Comment by kevin42 on Calculating the Bounding Rectangle at an Angle of a Polygonkevin422009-05-20T19:46:52Z2009-05-20T19:46:52ZNot for collision detection, I have to identify points on an angled grid within the polygon. Having the bounding rectangle makes it easy to determine the number of rows and columns in the grid. Thanks!http://stackoverflow.com/questions/889596/calculating-the-bounding-rectangle-at-an-angle-of-a-polygon/889626#889626Comment by kevin42 on Calculating the Bounding Rectangle at an Angle of a Polygonkevin422009-05-20T19:42:59Z2009-05-20T19:42:59ZTo make it work I had to rotate the rectangle using the centerx and y of the polygon, which is where I was going wrong. I was rotating the rectangle around its center rather than the original center point of the poly. Thanks!http://stackoverflow.com/questions/889596/calculating-the-bounding-rectangle-at-an-angle-of-a-polygon/889626#889626Comment by kevin42 on Calculating the Bounding Rectangle at an Angle of a Polygonkevin422009-05-20T19:41:10Z2009-05-20T19:41:10ZI think your yr = yt * sin(alpha) + yt * cos(alpha);
is wrong, don't you want it to be:
yr = xt * sin(alpha) + yt * cos(alpha); ?
http://stackoverflow.com/questions/889596/calculating-the-bounding-rectangle-at-an-angle-of-a-polygonComment by kevin42 on Calculating the Bounding Rectangle at an Angle of a Polygonkevin422009-05-20T19:01:03Z2009-05-20T19:01:03ZThe angle of the bounding rectangle is what varies. I've thought about rotating the polygon in the reverse direction, then fitting a rectangle around it, and rotating the points of the rectangle back, but I think I'm getting messed up by identifying the center points correctly.http://stackoverflow.com/questions/860575/building-opensource-qt-for-visual-studio-2005-2008/864568#864568Comment by kevin42 on Building Opensource QT for Visual Studio 2005/2008kevin422009-05-19T14:35:39Z2009-05-19T14:35:39ZThanks, that did the trick. It wasn't enough to run vcvarsall.cmd apparently.http://stackoverflow.com/questions/859793/federal-government-coding-style-guide/860009#860009Comment by kevin42 on Federal Government Coding Style Guidekevin422009-05-13T19:45:26Z2009-05-13T19:45:26ZThe RFP may well list requirements, but what really matters is what is in the statement of work, which will either be included in the contract, or referenced by it. The requirements in an RFP don't necessarily flow down to the contract.http://stackoverflow.com/questions/794760/does-index-of-array-existComment by kevin42 on Does Index of Array Existkevin422009-04-27T18:48:40Z2009-04-27T18:48:40ZDo you mean you want to know if some value for array[x] == 25?
I think you are confusing people about what you are asking for by asking if array[25] exists. Certainly it exists if there are 26 or more elements in the array, but I don't think that is what you are asking for.http://stackoverflow.com/questions/753503/polygon-math/753512#753512Comment by kevin42 on Polygon mathkevin422009-04-15T20:21:00Z2009-04-15T20:21:00ZSorry, I should have been more clear.
It's a face in 3d space, but it's really just a 2d polygon. So I want to know the specific corners if you were facing the polygon directly aligned with the normal (so it would appear as a 2d polygon). No wonder I can't solve it, I can't even explain it. :)http://stackoverflow.com/questions/513650/offscreen-rendering-to-a-texture-in-a-win32-serviceComment by kevin42 on Offscreen rendering to a texture in a win32 servicekevin422009-02-19T19:45:32Z2009-02-19T19:45:32ZWe want to run it as a service because it's basically a render farm type application meant to run on a bunch of headless compute nodes. Having them all logged in is undesirable, it's much cleaner to have the service start when the machine boots.http://stackoverflow.com/questions/513650/offscreen-rendering-to-a-texture-in-a-win32-service/513679#513679Comment by kevin42 on Offscreen rendering to a texture in a win32 servicekevin422009-02-04T22:39:25Z2009-02-04T22:39:25ZI have tried that, checking the box "Allow service to interact with the Desktop", but it still doesn't work. Interestingly CreateWindowEx() works, I can create the window handle and get messages, but wglGetProcAddress() doesn't work.