Vous voulez voir cette page en français ? Cliquez ici.


or
Sign in to turn on 1-Click ordering.
More Buying Choices
Have one to sell? Sell yours here
Artificial Intelligence for Games
 
 

Artificial Intelligence for Games [Hardcover]

Ian Millington , John Funge

List Price: CDN$ 84.50
Price: CDN$ 68.59 & this item ships for FREE with Super Saver Shipping. Details
You Save: CDN$ 15.91 (19%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.ca. Gift-wrap available.
Only 2 left in stock--order soon (more on the way).
Want it delivered Tuesday, May 29? Choose One-Day Shipping at checkout.

Frequently Bought Together

Artificial Intelligence for Games + Game Physics Engine Development: How to Build a Robust Commercial-Grade Physics Engine for your Game + Real-Time Collision Detection
Price For All Three: CDN$ 164.01

Some of these items ship sooner than the others. Show details

Buy the selected items together
  • In Stock.
    Ships from and sold by Amazon.ca.
    This item ships for FREE with Super Saver Shipping. Details

  • Game Physics Engine Development: How to Build a Robust Commercial-Grade Physics Engine for your Game CDN$ 33.99

    In Stock.
    Ships from and sold by Amazon.ca.
    This item ships for FREE with Super Saver Shipping. Details

  • Real-Time Collision Detection CDN$ 61.43

    Usually ships within 1 to 3 weeks.
    Ships from and sold by Amazon.ca.
    This item ships for FREE with Super Saver Shipping. Details


Customers Who Bought This Item Also Bought


Product Details


Product Description

Review

"Ian Millington crosses the boundary between academic and professional game AI with his book Artificial Intelligence for Games. Most books either lack academic rigor or are rigorous with algorithms that won't work under the CPU constraints imposed by modern games. This book walks a line between the two and does it well. It explains algorithms rigorously while also discussing appropriate implementation details such as scheduling AI over time and using the right data structures. I will be using this book for my Game AI course." -Jessica D. Bayliss, Ph.D., Rochester Institute of Technology

"This is the first serious attempt to create a comprehensive reference for all game AI practices, terminology, and know-how. Works like this are badly needed by the maturing video games industry. Systematic yet accessible, it is a must-have for any student or professional." -Marcin Chady, Ph.D., Radical Entertainment

"This book promises to be the closest I've seen to what is needed in the field. I would highly recommend it for people in the industry." -John Laird, University of Michigan

"Ian Millington's book is a comprehensive reference to the most widely used techniques in game AI today. Any game developer working on AI will learn something from this book, and game producers should make sure their AI programmers have a copy." -Dr. Ian Lane Davis, Mad Doc Software

Product Description

Creating robust artificial intelligence is one of the greatest challenges for game developers, yet the commercial success of a game is often dependent upon the quality of the AI. In this book, Ian Millington brings extensive professional experience to the problem of improving the quality of AI in games. He describes numerous examples from real games and explores the underlying ideas through detailed case studies. He goes further to introduce many techniques little used by developers today. The book's associated web site contains a library of C++ source code and demonstration programs, and a complete commercial source code library of AI algorithms and techniques.

"Artificial Intelligence for Games - 2nd edition" will be highly useful to academics teaching courses on game AI, in that it includes exercises with each chapter. It will also include new and expanded coverage of the following: AI-oriented gameplay; Behavior driven AI; Casual games (puzzle games).

* The first comprehensive, professional tutorial and reference to implement true AI in games written by an engineer with extensive industry experience.
* Walks through the entire development process from beginning to end.
* Includes examples from over 100 real games, 10 in-depth case studies, and web site with sample code.

Inside This Book (Learn More)
Browse Sample Pages
Front Cover | Copyright | Table of Contents | Excerpt | Index
Search inside this book:

Suggested Tags from Similar Products

 (What's this?)
Be the first one to add a relevant tag (keyword that's strongly related to this product)
 

Your tags: Add your first tag
 

What Other Items Do Customers Buy After Viewing This Item?


Customer Reviews

There are no customer reviews yet on Amazon.ca
5 star:    (0)
4 star:    (0)
3 star:    (0)
2 star:    (0)
1 star:    (0)
 
 
 
Share your experience with this product with others
Create your own review
Most Helpful Customer Reviews on Amazon.com (beta)
Amazon.com: 4.8 out of 5 stars (5 customer reviews)

15 of 16 people found the following review helpful
5.0 out of 5 stars Excellent and approachable, Sep 5 2010
By Rusty Shackleford "Organic Gardener" - Published on Amazon.com
Amazon Verified Purchase(What's this?)
This review is from: Artificial Intelligence for Games (Hardcover)
The vast majority of software development books, whether it be for line-of-business app dev or game development, seem to have little to no information that can be found via a casual internet search.

This book is one of the few exceptions. There is a refreshing breadth and depth of game AI knowledge in this book that has been of tremendous help. Unlike the common "Gems" series of books, this book contains enough information on nearly every topic for the reader to build a 'ground up' implementation of their own.

My only complaints are that the pseudocode seems to be overly simplified and not as easily converted to a concrete implementation as I'd like, and that even for a book on game-specific AI implementations, the authors seem to enjoy a bit more of an academic/idealized approach to the design. That might be less bothersome to a professional game developer, but I'm at the hobbyist/indie level, and sometimes need a quick-and-dirty implementation before I begin to really understand what's going on.

Having said that, I was able to use the book to learn about and implement goal-oriented action planning, fast and flexible A* path finding (with additional info on modified funnel algorithm online), and several other critical components.

I would absolutely recommend this book.

9 of 11 people found the following review helpful
5.0 out of 5 stars Detailed explanations of AI algorithms, their purpose and usage, Aug 9 2010
By Krzysztof Satola "adobers.org" - Published on Amazon.com
This review is from: Artificial Intelligence for Games (Hardcover)
Artificial Intelligence for Games by Ian Millington and John Funge covers lots of topics but is mainly designed to help the reader to master one element of game development which is artificial intelligence (AI). The book covers a wide range of techniques for game AI including detailed explanations of AI algorithms, their purpose and usage.

As I have learnt from this book, artificial intelligence is about making computers able to perform some thinking tasks that human and animals are capable of. This includes superhuman abilities in solving many arithmetic, sorting, searching and decision making problems. This book shows how it can be achieved revealing a range of techniques to the reader.

The book is split into five parts: introduction for AI in games, the substance of the AI (movement, pathfinding, decision making, tactical and strategic reasoning, learning), technologies and ways of implementation that enable the AI to do its job and finally designing game AI.

I think this book could be aimed at a wide range of readers but is most suitable for those looking for solid understanding of game AI and comprehensive reference to techniques used in top studios. The book helps to gain a deep and thorough view on modeling complex emotional states, triggers, and behaviors. To get the most from the book, you have to manage some time to read it and to understand its contents. If you need a quick AI solutions repository you should probably find another book related to a particular technology or computer language.

The book is associated with a website that contains a library of C++ source code covering the techniques found in the book. Hopefully the C++ code used in samples is relatively easy to read and includes many comments. There are also demonstration programs compiled as EXE files.

Besides many technical solutions to AI related issues I have also learnt from this book a few high-level things. For instance I have learnt that creating good AI is all about matching the right behaviors to the right algorithms and that often, a very simple technique used well can have better results then implementing complex the AI in the game.

This book is an open minder or a view broadener on many aspects related to the AI in games. It can also serve as a great example of good analysis, desing and prototyping examples of more or less complex algorithms which are about to use in specific projects. This is a very valuable title for any computer science professional dealing with Artificial Intelligence (for games).

4 of 4 people found the following review helpful
5.0 out of 5 stars Good detail and wide breadth, July 16 2011
By Joseph F. Heck "rhonabwy" - Published on Amazon.com
This review is from: Artificial Intelligence for Games (Hardcover)
I've glanced through a number of game AI books, and this one really stood out. After purchasing it and digging in much deeper, I am immensely glad I did.

One of the features that I like the most about this book is the extensive use of good written descriptions and pseudo code, rather than shoving fragments of somewhat understandable c++ code down your throat. They have code associated with the book - it's really too light to be immediately usable, and not all chapters in the book have example snippets, but the descriptive text has generally been more than sufficient to help you develop the algorithms on your own.

The authors also make some reference to games in industry and AI mechanisms, but rather than using it in a name dropping, cataloging sort of frame, they often explain why of the choices, and the benefits and drawbacks associated with the game and AI mechanism choices.

While I'm only focusing on a few chapters right now, I expect this book to be an excellent long term reference work on the field for me.
 Go to Amazon.com to see all 5 reviews  4.8 out of 5 stars 

Listmania!


Look for similar items by category


Look for similar items by subject


Feedback


Amazon.ca Privacy Statement Amazon.ca Shipping Information Amazon.ca Returns & Exchanges