Artificial Intelligence for Games
-
GET 10% OFF
- Publisher's listprice GBP 73.99
-
35 348 Ft (33 665 Ft + 5% VAT)
The price is estimated because at the time of ordering we do not know what conversion rates will apply to HUF / product currency when the book arrives. In case HUF is weaker, the price increases slightly, in case HUF is stronger, the price goes lower slightly.
- Discount 10% (cc. 3 535 Ft off)
- Discounted price 31 813 Ft (30 299 Ft + 5% VAT)
31 813 Ft
Availability
Uncertain availability. Please turn to our customer service.
Why don't you give exact delivery time?
Delivery time is estimated on our previous experiences. We give estimations only, because we order from outside Hungary, and the delivery time mainly depends on how quickly the publisher supplies the book. Faster or slower deliveries both happen, but we do our best to supply as quickly as possible.
Product details:
- Edition number 2nd ed., New edition
- Publisher Morgan Kaufmann
- Date of Publication 1 October 2009
- ISBN 9780123747310
- Binding Hardback
- No. of pages888 pages
- Size 234x190x38 mm
- Weight 1684 g
- Language English 0
Categories
Long 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.
Table of Contents:
From the contents:
Descriptions have been added to sections which will have significant changes in the 2nd edition.
1 INTRODUCTION
Will now make the code available exclusively online. This section would describe how to access the code and what it contains, in broad brush strokes. I have a completely new codebase for the second edition, with many more demos.
2 GAME AI
This chapter has been reorganised to include an additional section: AGENTS, PERCEPTS AND ACTIONS. This is a new section that looks at characters in a game in a more systemic way. It helps set up several of the later chapters that didn't have an organising principle.
This section also includes updates on the current generation of hardware. In particular multi
-core consoles.
3 MOVEMENT
Adding new section (ACTIONS AND MOVEMENT).
Also, including more information on the representation of motion in a game engine, particularly a game engine with a physics core.
There is additional material on COMBINING STEERING BEHAVIORS.
4 PATHFINDING
A short subsection on path finding in the presence of uncertainty will be added. This is an interesting new subfield.
5 DECISION MAKING
Adding a new section (BEHAVIOR TREES): a single technique set.
A new section will be added to discuss goal oriented action planning outside the context of the Sims
-like game from the 1st ed. Additional techniques will be discussed to allow readers to implement GOAP in other game genres.
In particular two techniques: Hierarchical Task Planning and Partial Order Planning, will be introduced and applied at their most basic level.
6 TACTICAL AND STRATEGIC AI
Adding a new section (STRATEGY AND PERSONALITY) that discusses how to build strategic AI that follows distinct styles, without being too predictable and exploitable.
7 LEARNING
The examples in the section on REINFORCEMENT LEARNING will be modified. Readers found it difficult to understand why and how this technique should be used. The textual demo will be expanded to a graphic demo which will be walked through in detail.
8 BOARD GAMES
9 EXECUTION MANAGEMENT
The section on ANYTIME ALGORITHMS will be expanded to include information on how to go about any
-timing existing algorithms. Topics such as making recursion explicit, storing data between updates, and anytime algorithms on multi
-core processors will be addressed.
10 WORLD INTERFACING
The section on GETTING KNOWLEDGE EFFICIENTLY will be expanded to bring in the idea of the percept introduced in chapter 2. In addition, there will be a new subsection on geometric queries to the game (where things are, what can be seen, etc).
Adding a new section on INTELLIGENT CONTENT. Several games in the last few years have increased the AI sophistication by making the level more intelligent. Data and algorithms embedded into the level can mean that lots of characters can have correspondingly simpler AI and still appear very smart. This section describes how it can be done.
11 TOOLS AND CONTENT CREATION
There are minor tweaks to make here to bring the book up to date with current state of the art in commercial AI toolkits.
The current hot
-topic in game development is automating content creation. AI data is relatively easy to automate in some contexts
- this section will be updated with this info.
12 SCRIPTING
NEW chapter on Scripting (pulling misc scripting sections from other parts of the book and going into more detail).
Also, discussing visual scripting (the idea that programs can be represented visually). Also, covering node
-based scripting systems in this new section.
Coverage of declarative scripting, which doesn't give programs or scripts to be carried out, but states what should happen in response to conditions in the world. It is really a variation of rule
-based decision making, but as a scripting technology is particularly powerful for gameplay development as well as agent
-based AI. A couple of recent game projects I've seen use this approach....