Home :: Books :: Computers & Internet  

Arts & Photography
Audio CDs
Audiocassettes
Biographies & Memoirs
Business & Investing
Children's Books
Christianity
Comics & Graphic Novels
Computers & Internet

Cooking, Food & Wine
Entertainment
Gay & Lesbian
Health, Mind & Body
History
Home & Garden
Horror
Literature & Fiction
Mystery & Thrillers
Nonfiction
Outdoors & Nature
Parenting & Families
Professional & Technical
Reference
Religion & Spirituality
Romance
Science
Science Fiction & Fantasy
Sports
Teens
Travel
Women's Fiction
C++ for Game Programmers (Game Development Series)

C++ for Game Programmers (Game Development Series)

List Price: $49.95
Your Price: $33.97
Product Info Reviews

<< 1 2 >>

Rating: 5 stars
Summary: Great Tips for Aspiring Game Developers
Review: I was pleased to find a book that deals specifically with programming games using C++. This is not a book that teaches you how to program an API such as DirectX; it's a book covering data structures and algorithms useful in game development. An intermediate to an advanced programmer may already know a lot of these techniques, but they are presented in the context of game development. Game programming presents many unique challenges of which this book covers fairly well. I like the book because it was written by a person with real experience developing commercial game engines. I do have one complaint though. Don't expect to find all of the source code mentioned in the book on the accompanying CD-ROM. Small code segments seem to be missing. Nonetheless, I did find several chapters that were well worth the read. Also, if you are rusty with polymorphism and inheritance, the book provides a fairly good review.

Rating: 5 stars
Summary: Highly recommended !
Review: I work as a programmer many years, and like many seasoned C
programmers, I had a tough time to move from procedural
programming to object oriented programming and to do it
correctly! This book gave me the guidelines how to do it, and
am applying it in my software which is not game programming,
as the tricks and ideas in the book are relevant for every
C++ programming discipline


Rating: 5 stars
Summary: Pragmatic Programming Concerns for game development
Review: Noel did a great job covering several pertinant subjects not coverege in the majority of Game Programming book. Memory pools, code archecture, plug-in design, stl, rtti,etc. There's a very practical and considred approach taken in the book based on real-world experences. Each subject is well covered and refenced at the end of each section. There's no wasted sections of endless code printouts or endless reprints of SDK help, just simple and through examples. I highly recommend this book.

Rating: 5 stars
Summary: Pragmatic Programming Concerns for game development
Review: Noel did a great job covering several pertinant subjects not coverege in the majority of Game Programming book. Memory pools, code archecture, plug-in design, stl, rtti,etc. There's a very practical and considred approach taken in the book based on real-world experences. Each subject is well covered and refenced at the end of each section. There's no wasted sections of endless code printouts or endless reprints of SDK help, just simple and through examples. I highly recommend this book.

Rating: 5 stars
Summary: 3 years experience in a week
Review: thats how useful i feel this book has been. i'm a games content coder, and this book has allowed me to expand on my base knowledge astronomically. if you already can code in c++, you just have no idea how it works under the hood, then this is the perfect book. it assumes you can code, it assumes you know the basics atleast of c++, and then it tells you exactly how all those wonderful features you use actually work. every chapter contains constant appraisals of the performance and efficency costs of every aspect of c++, the stuff thats really relevant for games coders.

Rating: 5 stars
Summary: Awesome! A Great C++ Book!
Review: This book is not about game programming. It is about using C++ effectively to write game code. It is for "Programmers" who use C++ to write game code. Just wanted to clear that up for some of you boneheads who were expecting some kind of graphics tutorial.

Anyway, I devoured this book in a few days. It is written in the fasion of Scott Meyers indispensable "Effective C++" series. Noel explains what the compiler may or may not do for you. For instance, you may be surprised to learn that your inline functions may in fact not be inlined. Noel explains why and how to better your chances of getting your function truly inlined. If you are used to always writing copy constructors, Noel will show you when not to in game code. The breakdown of the virtual function table for an object with multiple inheritance was an eye opener. He also supplies a memory manager worth it's weight in gold! (How do you weigh code...?)

Also covered are the STL, Abstract Interfaces (great for implementing your graphics pipeline in BOTH Direct X and OpenGL), Plug In's (very cool coverage) as well as implementing your own Run Time Type Checker you can use in your Linux code as well (MicroSoft's RTTI bytes).

What Noel stresses throught the book is if your code is doing something a hundred thousand times each frame, you better know what it's really doing! The code snippets are perfect. They are not complete examples you can rip off and drop into your own code. But they do show you enough to make you say "Ah ha! Thats how its done." If you are a software engineer by profession, you will find yourself hurrying to work to see where you can improve that dog you are working on. I carry a book bag every day with 5 or 6 programming books that should be in every programmers library. This book is now one of them.


<< 1 2 >>

© 2004, ReviewFocus or its affiliates