Customer Reviews


7 Reviews
5 star:
 (1)
4 star:
 (1)
3 star:    (0)
2 star:
 (2)
1 star:
 (3)
 
 
 
 
 
Average Customer Review
Share your thoughts with other customers
Create your own review
 
 
Only search this product's reviews

The most helpful favorable review
The most helpful critical review


14 of 19 people found the following review helpful:
5.0 out of 5 stars Great book! ...but I would have liked a little more
I learned programming DirectX 8 months ago just using the SDK, and that created several holes of knowledge on my mind. Now with Advanced 3D Programming with DirectX 9.0, I filled out the missing ideas. This book is clearly explained, and the intro sections could guide a newbie into the field of 3D programming. The code is also easy to understand, and many tables of...
Published on September 10, 2003 by Marco Alvarado Perez

versus
20 of 20 people found the following review helpful:
2.0 out of 5 stars A minimal update of the DirectX 7.0 edition
"Advanced 3D Game Programming with DirectX 9.0" by Peter Walsh covers a broad range of subjects critical to making games: graphics, artificial intelligence, networking, and mathematics. Priced at just under $60, the book contains eleven chapters that span approximately 520 pages.

The first chapter, "Windows" describes how to create a window and respond to some of the...

Published on May 12, 2004 by Tasha Jessup


Most Helpful First | Newest First

20 of 20 people found the following review helpful:
2.0 out of 5 stars A minimal update of the DirectX 7.0 edition, May 12, 2004
By 
Tasha Jessup (San Diego, CA United States) - See all my reviews
(REAL NAME)   
This review is from: Advanced 3D Game Programming with DirectX 9 (Wordware Game Developer's Library) (Paperback)
"Advanced 3D Game Programming with DirectX 9.0" by Peter Walsh covers a broad range of subjects critical to making games: graphics, artificial intelligence, networking, and mathematics. Priced at just under $60, the book contains eleven chapters that span approximately 520 pages.

The first chapter, "Windows" describes how to create a window and respond to some of the common Windows messaging events. The chapter defines several custom classes that loosely resemble code created by Visual Studio's workspace wizard but cleaner and in a Win32 flavor. These classes form the framework for a generic Windows game.

The next three chapters (Getting Started with DirectX, DirectInput, and DirectSound) show how to compile and link DirectX with your application and initialize two of the sub-systems found in DirectX, DirectSound and DirectInput. The sub-systems are briefly highlighted and wrapper classes are given to simplify their usage. The DirectInput and DirectSound chapters focus on initialization of each system rather than exploring the more sophisticated uses of each system like force feedback or dynamic audio mixing.

Chapters on 3D math, artificial intelligence, and networking follow. The math chapter provides basic math definitions like the dot and cross products as well as container classes for vectors and matrices. The AI chapter is brief. Readers seeking to gain a deeper understanding should read the chapter in conjunction with a decent college text that describes fundamental search routines like A* or Djkstra's algorithm. Lastly, the networking chapter relies on WinSock without mentioning DirectPlay. Classes are provided to encapsulate the network layer of a game. While all three chapters are essential to game programming, none adequately covered the complexity and nuances of each subject given the space provided.

The remaining chapters presented in the last fifth of the book discuss rendering and are easily the highpoint of the text. Walsh attempts to detail advanced topics like multi-texture and multi-pass rendering using the fixed function pipeline. Yet despite featuring DirectX 9.0, many of the new SDK features were missing from the text such as vertex and pixel shaders, displacement maps, or the two-sided stencil mode. Beginning with lighting and fog parameters, Walsh explores several sophisticated graphics techniques including the mathematics of animation, subdivision of surfaces, radiosity, and progressive meshes. Then, examples of multi-pass texture mapping (light maps, environment maps, and glow maps) are provided to illustrate various DirectX render states. Last, Walsh discusses scene management to assist in reducing the number of objects drawn per frame by using portals to test visibility and octrees.

For the price of the book, a companion CD containing the source code would have been beneficial. When I downloaded the sample code to try them out, three of the four examples crashed because DirectX device wasn't successfully initialized when rendering began on my GeForce4. Since the examples executed in full-screen mode, the computer needed to be rebooted. Additionally, the sample code contained a couple C/C++ techniques that are not commonly found in game development: exceptions and nameless unions. Support for exceptions can add to the size of a program and slow its execution speed while unions hinder portability and create potential memory alignment issues that are compiler dependant.

I found the book's title at odds with the subject matter. Generally, Walsh provided an overview of the basic theory, API calls, and usage. When more details would help clarify understanding of a point, the reader was often referred to the DirectX SDK help. As an experienced developer, I found very little of value in this book. While Walsh attempts to cover a broad spectrum of subjects, none of the topics are adequately explored leaving the seasoned reader with nothing but an unsatisfying overview and possibly a reference to the SDK help file.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4 of 6 people found the following review helpful:
2.0 out of 5 stars Confusing, unfocused, incomplete, June 27, 2004
By A Customer
This review is from: Advanced 3D Game Programming with DirectX 9 (Wordware Game Developer's Library) (Paperback)
I bought this book to advance from what I've learned with Microsoft samples and tutorials. The book introduces basic concepts in the first few chapters then did not provide any concrete examples or explanations. It doesn't even offer any examples on how to create a simple geometry in DX!! The coding style is so different from what MS offered that I had a hard time adapting. On contrary to the misleading title "Advanced 3D Game Programming...", it strays off and attempt to cover DirectPlay, DirectSound, 3D Math, AI(even!), and DirectInput in short chapters instead of focusing on D3D in-depth.
To make the long story short, I'm back on Amazon looking for a decent book and revisiting Microsoft tutorials during the wait. Don't make the mistake of buying this book. I totally agree with everyone else's reviews! If only I checked the reviews on Amazon first :(
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1.0 out of 5 stars Useless, May 10, 2007
This review is from: Advanced 3D Game Programming with DirectX 9 (Wordware Game Developer's Library) (Paperback)
For the most part of this book, its trying to fill its 500 pages with images and function references that are essentially a copy/paste from the freely available DirectX SDK. The book's content is either SDK material or completely basic stuff. Even the introductory books that I have read are far more advanced than this one.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


14 of 19 people found the following review helpful:
5.0 out of 5 stars Great book! ...but I would have liked a little more, September 10, 2003
This review is from: Advanced 3D Game Programming with DirectX 9 (Wordware Game Developer's Library) (Paperback)
I learned programming DirectX 8 months ago just using the SDK, and that created several holes of knowledge on my mind. Now with Advanced 3D Programming with DirectX 9.0, I filled out the missing ideas. This book is clearly explained, and the intro sections could guide a newbie into the field of 3D programming. The code is also easy to understand, and many tables of structures and values where printed on the book, so you don't have to look inside the SDK. Most common fields and values where bolded and explained, making this book useful as a short reference, that's nice. Also, I really enjoyed looking at the pictures on how lighting, texture operations and many other techniques modify the 3D scene. This book is well illustrated.

The main problem I found is that many discussions where skiped because "there isn't enough space on this book", as the authors wrote. For example, I read in the index there was a section about Stencil Buffers. When I opened that page there was a little intro of half a sheet saying that I could use stencils to create real time shadows, and I would get more on the stencil topic later. The mention of this shadow technique made me really interested! But when I got to the real stencil section there was just a title and two lines saying that shadows and mirrors are a nifty use of stencil buffers. I think the authors should have removed some dicussions on old techniques, and placed one or two pages on this topic and others that are modern and advanced. A larger discussion on 3D file formats should also be placed on this book, and should be a must on any other 3D programming book, because not many things for games you can do with dinamically created spheres and boxes. I mean, for game development you need models and animated models, the same as textures with transparency, and those doesn't come from the programmers, but from the artists.

Anyway, IMHO this books is greatly explained, even for newbies. That's why I give 5 stars.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


0 of 2 people found the following review helpful:
4.0 out of 5 stars Excellent textbook for a short course, August 21, 2004
By 
C. madrazo Pimienta "madrazoman" (Atizapan de Z., Estado de Mexico Mexico) - See all my reviews
(REAL NAME)   
This review is from: Advanced 3D Game Programming with DirectX 9 (Wordware Game Developer's Library) (Paperback)
Because it covers all principal topics on game programming in a straight to the point way and with C++ code, makes it a practical book for learning fast and concise. it is possible to develop an application in less than a semester. I recommend it to students and people who prefer reading a book than the DX API documentation from the screen. Hope to see "Advanced 3D Game programming with DX10" someday (anyway it should be called "Intermediate" instead of "Advanced")
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


3 of 12 people found the following review helpful:
1.0 out of 5 stars Advanced? No way, April 27, 2004
By A Customer
This review is from: Advanced 3D Game Programming with DirectX 9 (Wordware Game Developer's Library) (Paperback)
To put it simply, this book sucks. This is not advanced at all. I've wasted enough money and time with it so I won't spend anymore time writing a long review on how bad it is. Trust me, its bad.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 11 people found the following review helpful:
1.0 out of 5 stars Save your money and buy something else, July 12, 2004
By 
Matthew J Ruggiero (Middletown, RI USA) - See all my reviews
This review is from: Advanced 3D Game Programming with DirectX 9 (Wordware Game Developer's Library) (Paperback)
I only rate this one star because I cannot rate it no stars.
I don't know why they bother updating this book everytime a new version of DirectX comes out. It sucks everytime.
What they should do is throw out everything they have and start over.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


Most Helpful First | Newest First

This product

Advanced 3D Game Programming with DirectX 9 (Wordware Game Developer's Library)
Used & New from: $8.61
Add to wishlist See buying options