User Jim Buck - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:06:00Z http://stackoverflow.com/feeds/user/2666 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1916782/static-library-links-in-wxwidgets-statically-but-apps-using-my-lib-still-require/1916825#1916825 0 Answer by Jim Buck for Static library links in wxWidgets statically, but apps using my lib still require wxwidgets Jim Buck 2009-12-16T18:51:05Z 2009-12-16T18:51:05Z <p>I hate to suggest the obvious, but is wxbase28.lib listed in the list of dependencies of your test application?</p> http://stackoverflow.com/questions/1902621/how-to-declare-gluperspective-in-opengl/1902666#1902666 0 Answer by Jim Buck for How to declare gluPerspective in OpenGL? Jim Buck 2009-12-14T18:36:22Z 2009-12-14T18:36:22Z <p>Somewhere at the top of the source file you want to use <code>gluPerspective</code> in:</p> <pre><code>#include &lt;GL/glu.h&gt; </code></pre> <p>and then you can use <code>gluPerspective</code> with no problem.</p> http://stackoverflow.com/questions/1876926/how-can-i-create-bitmaps-in-c/1877159#1877159 -1 Answer by Jim Buck for How can I create bitmaps (in C)? Jim Buck 2009-12-09T21:49:53Z 2009-12-09T21:49:53Z <p><a href="http://freeimage.sourceforge.net/" rel="nofollow">FreeImage</a> is excellent. I've used this for my own game development work, and it supports tons of formats. Here's the list of features and formats supported - <a href="http://freeimage.sourceforge.net/features.html" rel="nofollow">http://freeimage.sourceforge.net/features.html</a></p> http://stackoverflow.com/questions/1864352/void-has-unknown-size-in-visual-c/1864591#1864591 1 Answer by Jim Buck for void has unknown size in Visual C++ Jim Buck 2009-12-08T04:29:10Z 2009-12-08T04:29:10Z <p>For purely pointing at raw data and incrementing that pointer by the number of bytes a chunk of data occupies, I always use <code>char *</code>. I then recast the pointer to a relevant data structure pointer once I need to treat it as something specific. Incrementing a <code>void *</code> isn't portable among compilers.</p> http://stackoverflow.com/questions/1853734/a-floating-point-array-in-c/1853743#1853743 11 Answer by Jim Buck for A floating point array in C Jim Buck 2009-12-05T22:51:58Z 2009-12-05T22:51:58Z <p>What you see is correct since floating point cannot exactly represent many real numbers. This is a must-read: <a href="http://docs.sun.com/source/806-3568/ncg%5Fgoldberg.html" rel="nofollow">What Every Computer Scientist Should Know About Floating-Point Arithmetic</a></p> http://stackoverflow.com/questions/703979/what-is-the-best-way-to-port-from-objective-c-to-c 1 What is the best way to port from Objective-C to C++? Jim Buck 2009-04-01T03:44:22Z 2009-12-01T10:39:13Z <p>I have no Objective-C experience whatsoever but have a strong C++ background. Is there an automated tool/script or, worst case, some manual method using some excellent reference to port code written in Objective-C to C++? What are the difficulties involved?</p> <p>Edit: I'm told the code uses Objective-C fairly trivially. It's an iPhone app that probably doesn't use much in the way of OS-level UI. The C++ version is meant for a non-Apple platform where GNUStep is not an option, so Objective-C++ is not an option.</p> http://stackoverflow.com/questions/1813491/define-fg-g2-gg2/1813498#1813498 0 Answer by Jim Buck for #define f(g,g2) g##g2 Jim Buck 2009-11-28T19:24:13Z 2009-11-28T19:24:13Z <p><code>##</code> is the preprocessor "command" for concatenating what comes before and after.</p> http://stackoverflow.com/questions/1788035/sharing-methods-between-two-implementations-of-a-virtual-base-class-in-c/1788069#1788069 2 Answer by Jim Buck for Sharing methods between two implementations of a virtual base class in C++ Jim Buck 2009-11-24T05:48:19Z 2009-11-24T05:48:19Z <p>If you want to keep your base class as pure virtual, create another class that inherits from this one and implements that one function, and then have your two other classes inherit from this one:</p> <pre><code>class Base { public: virtual void TheFunction(); /* blah blah other virtual functions */ }; class OneFunctionImplemented : public Base { public: virtual void TheFunction() { DoSomething(); } }; class ChildClass1 : public OneFunctionImplemented { }; class ChildClass2 : public OneFunctionImplemented { }; </code></pre> http://stackoverflow.com/questions/1766347/why-does-this-compile-with-the-dev-c-compiler-and-not-visual-studios-one/1766483#1766483 4 Answer by Jim Buck for Why does this compile with the Dev-C++ compiler and not Visual Studio's one ? Jim Buck 2009-11-19T20:58:30Z 2009-11-19T20:58:30Z <p>Visual C++ doesn't do stack allocations with that syntax (though I wish it did). You can do stack allocations explicitly with:</p> <pre><code>int *arr = (int *)_alloca(n*sizeof(*arr)); </code></pre> <p>and no need to free it since it's automatically freed when the scope ends.</p> http://stackoverflow.com/questions/1739025/why-i-cant-pass-two-chars-as-function-arguments-in-c/1739051#1739051 0 Answer by Jim Buck for Why I can't pass two chars as function arguments in C? Jim Buck 2009-11-15T22:14:39Z 2009-11-15T22:14:39Z <p>As a guess at what "stops executing" could mean, did you update the signature in the header file as well?</p> http://stackoverflow.com/questions/1712592/variably-modified-array-at-file-scope/1712605#1712605 4 Answer by Jim Buck for Variably modified array at file scope Jim Buck 2009-11-11T02:23:11Z 2009-11-11T02:23:11Z <pre><code>#define NUM_TYPES 4 </code></pre> http://stackoverflow.com/questions/1697333/how-can-i-achieve-inheritance-in-c/1697343#1697343 1 Answer by Jim Buck for How can I achieve inheritance in C? Jim Buck 2009-11-08T17:56:11Z 2009-11-08T17:56:11Z <p>By using <a href="http://en.wikipedia.org/wiki/Object%5Fcomposition" rel="nofollow">composition</a>.</p> http://stackoverflow.com/questions/1691491/how-to-build-a-vector-of-different-objects-after-reading-a-file/1691510#1691510 1 Answer by Jim Buck for how to build a vector of different objects after reading a file Jim Buck 2009-11-07T00:58:25Z 2009-11-07T00:58:25Z <p>You can do it if you have a vector of pointers instead:</p> <pre><code>vector&lt;Obstacle *&gt; obsdata; </code></pre> <p>and then you "new" your subsequent CIRCLE and RECTANGLE:</p> <pre><code> if(shape=="CIRCLE") { CIRCLE *c = new CIRCLE; c-&gt;m_Xc=num1; c-&gt;m_Yc=num2; c-&gt;m_Radius=num3; obsdata.push_back(c); } </code></pre> <p>etc..</p> http://stackoverflow.com/questions/1682281/variables-scoping-when-inheriting/1682325#1682325 0 Answer by Jim Buck for variables scoping when inheriting Jim Buck 2009-11-05T17:44:57Z 2009-11-05T17:44:57Z <p>There is no difference between those two versions of class B. Is that the real code that you see garbage in?</p> http://stackoverflow.com/questions/1650792/c-function-parameters-use-a-reference-or-a-pointer-and-then-dereference/1650892#1650892 5 Answer by Jim Buck for C++ function parameters: use a reference or a pointer (and then dereference)? Jim Buck 2009-10-30T16:28:10Z 2009-10-30T16:28:10Z <p>This will get voted down since it's Old Skool, but I often prefer pointers since it's easier to just glance at code and see if my objects that I am passing to a function could get modified, especially if they are simple datatypes like int and float.</p> http://stackoverflow.com/questions/1647298/why-dont-stl-containers-have-virtual-destructors/1647316#1647316 3 Answer by Jim Buck for Why don't STL containers have virtual destructors? Jim Buck 2009-10-30T00:15:51Z 2009-10-30T00:15:51Z <p>I guess it follows the C++ philosophy of not paying for features that you don't use. Depending on the platform, a pointer for the virtual table could be a hefty price to pay if you don't care about having a virtual destructor.</p> http://stackoverflow.com/questions/1626081/opengl-textures-loading-improperly/1626142#1626142 2 Answer by Jim Buck for OpenGL - Textures loading improperly Jim Buck 2009-10-26T17:29:15Z 2009-10-26T17:29:15Z <p>In your renderer, are you calling glBindTexture appropriately? It sounds like your renderer is just using whatever the last texture you uploaded was since that was the last time you called glBindTexture. glBindTexture is what tells OpenGL texture to use for your polygons.</p> http://stackoverflow.com/questions/1623010/cleaner-pointer-arithmetic-syntax-for-manipulation-with-byte-offsets/1623020#1623020 5 Answer by Jim Buck for Cleaner pointer arithmetic syntax for manipulation with byte offsets Jim Buck 2009-10-26T04:09:48Z 2009-10-26T04:09:48Z <p>Casting is the only way, whether it's to a char* or intptr_t or other some such type, and then to your final type.</p> http://stackoverflow.com/questions/1529643/c-file-pointer-read-write-issues/1529689#1529689 1 Answer by Jim Buck for C file pointer read write issues Jim Buck 2009-10-07T05:38:26Z 2009-10-07T05:38:26Z <p>You're not going to be able do that in the general case since your numbers have differing numbers of characters. You should just read in all the numbers, sort in memory, and then overwrite the existing file with a new file containing the sorted numbers.</p> http://stackoverflow.com/questions/25730/what-is-the-best-free-memory-leak-detector-for-a-c-c-program-and-its-plug-in-dl 8 What is the best free memory leak detector for a C/C++ program and its plug-in DLLs? Jim Buck 2008-08-25T07:31:46Z 2009-10-05T17:25:05Z <p>I have a .exe and many plug-in .dll modules that the .exe loads. (I have source for both.) A cross-platform (with source) solution would be ideal, but the platform can be narrowed to WinXP and Visual Studio (7.1/2003 in my case).</p> <p>The built-in VS leak detector only gives the line where new/malloc was called from, but I have a wrapper for allocations, so a full symbolic stack trace would be best.</p> <p>The detector would also be able to detect for a leak in both the .exe and its accompanying plug-in .dll modules.</p> http://stackoverflow.com/questions/1512174/is-it-possible-to-define-a-variable-in-expression-in-c/1512189#1512189 2 Answer by Jim Buck for Is it possible to define a variable in expression in C++? Jim Buck 2009-10-02T22:52:50Z 2009-10-02T22:52:50Z <p>I don't believe you can, but even if you could, it would only have scope inside of the parentheses they are defined in (in your example) and cannot be used outside of them.</p> http://stackoverflow.com/questions/1483888/a-diamond-inheritance-problem/1483905#1483905 6 Answer by Jim Buck for A diamond-inheritance problem Jim Buck 2009-09-27T16:40:53Z 2009-09-27T16:40:53Z <p>In your scenario, Element should probably not inherit from Width and Height, but instead, Width and Height should be data members of element. It's composition as opposed to is-a since arguably an Element is-not-a Width or Height but is composed of a Width and Height (and probably some other stuff too).</p> http://stackoverflow.com/questions/1475329/organizing-images-by-color/1475373#1475373 0 Answer by Jim Buck for Organizing Images By Color Jim Buck 2009-09-25T04:05:55Z 2009-09-25T04:05:55Z <p>Average color of all pixels? Make a histogram and find the average of the 'n' peaks?</p> http://stackoverflow.com/questions/1435715/opengl-game-development-scenes-that-span-far-into-view/1446424#1446424 0 Answer by Jim Buck for OpenGL game development - scenes that span far into view Jim Buck 2009-09-18T19:23:44Z 2009-09-18T19:23:44Z <p>The underlying driver <em>may</em> do some culling behind the scenes, but you can't depend on that since it's not part of the OpenGL standard. Maybe your computer's driver does it, but maybe someone else's (who might run your game) doesn't. It's best for you do to your own culling.</p> http://stackoverflow.com/questions/1444528/why-is-this-code-so-slow/1444578#1444578 1 Answer by Jim Buck for Why is this code so slow? Jim Buck 2009-09-18T13:33:36Z 2009-09-18T13:33:36Z <p>Move the .size() calls to before each loop, and make sure you are compiling with optimizations turned on.</p> http://stackoverflow.com/questions/173433/how-to-fix-dwmapi-dll-delay-load-dependency-under-winxp 9 How to fix DWMAPI.DLL delay-load dependency under WinXP? Jim Buck 2008-10-06T07:14:14Z 2009-09-18T09:38:51Z <p>I have built a .dll under WinXP that claims it can't find DWMAPI.DLL when it's loaded. The problem is that this DLL is a Vista DLL, and this a known issue for XP users that have IE7 installed. The recommendation is to uninstall IE7 or repair the .NET Framework via Add/Remove programs. I did the repair, and nothing changed. I'm not about to uninstall IE7 since there must be a better solution that's not the equivalent of "reinstall windows".</p> <p>I've read bad things about people who attempted to uninstall IE7, so I'm reluctant to go that route.</p> <p>I am using C++ under Visual Studio 2003 (7.1). I don't see an option where I may have forced delay loading at application launch. I just used default settings when I created the DLL project. I did just now find an interesting option, Linker->Input->Delay Loaded DLLs, so I put DWMAPI.DLL in there to force it to be delay-loaded. However, I get this when linking:</p> <pre><code>LINK : warning LNK4199: /DELAYLOAD:dwmapi.dll ignored; no imports found from dwmapi.dll </code></pre> <p>.. and it of course didn't change a thing when trying to load my DLL. For the heck of it, I added the whole tree of DLLs that lead to DWMAPI.DLL, and I get the same message. (For the record, it's foundation.dll->shell32.dll->shdocvw.dll->mshtml.dll->ieframe.dll->dwmapi.dll .)</p> <p>To be more specific about what I'm doing, I am writing a Maya plugin and get the always-helpful text in the script editor:</p> <pre><code>// Error: Unable to dynamically load : D:/blahblahblah/mydll.mll The specified module could not be found. // // Error: The operation completed successfully. // // Error: The operation completed successfully. (mydll) // </code></pre> <p>I used Dependency Walker to initially track down the problem, and that's what lead me to DWMAPI.DLL. These are the message depends gives me, and DWMAPI.DLL is the only thing that has a yellow question mark next to it:</p> <pre><code>Warning: At least one delay-load dependency module was not found. Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module. </code></pre> <p>Gerald is right. Maya is, in fact, using a different PATH than the Dependency Walker. My plug-in loads another DLL (for image processing) that lives in the Maya plug-ins directory and depends found it with no problem, but Maya didn't. I had to add ";plug-ins" to the PATH in Maya.env.</p> <p>Seeing as this problem wasn't related to DWMAPI.DLL after all, but DWMAPI is a common problem, I'll post the best link I found about the DWMAPI issue on Novell's website <a href="http://www.novell.com/communities/node/4372/handling-dwmapidll-dependency" rel="nofollow">here</a>. Basically, most programs will have this warning in depends.exe, but if there is a delay-load icon next to it, and you are sure that the program won't directly or indirectly call DWMAPI, then it's fine. The problem is elsewhere. If the delay-load icon isn't present, then you have to look at the /DELAY and /DELAYLOAD options in Visual Studio. The fact that depends gave me a "warning" and not an "error" was a clue to the fact that DWMAPI is not being loaded automatically.</p> http://stackoverflow.com/questions/1428679/any-function-to-query-the-size-of-an-allocated-block/1428881#1428881 0 Answer by Jim Buck for Any function to query the size of an allocated block? Jim Buck 2009-09-15T18:25:36Z 2009-09-15T18:25:36Z <p>_msize on Windows platforms.</p> http://stackoverflow.com/questions/1423696/c-class-with-const-field-how-to-initialize-it-in-constructor/1423708#1423708 7 Answer by Jim Buck for c++ class with const field: how to initialize it in constructor? Jim Buck 2009-09-14T20:24:13Z 2009-09-14T20:24:13Z <p>You need to do it in an initializer list:</p> <pre><code>Bar(Foo* _foo) : foo(_foo) { } </code></pre> <p>(Note that I renamed the incoming variable to avoid confusion.)</p> http://stackoverflow.com/questions/1419087/c-definition-formatting-question/1419125#1419125 3 Answer by Jim Buck for C definition formatting question Jim Buck 2009-09-13T23:37:47Z 2009-09-13T23:37:47Z <p>Your first one will lead to less confusion. Otherwise:</p> <pre><code>int* x, y; </code></pre> <p>At first glance, they appear to be the same type, but they're not. The first is a pointer-to-int, and the second is int. This is much clearer:</p> <pre><code>int *x, y; </code></pre> http://stackoverflow.com/questions/1389838/how-to-debug-macros-efficiently-in-vs/1391012#1391012 3 Answer by Jim Buck for How to debug macros efficiently in VS? Jim Buck 2009-09-07T21:26:34Z 2009-09-07T21:26:34Z <p>Go to either project or source file properties by right-clicking and going to "Properties". Under Configuration Properties->C/C++->Preprocessor, set "Generate Preprocessed File" to either with or without line numbers, whichever you prefer. This will show what your macro expands to in context. If you need to debug it on live compiled code, just cut and paste that, and put it in place of your macro while debugging.</p> http://stackoverflow.com/questions/1902621/how-to-declare-gluperspective-in-opengl/1902666#1902666 Comment by Jim Buck on How to declare gluPerspective in OpenGL? Jim Buck 2009-12-14T22:40:35Z 2009-12-14T22:40:35Z Ohh, ok, I think you mean the word &quot;call&quot; then. :) http://stackoverflow.com/questions/1902621/how-to-declare-gluperspective-in-opengl Comment by Jim Buck on How to declare gluPerspective in OpenGL? Jim Buck 2009-12-14T19:01:27Z 2009-12-14T19:01:27Z Do you mean &quot;how to use gluPerspective&quot; and not &quot;how to declare&quot;? http://stackoverflow.com/questions/1864352/void-has-unknown-size-in-visual-c Comment by Jim Buck on void has unknown size in Visual C++ Jim Buck 2009-12-08T03:24:01Z 2009-12-08T03:24:01Z <code>void &#42;</code> maybe very used as a pointer to typeless data, but <code>void</code> is never used as a datatype. What is <code>a</code>'s role in the code? You end up only using <code>b</code> in the other lines of code. http://stackoverflow.com/questions/1841863/size-of-a-structure-in-c/1841871#1841871 Comment by Jim Buck on Size of a structure in C Jim Buck 2009-12-03T18:40:39Z 2009-12-03T18:40:39Z +1 or mentioning arrays since that's the biggest reason for certain platforms http://stackoverflow.com/questions/1810657/c-iterating-through-a-vector-of-vectors Comment by Jim Buck on C++: Iterating through a vector of vectors Jim Buck 2009-11-27T21:21:37Z 2009-11-27T21:21:37Z I think you'll need to post exact code, and especially mark the line where you are hitting this run-time error. http://stackoverflow.com/questions/1801509/speeding-up-self-similarity-in-an-image Comment by Jim Buck on Speeding up self-similarity in an image Jim Buck 2009-11-26T04:28:22Z 2009-11-26T04:28:22Z What are some typical values for your for-loops? I would get rid of the dynamic memory allocation as a quickie first step. http://stackoverflow.com/questions/1793807/declaring-a-variable-in-an-if-else-block-in-c/1793821#1793821 Comment by Jim Buck on Declaring a variable in an if-else block in C++ Jim Buck 2009-11-25T00:04:52Z 2009-11-25T00:04:52Z A reference must have an initial value. http://stackoverflow.com/questions/1793800/can-i-redefine-a-c-macro-for-a-few-includes-and-then-define-it-back Comment by Jim Buck on Can I redefine a c++ macro for a few includes and then define it back? Jim Buck 2009-11-25T00:03:22Z 2009-11-25T00:03:22Z Why are you defining <b>T</b> to T and then immediately undefining T (and vice-versa down below)? http://stackoverflow.com/questions/1716663/c-memcpy-a-function/1716668#1716668 Comment by Jim Buck on C memcpy() a function Jim Buck 2009-11-20T21:53:38Z 2009-11-20T21:53:38Z PlayStation 3 function pointer is a different size that a data pointer. http://stackoverflow.com/questions/1739025/why-i-cant-pass-two-chars-as-function-arguments-in-c/1739051#1739051 Comment by Jim Buck on Why I can't pass two chars as function arguments in C? Jim Buck 2009-11-15T22:46:30Z 2009-11-15T22:46:30Z What does &quot;stops executing&quot; mean then? You will need to post the code for the function and describe what you expect to happen. http://stackoverflow.com/questions/1691491/how-to-build-a-vector-of-different-objects-after-reading-a-file/1691510#1691510 Comment by Jim Buck on how to build a vector of different objects after reading a file Jim Buck 2009-11-07T02:04:06Z 2009-11-07T02:04:06Z It should be: obsdata[i]-&gt;writeMatlabDisplayCode(fs). Without knowing your file format, it's hard to address your second concern. http://stackoverflow.com/questions/1671985/how-many-bytes-is-the-stack-padding-after-every-activation-record Comment by Jim Buck on How many bytes is the stack padding after every activation record? Jim Buck 2009-11-04T06:34:14Z 2009-11-04T06:34:14Z Platform? Compiler? http://stackoverflow.com/questions/1663908/how-do-i-use-a-pointer-as-an-offset Comment by Jim Buck on How do I use a pointer as an offset? Jim Buck 2009-11-02T23:03:36Z 2009-11-02T23:03:36Z Ahh, it's not crashing due to you setting up a GL_ELEMENT_ARRAY_BUFFER_ARB. http://stackoverflow.com/questions/1663908/how-do-i-use-a-pointer-as-an-offset Comment by Jim Buck on How do I use a pointer as an offset? Jim Buck 2009-11-02T21:54:50Z 2009-11-02T21:54:50Z When I saw your original question, I thought the same thing I think now - how is glDrawElements not crashing when it tries to access the passed-in vertex array when your vertex array isn't a valid memory address (and just merely an offset)? http://stackoverflow.com/questions/1659155/i-have-a-floating-point-overflow-problem Comment by Jim Buck on I have a floating-point overflow problem Jim Buck 2009-11-02T03:14:08Z 2009-11-02T03:14:08Z Using floats/doubles for money is not a good idea, in particular if you plan to do math with it. You should use int-based datatypes, and then just format the string with a decimal place when you need to print it.