Cargando…

Unreal Engine 4 AI programming essentials : create responsive and intelligent game AI using Blueprints in Unreal Engine 4 /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autores principales: Newton, Peter L. (Autor), Feng, Jie (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2016.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo
Texto completo

MARC

LEADER 00000cam a2200000Ii 4500
001 EBSCO_ocn945736599
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 160331s2016 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d OCLCO  |d OCLCF  |d NLE  |d KSU  |d DEBBG  |d C6I  |d N$T  |d DEBSZ  |d YDX  |d YDXCP  |d IDEBK  |d CEF  |d AGLDB  |d UAB  |d IGB  |d RDF  |d OCLCO  |d OCLCQ  |d OCLCA  |d OCL  |d OCLCA  |d QGK  |d OCLCO  |d OCLCA 
019 |a 945564219  |a 945566858  |a 973021939  |a 1034610800  |a 1259080039 
020 |a 9781784396558  |q (electronic bk.) 
020 |a 1784396559  |q (electronic bk.) 
020 |z 9781784393120 
020 |a 1784393126 
020 |a 9781784393120 
029 1 |a DEBBG  |b BV043969143 
029 1 |a DEBSZ  |b 485796570 
029 1 |a GBVCP  |b 882849158 
029 1 |a DEBSZ  |b 480366268 
029 1 |a AU@  |b 000063687672 
035 |a (OCoLC)945736599  |z (OCoLC)945564219  |z (OCoLC)945566858  |z (OCoLC)973021939  |z (OCoLC)1034610800  |z (OCoLC)1259080039 
037 |a CL0500000729  |b Safari Books Online 
050 4 |a QA76.76.C672 
072 7 |a GAM  |x 001000  |2 bisacsh 
082 0 4 |a 794.8163  |2 23 
049 |a UAMI 
100 1 |a Newton, Peter L.,  |e author. 
245 1 0 |a Unreal Engine 4 AI programming essentials :  |b create responsive and intelligent game AI using Blueprints in Unreal Engine 4 /  |c Peter L. Newton, Jie Feng. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2016. 
300 |a 1 online resource (1 volume) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Community experience distilled 
588 |a Description based on online resource; title from title page (Safari, viewed March 30, 2016). 
500 |a Includes index. 
520 8 |a Annotation  |b Create responsive and intelligent game AI using Blueprints in Unreal Engine 4About This Book Understand and apply your Game AI better through various projects such as adding randomness and probability, and introducing movement Configure and debug Game AI logic using multiple methodologies Bridge the gap between your knowledge and Game AI in Unreal Engine 4Who This Book Is ForThis book is for programmers and artists who want to expand their knowledge of Game AI in relation to Unreal Engine 4. You are recommended to have some experience of exploring Unreal Engine 4 prior to this book because we jump straight into Game AI.What You Will Learn Understand the fundamental components of Game AI within Unreal Engine 4 Skillfully introduce Game AI within Unreal Engine 4 Configure, customize, and assign Navigation and AI components to your pawn Create, debug, and analyze Game AI behavior Design responsive Game AI using the Behavior Tree methodology Create smart objects designed to interact with AI Utilize advanced AI features within your project to maximize the user experienceIn DetailUnreal Engine is a powerful game development engine that provides rich functionalities to create 2D and 3D games. Developers have the opportunity to build cross-platform mobile and desktop games from scratch. This book will show you how to apply artificial intelligence (AI) techniques to your Unreal project using blueprints as your scripting language. You will start with an introduction to AI, and learn how it is applied to gaming. Then you'll jump right in and create a simple AI bot and apply basic behaviors to allow it to move randomly. As you progress, you'll find out how to implement randomness and probability traits. Using NavMesh, you will impart navigation components such as character movement, MoveTo nodes, settings, and world objects, and implement Behavior Trees. At the end of the book, you will troubleshoot any issues that might crop up while building the game.Style and approachThis easy-to-follow project-based guide throws you directly into the excitement of Game AI in an approachable and comprehensive manner. 
505 0 |a Cover; Copyright; Credits; About the Authors; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introduction to Game AI; Game Artificial Intelligence; How AI affects the gaming experience; Techniques and practices of game AI; Navigation; Achieving realistic movement with Steering; Creating a character with randomness and probability; Creating complex decision making with Behavior Tree; Root; Decorators; Composites; Services; Tasks; Blackboard; Sensory systems; Machine learning; Tracing; Influence Mapping; Unreal Engine 4 tools; Summary; Chapter 2: Creating Basic AI 
505 8 |a GoalSetting up the project; Environment; Prerequisites; Using our new AIController class; Assigning the AIController class; Placing the pawn; Sending the instructions; Small tips on MoveToLocation; Reviewing the current progress; Adding the challenge; Traces; Reviewing the current progress; The Enemy logic; Adding the Enemy AI; Summary; Chapter 3: Adding Randomness and Probability; Introducing probability; Probabilistic distribution; Non-uniform distribution; RandomStream in Unreal Engine 4; The plan; Adding Wander; Setting up the project; Creating probability 
505 8 |a Non-uniform distribution with Random StreamCreating transitions; Fleeing and attacking; Back to the action; The results!; Summary; Chapter 4: Introducing Movement; Overview; Path Finding; The A* algorithm; Navigation Mesh; RecastNavMesh; The movement component; The AIController; Let's start!; Waypoints; Navigation; Navigation Modifiers; Back in the editor; The NavArea class; The navigation cost; Summary; Chapter 5: Giving AI Choices; Behavior Tree in the AIController; Creating Behavior Tree; Blackboard; Designing Behavior Tree; The Behavior Tree service; State transitions 
505 8 |a Blackboard Compare DecoratorEnvironment Query System; Summary; Chapter 6: How does Our AI Sense?; Overview; AI sensing; AI Perception components; State machines; Pawn detection; State transition; Resetting the state; Simulating and playing; Summary; Chapter 7: More Advanced Movement; Setting up the agents; Viewing the agent; Following the agent; Follow or lead; Steering behavior: Flocking; Flocking agents; Controlling behavior through UMG; A simple UI; Summary; Chapter 8: Creating Patrol, Chase, and Attack AI; Creating a Blackboard; Mid-range attack; Controllers; Waypoints 
505 8 |a BT Composites, Task, Decorator, and ServiceCreating the logic; Summary; Chapter 9: What Have We Learned?; Creating basic AI; The pros and cons of using controls; Adding randomness and probability; The pros and cons of using randomness; The pros and cons of using probability; Introducing movement; Giving our AI choice; The pros and cons of using EQS; The pros and cons of using Blueprint; How does our AI sense?; More advanced movement; Creating patrol, chase, and attack AI; The pros and cons of using Behavior Tree; The pros and cons of using blueprint for AI; Summary; Index 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Video games  |x Programming. 
650 0 |a UnrealScript (Computer program language) 
650 0 |a Video games  |x Design. 
650 6 |a Jeux vidéo  |x Programmation. 
650 6 |a UnrealScript (Langage de programmation) 
650 6 |a Jeux vidéo  |x Conception. 
650 7 |a GAMES / Board  |2 bisacsh 
650 7 |a Computer games  |x Design  |2 fast 
650 7 |a Video games  |x Programming  |2 fast 
650 7 |a UnrealScript (Computer program language)  |2 fast 
700 1 |a Feng, Jie,  |e author. 
776 |z 1-78439-312-6 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1203017  |z Texto completo 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781784393120/?ar  |z Texto completo 
938 |a EBSCOhost  |b EBSC  |n 1203017 
938 |a YBP Library Services  |b YANK  |n 12900404 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis34201263 
994 |a 92  |b IZTAP