User Steve Lacey - Stack Overflowmost recent 30 from stackoverflow.com2009-11-22T09:53:49Zhttp://stackoverflow.com/feeds/user/11077http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/304669/why-direct3d-application-performs-better-in-full-screen-mode/1025652#10256521Answer by Steve Lacey for Why Direct3D application performs better in full screen mode?Steve Lacey2009-06-22T05:59:06Z2009-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#6251982Answer by Steve Lacey for What would it take for people to move away from C++?Steve Lacey2009-03-09T06:24:42Z2009-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#6139392Answer by Steve Lacey for Win32 Debugging MacrosSteve Lacey2009-03-05T08:10:29Z2009-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#4825350Answer by Steve Lacey for How long do you beat your head before asking for help?Steve Lacey2009-01-27T07:18:06Z2009-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#4757610Answer by Steve Lacey for Operator overload Steve Lacey2009-01-24T08:57:28Z2009-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& operator=(const test & other){} // 1
test& operator+(const X& other) const {} // 2
test& operator+(int m) {} //3
private:
int n;
};
int main()
{
test t1, t2, t3;
t1 = t2 + t3;
t1 = t2 + 100;
t1 = t2 + 100 + t3; // <-- added a ';'
t1 = t2 + t3 + 100;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/464311/pure-virtual-function-call-message-box/464323#4643234Answer by Steve Lacey for "pure virtual function call" Message BoxSteve Lacey2009-01-21T07:19:57Z2009-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#4382107Answer by Steve Lacey for using declaration with enum?Steve Lacey2009-01-13T07:27:07Z2009-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#4194501Answer by Steve Lacey for Learning game programmingSteve Lacey2009-01-07T07:04:50Z2009-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#4194430Answer by Steve Lacey for Are memory leaks ever ok?Steve Lacey2009-01-07T06:58:21Z2009-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#4194340Answer by Steve Lacey for Have you ever implemented a programming language?Steve Lacey2009-01-07T06:53:23Z2009-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#4194201Answer by Steve Lacey for What should a self-taught programmer with no degree learn/read?Steve Lacey2009-01-07T06:46:06Z2009-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#34307915Answer by Steve Lacey for Why are Vi and Emacs popular ?Steve Lacey2008-12-05T06:59:23Z2008-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#3398952Answer by Steve Lacey for OpenGL still better than Direct3D for non-games ?Steve Lacey2008-12-04T08:29:16Z2008-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#3398631Answer by Steve Lacey for Best version of EMACSSteve Lacey2008-12-04T08:13:30Z2008-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#2565991Answer by Steve Lacey for Is the Scrum Master also a developer on your team?Steve Lacey2008-11-02T06:24:04Z2008-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#2209600Answer by Steve Lacey for Bash autocompletion in Emacs shell-modeSteve Lacey2008-10-21T06:24:00Z2008-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#2209272Answer by Steve Lacey for What is the most spectacular way to shoot yourself in the foot with C++?Steve Lacey2008-10-21T06:07:36Z2008-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#2209201Answer by Steve Lacey for What is the most spectacular way to shoot yourself in the foot with C++?Steve Lacey2008-10-21T06:05:06Z2008-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& 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#2208500Answer by Steve Lacey for Easy way to shift specific characters in a string in C++?Steve Lacey2008-10-21T05:22:14Z2008-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 > 0; --i) {
if (text[i] == 'Z' && 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#956430Answer by Steve Lacey for While coding, how many columns do you format for?Steve Lacey2008-09-18T18:52:31Z2008-09-18T18:52:31Z<p>80 - The one true width...</p>
http://stackoverflow.com/questions/88626/best-platform-for-learning-embedded-programming/88849#888491Answer by Steve Lacey for Best platform for learning embedded programming?Steve Lacey2008-09-18T00:13:28Z2008-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#888340Answer by Steve Lacey for What do you use to keep notes as a developer?Steve Lacey2008-09-18T00:10:23Z2008-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#694497Answer by Steve Lacey for What is your single most favorite command-line trick using Bash?Steve Lacey2008-09-16T04:47:06Z2008-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#748811Answer by Steve Lacey for What development book made the most impact on you as a developer?Steve Lacey2008-09-16T17:36:38Z2008-09-16T17:36:38Z<p>Most impact? K&R C second edition when I read it at college. It's effectively what started my career.</p>
http://stackoverflow.com/questions/1592817/valgrind-deliberately-cause-segfault/1592829#1592829Comment by Steve Lacey on Valgrind: Deliberately cause segfaultSteve Lacey2009-10-20T06:51:06Z2009-10-20T06:51:06ZJoel: I prefer "long* ptr"
http://stackoverflow.com/questions/1592848/location-position-of-windowsComment by Steve Lacey on Location (position) of windowsSteve Lacey2009-10-20T06:49:01Z2009-10-20T06:49:01ZAre you trying to create a taskbar item?http://stackoverflow.com/questions/972299/best-practices-for-alt-tab-support-in-a-directx-app/1007136#1007136Comment by Steve Lacey on Best practices for Alt-Tab support in a DirectX app?Steve Lacey2009-06-22T06:01:03Z2009-06-22T06:01:03ZThe best 'lost device', is the one caused by a driver upgrade ;-)http://stackoverflow.com/questions/1025494/obfuscating-c-c-code/1025561#1025561Comment by Steve Lacey on Obfuscating C/C++ CodeSteve Lacey2009-06-22T05:52:52Z2009-06-22T05:52:52ZBut 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#972396Comment by Steve Lacey on OpenGL and Direct3DSteve Lacey2009-06-09T21:18:15Z2009-06-09T21:18:15ZHeh - 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#664574Comment by Steve Lacey on Gaming Development vs Corporate Software DevelopmentSteve Lacey2009-05-06T03:52:47Z2009-05-06T03:52:47ZI 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#613939Comment by Steve Lacey on Win32 Debugging MacrosSteve Lacey2009-03-05T18:08:39Z2009-03-05T18:08:39ZYes, but you could use OutputDebugString() in the macro...http://stackoverflow.com/questions/430479/how-do-i-use-an-equivalent-to-c-reference-parameters-in-javaComment by Steve Lacey on How do I use an equivalent to C++ reference parameters in Java?Steve Lacey2009-01-23T07:35:32Z2009-01-23T07:35:32ZSorry, 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-emacsComment by Steve Lacey on Best version of EMACSSteve Lacey2008-12-04T08:15:56Z2008-12-04T08:15:56ZDon'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#220850Comment by Steve Lacey on Easy way to shift specific characters in a string in C++?Steve Lacey2008-10-21T05:44:06Z2008-10-21T05:44:06ZI 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