vote up 1 vote down star
1

I'm creating a 2d flash game (coded in flex/actionscript 3) where assets are downloaded when they are needed. Currently I have it setup like this:

AssetLoader.as

package
{
    import flash.display.Loader;
    import flash.net.URLRequest;

    public class AssetLoader extends Loader
    {
    	//set vars
    	private var url:String = "http://test.com/client/assets/";

    	public function AssetLoader(url:String)
    	{
            Logger.log("AssetLoader request: " + this.url + url);
            var request:URLRequest = new URLRequest(this.url + url);
            this.load(request);
    	}
    }
}

Then, where I want to load the asset I do the following:

var asset:AssetLoader = new AssetLoader("ships/" + graphicId + ".gif");
asset.contentLoaderInfo.addEventListener(Event.COMPLETE, onShipAssetComplete, false, 0, true);

private function onShipAssetComplete(event:Event):void
{
    var loader:Loader = Loader(event.target.loader);
        shipImage = Bitmap(loader.content);
        shipImage.smoothing = true;
        addChild(shipImage);
}

The thing is, that this method doesn't check for already downloaded assets, so it will redownload them the second time the same asset is being requested (I think).

So, what I need is an array where all downloaded assets are stored, and on request the name of this asset is checked for existance in the array. So if it has already been downloaded, that asset from memory must be returned rather than redownloaded.

I could make the assetloader a static class, but I have to wait for the event to fire when it's done downloading the image - so I can't simply let a static function return the corresponding image. Any idea how I should do this?

EDIT for an attempt after comments:

package
{
    import flash.display.Loader;
    import flash.events.Event;
    import flash.net.URLRequest;

    public final class AssetManager
    {
    	private static var assets:Object = {};
    	private static var preUrl:String = Settings.ASSETS_PRE_URL;

    	public static function load(postUrl:String):*
    	{
    		if (assets[postUrl])
    		{ //when the asset already exists
    			//continue
    		}
    		else
    		{ //the asset still has to be downloaded
    			var request:URLRequest = new URLRequest(preUrl + postUrl);
    			var loader:Loader = new Loader();
    			loader.load(request);
    			loader.contentLoaderInfo.addEventListener(Event.COMPLETE, 
            	function(event:Event):void
            	{
                	var loader:Loader = Loader(event.target.loader);
                	assets[postUrl] = loader.content;
            	}, false, 0, true);	
    		}
    	}
    }
}

EDIT2: another attempt

package
{
    import flash.display.Loader;
    import flash.events.Event;
    import flash.events.EventDispatcher;
    import flash.net.URLRequest;

    public final class AssetManager
    {
    	private static var assets:Object = {};
    	private static var preUrl:String = Settings.ASSETS_PRE_URL;

    	public static function load(postUrl:String):*
    	{
    		if (assets[postUrl])
    		{ //the asset already exists
    			var dispatcher:EventDispatcher = new EventDispatcher();
    			dispatcher.dispatchEvent(new CustomEvent(CustomEvent.LOAD_COMPLETE, assets[postUrl]));
    		}
    		else
    		{ //the asset still has to be downloaded
    			var request:URLRequest = new URLRequest(preUrl + postUrl);
    			var loader:Loader = new Loader();
    			loader.load(request);
    			loader.contentLoaderInfo.addEventListener(Event.COMPLETE, 
            	function(event:Event):void
            	{
                	var loader:Loader = Loader(event.target.loader);
                	assets[postUrl] = loader.content;
                	var dispatcher:EventDispatcher = new EventDispatcher();
                	dispatcher.dispatchEvent(new CustomEvent(CustomEvent.LOAD_COMPLETE, assets[postUrl]));
            	}, false, 0, true);	
    		}
    	}
    }
}

Then, I try the following:

var asset:AssetManager = AssetManager.load("ships/" + graphicId + ".gif");
    		asset.addEventListener(CustomEvent.LOAD_COMPLETE, onShipAssetComplete, false, 0, true);

But get an error, "undefined method addEventListener by a reference of the type static AssetManager" (roughly translated).

flag

3 Answers

vote up 1 vote down check

You could add a static object (used as a dictionary with urls for assets as keys and the content for assets as values) in the AssetLoader class and in the same time keep using the class in the way you're using it right now.

private static var assets:Object = {};

The difference would be that your class would need to check against that static object if the URL for the content has already been requested previously. If it has, dispatch the complete event immediately. If it hasn't, follow the normal routine and don't forget to populate your static object with the newly loaded asset.



Update:

This is a quick example of what I meant. I haven't had time to test this, but it should work.

Note: You must invoke the loadAsset() method of the AssetLoader instances you create in order to actually load the asset. This is consistent with the way the Loader class we're extending works.

You should always add all event listeners BEFORE invoking the loadAsset() method. In your question you're calling the load() method from within the constructor and only afterwards add the event listener for Event.COMPLETE. This could produce strange results.

Here's the code:

package
{
  import flash.display.Loader;
  import flash.events.Event;
  import flash.net.URLRequest;


  public class AssetLoader extends Loader
  {
    private static const BASE_URL:String = 'http://test.com/client/assets/';

    public static var storedAssets:Object = {};

    private var assetURL:String;
    private var urlRequest:URLRequest;
    private var cached:Boolean = false;


    public function AssetLoader(url:String):void
    {
      trace('Loading: ' + url);
      assetURL = url;

      if (storedAssets[assetURL] != null)
      {
        cached = true;
        trace('Cached');
      }
      else
      {
        trace('Loading uncached asset');
        urlRequest = new URLRequest(BASE_URL + assetURL);
        contentLoaderInfo.addEventListener(Event.COMPLETE, OnAssetLoadComplete);
      }
    }

    public function loadAsset():void
    {
      if (cached)
        loadBytes(storedAssets[assetURL]);
      else
        load(urlRequest);
    }

    private function OnAssetLoadComplete(event:Event):void
    {
      storedAssets[assetURL] = contentLoaderInfo.bytes;
      trace('Loaded ' + contentLoaderInfo.bytesLoaded + ' bytes');
    }

  }

}


Update 2:

Here's how one would use the class above:

var assetLdr:AssetLoader = new AssetLoader("ships/" + graphicId + ".gif");
assetLdr.contentLoaderInfo.addEventListener(Event.COMPLETE, onShipAssetComplete);
assetLdr.loadAsset();

private function onShipAssetComplete(event:Event):void
{
    var shipImage:Bitmap = Bitmap(event.target.loader.content);
    // Do stuff with shipImage
}
link|flag
1  
Lior is probably suggesting you have a map that contains the resource url -> loaded resource. Something like assets[url] = loadedContent – James Fassett Aug 12 at 13:25
1  
Ah -- I see. Use a closure when you do the load. I'll write an answer with an example. – James Fassett Aug 12 at 13:43
1  
I've updated the answer with some code. – Lior Cohen Aug 12 at 14:52
1  
I've modified the code to fix these two issues. Please use loadAsset() and not load() when loading assets using this class. See the code for more details. – Lior Cohen Aug 12 at 16:52
1  
Updated the code once again. Added several comments to clarify matters where possible and provided an example of how to use the class. – Lior Cohen Aug 12 at 23:04
show 23 more comments
vote up 1 vote down

Hey Tom,

Perhaps you should take a look at Bulk Loader. It does the kinds of things your looking to do. If you really want to use a custom solution, it would be a great point of reference, but why reinvent the wheel?

Tyler.

link|flag
Hmmm, it seems to have a bit too many features for what I want. It will probably cause extra resource usage and load. – Tom Aug 11 at 22:32
For our game dev, we've built a non-static loader that pre-loads all the graphics per level as the level loads up. Because we know all the loading happens there, we know the assets will be available when we access them. We simply store all URL's in an array, then load them one at a time until all done, then dispatch a single complete event. We've also implemented asset "aging", so if a asset goes unused for X level loads we through it out to save memory resources. – Tyler Egeto Aug 11 at 22:45
Unfortunately I need to load most assets on run-time, so this wouldn't fit for me. Also, the class you recommended seems to be made for bulk loading, that's not really what I want. Thanks though. – Tom Aug 11 at 22:56
vote up 1 vote down

Here is an alteration of your load command to capture the resourceId

public function load(postUrl:String):*
{
    var index:int;
    if ((index = assetExists(postUrl)) != -1)
    {
        dispatchEvent(new CustomEvent(CustomEvent.LOAD_COMPLETE, asset[postUrl]));
    }
    else
    { 
        //the asset still has to be downloaded
        var request:URLRequest = new URLRequest(preUrl + postUrl);
        var loader:Loader = new Loader();
        loader.load(request);
        loader.contentLoaderInfo.addEventListener(Event.COMPLETE, 
        function(event:Event)
        {
            // NOTE: not sure on scoping here ...
            // pretty sure you're this will be the Loader
            // if not just read it off the event like you were before
            assets[postUrl] = content;
            dispatchEvent(new CustomEvent(CustomEvent.LOAD_COMPLETE, asset[postUrl]));
        }, false, 0, true);
    }
}

/* In a new file */
public class CustomEvent extends Event
{
    public static const LOAD_COMPLETE:String = "CustomEvent_LoadComplete";

    // If you know the type you should use it (e.g. Sprite/DisplayObject)
    public var content:*;

    public function CustomEvent(type:String, _content:*)
    {
        content = _content;
        super(type);
    }
}

Note: when you write an Event descendant you should also override the toString and clone methods. I've also cheated on the constructor since you may want to pass through weakReferences and things like that.

link|flag
Thanks, updated first post. Now I'm not sure how to continue. Think I need to fire an event that the asset is obtainable (on both situations). But how to do this with a static public class? – Tom Aug 12 at 14:11
2  
You are inheriting from Loader. The load method doesn't need to be static. Loader inherits from EventDispatcher so it can dispatch events. I suggest creating a custom event with a property for the loaded content and dispatching that. dispatchEvent(new CustomLoadEvent(Event.COMPLETE, content)) – James Fassett Aug 12 at 14:36
Sorry, but what's a CustomLoadEvent? I don't know about that object. I know the Event object but how to pass content to it? Could you maybe give an example if that's not too much asked? Thanks. – Tom Aug 12 at 15:11
1  
updated my response to show how to write a CustomEvent. You can make your own events just by sub-classing Event. – James Fassett Aug 12 at 15:49
Thanks, getting "undefined method dispatchEvent" however, even with "import flash.events.*;". Any idea? – Tom Aug 12 at 20:04
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.