Cargando…

OpenGL game development by example : design and code your own 2D and 3D games efficiently using OpenGL and C++ /

Design and code your own 2D and 3D games efficiently using OpenGL and C++About This Book Create 2D and 3D games completely, through a series of end-to-end game projects Learn to render high performance 2D and 3D graphics using OpenGL Implement a rudimentary game engine using step-by-step codeWho Thi...

Descripción completa

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

MARC

LEADER 00000cam a2200000Ii 4500
001 EBSCO_ocn945654235
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 160329s2016 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d N$T  |d OCLCF  |d COO  |d EBLCP  |d TEFOD  |d KSU  |d DEBBG  |d IDB  |d MERUC  |d OCLCQ  |d OCLCO  |d CEF  |d OCLCQ  |d OCLCO  |d AGLDB  |d IGB  |d RDF  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCL  |d QGK 
019 |a 1259219689 
020 |a 9781783288205  |q (electronic bk.) 
020 |a 1783288205  |q (electronic bk.) 
020 |a 1783288191 
020 |a 9781783288199 
020 |z 1783288191 
020 |z 9781783288199 
024 3 |a 9781783288199 
029 1 |a AU@  |b 000062156289 
029 1 |a CHNEW  |b 000884491 
029 1 |a CHVBK  |b 374431914 
029 1 |a DEBBG  |b BV043893411 
029 1 |a DEBBG  |b BV043969073 
029 1 |a DEBSZ  |b 485795876 
029 1 |a GBVCP  |b 882849085 
029 1 |a AU@  |b 000067111737 
029 1 |a AU@  |b 000058607036 
035 |a (OCoLC)945654235  |z (OCoLC)1259219689 
037 |a CL0500000726  |b Safari Books Online 
037 |a 7AF3FED1-49F1-4FD2-8A14-B8D4809F0E36  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.76.C672 
072 7 |a COM  |x 012040  |2 bisacsh 
082 0 4 |a 794.81526  |2 23 
049 |a UAMI 
100 1 |a Madsen, Robert,  |e author. 
245 1 0 |a OpenGL game development by example :  |b design and code your own 2D and 3D games efficiently using OpenGL and C++ /  |c Robert Madsen, Stephen Madsen. 
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 
347 |a text file 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed April 20, 2016). 
500 |a Includes index. 
520 8 |a Design and code your own 2D and 3D games efficiently using OpenGL and C++About This Book Create 2D and 3D games completely, through a series of end-to-end game projects Learn to render high performance 2D and 3D graphics using OpenGL Implement a rudimentary game engine using step-by-step codeWho This Book Is ForIf you are a prospective game developer with some experience using C++, then this book is for you. Both prospective and experienced game programmers will find nuggets of wisdom and practical advice as they learn to code two full games using OpenGL, C++, and a host of related tools. What You Will Learn Set up your development environment in Visual Studio using OpenGL Use 2D and 3D coordinate systems Implement an input system to handle the mouse and the keyboard Create a state machine to handle complex changes in the game Load, display, and manipulate both 2D and 3D graphics Implement collision detection and basic physics Discover the key components needed to complete a polished game Handle audio files and implement sound effects and musicIn DetailOpenGL is one of the most popular rendering SDKs used to develop games. OpenGL has been used to create everything from 3D masterpieces running on desktop computers to 2D puzzles running on mobile devices. You will learn to apply both 2D and 3D technologies to bring your game idea to life. There is a lot more to making a game than just drawing pictures and that is where this book is unique! It provides a complete tutorial on designing and coding games from the setup of the development environment to final credits screen, through the creation of a 2D and 3D game. The book starts off by showing you how to set up a development environment using Visual Studio, and create a code framework for your game. It then walks you through creation of two gamesa 2D platform game called Roboracer 2D and a 3D first-person space shooter gameusing OpenGL to render both 2D and 3D graphics using a 2D coordinate system. You'll create sprite classes, render sprites and animation, and navigate and control the characters. You will also learn how to implement input, use audio, and code basic collision and physics systems. From setting up the development environment to creating the final credits screen, the book will take you through the complete journey of creating a game engine that you can extend to create your own games. Style and approachAn easy-to-follow guide full of code examples to illustrate every concept and help you build a 2D and 3D game from scratch, while learning the key tools that surround a typical OpenGL project. 
505 0 |a Cover; Copyright; Credits; About the Authors; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Building the Foundation; Introducing the development environment; A quick look at Visual Studio; Start screen; The Solution Explorer panel; The Standard Toolbar panel; The code window; The output window; Starting your project; The game loop; The game structure; Initialization; The game loop; Shutdown; Creating the game structure; Port of access; The Windows message loop; Introducing OpenGL; What is OpenGL?; The other GL; Downloading OpenGL; Adding OpenGL to the project 
505 8 |a Linking to the OpenGL librarySummary; Chapter 2: Your Point of View; Plotting your revenge; The OpenGL coordinate system; Making your point; Understanding the code; Running the program; Stretching your point; Getting primitive; A triangle by any other name; A primitive example; From triangles to models; Introducing textures; Using textures to fill the triangles; A matter of reference; Hanging out in the quad; Coding the quad; Rendering a texture; Loading the texture; Texture wrapping; Creating a textured quad; Putting the pieces together; Summary; Chapter 3: A Matter of Character 
505 8 |a Spritely speakingSprites versus non-sprites; Flipbook animation; Framed animation; Creating sprites; Working with PNGs; Linking to the SOIL library; Including the SOIL header file; Opening an image file; Coding a sprite class; Creating sprite frames; Saving each frame; Loading a sprite from individual textures; Creating a sprite sheet; Loading a sprite sheet; Loading our sprites; Rendering; Adding a render to the game loop; Implementing the main Render function; Implementing Render in the Sprite class; UV mapping; One more detail; A moving example; Adding update to the game loop 
505 8 |a Implementing the main Update callImplementing Update in the Sprite class; Character movement; Using delta time; Calculating delta time; Flipping; Scrolling the background; Using an atlas; Summary; Chapter 4: Control Freak; A penny for your input; The keyboard input; Using the mouse; Touch; Other inputs; Someone is listening; The WndProc event listener; Handling the message queue; Handling mouse and keyboard inputs; Creating the Input class; Virtual key codes; Querying for input; Implementing the Input class; Adding input to the game loop; Processing our input; Changes to the Sprite class 
505 8 |a Graphical User InterfaceCreating a button; Enhancing the Input class; Adding UI elements to the list; Checking each UI element; Pushing your buttons; Adding our pauseButton; State management; Creating a state manager; Pausing the game; Summary; Chapter 5: Hit and Run; Out of bounds!; Getting anchored; Collision rectangles; Embedding; Fixing the background; Collideables; Ready to score; A friend indeed; Time to spawn; Circular collision detection; The Pythagorean Theorem; Adding the circular collision code; Why use circular collision detection?; Wiring in the collision detection 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
630 0 0 |a OpenGL. 
630 0 7 |a OpenGL.  |2 fast  |0 (OCoLC)fst01380188 
650 0 |a Computer games  |x Programming. 
650 6 |a Jeux d'ordinateur  |x Programmation. 
650 7 |a COMPUTERS  |x Programming  |x Games.  |2 bisacsh 
650 7 |a Video games  |x Programming.  |2 fast  |0 (OCoLC)fst00872114 
700 1 |a Madsen, Stephen,  |e author. 
776 0 8 |i Erscheint auch als:  |n Druck-Ausgabe  |t Madsen, Robert. OpenGL Game Development By Example 
830 0 |a Community experience distilled. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781783288199/?ar  |z Texto completo 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1197538  |z Texto completo 
938 |a EBL - Ebook Library  |b EBLB  |n EBL4520637 
938 |a EBSCOhost  |b EBSC  |n 1197538 
994 |a 92  |b IZTAP