- Hands-On Game Development with WebAssembly
- Rick Battagline
- 391字
- 2021-06-24 13:41:02
HTML5 and WebAssembly
In this chapter, we will show you how the C code we write to target WebAssembly comes together with HTML5, JavaScript, and CSS to create a web page. We will teach you how to create a new HTML shell file to be used by Emscripten in the creation of our WebAssembly app. We will discuss the Module object and how Emscripten uses it as an interface between our JavaScript and the WebAssembly module. We will show you how to call WebAssembly functions written in C from within JavaScript on our HTML page. We will also show you how to call JavaScript functions from our C code. We will discuss how to use CSS to improve the look of our web page. We will introduce you to the HTML5 Canvas element and show how it is possible to display images to the canvas from within JavaScript. We will briefly discuss moving those images around the canvas from our WebAssembly module. This chapter will give you an understanding of how everything works together and lays the foundation for other features we are developing for our WebAssembly applications.
In this chapter, we will cover the following topics:
- The Emscripten minimal shell file
- Creating a new HTML shell and C file
- Defining our CSS
- HTML5 and game development
- Adding a canvas to the Emscripten template
- 24小時學會電腦組裝與維護
- Linux運維之道(第2版)
- 3ds Max Speed Modeling for 3D Artists
- 平衡掌控者:游戲數值經濟設計
- Learning Game Physics with Bullet Physics and OpenGL
- 分布式微服務架構:原理與實戰
- 超大流量分布式系統架構解決方案:人人都是架構師2.0
- 電腦橫機使用與維修
- Arduino項目案例:游戲開發
- Angular 6 by Example
- The Deep Learning with PyTorch Workshop
- Corona SDK Mobile Game Development:Beginner's Guide
- 計算機組裝與維護立體化教程(微課版)
- Exceptional C++:47個C++工程難題、編程問題和解決方案(中文版)
- Hands-On Markov Models with Python