Learning HTML5 Game Programming
Home > Computing and Information Technology > Computer programming / software engineering > Programming and scripting languages: general > Learning HTML5 Game Programming: A Hands-on Guide to Building Online Games Using Canvas, SVG, and WebGL
Learning HTML5 Game Programming: A Hands-on Guide to Building Online Games Using Canvas, SVG, and WebGL

Learning HTML5 Game Programming: A Hands-on Guide to Building Online Games Using Canvas, SVG, and WebGL

|
     0     
5
4
3
2
1




Out of Stock


Notify me when this book is in stock
About the Book

Get Started Fast with HTML5 Online Game Programming!   HTML5 will transform web and mobile gaming. As new browsers rapidly adopt it, HTML5 will do everything “legacy” technologies such as Flash and Silverlight have done—and much more. In Learning HTML5 Game Programming, pioneering developer James L. Williams gives you all the knowledge, code, and insights you’ll need to get started fast!   Williams combines detailed explanations of HTML5’s key innovations with examples, including two case study applications that address the entire development process. He guides you through setting up a state-of-the-art HTML5 development environment; making the most of HTML5’s canvas tag, SVG vector graphics, and WebGL 3D; and targeting diverse mobile and social platforms. It’s all here: from the essentials of online game design to the nitty-gritty details of performance optimization.   About the Website   All code samples and answers to chapter exercises are available for download at www.informit.com/title/9780321767363 and on Github at https://github.com/jwill/html5-game-book.   Coverage includes ·          Understanding the HTML5 innovations that make it possible to create amazingly rich games ·          Setting up a state-of-the-art open source HTML5 game development environment ·          Using JavaScript to drive sophisticated interactions between users and games ·          Building basic games fast, with the prototype-based Simple Game Framework (SGF) ·          Generating movement and gameplay with the canvas tag and surface ·          Creating games with SVG vector graphics using the RaphaëlJS Javascript library ·          Using Three.js to build powerful WebGL 3D games with far less complexity ·          Developing games without JavaScript, using Google Web Toolkit (GWT) or CoffeeScript ·          Building a complete multiplayer game server using Node.js and WebSockets ·          Planning and choosing tools for mobile game development with HTML5 ·          Optimizing game performance with offline cache, minification, and other techniques   Learning HTML5 Game Programming is the fastest route to success with HTML5 game development—whether you’re a long-time game developer or a web/mobile programmer building games for the first time.  

Table of Contents:
Chapter 1 Introducing HTML5 1 Beyond Basic HTML 1 JavaScript 1 AJAX 2 Bridging the Divide 2 Google Gears 3 Chrome Frame 3 Getting Things Done with WebSockets and Web Workers 4 WebSockets 4 Web Workers 4 Application Cache 5 Database API 6 WebSQL API 6 IndexedDB API 7 Web Storage 7 Geolocation 8 Getting Users’ Attention with Notifications 10 Requesting Permission to Display Notifications 11 Creating Notifications 11 Interacting with Notifications 12 Media Elements 13 Controlling Media 13 Handling Unsupported Formats 14 HTML5 Drawing APIs 15 Canvas 15 SVG 16 WebGL 16 Conveying Information with Microdata 16 Chapter 2 Setting Up Your Development Environment 19 Development Tools 19 Installing Java 19 Installing the Eclipse IDE and Google Plugin 20 Google Web Toolkit 22 Web Server Tools and Options 23 Google App Engine 23 Opera Unite 23 Node.js and RingoJS 23 Browser Tools 24 Inside the Chrome Developer Tools 24 Chrome Extensions 25 Safari Developer Tools 26 Firebug 26 HTML5 Tools 27 ProcessingJS 27 Inkscape 27 SVG-edit 27 Raphaël 28 3D Modeling Tools 29 Blender 29 Chapter 3 Learning JavaScript 31 What Is JavaScript? 31 JavaScript’s Basic Types 31 Understanding Arithmetic Operators 32 Understanding JavaScript Functions 32 Functions as First-class Objects 33 Comparison Operators 34 Conditional Loops and Statements 35 Controlling Program Flow with Loops 36 Delayed Execution with setTimeout and setInterval 38 Creating Complex Objects with Inheritance and Polymorphism 38 Making Inheritance Easier with the Prototype Library 39 Learning JQuery 41 Manipulating the DOM with Selectors 42 JQuery Events 43 AJAX with JQuery 43 Cross-Site Scripting 44 JSON: The Other JavaScript Format 44 JavaScript Outside of the Browser 45 Mobile Platforms 45 JavaScript as an Intermediary Language 45 JavaScript on the Desktop 46 Server-Side JavaScript 48 Chapter 4 How Games Work 51 Designing a Game 51 Writing a Basic Design Document 51 Deciding on a Game Genre 52 The Game Loop 53 Getting Input from the User 53 Representing Game Objects with Advanced Data Structures 54 Making Unique Lists of Data with Sets 54 Creating Object Graphs with Linked Lists 56 Understanding the APIs in Simple Game Framework 57 Core API 57 Components API 58 Resources API and Networking APIs 58 Building Pong with the Simple Game Framework 59 Setting Up the Application 59 Drawing the Game Pieces 61 Making Worlds Collide with Collision Detection and Response 63 Understanding Newton’s Three Laws 63 Making the Ball Move 64 Advanced Collision Detection and Particle Systems with Asteroids 66 Creating Competitive Opponents with Artificial Intelligence 67 Adding AI to Pong 68 Advanced Computer AI with Tic-Tac-Toe 68 Chapter 5 Creating Games with the Canvas Tag 71 Getting Started with the Canvas 71 Drawing Your First Paths 72 Drawing Game Sprites for Tic-Tac-Toe 73 Drawing Objects on the Canvas with Transformations 75 Ordering Your Transformations 76 Saving and Restoring the Canvas Drawing State 77 Using Images with the Canvas 78 Serving Images with Data URLs 78 Serving Images with Spritesheets 78 Drawing Images on the Canvas 78 Animating Objects with Trident.js 79 Creating Timelines 80 Animating with Keyframes 81 Creating Nonlinear Timelines with Easing 81 Animating Game Objects with Spritesheets 83 Simulating 3D in 2D Space 84 Perspective Projection 84 Parallaxing 85 Creating a Parallax Effect with JavaScript 85 Creating Copy Me 87 Drawing Our Game Objects 87 Making the Game Tones 88 Playing MIDI Files in the Browser 89 Playing Multiple Sounds at Once 90 Playing Sounds Sequentially 91 Drawing Our Game Text 91 Styling Text with CSS Fonts 92 Chapter 6 Creating Games with SVG and RaphaëlJS 95 Introduction to SVG 95 First Steps with RaphaëlJS 97 Setting Up Our Development Environment 97 Drawing the Game Board 98 Drawing Game Text 99 Custom Fonts 100 Specifying Color 103 Loading Game Assets 104 Converting SVG Files to Bitmap Images 105 Creating Our Game Classes 105 Shuffling Cards 107 Drawing and Animating Cards 107 Creating Advanced Animations 110 Paths 110 moveto and lineto 110 curveto 111 Exporting Paths from an SVG File 112 Animating Along Paths 113 Extending Raphaël with Plugins 113 Adding Functions 113 SVG Filters 113 Speed Considerations 114 Chapter 7 Creating Games with WebGL and Three.js 117 Moving to Three Dimensions 118 Giving Your Objects Some Swagger with Materials and Lighting 119 Understanding Lighting 120 Using Materials and Shaders 120 Creating Your First Three.js Scene 122 Setting Up the View 123 Viewing the World 128 Loading 3D Models with Three.js 129 Programming Shaders and Textures 131 Using Textures 134 Creating a Game with Three.js 136 Simulating the Real World with Game Physics 137 Revisiting Particle Systems 140 Creating Scenes 141 Selecting Objects in a Scene 142 Animating Models 142 Sourcing 3D Models 143 Benchmarking Your Games 144 Checking Frame Rate with Stats.js 144 Using the WebGL Inspector 145 Chapter 8 Creating Games Without JavaScript 147 Google Web Toolkit 147 Understanding GWT Widgets and Layout 148 Exposing JavaScript Libraries to GWT with JSNI 149 RaphaëlGWT 150 Adding Sound with gwt-html5-media 151 Accessing the Drawing APIs with GWT 151 CoffeeScript 153 Installing CoffeeScript 153 Compiling CoffeeScript Files 153 A Quick Guide to CoffeeScript 154 Basics 154 Functions and Invocation 154 Aliases, Conditionals, and Loops 156 Enhanced for Loop and Maps 156 Classes and Inheritance 157 Alternate Technologies 158 Cappuccino 158 Pyjamas 158 Chapter 9 Building a Multiplayer Game Server 161 Introduction to Node.js 161 Extending Node with the Node Package Manager 162 Managing Multiple Node Versions 162 Making Web Apps Simpler with ExpressJS 163 Serving Requests with URL Routing 163 Managing Sessions 165 Understanding the ExpressJS Application Structure 165 Templating HTML with CoffeeKup 166 Persisting Data with Caching 168 Managing Client/Server Communication 169 Communicating with Socket.IO 169 Setting Up a Simple Socket.IO Application with Express 170 Making Web Sockets Simpler with NowJS 171 Debugging Node Applications 172 Creating a Game Server 173 Making the Game Lobby 173 Creating Game Rooms with NowJS Groups 174 Managing Game Participants and Moving Between Game Rooms 175 Managing Game Play 175 Chapter 10 Developing Mobile Games 179 Choosing a Mobile Platform 179 iOS 179 Android 180 WebOS 180 Windows Phone 7 180 Flick, Tap, and Swipe: A Quick Guide to Mobile Gestures 181 Deciding Between an Application and a Website 181 Storing Data on Mobile Devices 183 Relaxing in Your Lawnchair: An Easier Way to Store Data 183 Getting Started with Lawnchair 184 Client-Side Scripting Simplified with JQuery and Zepto 185 Using JQuery Variants 185 Using Zepto.js 187 Architecting Your Applications with JoApp 187 Choosing an Application Framework 188 PhoneGap 188 Diving into the PhoneGap APIs 189 Appcelerator Titanium 191 Diving into the Appcelerator Titanium APIs 191 Packaging Android Applications with Titanium and PhoneGap 191 Packaging an Application with Titanium 193 Packaging an Application with PhoneGap 195 Chapter 11 Publishing Your Games 199 Optimizing Your Game’s Assets 199 Minification with Google Closure Compiler 199 Running Applications Offline with Application Cache 201 Hosting Your Own Server 203 Deploying Applications on Hosted Node.js Services 204 Publishing Applications on the Chrome Web Store 205 Describing Your Application’s Metadata 206 Deploying a Hosted Application 207 Deploying a Packaged Application 208 Testing Your Applications Locally 208 Uploading Your Application to the Chrome Web Store 208 Configuring Your Application 210 Deciding Between Packaged and Hosted Chrome Apps 212 Publishing Applications with TapJS 212 Creating a TapJS Application 213 Packaging an Application for TapJS 215 Publishing a TapJS Application to Facebook 215 Publishing Games with Kongregate 217 Publishing HTML5 Applications to the Desktop 217 Index 219  


Best Sellers


Product Details
  • ISBN-13: 9780132685054
  • Binding: Digital download
  • No of Pages: 256
  • Weight: 1 gr
  • ISBN-10: 0132685051
  • Language: English
  • Sub Title: A Hands-on Guide to Building Online Games Using Canvas, SVG, and WebGL


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Learning HTML5 Game Programming: A Hands-on Guide to Building Online Games Using Canvas, SVG, and WebGL
-
Learning HTML5 Game Programming: A Hands-on Guide to Building Online Games Using Canvas, SVG, and WebGL
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Learning HTML5 Game Programming: A Hands-on Guide to Building Online Games Using Canvas, SVG, and WebGL

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals

    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!