vote up 4 vote down star

I put his name in the title, but his book is Tricks of the Windows Game Programming Gurus. I got the first chapter online, and in his very first code example, he uses void main() and several define macros, and his game loop consists of a long switch statement (not even pseudo use of objects).

Can I take this book seriously as a C++ programmer?

flag

4 Answers

vote up 18 vote down check

You must remember, most older games programmers use C++ as C with classes, not as C++.

You just have to learn to pick out the good things. Even though the code may be bad, the concepts in them are still valid. Even then, some engine designs have changed (OOP versus Component-based design). It's best to read many books to get a good perspective on them. Don't focus on the code itself, but how it works with other code to bring things together.

I would recommend writing the same game with several different design styles so you can see the advantages of each. (Something simpler, like Pong, where you can worry about design rather than code logic). Try to pick out modern books, too, but get a good mix, so you can see and appreciate the changes game architecture has gone through.

For a little tip in the right direction, check out Game Programming Gems 5: Component Based Object Management (pg 25). Also, try to do things differently in more ways than one. Rewrite the same game, but use Lua to script your objects, so you can see how design effects the implementation of other concepts, too.

It's a lot of coding, but after it all you'll definitely have a good grip on not only the way games work, but different styles too, along with their advantages & disadvantages. That gives you more to say than many game programmers.

That all said, we can't be too harsh on Andrè. Like another answer had (but now it's gone :( ...):

André LaMothe is a computer scientist, author and embedded systems developer. He was responsible for the development of hardware and software for artificial intelligence research and worked specifically on the sparse distributed memory project at NASA's Research Institute for Advanced Computer Science (RIACS).

He obviously knows his algorithms and designs well. I'd just say he was just like all the other C++ programmers at the time: new, and trying to come from C. That's why you get lots of "C with classes" approaches in the older books. Games needed to be fast, C++ compilers were pretty iffy back then, and so it was, "use what I know works, but use classes once in a while to help keep it nice."

Edit

So it turns out there is a second edition which still contains these bad things. So no, don't trust his C++, even today :)

link|flag
I saw that response too, don't know why it was deleted. Fair enough. Thanks for the answer. – Hooked Jul 31 at 5:23
Yup. I know what you mean, "wtf, void main, how can this guy be good?". Just gotta work around it :) Game's industry has always been a bit behind, since it's mostly been, "who cares how it works, make it work and make it fun". But now it's starting to shift to, "make this extend-able, clean and manageable, but still fast!" – GMan Jul 31 at 5:25
Please explain your down vote. I can't improve my answer if I don't know what's wrong with it. – GMan Jul 31 at 5:32
Who downvoted? Not I, sir. – Hooked Jul 31 at 5:35
+1 "C++ compilers were pretty iffy back then" – AraK Jul 31 at 5:36
show 6 more comments
vote up 11 vote down

I don't know how good this book is on the topic it claims to be about (as reflected in its title), but I definitely wouldn't use it as a C++ or Win32 textbook. A few blunders I've spotted straight away:


void main(void)

Neither ISO C nor ISO C++ allows return type of void for main. You'll get at least a warning from any decent compiler (including modern versions of VC) for such code.


WIN32_LEAN_AND_MEAN instructs the compiler (header file logic, actually) not to include extraneous MFC overhead.

See here for an explanation of what it actually does.


// enter main event loop
while(GetMessage(&msg,NULL,0,0))

See the warning in "Return Value" section in documentation for GetMessage


However, some statements make me extremely skeptical about it being a good reference book for game development as well. For example:


Many computers will speed up or slow down due to the game's level of complexity. For example, if there are 1,000 objects running on the screen, the CPU is going to have a higher load than if there were only 10 objects. The frame rate of the game will vary, which isn't acceptable. Hence, you must synchronize the game to some maximum frame rate and try to hold it there using timing and/or wait functions. Usually, 30fps is considered to be optimal.

Any modern game will try to get as much FPS as possible. Timing the game logic to display update, and consequently delaying the redraw to ensure timing, hasn't been acceptable for over a decade. In addition, 30 FPS is rather low by today's standards; 60+ is considered to be optimal.


Don't be afraid to use global variables. Many video games don't use parameters for a lot of time-critical functions, instead using a global parameter passing area. For example, say a function looks like this:

void Plot(int x, int y, int color)
{
// plots a pixel on the screen
video_buffer[x + y*MEMORY_PITCH] = color;
} // end Plot

Here the body of the function takes less time than the function call. This is due to the parameter pushing and popping on the stack. In this case a better method might be to create a global parameter passing area and then make assignments before a call, like this:

int gx,gy,gz,gcolor; // define some globals

void Plot_G(void)
{
// plot a pixel using globals
video_buffer[gx + gy*MEMORY_PITCH] = gcolor;

} // end Plot_G

Aside from obvious stylistic problems with globals, the claim that using them is faster is false. In C++, the default calling convention for functions typically puts as many arguments as possible into registers. Thus, the first version of the function, with parameters, will receive both in registers, and do all arithmetic using registers as well (which is also faster). The one with globals will have to read and write the actual memory locations.


Use inline functions. You can improve the preceding trick even more by using the inline directive to get rid of the function call completely. The inline directive instructs the compiler to make its best attempt to put the code for the function right where it's called, rather than making the actual function call. Of course, this makes bigger programs, but speed is more important. Here's an example:

inline void Plot_I(int x, int y, int color)

Any modern C compiler treats inline specifier much like it treats registry - "whatever you say, I'm going to do as I see fit anyway". In other words, marking (or not marking) the function as inline has absolutely no relation to whether it will actually be inlined by compiler.


Always use 32-bit variables rather than 8- or 16-bit. The Pentium and later processors are totally 32-bit. This means that they don't like 8- or 16-bit data words, and in fact, smaller data can slow them down due to caching and other related memory addressing anomalies. For example, you might create a structure that looks something like this:

struct CPOINT
{
    short x,y;
    unsigned char c;
} // end CPOINT

Although creating this structure may seem like a good idea, it's not! First, the structure itself is now 5 bytes long— (2*sizeof(short) + sizeof(char)) = 5. This is really bad, and it's going to wreak havoc on the memory addressing. A better approach is the following structure:

struct CPOINT
{
int x,y;
int c;
} // end CPOINT

A bunch of wrong things here. The whole part about 32-bit words being faster than 8- and 16-bit is broadly wrong. In many cases you actually want smaller words for many reasons - first, because if you use them as arguments, they can often pack into registers (e.g. you can pack 2 shorts into a 32-bit register, but 2 ints would take two registers, contributing to starvation, and forcing something else on the stack). Second, when you copy those structures around, again, copying two shorts is just copying 32 bits as one word, but copying two ints is copying two 32-bit words.

In fact, the very claim that working with 32-bit words is faster than working with 8-bit chars is most likely a confusion with memory alignment (you definitely want stuff to be aligned at 32-bit boundaries).

Second, the claim that first version of struct - the one with char - consists of 5 bytes, and is "going to wreak havoc" - is totally wrong. The compiler will insert padding to align struct fields such that they are accessed with optimal performance. In this case, VC with default settings would pad the struct with 3 bytes at end, giving 8 bytes - and ensuring that arrays of this struct have all fields of all elements aligned at 32-bit boundaries.


Use binary shifts for simple multiplication of integers by powers of 2.

Mostly pointless, as compilers will automatically use shifts for that purpose whenever possible. In fact, this is a very old optimization, one of the first that appeared (because of its triviality to implement). Furthermore, compiler can actually do even better, and use some special purpose instructions, such as x86 LEA, to do certain arithmetic operations even more efficiently.

link|flag
Indeed, back in that day these tricks probably needed to be done. The compilers were meh :/ – GMan Jul 31 at 5:33
I am also a novice, and some of those sound reasonable. The bit shifting trick and the objects seem sound enough (I don't think the global variable idea is that great, especially because he uses a raw array in the function). – Hooked Jul 31 at 5:34
1  
"Back in the day" - yeah, except the book is published in 2002. All of those things I've listed are incorrect, some of them blatantly so. – Pavel Minaev Jul 31 at 5:39
1  
More details about each of there statements would be very interesting, they badness is not obvious at first sight. – Nicolas Simonet Jul 31 at 5:43
1  
+1 for the details (that was fast!) – Nicolas Simonet Jul 31 at 6:51
show 7 more comments
vote up 3 vote down

"Tricks of the Windows Game Programming Gurus" was first published in 1999, and AFAIK was a thin rehash of "Tricks of the Game Programming Gurus", first published in 1994 (!). Back then, information was hard to find and books like this one tended to get really popular.
I actually have the original 1994 book, and it taught me a lot of bad habits. I'd say no, you can't take it seriously.

A much better book from around that same time is Michael Abrash's Graphics Programming Black Book. Michael is a very well-respected writer and developer when it comes to high-performance graphics. The book is very dated now, but has some interesting insights into what it's like to optimize down to the metal.

link|flag
+1 For mentioning the "Black Book". – Andy J Buchanan Jul 31 at 7:34
vote up 2 vote down

Maybe the point of the book is not to teach C++ but game programming. Also, The book is somehow old. Honestly, I haven't read the book, but bad C++ code is all over the place, so recode it your way.

link|flag
Actually, the book was pretty bad even when brand spanking new. It's firmly in the "Learn X in 24hrs" camp, and therefore one to be avoided. – Andy J Buchanan Jul 31 at 7:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.