Artículos relacionados a Algorithms and Networking for Computer Games

Algorithms and Networking for Computer Games - Tapa dura

 
9781119259763: Algorithms and Networking for Computer Games

Sinopsis

ALGORITHMS AND NETWORKING FOR COMPUTER GAMES, 2ND EDITION BY Jouni Smed, Harri Hakonen, 9781119259763

"Sinopsis" puede pertenecer a otra edición de este libro.

Críticas

"More than 70 algorithms are presented, covering random numbers, noise in data (a realistic world is full of imperfections), procedural generation, tournaments, game trees, path finding, group movement, decision making, and modelling uncertainty - as well as networking problems, including dealing with cheating. The exercises at the end of each chapter range from simple thought exercises to studying Braben and Bell's namegeneration algorithm from Elite (1984) ... use of pseudocode throughout ensures the book works equally well for C, C++, Java, Python, or even C# programmers." MagPi, Issue 64, December 2017

Reseña del editor

The essential guide to solving algorithmic and networking problems in commercial computer games, revised and extended Algorithms and Networking for Computer Games, Second Edition is written from the perspective of the computer scientist. Combining algorithmic knowledge and game-related problems, it explores the most common problems encountered in game programing. The first part of the book presents practical algorithms for solving classical topics, such as random numbers, procedural generation, tournaments, group formations and game trees. The authors also focus on how to find a path in, create the terrain of, and make decisions in the game world. The second part introduces networking related problems in computer games, focusing on four key questions: how to hide the inherent communication delay, how to best exploit limited network resources, how to cope with cheating and how to measure the on-line game data. Thoroughly revised, updated, and expanded to reflect the many constituent changes occurring in the commercial gaming industry since the original, this Second Edition, like the first, is a timely, comprehensive resource offering deeper algorithmic insight and more extensive coverage of game-specific networking problems than ordinarily encountered in game development books. Algorithms and Networking for Computer Games, Second Edition: * Provides algorithmic solutions in pseudo-code format, which emphasises the idea behind the solution, and can easily be written into a programming language of choice * Features a section on the Synthetic player, covering decision-making, influence maps, finite-state machines, flocking, fuzzy sets, and probabilistic reasoning and noise generation * Contains in-depth treatment of network communication, including dead-reckoning, local perception filters, cheating prevention and on-line metrics * Now includes 73 ready-to-use algorithms and 247 illustrative exercises Algorithms and Networking for Computer Games, Second Edition is a must-have resource for advanced undergraduate and graduate students taking computer game related courses, postgraduate researchers in game-related topics, and developers interested in deepening their knowledge of the theoretical underpinnings of computer games and in learning new approaches to game design and programming.

"Sobre este título" puede pertenecer a otra edición de este libro.

  • EditorialJohn Wiley & Sons Inc
  • Año de publicación2017
  • ISBN 10 1119259762
  • ISBN 13 9781119259763
  • EncuadernaciónTapa dura
  • IdiomaInglés
  • Número de edición2
  • Número de páginas416

Comprar usado

Condición: Bien
Hardcover, second edition, xxi...
Ver este artículo

EUR 25,60 gastos de envío desde Irlanda a Estados Unidos de America

Destinos, gastos y plazos de envío

Comprar nuevo

Ver este artículo

EUR 2,33 gastos de envío en Estados Unidos de America

Destinos, gastos y plazos de envío

Otras ediciones populares con el mismo título

9780470018125: Algorithms and Networking for Computer

Edición Destacada

ISBN 10:  0470018127 ISBN 13:  9780470018125
Editorial: John Wiley & Sons, 2006
Tapa dura

Resultados de la búsqueda para Algorithms and Networking for Computer Games

Imagen de archivo

Jouni Smed; Harri Hakonen
Publicado por Wiley, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Antiguo o usado Tapa dura

Librería: killarneybooks, Inagh, CLARE, Irlanda

Calificación del vendedor: 5 de 5 estrellas Valoración 5 estrellas, Más información sobre las valoraciones de los vendedores

Hardcover. Condición: Very Good. 2nd Edition. Hardcover, second edition, xxi + 389 pages, NOT ex-library. An external stamp ('mängelexemplar') on upper page edges. Pages are clean and bright throughout with unmarked text, free of inscriptions and stamps, firmly bound. Boards show minor shelfwear. Issued without a dust jacket. -- Contents: 1 Introduction [Anatomy of Computer Games; Game Development (Phases of development; Documentation; Other considerations); Synthetic Players (Humanness; Stance); Multiplaying; Interactive Storytelling (Approaches; Storytelling in games); Outline of the Book (Algorithms; Networking); Summary; Exercises]; I Algorithms -- 2 Random Numbers [Linear Congruential Method (Choice of parameters; Testing the randomness; Using the generators); Discrete Finite Distributions; Random Shuffling; Exercises] 3 Noise [Applying Noise; Origin of Noise; Visualization; Interpolation (Utility routines for value conversions; Interpolation in a single & in two parameters); Composition of Noise; Periodic Noise; Perlin Noise; Worley Noise; Exercises]; 4 Procedural Generation [Terrain Generation; Maze Algorithms (Depth-first Algorithm; Randomized Kruskal's & Prim's algorithm); L-Systems (Examples; City generation); Hierarchical Universe Generation; Exercises]; 5 Tournaments [Rank Adjustment; Elimination; Scoring Tournaments; Exercises]; 6 Game Trees [Minimax (Analysis; Partial minimax); Alpha-Beta Pruning (Analysis; Principal variation search); Monte Carlo Tree Search; Games of Chance; Exercises]; 7 Path Finding [Discretization of the Game World (Grid; Navigation mesh); Finding the Minimum Path (Evaluation function; Properties; Algorithm A*); Realizing the Movement; Exercises]; 8 Group Movement [Flocking; Formations (Coordinating formations; Behaviour-based steering; Fuzzy logic control; Mass-spring systems; Exercises]; 9 Decision-Making [Background (Levels of decision-making; Modelled knowledge; Methods); Finite State Machines (Computational FSM; Mealy & Moore machines; Implementation; Discussion); Influence Maps; Automated Planning; Exercises]; 10 Modelling Uncertainty [Statistical Reasoning (Bayes' theorem; Bayesian networks; Dempster-Shafer theory); Fuzzy Sets (Membership function; Fuzzy operations; Defuzzification); Fuzzy Constraint Satisfaction Problem (Modelling the criteria as fuzzy sets; Weighting the criteria importances; Aggregating the criteria; Making a decision); Exercises]; II Networking -- 11 Communication Layers [Physical Platform (Resource limitations; Transmission techniques and protocols); Logical Platform (Communication architecture; Data & control architecture); Networked Application; Exercises]; 12 Compensating Resource Limitations [Aspects of Compensation (Consistency & responsiveness; Scalability); Protocol Optimization (Message compression & aggregation); Dead Reckoning (Prediction; Convergence); Local Perception Filters (Linear temporal contour; Adding bullet time to the delays); Synchronized Simulation; Interest Management (Aura- & Zone- & Visibility- & Class-based interest management); Compensation by Game Design (Short active turns; Semi-autonomous avatars; Interaction via proxies); Exercises]; 13 Cheating Prevention [Technical Exploitations (Packet tampering; Look-ahead cheating; Cracking & other attacks); Collusion (Classification; Collusion detection); Rule Violations; Exercises]; 14 Online Metrics [Players; Monetization; Acquisition; Game Session; Exercises]; Appendices: -- A Pseudocode Conventions [Changing the Flow of Control (Expressions; Control structures); Data Structures (Values and entities; Data collections); Format of Algorithms; Conversion to Existing Programming Languages]; B Practical Vectors and Matrices [Points and Vectors; Matrices; Conclusion]; Bibliography; Ludography; Index. Nº de ref. del artículo: 007768

Contactar al vendedor

Comprar usado

EUR 39,30
Convertir moneda
Gastos de envío: EUR 25,60
De Irlanda a Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: 1 disponibles

Añadir al carrito

Imagen de archivo

Smed, Jouni; Hakonen, Harri
Publicado por Wiley, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Antiguo o usado Tapa dura

Librería: ThriftBooks-Dallas, Dallas, TX, Estados Unidos de America

Calificación del vendedor: 5 de 5 estrellas Valoración 5 estrellas, Más información sobre las valoraciones de los vendedores

Hardcover. Condición: Very Good. No Jacket. Former library book; May have limited writing in cover pages. Pages are unmarked. ~ ThriftBooks: Read More, Spend Less 1.75. Nº de ref. del artículo: G1119259762I4N10

Contactar al vendedor

Comprar usado

EUR 68,61
Convertir moneda
Gastos de envío: GRATIS
A Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: 1 disponibles

Añadir al carrito

Imagen del vendedor

Smed, Jouni; Hakonen, Harri
Publicado por Wiley, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Nuevo Tapa dura

Librería: GreatBookPrices, Columbia, MD, Estados Unidos de America

Calificación del vendedor: 5 de 5 estrellas Valoración 5 estrellas, Más información sobre las valoraciones de los vendedores

Condición: New. Nº de ref. del artículo: 25039192-n

Contactar al vendedor

Comprar nuevo

EUR 76,34
Convertir moneda
Gastos de envío: EUR 2,33
A Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: 2 disponibles

Añadir al carrito

Imagen de archivo

Jouni Smed
Publicado por John Wiley and Sons, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Nuevo Tapa dura

Librería: INDOO, Avenel, NJ, Estados Unidos de America

Calificación del vendedor: 5 de 5 estrellas Valoración 5 estrellas, Más información sobre las valoraciones de los vendedores

Condición: New. Nº de ref. del artículo: 9781119259763

Contactar al vendedor

Comprar nuevo

EUR 78,71
Convertir moneda
Gastos de envío: GRATIS
A Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: Más de 20 disponibles

Añadir al carrito

Imagen del vendedor

Smed, Jouni; Hakonen, Harri
Publicado por Wiley, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Antiguo o usado Tapa dura

Librería: GreatBookPrices, Columbia, MD, Estados Unidos de America

Calificación del vendedor: 5 de 5 estrellas Valoración 5 estrellas, Más información sobre las valoraciones de los vendedores

Condición: As New. Unread book in perfect condition. Nº de ref. del artículo: 25039192

Contactar al vendedor

Comprar usado

EUR 80,96
Convertir moneda
Gastos de envío: EUR 2,33
A Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: 2 disponibles

Añadir al carrito

Imagen de archivo

Harri Hakonen
Publicado por John Wiley and Sons Inc, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Antiguo o usado Tapa dura

Librería: PBShop.store UK, Fairford, GLOS, Reino Unido

Calificación del vendedor: 4 de 5 estrellas Valoración 4 estrellas, Más información sobre las valoraciones de los vendedores

HRD. Condición: Used - Very Good. Used - Like New Book. Shipped from UK. Established seller since 2000. Nº de ref. del artículo: P1-9781119259763

Contactar al vendedor

Comprar usado

EUR 90,19
Convertir moneda
Gastos de envío: EUR 6,88
De Reino Unido a Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: 1 disponibles

Añadir al carrito

Imagen de archivo

Harri Hakonen
Publicado por John Wiley and Sons Inc, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Nuevo Tapa dura

Librería: PBShop.store UK, Fairford, GLOS, Reino Unido

Calificación del vendedor: 4 de 5 estrellas Valoración 4 estrellas, Más información sobre las valoraciones de los vendedores

HRD. Condición: New. New Book. Shipped from UK. Established seller since 2000. Nº de ref. del artículo: FW-9781119259763

Contactar al vendedor

Comprar nuevo

EUR 90,19
Convertir moneda
Gastos de envío: EUR 6,88
De Reino Unido a Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: 1 disponibles

Añadir al carrito

Imagen del vendedor

Smed, Jouni; Hakonen, Harri
Publicado por Wiley, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Antiguo o usado Tapa dura

Librería: GreatBookPricesUK, Woodford Green, Reino Unido

Calificación del vendedor: 5 de 5 estrellas Valoración 5 estrellas, Más información sobre las valoraciones de los vendedores

Condición: As New. Unread book in perfect condition. Nº de ref. del artículo: 25039192

Contactar al vendedor

Comprar usado

EUR 82,08
Convertir moneda
Gastos de envío: EUR 17,58
De Reino Unido a Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: 2 disponibles

Añadir al carrito

Imagen del vendedor

Jouni Smed
Publicado por John Wiley & Sons Inc, New York, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Nuevo Tapa dura

Librería: Grand Eagle Retail, Fairfield, OH, Estados Unidos de America

Calificación del vendedor: 5 de 5 estrellas Valoración 5 estrellas, Más información sobre las valoraciones de los vendedores

Hardcover. Condición: new. Hardcover. The essential guide to solving algorithmic and networking problems in commercial computer games, revised and extended Algorithms and Networking for Computer Games, Second Edition is written from the perspective of the computer scientist. Combining algorithmic knowledge and game-related problems, it explores the most common problems encountered in game programing. The first part of the book presents practical algorithms for solving classical topics, such as random numbers, procedural generation, tournaments, group formations and game trees. The authors also focus on how to find a path in, create the terrain of, and make decisions in the game world. The second part introduces networking related problems in computer games, focusing on four key questions: how to hide the inherent communication delay, how to best exploit limited network resources, how to cope with cheating and how to measure the on-line game data. Thoroughly revised, updated, and expanded to reflect the many constituent changes occurring in the commercial gaming industry since the original, this Second Edition, like the first, is a timely, comprehensive resource offering deeper algorithmic insight and more extensive coverage of game-specific networking problems than ordinarily encountered in game development books. Algorithms and Networking for Computer Games, Second Edition: Provides algorithmic solutions in pseudo-code format, which emphasises the idea behind the solution, and can easily be written into a programming language of choiceFeatures a section on the Synthetic player, covering decision-making, influence maps, finite-state machines, flocking, fuzzy sets, and probabilistic reasoning and noise generationContains in-depth treatment of network communication, including dead-reckoning, local perception filters, cheating prevention and on-line metricsNow includes 73 ready-to-use algorithms and 247 illustrative exercises Algorithms and Networking for Computer Games, Second Edition is a must-have resource for advanced undergraduate and graduate students taking computer game related courses, postgraduate researchers in game-related topics, and developers interested in deepening their knowledge of the theoretical underpinnings of computer games and in learning new approaches to game design and programming. The essential guide to solving algorithmic and networking problems in commercial computer games, revised and extended Algorithms and Networking for Computer Games, Second Edition is written from the perspective of the computer scientist. Shipping may be from multiple locations in the US or from the UK, depending on stock availability. Nº de ref. del artículo: 9781119259763

Contactar al vendedor

Comprar nuevo

EUR 101,92
Convertir moneda
Gastos de envío: GRATIS
A Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: 1 disponibles

Añadir al carrito

Imagen de archivo

Jouni Smed
Publicado por John Wiley and Sons Ltd, 2017
ISBN 10: 1119259762 ISBN 13: 9781119259763
Nuevo Tapa dura

Librería: THE SAINT BOOKSTORE, Southport, Reino Unido

Calificación del vendedor: 5 de 5 estrellas Valoración 5 estrellas, Más información sobre las valoraciones de los vendedores

Hardback. Condición: New. New copy - Usually dispatched within 4 working days. 794. Nº de ref. del artículo: B9781119259763

Contactar al vendedor

Comprar nuevo

EUR 87,58
Convertir moneda
Gastos de envío: EUR 17,22
De Reino Unido a Estados Unidos de America
Destinos, gastos y plazos de envío

Cantidad disponible: 1 disponibles

Añadir al carrito

Existen otras 9 copia(s) de este libro

Ver todos los resultados de su búsqueda