四) 下载过程的管理<br> <br> 4.1) 如何管理成千上百的资源<br> <br> 在游戏开发的过程中,很有可能会有成千上百张图片。最直接的方式,是将这些图片编写在代码中,但是图片的名字很容易改变的,会造成大量的维护工作,甚至影响代码的打包和发布。我的同事Boris,在他的代码演示库中,给出了一个参考实现方式,如下。这种方式,可以保证,在需要修改或者调整资源名称或者路径的时候,不需要接触代码。<br> <br>
- {<br>
- "assetRoot": "url/to/assets",<br>
- "bundles": [<br>
- {<br>
- "name": "unique bundle name",<br>
- "contents": [<br>
- "relative/path/to/asset.jpg",<br>
- "another/asset.mp3"<br>
- ]<br>
- },<br>
- "autoDownload": true<br>
- }<br>
- var gal = new GameAssetLoader("http://path.to/gal.manifest");<br>
- // Load the GAL. If manifest indicates autoDownload, this call will<br>
- // start loading assets one by one.<br>
- gal.init(function() {<br>
- // Called when the library is initialized<br>
- });
- AssetManager.prototype.downloadAll = function(downloadCallback) {<br>
- for (var i = 0; i
- var path = this.downloadQueue[i];<br>
- var img = new Image();<br>
- var that = this;<br>
- img.addEventListener("load", function() {<br>
- // coming soon<br>
- }, false);<br>
- img.addEventListener("error", function() {<br>
- // coming soon<br>
- }, false);<br>
- img.src = path;<br>
- }<br>
- }<br>
<br>
- 下载的过程中,一般情况下都需要一个进度条,来显示完成的情况,所以必须对AssetManager进行计数。<br>
- <br>
- <br>
<br>
- function AssetManager() {<br>
- this.successCount = 0;<br>
- this.errorCount = 0;<br>
- this.downloadQueue = [];<br>
- }<br>
- <br>
- AssetManager.prototype.isDone = function() {<br>
- return (this.downloadQueue.length == this.successCount + this.errorCount);<br>
- }<br>
- AssetManager.prototype.getProcess = function() {<br>
- return (this.successCount + this.errorCount)/this.downloadQueue.length;<br>
- }
- img.addEventListener("load", function() {<br>
- that.successCount += 1;<br>
- if (that.isDone()) {<br>
- downloadCallback();<br>
- }<br>
- }, false);<br>
- img.addEventListener("error", function() {<br>
- that.errorCount += 1;<br>
- if (that.isDone()) {<br>
- downloadCallback();<br>
- }<br>
- }, false

This article explains how to embed audio in HTML5 using the <audio> element, including best practices for format selection (MP3, Ogg Vorbis), file optimization, and JavaScript control for playback. It emphasizes using multiple audio f

The article discusses managing user location privacy and permissions using the Geolocation API, emphasizing best practices for requesting permissions, ensuring data security, and complying with privacy laws.

This article explains how to create and validate HTML5 forms. It details the <form> element, input types (text, email, number, etc.), and attributes (required, pattern, min, max). The advantages of HTML5 forms over older methods, incl

The article discusses using the HTML5 Page Visibility API to detect page visibility, improve user experience, and optimize resource usage. Key aspects include pausing media, reducing CPU load, and managing analytics based on visibility changes.

The article discusses using viewport meta tags to control page scaling on mobile devices, focusing on settings like width and initial-scale for optimal responsiveness and performance.Character count: 159

This article details creating interactive HTML5 games using JavaScript. It covers game design, HTML structure, CSS styling, JavaScript logic (including event handling and animation), and audio integration. Essential JavaScript libraries (Phaser, Pi

The article explains how to use the HTML5 Drag and Drop API to create interactive user interfaces, detailing steps to make elements draggable, handle key events, and enhance user experience with custom feedback. It also discusses common pitfalls to a

This article explains the HTML5 WebSockets API for real-time, bidirectional client-server communication. It details client-side (JavaScript) and server-side (Python/Flask) implementations, addressing challenges like scalability, state management, an


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version
Chinese version, very easy to use
