Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hands-On Game Development with WebAssembly

You're reading from   Hands-On Game Development with WebAssembly Learn WebAssembly C++ programming by building a retro space game

Arrow left icon
Product type Paperback
Published in May 2019
Publisher Packt
ISBN-13 9781838644659
Length 596 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Rick Battagline Rick Battagline
Author Profile Icon Rick Battagline
Rick Battagline
Arrow right icon
View More author details
Toc

Table of Contents (18) Chapters Close

Preface 1. Introduction to WebAssembly and Emscripten FREE CHAPTER 2. HTML5 and WebAssembly 3. Introduction to WebGL 4. Sprite Animations in WebAssembly with SDL 5. Keyboard Input 6. Game Objects and the Game Loop 7. Collision Detection 8. Basic Particle System 9. Improved Particle Systems 10. AI and Steering Behaviors 11. Designing a 2D Camera 12. Sound FX 13. Game Physics 14. UI and Mouse Input 15. Shaders and 2D Lighting 16. Debugging and Optimization 17. Other Books You May Enjoy

A brief introduction to LLVM

Emscripten is the tool we will be using to compile C++ into WebAssembly. Before I discuss Emscripten, I need to explain a technology called LLVM and its relationship to Emscripten.

First, take a moment to think of airlines (stay with me here). Airlines want to get passengers from one airport to another airport. But it's challenging to offer a direct flight from every single airport to every other airport on Earth. That would mean that airlines would have to provide a vast number of direct flights, such as Akron, Ohio to Mumbai, India. Let's travel back in time to the 1990s—that was the state of the compiler world. If you wanted to compile from C++ to ARM, you needed a compiler capable of compiling C++ to ARM. If you needed to compile from Pascal to x86, you needed a compiler that could compile from Pascal to x86. These are like having only direct flights between any two cities: a compiler for every combination of language and hardware. The result is either that you have to limit the number of languages you write compilers for, limit the number of platforms you can support with that language, or more likely, both.

In 2003, a student at the University of Illinois named Chris Lattner wondered, "What if we created a hub-and-spoke model for programming languages?" His idea led to LLVM, which originally stood for "Low-Level Virtual Machine." The idea was that, instead of compiling your source code for any possible distribution, you compile it for LLVM. There are then compilers between the intermediate language and your final output language. In theory, this means that if you develop a new target platform on the right side of the following diagram, you get all languages on the left side right away:

Figure 1.5: LLVM as a hub between programming languages and the hardware
To learn more about LLVM, visit the LLVM project home page at https://llvm.org or read the LLVM Cookbook, Mayur Padney, and Suyog Sarda, Packt Publishing: https://www.packtpub.com/application-development/llvm-cookbook.
You have been reading a chapter from
Hands-On Game Development with WebAssembly
Published in: May 2019
Publisher: Packt
ISBN-13: 9781838644659
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image