-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy path06-ResourceManager.html
98 lines (73 loc) · 5.16 KB
/
06-ResourceManager.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css"/>
<script type="text/javascript" src="js/pageToc.js"></script>
<script type="text/javascript" src="js/sh/scripts/shCore.js"></script>
<script type="text/javascript" src="js/sh/scripts/shBrushJScript.js"></script>
<script type="text/javascript" src="js/sh/scripts/shBrushPhp.js"></script>
<script type="text/javascript" src="js/sh/scripts/shBrushPlain.js"></script>
<script type="text/javascript" src="js/sh/scripts/shBrushXml.js"></script>
<link type="text/css" rel="stylesheet" href="js/sh/styles/shCore.css"/>
<link type="text/css" rel="stylesheet" href="js/sh/styles/shThemeDefault.css"/>
<script type="text/javascript">
SyntaxHighlighter.config.clipboardSwf = 'js/sh/scripts/clipboard.swf';
SyntaxHighlighter.all();
</script>
<title>Resource Manager</title>
</head>
<body>
<h1>Resource Manager</h1>
<p>Few games can run without requiring extra data like images, levels, or sound. The ResourceManager lets you access files embedded in your SWF as well as external files. It also lets you indicate what kind of data is in each resource, so that once loading completes, the image or XML or sound (or whatever) is ready to go.</p>
<div id="pageToc"></div>
<div id="contentArea">
<h2>Loading Resources</h2>
<p>Loading a resource manually is simple. You specify the filename, resource type, and callbacks for when the load completes or fails.</p>
<pre class="brush: js">
// Example of loading an image:
ResourceManager.instance.load("../Assets/Image/testImage.jpg", ImageResource, _OnImageLoaded, _OnImageFailed);
// Callback when the load succeeds.
function _OnImageLoaded(resource:ImageResource):void
{
// Store the loaded resource or do other activity.
Image = resource;
}
// Callback when the load fails.
function _OnImageFailed(resource:ImageResource):void
{
// Report the error.
Logger.printError(this, "_OnImageFailed", "Couldn't load the image!");
}
</pre>
<p>Resource types are subclasses of com.pblabs.engine.resource.Resource. Commonly used subclasses are XMLResource, ImageResource, and MP3Resource. Typically, these classes process the resource in some way and present you with finished data, such as a BitmapData in the case of the ImageResource.</p>
<h2>Embedding Resources</h2>
<p>Loading files externally is a bad idea. It makes it harder to distribute your game, and the extra round trips to the server can increase loading time significantly. In addition, resources embedded in the SWF can have additional compression put on them.</p>
<p>The easiest way to embed a resource in PBE is with the ResourceBundle class. Create a subclass of the ResourceBundle class, where each file to be included in the swf is given an [Embed] tag. Here are some examples of how to embed your resources in a ResourceBundle.</p>
<p>For most file types, this is all you have to do for them to show up and work properly. However, for XML and pbelevel files, we must include the mimeType='application/octet-stream' in the [Embed()] tag. Otherwise the compiler will fail to include them in the right format. If you have a SWF file, omitting the mimeType will cause mxmlc to re-encode the SWF, stripping any ActionScript it contains. Images without mimeType tags may be re-compressed, so be careful if download size is important.</p>
<pre class="brush: js">
public class MyResources extends ResourceBundle
{
// Images and sounds can be embedded directly.
[Embed(source="../assets/myimage.png")]
public var resmyimage:Class;
[Embed(source="../assets/myjpg.jpg")]
public var resmyjpg:Class;
[Embed(source = "../assets/sounds/mysound.mp3")]
public var resmysound:Class;
// Note that we are specifying mimeType for xml so it is embedded properly.
[Embed(source = "../assets/levelDescriptions.xml", mimeType = 'application/octet-stream')]
public var resmyleveldescriptions:Class;
[Embed(source="../assets/levels/mylevel.pbelevel", mimeType='application/octet-stream')]
public var resmylevel:Class;
}
</pre>
<p>Instantiate <em>MyResources</em>, and it will register all of the resources with the <em>ResourceManager</em> according to their proper type. Usually you will want to do this immediately after you call <em>PBE.startup</em>.</p>
<pre class="brush: js">
PBE.startup(this);
new MyResources();
</pre>
<h2>Adding New Resource Types</h2>
<p>The com.pblabs.engine.resource.Resource class is subclassed to add support for different resource types. This is very straightforward - just check out the XMLResource to see how it's done. You will want to override <em>_onContentReady</em> and provide accessors to get at whatever data is needed.</p>
</div>
</body>
</html>