|
|
|
|
LEADER |
00000cam a2200000 i 4500 |
001 |
EBSCO_ocn946944177 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr unu|||||||| |
008 |
160419s2016 enka o 001 0 eng d |
040 |
|
|
|a UMI
|b eng
|e rda
|e pn
|c UMI
|d N$T
|d OCLCF
|d EBLCP
|d VT2
|d KSU
|d DEBBG
|d IDB
|d DEBSZ
|d MERUC
|d OCLCQ
|d COO
|d U3W
|d UOK
|d CEF
|d NLE
|d UKMGB
|d OCLCQ
|d WYU
|d OCLCO
|d MQY
|d AGLDB
|d IGB
|d UKAHL
|d RDF
|d OCLCQ
|d YDXIT
|d BRF
|d OCLCO
|d OCLCQ
|d OCLCA
|d OCL
|d OCLCA
|d OCLCO
|d OCLCA
|
016 |
7 |
|
|a 018006715
|2 Uk
|
019 |
|
|
|a 993628161
|
020 |
|
|
|a 9781783553587
|q (electronic book)
|
020 |
|
|
|a 1783553588
|q (electronic book)
|
020 |
|
|
|a 178355357X
|
020 |
|
|
|a 9781783553570
|
020 |
|
|
|z 9781783553570
|
029 |
1 |
|
|a CHNEW
|b 000884493
|
029 |
1 |
|
|a CHVBK
|b 374431930
|
029 |
1 |
|
|a DEBBG
|b BV043893414
|
029 |
1 |
|
|a DEBBG
|b BV043969257
|
029 |
1 |
|
|a DEBSZ
|b 485797712
|
029 |
1 |
|
|a GBVCP
|b 882849565
|
029 |
1 |
|
|a UKMGB
|b 018006715
|
035 |
|
|
|a (OCoLC)946944177
|z (OCoLC)993628161
|
037 |
|
|
|a CL0500000733
|b Safari Books Online
|
050 |
|
4 |
|a T385
|b .P35 2016
|
072 |
|
7 |
|a COM
|x 000000
|2 bisacsh
|
082 |
0 |
4 |
|a 006.686
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Palacios, Jorge,
|e author.
|
245 |
1 |
0 |
|a Unity 5.x game AI programming cookbook :
|b build and customize a wide range of powerful Unity AI systems with over 70 hands-on recipes and techniques /
|c Jorge Palacios.
|
246 |
3 |
|
|a Unity five-point-x game AI programming cookbook
|
264 |
|
1 |
|a Birmingham :
|b Packt Publishing,
|c 2016.
|
300 |
|
|
|a 1 online resource :
|b illustrations
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
490 |
1 |
|
|a Quick answers to common problems
|
500 |
|
|
|a Includes index.
|
520 |
8 |
|
|a Annotation
|b Build and customize a wide range of powerful Unity AI systems with over 70 hands-on recipes and techniquesAbout This Book Empower your agent with decision making capabilities using advanced minimaxing and Negamaxing techniques Discover how AI can be applied to a wide range of games to make them more interactive. Instigate vision and hearing abilities in your agent through collider based and graph based systemsWho This Book Is ForThis book is intended for those who already have a basic knowledge of Unity and are eager to get more tools under their belt to solve AI and gameplay-related problems. What You Will Learn Use techniques such as A*and A*mbush to empower your agents with path finding capabilities. Create a representation of the world and make agents navigate it Construct decision-making systems to make the agents take different actions Make different agents coordinate actions and create the illusion of technical behavior Simulate senses and apply them in an awareness system Design and implement AI in board games such as Tic-Tac-Toe and Checkers Implement efficient prediction mechanism in your agents with algorithms such as N-Gram predictor and naive Bayes classifier Understand and analyze how the influence maps work. In DetailUnity 5 comes fully packaged with a toolbox of powerful features to help game and app developers create and implement powerful game AI. 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 practical Cookbook covers both essential and niche techniques to help you be able to do that and more. This Cookbook is engineered as your one-stop reference to take your game AI programming to the next level. Get to grips with the essential building blocks of working with an agent, programming movement and navigation in a game environment, and improving your agent's decision making and coordination mechanisms - all through hands-on examples using easily customizable techniques. Discover how to emulate vision and hearing capabilities for your agent, for natural and humanlike AI behaviour, and improve them with the help of graphs. Empower your AI with decision-making functions through programming simple board games such as Tic-Tac-Toe and Checkers, and orchestrate agent coordination to get your AIs working together as one. Style and approachThis recipe-based guide will take you through implementing various AI algorithms. Each topic is explained and placed among other related techniques, sometimes building on the knowledge from previous chapters. There are also references to more technical books and papers, so you can dig deeper if you want to.
|
505 |
0 |
|
|a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Behaviors -- Intelligent Movement; Introduction; Creating the behavior template; Pursuing and evading; Arriving and leaving; Facing objects; Wandering around; Following a path; Avoiding agents; Avoiding walls; Blending behaviors by weight; Blending behaviors by priority; Combining behaviors using a steering pipeline; Shooting a projectile; Predicting a projectile's landing spot; Targeting a projectile; Creating a jump system; Chapter 2: Navigation; Introduction
|
505 |
8 |
|
|a Representing the world with gridsRepresenting the world with Dirichlet domains; Representing the world with points of visibility; Representing the world with a self-made navigation mesh; Finding your way out of a maze with DFS; Finding the shortest path in a grid with BFS; Finding the shortest path with Dijkstra; Finding the best-promising path with A*; Improving A* for memory: IDA*; Planning navigation in several frames: time-sliced search; Smoothing a path; Chapter 3: Decision Making; Introduction; Choosing through a decision tree; Working a finite-state machine
|
505 |
8 |
|
|a Improving FSMs: hierarchical finite-state machinesCombining FSMs and decision trees; Implementing behavior trees; Working with fuzzy logic; Representing states with numerical values: Markov system; Making decisions with goal-oriented behaviors; Chapter 4: Coordination and Tactics; Introduction; Handling formations; Extending A* for coordination: A*mbush; Creating good waypoints; Analyzing waypoints by height; Analyzing waypoints by cover and visibility; Exemplifying waypoints for decision making; Influence maps; Improving influence with map flooding
|
505 |
8 |
|
|a Improving influence with convolution filtersBuilding a fighting circle; Chapter 5: Agent Awareness; Introduction; The seeing function using a collider-based system; The hearing function using a collider-based system; The smelling function using a collider-based system; The seeing function using a graph-based system; The hearing function using a graph-based system; The smelling function using a graph-based system; Creating awareness in a stealth game; Chapter 6.: Board Games AI; Introduction; Working with the game-tree class; Introducing Minimax; Negamaxing; AB Negamaxing; Negascouting
|
505 |
8 |
|
|a Implementing a tic-tac-toe rivalImplementing a checkers rival; Chapter 7: Learning Techniques; .Introduction; Predicting actions with an N-Gram predictor; Improving the predictor: Hierarchical N-Gram; Learning to use Naïve Bayes classifiers; Learning to use decision trees; Learning to use reinforcement; Learning to use artificial neural networks; Creating emergent particles using a harmony search; Chapter 8: Miscellaneous; Introduction; Handling random numbers better; Building an air-hockey rival; Devising a table-football competitor; Creating mazes procedurally
|
588 |
0 |
|
|a Description based on online resource; title from PDF title page (viewed February 26, 2020).
|
590 |
|
|
|a eBooks on EBSCOhost
|b EBSCO eBook Subscription Academic Collection - Worldwide
|
630 |
0 |
0 |
|a Unity (Electronic resource)
|
630 |
0 |
7 |
|a Unity (Electronic resource)
|2 fast
|
650 |
|
0 |
|a Video games
|x Programming.
|
650 |
|
0 |
|a Video games
|x Design.
|
650 |
|
6 |
|a Jeux vidéo
|x Programmation.
|
650 |
|
6 |
|a Jeux vidéo
|x Conception.
|
650 |
|
7 |
|a COMPUTERS
|x General.
|2 bisacsh
|
650 |
|
7 |
|a Computer games
|x Design
|2 fast
|
650 |
|
7 |
|a Video games
|x Programming
|2 fast
|
776 |
0 |
8 |
|i Erscheint auch als:
|n Druck-Ausgabe
|t Palacios, Jorge. Unity 5.x Game AI Programming Cookbook
|
830 |
|
0 |
|a Quick answers to common problems.
|
856 |
4 |
0 |
|u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1215163
|z Texto completo
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH30554572
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL4520640
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 1215163
|
994 |
|
|
|a 92
|b IZTAP
|