User Steve Lacey - Stack Overflow most recent 30 from stackoverflow.com 2010-02-10T02:29:05Z http://stackoverflow.com/feeds/user/11077 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/304669/why-direct3d-application-performs-better-in-full-screen-mode/1025652#1025652 1 Answer by Steve Lacey for Why Direct3D application performs better in full screen mode? Steve Lacey 2009-06-22T05:59:06Z 2009-06-22T05:59:06Z <p>Basically, the video hardware is completely dedicated to the exclusive mode application.</p> <p>There is no contention for video resources (pipeline, texture memory, etc...)</p> <p>In particular, texture upload can be a big bottleneck. The less you have to do it (because you have it all), the better.</p> http://stackoverflow.com/questions/624354/what-would-it-take-for-people-to-move-away-from-c/625198#625198 2 Answer by Steve Lacey for What would it take for people to move away from C++? Steve Lacey 2009-03-09T06:24:42Z 2009-03-09T06:24:42Z <p>C++ is a tool in my toolbox. So is java and python and a few other things.</p> <p>Handily my company's environment enables me to use whatever is appropriate.</p> <ul> <li>C++ == perf when necessary.</li> <li>Java == when perf is not so necessary (due to the fact that the network/external IO vastly outweighs CPU cycles), and speed of development is necessary.</li> </ul> <p>Tools in your toolbox. Use what's appropriate.</p> http://stackoverflow.com/questions/613916/win32-debugging-macros/613939#613939 2 Answer by Steve Lacey for Win32 Debugging Macros Steve Lacey 2009-03-05T08:10:29Z 2009-03-05T08:10:29Z <p>I don't believe there's a standard, best to roll your own.</p> <p>However, you might want to consider <code>OutputDebugString(char*)</code>. It'll send output to the debug channel.</p> http://stackoverflow.com/questions/425412/how-long-do-you-beat-your-head-before-asking-for-help/482535#482535 0 Answer by Steve Lacey for How long do you beat your head before asking for help? Steve Lacey 2009-01-27T07:18:06Z 2009-01-27T07:18:06Z <p>As a follow up to JC's answer, make sure you don't "go dark".</p> <p>Going dark basically means "dammit, I'm going to figure this out", but you take weeks to figure it out. Or maybe you don't figure it out at all.</p> <p>If you don't figure it out, or you just take too long when a colleague could have helped you in five minutes, you're inviting concern from your lead/manager and future micro-managing.</p> <p>Learn to strike a balance. </p> http://stackoverflow.com/questions/475750/operator-overload/475761#475761 0 Answer by Steve Lacey for Operator overload Steve Lacey 2009-01-24T08:57:28Z 2009-01-24T08:57:28Z <ol> <li>Change X to test.</li> <li>Add a semicolon to the end of the penultimate statement.</li> <li>Remove the const from the addition operator return values as you're modifying them.</li> </ol> <p>The following compiles:</p> <pre><code>class test { public: test&amp; operator=(const test &amp; other){} // 1 test&amp; operator+(const X&amp; other) const {} // 2 test&amp; operator+(int m) {} //3 private: int n; }; int main() { test t1, t2, t3; t1 = t2 + t3; t1 = t2 + 100; t1 = t2 + 100 + t3; // &lt;-- added a ';' t1 = t2 + t3 + 100; return 0; } </code></pre> http://stackoverflow.com/questions/464311/pure-virtual-function-call-message-box/464323#464323 4 Answer by Steve Lacey for "pure virtual function call" Message Box Steve Lacey 2009-01-21T07:19:57Z 2009-01-21T07:19:57Z <p>Are you calling an abstract function from a destructor?</p> <p>Via a certain search engine: <a href="http://www.google.com/search?q=pure+virtual+function+call+c%23" rel="nofollow">http://www.google.com/search?q=pure+virtual+function+call+c%23</a></p> <p>Raymond has a pretty detailed response: <a href="http://blogs.msdn.com/oldnewthing/archive/2004/04/28/122037.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2004/04/28/122037.aspx</a></p> http://stackoverflow.com/questions/438192/using-declaration-with-enum/438210#438210 7 Answer by Steve Lacey for using declaration with enum? Steve Lacey 2009-01-13T07:27:07Z 2009-01-13T07:27:07Z <p>A class does not define a namespace, therefore "using" isn't applicable here.</p> <p>Also, you need to make the enum public.</p> <p>If you're trying to use the enum within the same class, here's an example:</p> <pre><code>class Sample { public: enum Colour { RED, BLUE, GREEN }; void foo(); } void Sample::foo() { Colour foo = RED; } </code></pre> <p>And to access it from without the class:</p> <pre><code>void bar() { Sample::Colour colour = Sample::RED; } </code></pre> http://stackoverflow.com/questions/174830/learning-game-programming/419450#419450 1 Answer by Steve Lacey for Learning game programming Steve Lacey 2009-01-07T07:04:50Z 2009-01-07T07:04:50Z <p>Games aren't all about 3D graphics. Believe me, I spent 10 years building 3D engines...</p> <p>3D graphics programmers are like guitarists - they rock hard, but at the end of the day there are loads of them around. If you've ever tried to put a band together, you'd realize that finding bass players and drummers is very hard...</p> <p>Take a look at the other areas, for example AI and sound. Skilled specialists in these areas are always in demand...</p> http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/419443#419443 -1 Answer by Steve Lacey for Are memory leaks ever ok? Steve Lacey 2009-01-07T06:58:21Z 2009-01-07T06:58:21Z <p>Only in one instance: The program is going to shoot itself due to an unrecoverable error.</p> http://stackoverflow.com/questions/365671/have-you-ever-implemented-a-programming-language/419434#419434 0 Answer by Steve Lacey for Have you ever implemented a programming language? Steve Lacey 2009-01-07T06:53:23Z 2009-01-07T06:53:23Z <p>I wrote a domain specific (compiled) language for a game because it was the best way of building the product. It's was similar in nature to UnrealScript.</p> <p>Why? Because it was the best solution to the problem of building stable core code that could be used by lesser skilled programmers (such as designers and artists) to promote stability and rapid iteration.</p> <p>I.e. a bug in the "bullet" code would just cause the bullet to freeze in mid-air before being reaped by the VM rather than causing the game to lockup/crash.</p> <p>I've also built various other languages for fun (e.g. a Common Lisp interpreter in javascript) because, well, building languages is fun!</p> http://stackoverflow.com/questions/414779/what-should-a-self-taught-programmer-with-no-degree-learn-read/419420#419420 1 Answer by Steve Lacey for What should a self-taught programmer with no degree learn/read? Steve Lacey 2009-01-07T06:46:06Z 2009-01-07T06:46:06Z <p>You'll be missing the algorithms background. I'd recommend you read <a href="http://en.wikipedia.org/wiki/The_Art_of_Computer_Programming" rel="nofollow">Knuth</a>.</p> http://stackoverflow.com/questions/35809/why-are-vi-and-emacs-popular/343079#343079 17 Answer by Steve Lacey for Why are Vi and Emacs popular ? Steve Lacey 2008-12-05T06:59:23Z 2008-12-05T06:59:23Z <p>Just in case you hadn't seen this:</p> <p><img src="http://unix.rulez.org/~calver/pictures/curves.jpg" alt="http://unix.rulez.org/~calver/pictures/curves.jpg" /></p> http://stackoverflow.com/questions/124851/opengl-still-better-than-direct3d-for-non-games/339895#339895 2 Answer by Steve Lacey for OpenGL still better than Direct3D for non-games ? Steve Lacey 2008-12-04T08:29:16Z 2008-12-04T08:29:16Z <p>This doesn't directly answer your question (sorry), but I was one of the original guys working on Direct3D and hehe: </p> <blockquote> <p>Are there scenegraph libraries for Direct3D?</p> </blockquote> <p>Direct3D (nee Reality Lab) used to just be a scenegraph library :-)</p> <p>Shame that Direct3D Retained Mode isn't shipped anymore...</p> http://stackoverflow.com/questions/339831/best-version-of-emacs/339863#339863 1 Answer by Steve Lacey for Best version of EMACS Steve Lacey 2008-12-04T08:13:30Z 2008-12-04T08:14:20Z <p>Or ntemacs. I've been using it for years: <a href="http://ntemacs.sourceforge.net/" rel="nofollow">http://ntemacs.sourceforge.net/</a></p> http://stackoverflow.com/questions/90523/is-the-scrum-master-also-a-developer-on-your-team/256599#256599 1 Answer by Steve Lacey for Is the Scrum Master also a developer on your team? Steve Lacey 2008-11-02T06:24:04Z 2008-11-02T06:24:04Z <p>I don't see any reason why the scrum master can't be a developer on the team, in the same way that a team lead might manage a schedule that includes themself.</p> <p>You just need to be objective when you put your "scrum master" hat on.</p> http://stackoverflow.com/questions/163591/bash-autocompletion-in-emacs-shell-mode/220960#220960 0 Answer by Steve Lacey for Bash autocompletion in Emacs shell-mode Steve Lacey 2008-10-21T06:24:00Z 2008-10-21T06:24:00Z <p>In the emacs shell, it's actually emacs doing the auto-completion, not bash. If the shell and emacs are out of sync (e.g. by using pushd, popd or some bash user function that changes the shell's current directory), then auto-completion stops working.</p> <p>To fix this, just type 'dirs' into the shell and things get back in sync.</p> <p>I also have the following in my .emacs:</p> <pre><code>(global-set-key "\M-\r" 'shell-resync-dirs) </code></pre> <p>Then just hitting Esc-return resyncs the auto-completion.</p> http://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c/220927#220927 2 Answer by Steve Lacey for What is the most spectacular way to shoot yourself in the foot with C++? Steve Lacey 2008-10-21T06:07:36Z 2008-10-21T06:07:36Z <p>Operator overloading can be pretty evil. Say you overloaded the operator '*' and you need to modify the implementation/contract. Now, being a good coder, you'll go and check all the uses of the overloaded operator.</p> <p>Ever tried grep'ing for '*' over a large codebase?</p> http://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c/220920#220920 1 Answer by Steve Lacey for What is the most spectacular way to shoot yourself in the foot with C++? Steve Lacey 2008-10-21T06:05:06Z 2008-10-21T06:05:06Z <p>Non-const references as arguments are evil as it's non-obvious (from just reading the code at the callsite) that an argument is potentially being modified.</p> <p>E.g., given:</p> <pre><code>void do_something(int&amp; foo); </code></pre> <p>and from reading code at the callsite:</p> <pre><code>int x = 5; do_something(x); </code></pre> <p>it's non-obvious that x could be modified by do_something().</p> http://stackoverflow.com/questions/220832/easy-way-to-shift-specific-characters-in-a-string-in-c/220850#220850 0 Answer by Steve Lacey for Easy way to shift specific characters in a string in C++? Steve Lacey 2008-10-21T05:22:14Z 2008-10-21T05:22:14Z <p>Slight fix to the previous answer (shift to the right and assume '.' means "can move here"):</p> <pre><code> char text[] = "...Z.Z.Z..."; for (int i = strlen(text) - 2); i &gt; 0; --i) { if (text[i] == 'Z' &amp;&amp; text[i + 1] == '.') { text[i] = '.'; text[i + 1] = 'Z'; } } </code></pre> http://stackoverflow.com/questions/95575/while-coding-how-many-columns-do-you-format-for/95643#95643 0 Answer by Steve Lacey for While coding, how many columns do you format for? Steve Lacey 2008-09-18T18:52:31Z 2008-09-18T18:52:31Z <p>80 - The one true width...</p> http://stackoverflow.com/questions/88626/best-platform-for-learning-embedded-programming/88849#88849 1 Answer by Steve Lacey for Best platform for learning embedded programming? Steve Lacey 2008-09-18T00:13:28Z 2008-09-18T00:13:28Z <p>Take a look at <a href="http://processing.org/" rel="nofollow">Processing</a> and the associated Arduino and Wiring boards.</p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/88834#88834 0 Answer by Steve Lacey for What do you use to keep notes as a developer? Steve Lacey 2008-09-18T00:10:23Z 2008-09-18T00:10:23Z <p>Text files in ~/lib/docs</p> http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/69449#69449 7 Answer by Steve Lacey for What is your single most favorite command-line trick using Bash? Steve Lacey 2008-09-16T04:47:06Z 2008-09-17T18:03:53Z <p>I use the following a lot:</p> <p>The <code>:p</code> modifier to print a history result. E.g.</p> <pre><code>!!:p </code></pre> <p>Will print the last command so you can check that it's correct before running it again. Just enter <code>!!</code> to execute it.</p> <p>In a similar vein:</p> <pre><code>!?foo?:p </code></pre> <p>Will search your history for the most recent command that contained the string 'foo' and print it.</p> <p>If you don't need to print,</p> <pre><code>!?foo </code></pre> <p>does the search and executes it straight away.</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/74881#74881 1 Answer by Steve Lacey for What development book made the most impact on you as a developer? Steve Lacey 2008-09-16T17:36:38Z 2008-09-16T17:36:38Z <p>Most impact? K&amp;R C second edition when I read it at college. It's effectively what started my career.</p> http://stackoverflow.com/questions/2212506/how-do-you-use-a-void-pointer-to-generate-2d-dynamic-array/2212519#2212519 Comment by Steve Lacey on How do you use a void pointer to generate 2D dynamic Array? Steve Lacey 2010-02-06T08:54:33Z 2010-02-06T08:54:33Z Perhaps you need to figure out the answer to the question given to you in class rather than asking for someone else to solve it for you? Anyhow, you can't allocate a &quot;dynamic&quot; array - there's no such thing (unless you're allocating something like a std::vector). http://stackoverflow.com/questions/1592817/valgrind-deliberately-cause-segfault/1592829#1592829 Comment by Steve Lacey on Valgrind: Deliberately cause segfault Steve Lacey 2009-10-20T06:51:06Z 2009-10-20T06:51:06Z Joel: I prefer &quot;long* ptr&quot; http://stackoverflow.com/questions/1592848/location-position-of-windows Comment by Steve Lacey on Location (position) of windows Steve Lacey 2009-10-20T06:49:01Z 2009-10-20T06:49:01Z Are you trying to create a taskbar item? http://stackoverflow.com/questions/972299/best-practices-for-alt-tab-support-in-a-directx-app/1007136#1007136 Comment by Steve Lacey on Best practices for Alt-Tab support in a DirectX app? Steve Lacey 2009-06-22T06:01:03Z 2009-06-22T06:01:03Z The best 'lost device', is the one caused by a driver upgrade ;-) http://stackoverflow.com/questions/1025494/obfuscating-c-c-code/1025561#1025561 Comment by Steve Lacey on Obfuscating C/C++ Code Steve Lacey 2009-06-22T05:52:52Z 2009-06-22T05:52:52Z But it can always be un-obfuscated. Pretty-print it and it'll be decodable. I agree with the others. What's the point? If they need it so that others can link to it, well, distribute a library. Obfuscation is pointless unless (as with javascript obfuscators) the main reason is to reduce download size. http://stackoverflow.com/questions/972371/opengl-and-direct3d/972396#972396 Comment by Steve Lacey on OpenGL and Direct3D Steve Lacey 2009-06-09T21:18:15Z 2009-06-09T21:18:15Z Heh - I worked on Direct3D before it became Direct3D ;-) Definitely not based on OpenGL... http://stackoverflow.com/questions/664159/gaming-development-vs-corporate-software-development/664574#664574 Comment by Steve Lacey on Gaming Development vs Corporate Software Development Steve Lacey 2009-05-06T03:52:47Z 2009-05-06T03:52:47Z I would also point out that the yearly crunch times include thanksgiving. The title <i>must</i> be on the shelves by thanksgiving to hit the xmas market. So there are two guaranteed crunch periods - E3 and thanksgiving. http://stackoverflow.com/questions/613916/win32-debugging-macros/613939#613939 Comment by Steve Lacey on Win32 Debugging Macros Steve Lacey 2009-03-05T18:08:39Z 2009-03-05T18:08:39Z Yes, but you could use OutputDebugString() in the macro... http://stackoverflow.com/questions/430479/how-do-i-use-an-equivalent-to-c-reference-parameters-in-java Comment by Steve Lacey on How do I use an equivalent to C++ reference parameters in Java? Steve Lacey 2009-01-23T07:35:32Z 2009-01-23T07:35:32Z Sorry, but I have to chime in. Pass by reference out parameters in c++ are evil. Don't do it. http://stackoverflow.com/questions/339831/best-version-of-emacs Comment by Steve Lacey on Best version of EMACS Steve Lacey 2008-12-04T08:15:56Z 2008-12-04T08:15:56Z Don't delay in learning the ALT-META-SHIFT-Left Elbow stuff. Honestly, the quicker you learn the faster you'll be. There's only a few keyboard strokes you really need anyhow... http://stackoverflow.com/questions/220832/easy-way-to-shift-specific-characters-in-a-string-in-c/220850#220850 Comment by Steve Lacey on Easy way to shift specific characters in a string in C++? Steve Lacey 2008-10-21T05:44:06Z 2008-10-21T05:44:06Z I believe the above code should do it. It'll shift the rightmost one, then the next rightmost, etc.. E.g. starting with: ZZ. Steps would results in: ZZ. Z.Z .ZZ