Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Unity 2017 Game AI Programming - Third Edition
Unity 2017 Game AI Programming - Third Edition

Unity 2017 Game AI Programming - Third Edition: Leverage the power of Artificial Intelligence to program smart entities for your games , Third Edition

eBook
€22.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Unity 2017 Game AI Programming - Third Edition

Finite State Machines and You

In this chapter, we'll expand our knowledge of the FSM pattern and its uses in games and learn how to implement it in a simple Unity game. We will create a tank game with the sample code that comes with this book. We'll be dissecting the code and the components in this project. The topics we'll cover are as follows:

  • Understanding Unity's state machine features
  • Creating our own states and transitions
  • Creating a sample scene using examples

Unity 5 introduced state machine behaviors, which are a generic expansion of the Mecanim animation states that were introduced in the 4.x cycle. These new state machine behaviors, however, are independent of the animation system, and we will learn to leverage these new features to quickly implement a state-based AI system.

In our game, the player will be able to control a tank. The enemy tanks...

Technical Requirements

Finding uses for FSMs

Although we will primarily focus on using FSMs to implement AI in our game to make it more fun and interesting, it is important to point out that FSMs are widely used throughout game and software design and programming. In fact, the system in Unity 2017 that we'll be using was first introduced in the Mecanim animation system.

We can categorize many things into states in our daily lives. The most effective patterns in programming are those that mimic the simplicity of real-life designs, and FSMs are no different. Take a look around and you'll most likely notice a number of things in one of any number of possible states. For example, is there a light bulb nearby? A light bulb can be in one of two states—on or off (so long as we're not talking about one of those fancy dimming lights). Let's go back to grade school for a moment and...

Creating state machine behaviors

Now that we're familiar with the concept of a state machine, let's get our hands dirty and start implementing our very own.

As of Unity 2017.1, state machines are still part of the animation system, but worry not, they are flexible and no animations are actually required to implement them. Don't be alarmed or confused if you see code referencing the Animator component or the AnimationController asset as it's merely a quirk of the current implementation. It's possible that Unity will address this in a later version, but the concepts will likely not change.

Let's fire up Unity, create a new project, and get to it.

Creating the AnimationController asset

The AnimationController...

Setting up our player tank

Open up the sample project included with this book for this chapter.

It is a good idea to group similar assets together in your project folder to keep them organized. For example, you can group your state machines in a folder called StateMachines. The assets provided for this chapter are grouped for you already, so you can drop the assets and scripts you create during this chapter into the corresponding folder.

Creating the enemy tank

Let's go ahead and create an animator controller in your assets folder. This will be your enemy tank's state machine. Call it EnemyFsm.

This state machine will drive the tank's basic actions. As described earlier in our example, the enemy can patrol, chase, and shoot the player. Let's go ahead and set up our state machine. Select the EnemyFsm asset and open up the Animator window.

Now, we'll go ahead and create three empty states that will conceptually and functionally represent our enemy tank's states. Name them Patrol, Chase, and Shoot. Once they are created and named, we'll want to make sure we have the correct default state assigned. At the moment, this will vary depending on the order in which you created and named the states, but we want the Patrol state to be the default state, so right-click on it and select Set...

Summary

In this chapter, we learned how to implement state machines in Unity 2017 using animator and controller-based state machines for what will be our tank game. We learned about state machine behaviors and transitions between states. With all of these concepts covered, we then applied the simple state machine to an agent, thus creating our first artificially intelligent entity!

In the next chapter, we'll continue to build our tank game and give our agent more complex methods for sensing the world around it.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • •Explore the brand-new Unity 2017 features that makes implementing Artificial Intelligence in your game easier than ever
  • •Use fuzzy logic concepts in your AI decision-making to make your characters more engaging
  • •Build exciting and richer games by mastering advanced Artificial Intelligence concepts such as Neural Networks

Description

Unity 2017 provides game and app developers with a variety of tools to implement Artificial Intelligence. Leveraging these tools via Unity's API or built-in features allows limitless possibilities when it comes to creating your game's worlds and characters. This third edition with Unity will help you break down Artificial Intelligence into simple concepts to give you a fundamental understanding of the topic to build upon. Using a variety of examples, the book then takes those concepts and walks you through actual implementations designed to highlight key concepts, and features related to game AI in Unity 5. Further on you will learn to distinguish the state machine pattern and implement one of your own. This is followed by learning how to implement a basic sensory system for your AI agent and coupling it with a Finite State Machine (FSM). Next you'll learn how to use Unity's built-in NavMesh feature and implement your own A* pathfinding system. You will then learn how to implement simple flocks and crowd's dynamics, key AI concepts. Moving on, you will learn how to implement a behavior tree through a game-focused example. Lastly, you'll combine fuzzy logic concepts with state machines and apply all the concepts in the book to build a simple tank game.

Who is this book for?

This book is intended for Unity developers with a basic understanding of C# and the Unity editor. Whether you're looking to build your first game or are looking to expand your knowledge as a game programmer, you will find plenty of exciting information and examples of game AI in terms of concepts and implementation.

What you will learn

  • • Understand the basic terminology and concepts in game AI
  • • Explore advanced AI Concepts such as Neural Networks
  • • Implement a basic finite state machine using state machine behaviors in Unity 2017
  • • Create sensory systems for your AI and couple it with a Finite State Machine
  • • Wok with Unity 2017 s built-in NavMesh features in your game
  • • Build believable and highly-efficient artificial flocks and crowds
  • • Create a basic behavior tree to drive a character s actions

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jan 11, 2018
Length: 254 pages
Edition : 3rd
Language : English
ISBN-13 : 9781788477901
Vendor :
Unity Technologies
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Jan 11, 2018
Length: 254 pages
Edition : 3rd
Language : English
ISBN-13 : 9781788477901
Vendor :
Unity Technologies
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 125.97
Unity 2017 Game AI Programming - Third Edition
€41.99
Learning C# 7 By Developing Games with Unity 2017
€41.99
Mastering Unity 2017 Game Development with C#
€41.99
Total 125.97 Stars icon
Banner background image

Table of Contents

9 Chapters
The Basics of AI in Games Chevron down icon Chevron up icon
Finite State Machines and You Chevron down icon Chevron up icon
Implementing Sensors Chevron down icon Chevron up icon
Finding Your Way Chevron down icon Chevron up icon
Flocks and Crowds Chevron down icon Chevron up icon
Behavior Trees Chevron down icon Chevron up icon
Using Fuzzy Logic to Make Your AI Seem Alive Chevron down icon Chevron up icon
How It All Comes Together Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.8
(4 Ratings)
5 star 25%
4 star 25%
3 star 0%
2 star 0%
1 star 50%
Cara May 25, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I had no issue setting up my project and all the assets provided with the project worked just fine.This book is very easy to understand, and the concepts clearly described. I especially like how fun some of the projects were to do.This book did a great job of articulating the basics of game ai.Thanks for the help!
Amazon Verified review Amazon
Joe Jun 18, 2018
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
This is definitely one of the better books I've found that provide an introduction to AI concepts in Unity. I felt that the samples were easy to understand but not so simple that I gained no practical knowledge. However, if you are new to Unity or C# then this is likely not a good book to pick up, as it gets into concepts that require more than a basic understanding of both.Pros:• Easy to read & understand, if you have a decent understanding of C# & Unity fundamentals• Nice balance of theory, simple examples & practical applications• Covers multiple AI approaches & techniquesCons:• There are several typos, spelling errors, and consistency issues with screenshots, notably switching between dark & light UI• Chapter 2, FSMs with Animation controllers fell a little flat for me & didn't really provide much value• I would have liked more detail or more robust examples in some areas, notably behavior trees• The code could be optimized a bit more without losing readabilityNOTE: The physical & Pakt supplied ePub version of this book are great, but the Kindle version has many, many formatting errors, often to the point of making it very hard to follow. Examples are missing line breaks, broken or no code indentation, bullet points being collapsed into a single, incorrectly punctuated "paragraph". I wound up returning the kindle version and picking up the ePub version directly from Pakt.
Amazon Verified review Amazon
Jim Hardy Jun 12, 2018
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
Yes I'm with you Jesse. Chapter 2 only tells you about how to setup the substate machine via the Animator and the code behind for it. At the end of the chapter it tells you to test it. Test what? There's nothing on the scene in Unity, where were the instructions for that?At least the accompanying Unity project works and can be used as a reference, or was this the point all along...
Amazon Verified review Amazon
Jesse Chunn Mar 04, 2018
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
I have been programming for 20 years. I have been programming with C# since it first came out. I have limited experience with Unity, but have read a couple of books on it and have implemented a basic FPS "game" level with an animated "robot" NPC. I got this book with the idea of learning how to get my animated robot to walk around and do basic things like "patrol" and "attack".This book is terrible. Well, actually, I should say Chapter 2 is terrible, since that is as far as I got. In chapter 2 the wheels fall off. It references opening a "project" that the book claims is supplied with the companion downloads, but the only project is a Visual Studio C# solution... No Unity project or scene. It then references assets that it says you imported earlier, but you were never told to import those assets or which assets to import. It then (once I figured out what assets to import and how to import them) references those assets at early stages of development, even though they are provided already completed, so you can't follow along. Bottom line, you MUST have the companion downloads to follow along in the book or the book makes no sense, and the companion downloads are not in sync with what the book is saying, and the book is inconsistent with itself because it talks about things you "did" but it never told you to do.For example, it tells you to drag a "tank" asset onto the scene, although you never were told to drag the "environment" asset onto the scene, so the tank is just floating around in mid-air.There are lots of better books on this topic out there, and in fact you can find better information for free all over the Internet.Worst of all, this book is very expensive compared to other books on the subject.This book was never given a "test run" by the authors or an editor or these issues would have easily been discovered. This is a sad case of rushed publishing to make a quick buck. It is a shame too, because if it were done right it probably would have been a good book.Skip this one.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.