Skip to content

Commit

Permalink
Add a way to create an atlas from a vector of classes. Each of the cl…
Browse files Browse the repository at this point in the history
…asses is instantiated and added to the atlas.
  • Loading branch information
thomashaselwanter committed Oct 12, 2011
1 parent 6dd4925 commit 24611b8
Showing 1 changed file with 32 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.emibap.textureAtlas
{

import flash.display.BitmapData;
import flash.display.DisplayObject;
import flash.display.MovieClip;
Expand All @@ -12,8 +12,9 @@ package com.emibap.textureAtlas
import flash.text.Font;
import flash.text.TextFieldAutoSize;
import flash.text.TextFormat;
import starling.text.BitmapFont;

import flash.utils.getQualifiedClassName;

import starling.text.BitmapFont;
import starling.textures.Texture;
import starling.textures.TextureAtlas;
import starling.text.TextField;
Expand Down Expand Up @@ -243,6 +244,34 @@ package com.emibap.textureAtlas
}

// Public methods

/**
* This method takes a vector of MovieClip class and converts it into a Texture Atlas.
*
* @param assets:Vector.<Class> - The MovieClips class you wish to convert into a TextureAtlas. Must contain classes whose instances are of type MovieClip that will be rasterized and become the subtextures of your Atlas.
* @param scaleFactor:Number - The scaling factor to apply to every object. Default value is 1 (no scaling).
* @param margin:uint - The amount of pixels that should be used as the resulting image margin (for each side of the image). Default value is 0 (no margin).
* @param preserveColor:Boolean - A Flag which indicates if the color transforms should be captured or not. Default value is true (capture color transform).
* @return TextureAtlas - The dynamically generated Texture Atlas.
* @return
*/
static public function fromClassVector(assets:Vector.<Class>, scaleFactor:Number = 1, margin:uint=0, preserveColor:Boolean = true):TextureAtlas
{
var container:MovieClip = new MovieClip();
for each (var assetClass:Class in assets) {
var assetInstance:MovieClip = new assetClass();
assetInstance.name = getQualifiedClassName(assetClass);
container.addChild(assetInstance);
}
return fromMovieClipContainer(container, scaleFactor, margin, preserveColor);
}

/** Retrieves all textures for a class. Returns <code>null</code> if it is not found.
* This method can be used if TextureAtlass doesn't support classes.
*/
public function getTexturesByClass(textureAtlas:TextureAtlas, assetClass:Class):Vector.<Texture> {
return textureAtlas.getTextures(getQualifiedClassName(assetClass));
}

/**
* This method will take a MovieClip sprite sheet (containing other display objects) and convert it into a Texture Atlas.
Expand Down

0 comments on commit 24611b8

Please sign in to comment.