本文整理汇总了Java中org.andengine.util.SAXUtils类的典型用法代码示例。如果您正苦于以下问题:Java SAXUtils类的具体用法?Java SAXUtils怎么用?Java SAXUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SAXUtils类属于org.andengine.util包,在下文中一共展示了SAXUtils类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: TMXTiledMap
import org.andengine.util.SAXUtils; //导入依赖的package包/类
TMXTiledMap(final Attributes pAttributes) {
this.mOrientation = pAttributes.getValue("", TMXConstants.TAG_MAP_ATTRIBUTE_ORIENTATION);
if (this.mOrientation.equals(TMXConstants.TAG_MAP_ATTRIBUTE_ORIENTATION_VALUE_ORTHOGONAL)) {
// We support this!
} else if (this.mOrientation.equals(TMXConstants.TAG_MAP_ATTRIBUTE_ORIENTATION_VALUE_ISOMETRIC)) {
// We support this!
} else {
throw new IllegalArgumentException(TMXConstants.TAG_MAP_ATTRIBUTE_ORIENTATION + ": '" + this.mOrientation
+ "' is not supported.");
}
this.mTileColumns = SAXUtils.getIntAttributeOrThrow(pAttributes, TMXConstants.TAG_MAP_ATTRIBUTE_WIDTH);
this.mTilesRows = SAXUtils.getIntAttributeOrThrow(pAttributes, TMXConstants.TAG_MAP_ATTRIBUTE_HEIGHT);
this.mTileWidth = SAXUtils.getIntAttributeOrThrow(pAttributes, TMXConstants.TAG_MAP_ATTRIBUTE_TILEWIDTH);
this.mTileHeight = SAXUtils.getIntAttributeOrThrow(pAttributes, TMXConstants.TAG_MAP_ATTRIBUTE_TILEHEIGHT);
}
示例2: startElement
import org.andengine.util.SAXUtils; //导入依赖的package包/类
@Override
public void startElement(final String pUri, final String pLocalName, final String pQualifiedName, final Attributes pAttributes) throws SAXException {
if(pLocalName.equals(TMXConstants.TAG_TILESET)){
this.mInTileset = true;
this.mTMXTileSet = new TMXTileSet(this.mFirstGlobalTileID, pAttributes, this.mTextureOptions, this.mTMXTileSetSourceManager);
} else if (pLocalName.equals(TMXConstants.TAG_OFFSET)){
this.mInTileOffset = true;
this.mTMXTileSet.addTileOffset(pAttributes);
} else if(pLocalName.equals(TMXConstants.TAG_IMAGE)){
this.mInImage = true;
this.mTMXTileSet.setImageSource(this.mAssetManager, this.mTextureManager, pAttributes);
} else if(pLocalName.equals(TMXConstants.TAG_TILE)) {
this.mInTile = true;
this.mLastTileSetTileID = SAXUtils.getIntAttributeOrThrow(pAttributes, TMXConstants.TAG_TILE_ATTRIBUTE_ID);
} else if(pLocalName.equals(TMXConstants.TAG_PROPERTIES)) {
this.mInProperties = true;
} else if(pLocalName.equals(TMXConstants.TAG_PROPERTY)) {
this.mInProperty = true;
this.mTMXTileSet.addTMXTileProperty(this.mLastTileSetTileID, new TMXTileProperty(pAttributes));
} else {
throw new TMXParseException("Unexpected start tag: '" + pLocalName + "'.");
}
}
示例3: getIntPoints
import org.andengine.util.SAXUtils; //导入依赖的package包/类
/**
* Get a set of integer points from a given XML line.
* <br>
* This first splits up an attribute properties, such as <i>0,0 0,-32 32,-32</i>
* on its white space, into a {@link String} {@link array}. It then splits again,
* based on the comma between the numbers, into another {@link String} {@link array}
* Then each element is then parsed as an {@link integer} and placed into
* a 2D {@link integer} {@link array};
* <br><b>Negative numbers are kept negative</b>
* <br>
* There is the possibility of a NullPointerException on splitting strings,
* and NumberFormatException on parsing to integers. These are handled so
* <b><code>NULL</code></b> is returned instead.
*
* @param pAttributes {@link Attributes}
* @param pAttributeName {@link String} of attribute to get.
* @return 2 Dimensional {@link integer} array of points or <code>NULL</code>
* if an exception occurs.
*/
public static final int[][] getIntPoints(final Attributes pAttributes, final String pAttributeName){
final String pointsLine = SAXUtils.getAttribute(pAttributes, pAttributeName, "null");
int[][] points = null;
try{
final String[] uncleanPoints = pointsLine.split("\\s+");
points = new int[uncleanPoints.length][2];
for(int i = 0; i < uncleanPoints.length; i++){
final String[] strTemp = uncleanPoints[i].split(",");
points[i][0] = Integer.parseInt(strTemp[0]);
points[i][1] = Integer.parseInt(strTemp[1]);
}
}catch (NullPointerException npe){
Log.e("TMXObject", "Could not split up polygon XML line to get points");
return null;
}catch (NumberFormatException nfe){
Log.e("TMXObject", "Could not get integer point from polygon XML");
return null;
}
return points;
}
示例4: parseMinFilter
import org.andengine.util.SAXUtils; //导入依赖的package包/类
private static int parseMinFilter(final Attributes pAttributes) {
final String minFilter = SAXUtils.getAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER);
if (minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_NEAREST)) {
return GL10.GL_NEAREST;
} else if (minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_LINEAR)) {
return GL10.GL_LINEAR;
} else if (minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_LINEAR_MIPMAP_LINEAR)) {
return GL10.GL_LINEAR_MIPMAP_LINEAR;
} else if (minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_LINEAR_MIPMAP_NEAREST)) {
return GL10.GL_LINEAR_MIPMAP_NEAREST;
} else if (minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_NEAREST_MIPMAP_LINEAR)) {
return GL10.GL_NEAREST_MIPMAP_LINEAR;
} else if (minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_NEAREST_MIPMAP_NEAREST)) {
return GL10.GL_NEAREST_MIPMAP_NEAREST;
} else {
throw new IllegalArgumentException("Unexpected " + TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER + " attribute: '" + minFilter + "'.");
}
}
示例5: parseMinFilter
import org.andengine.util.SAXUtils; //导入依赖的package包/类
private static int parseMinFilter(final Attributes pAttributes) {
final String minFilter = SAXUtils.getAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER);
if(minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_NEAREST)) {
return GL10.GL_NEAREST;
} else if(minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_LINEAR)) {
return GL10.GL_LINEAR;
} else if(minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_LINEAR_MIPMAP_LINEAR)) {
return GL10.GL_LINEAR_MIPMAP_LINEAR;
} else if(minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_LINEAR_MIPMAP_NEAREST)) {
return GL10.GL_LINEAR_MIPMAP_NEAREST;
} else if(minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_NEAREST_MIPMAP_LINEAR)) {
return GL10.GL_NEAREST_MIPMAP_LINEAR;
} else if(minFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER_VALUE_NEAREST_MIPMAP_NEAREST)) {
return GL10.GL_NEAREST_MIPMAP_NEAREST;
} else {
throw new IllegalArgumentException("Unexpected " + TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MINFILTER + " attribute: '" + minFilter + "'.");
}
}
示例6: TMXObject
import org.andengine.util.SAXUtils; //导入依赖的package包/类
public TMXObject(final Attributes pAttributes) {
this.mName = pAttributes.getValue("", TMXConstants.TAG_OBJECT_ATTRIBUTE_NAME);
this.mType = pAttributes.getValue("", TMXConstants.TAG_OBJECT_ATTRIBUTE_TYPE);
this.mX = SAXUtils.getIntAttributeOrThrow(pAttributes, TMXConstants.TAG_OBJECT_ATTRIBUTE_X);
this.mY = SAXUtils.getIntAttributeOrThrow(pAttributes, TMXConstants.TAG_OBJECT_ATTRIBUTE_Y);
this.mWidth = SAXUtils.getIntAttribute(pAttributes, TMXConstants.TAG_OBJECT_ATTRIBUTE_WIDTH, 0);
this.mHeight = SAXUtils.getIntAttribute(pAttributes, TMXConstants.TAG_OBJECT_ATTRIBUTE_HEIGHT, 0);
this.mObjectType = TMXObjectType.RECTANGLE;
this.mPolygon_points = null;
this.mPolyline_points = null;
this.mGID = SAXUtils.getIntAttribute(pAttributes, TMXConstants.TAG_OBJECT_ATTRIBUTE_GID, -1);
if(this.mGID != -1){
this.mObjectType = TMXObjectType.TILEOBJECT;
}
}
示例7: startElement
import org.andengine.util.SAXUtils; //导入依赖的package包/类
@Override
public void startElement(final String pUri, final String pLocalName, final String pQualifiedName, final Attributes pAttributes) throws SAXException {
if (pLocalName.equals(TexturePackParser.TAG_TEXTURE)) {
this.mVersion = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTURE_ATTRIBUTE_VERSION);
this.mTexture = this.parseTexture(pAttributes);
this.mTextureRegionLibrary = new TexturePackTextureRegionLibrary(10);
this.mTexturePack = new TexturePack(this.mTexture, this.mTextureRegionLibrary);
} else if (pLocalName.equals(TexturePackParser.TAG_TEXTUREREGION)) {
final int id = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_ID);
final int x = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_X);
final int y = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_Y);
final int width = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_WIDTH);
final int height = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_HEIGHT);
final String source = SAXUtils.getAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE);
// TODO Not sure how trimming could be transparently supported...
final boolean trimmed = SAXUtils.getBooleanAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_TRIMMED);
final boolean rotated = SAXUtils.getBooleanAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_ROTATED);
final int sourceX = SAXUtils.getIntAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE_X);
final int sourceY = SAXUtils.getIntAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE_Y);
final int sourceWidth = SAXUtils.getIntAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE_WIDTH);
final int sourceHeight = SAXUtils.getIntAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE_HEIGHT);
this.mTextureRegionLibrary.put(new TexturePackTextureRegion(this.mTexture, x, y, width, height, id, source, rotated, trimmed, sourceX, sourceY, sourceWidth, sourceHeight));
} else {
throw new TexturePackParseException("Unexpected tag: '" + pLocalName + "'.");
}
}
示例8: parseMagFilter
import org.andengine.util.SAXUtils; //导入依赖的package包/类
private static int parseMagFilter(final Attributes pAttributes) {
final String magFilter = SAXUtils.getAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MAGFILTER);
if (magFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MAGFILTER_VALUE_NEAREST)) {
return GL10.GL_NEAREST;
} else if (magFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MAGFILTER_VALUE_LINEAR)) {
return GL10.GL_LINEAR;
} else {
throw new IllegalArgumentException("Unexpected " + TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MAGFILTER + " attribute: '" + magFilter + "'.");
}
}
示例9: parseWrap
import org.andengine.util.SAXUtils; //导入依赖的package包/类
private int parseWrap(final Attributes pAttributes, final String pWrapAttributeName) {
final String wrapAttribute = SAXUtils.getAttributeOrThrow(pAttributes, pWrapAttributeName);
if (this.mVersion == 1 && wrapAttribute.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_WRAP_VALUE_CLAMP)) {
return GL10.GL_CLAMP_TO_EDGE;
} else if (wrapAttribute.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_WRAP_VALUE_CLAMP_TO_EDGE)) {
return GL10.GL_CLAMP_TO_EDGE;
} else if (wrapAttribute.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_WRAP_VALUE_REPEAT)) {
return GL10.GL_REPEAT;
} else {
throw new IllegalArgumentException("Unexpected " + pWrapAttributeName + " attribute: '" + wrapAttribute + "'.");
}
}
示例10: startElement
import org.andengine.util.SAXUtils; //导入依赖的package包/类
@Override
public void startElement(final String pUri, final String pLocalName, final String pQualifiedName, final Attributes pAttributes) throws SAXException {
if (pLocalName.equals(AnimationPackParser.TAG_ANIMATIONPACK)) {
final int version = SAXUtils.getIntAttributeOrThrow(pAttributes, AnimationPackParser.TAG_ANIMATIONPACK_ATTRIBUTE_VERSION);
if (version != 1) {
throw new AnimationPackParseException("Unexpected version: '" + version + "'.");
}
this.mTexturePackLoader = new TexturePackLoader(this.mAssetManager, this.mTextureManager);
this.mTexturePackLibrary = new TexturePackLibrary();
this.mAnimationPackTiledTextureRegionLibrary = new AnimationPackTiledTextureRegionLibrary();
this.mAnimationPack = new AnimationPack(this.mTexturePackLibrary, this.mAnimationPackTiledTextureRegionLibrary);
} else if (pLocalName.equals(AnimationPackParser.TAG_TEXTUREPACKS)) {
/* Nothing. */
} else if (pLocalName.equals(AnimationPackParser.TAG_TEXTUREPACK)) {
final String texturePackName = SAXUtils.getAttributeOrThrow(pAttributes, AnimationPackParser.TAG_TEXTUREPACK_ATTRIBUTE_FILENAME);
final String texturePackPath = this.mAssetBasePath + texturePackName;
final TexturePack texturePack = this.mTexturePackLoader.loadFromAsset(texturePackPath, this.mAssetBasePath);
this.mTexturePackLibrary.put(texturePackName, texturePack);
texturePack.loadTexture();
} else if (pLocalName.equals(AnimationPackParser.TAG_ANIMATIONS)) {
/* Nothing. */
} else if (pLocalName.equals(AnimationPackParser.TAG_ANIMATION)) {
this.mCurrentAnimationName = SAXUtils.getAttributeOrThrow(pAttributes, AnimationPackParser.TAG_ANIMATION_ATTRIBUTE_NAME);
this.mCurrentAnimationLoopCount = SAXUtils.getIntAttribute(pAttributes, AnimationPackParser.TAG_ANIMATION_ATTRIBUTE_LOOPCOUNT, IAnimationData.LOOP_CONTINUOUS);
} else if (pLocalName.equals(AnimationPackParser.TAG_ANIMATIONFRAME)) {
final int duration = SAXUtils.getIntAttributeOrThrow(pAttributes, AnimationPackParser.TAG_ANIMATIONFRAME_ATTRIBUTE_DURATION);
this.mCurrentAnimationFrameDurations.add(duration);
final String textureRegionName = SAXUtils.getAttributeOrThrow(pAttributes, AnimationPackParser.TAG_ANIMATIONFRAME_ATTRIBUTE_TEXTUREREGION);
final TexturePackTextureRegion texturePackTextureRegion = this.mTexturePackLibrary.getTexturePackTextureRegion(textureRegionName);
this.mCurrentAnimationFrameTexturePackTextureRegions.add(texturePackTextureRegion);
} else {
throw new AnimationPackParseException("Unexpected tag: '" + pLocalName + "'.");
}
}
示例11: startElement
import org.andengine.util.SAXUtils; //导入依赖的package包/类
@Override
public void startElement(final String pUri, final String pLocalName, final String pQualifiedName, final Attributes pAttributes) throws SAXException {
if(pLocalName.equals(TexturePackParser.TAG_TEXTURE)) {
this.mVersion = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTURE_ATTRIBUTE_VERSION);
this.mTexture = this.parseTexture(pAttributes);
this.mTextureRegionLibrary = new TexturePackTextureRegionLibrary(10);
this.mTexturePack = new TexturePack(this.mTexture, this.mTextureRegionLibrary);
} else if(pLocalName.equals(TexturePackParser.TAG_TEXTUREREGION)) {
final int id = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_ID);
final int x = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_X);
final int y = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_Y);
final int width = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_WIDTH);
final int height = SAXUtils.getIntAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_HEIGHT);
final String source = SAXUtils.getAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE);
// TODO Not sure how trimming could be transparently supported...
final boolean trimmed = SAXUtils.getBooleanAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_TRIMMED);
final boolean rotated = SAXUtils.getBooleanAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTUREREGION_ATTRIBUTE_ROTATED);
final int sourceX = SAXUtils.getIntAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE_X);
final int sourceY = SAXUtils.getIntAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE_Y);
final int sourceWidth = SAXUtils.getIntAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE_WIDTH);
final int sourceHeight = SAXUtils.getIntAttributeOrThrow(pAttributes, TAG_TEXTUREREGION_ATTRIBUTE_SOURCE_HEIGHT);
this.mTextureRegionLibrary.put(new TexturePackTextureRegion(this.mTexture, x, y, width, height, id, source, rotated, trimmed, sourceX, sourceY, sourceWidth, sourceHeight));
} else {
throw new TexturePackParseException("Unexpected tag: '" + pLocalName + "'.");
}
}
示例12: parseMagFilter
import org.andengine.util.SAXUtils; //导入依赖的package包/类
private static int parseMagFilter(final Attributes pAttributes) {
final String magFilter = SAXUtils.getAttributeOrThrow(pAttributes, TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MAGFILTER);
if(magFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MAGFILTER_VALUE_NEAREST)) {
return GL10.GL_NEAREST;
} else if(magFilter.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MAGFILTER_VALUE_LINEAR)) {
return GL10.GL_LINEAR;
} else {
throw new IllegalArgumentException("Unexpected " + TexturePackParser.TAG_TEXTURE_ATTRIBUTE_MAGFILTER + " attribute: '" + magFilter + "'.");
}
}
示例13: parseWrap
import org.andengine.util.SAXUtils; //导入依赖的package包/类
private int parseWrap(final Attributes pAttributes, final String pWrapAttributeName) {
final String wrapAttribute = SAXUtils.getAttributeOrThrow(pAttributes, pWrapAttributeName);
if(this.mVersion == 1 && wrapAttribute.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_WRAP_VALUE_CLAMP)) {
return GL10.GL_CLAMP_TO_EDGE;
} else if(wrapAttribute.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_WRAP_VALUE_CLAMP_TO_EDGE)) {
return GL10.GL_CLAMP_TO_EDGE;
} else if(wrapAttribute.equals(TexturePackParser.TAG_TEXTURE_ATTRIBUTE_WRAP_VALUE_REPEAT)) {
return GL10.GL_REPEAT;
} else {
throw new IllegalArgumentException("Unexpected " + pWrapAttributeName + " attribute: '" + wrapAttribute + "'.");
}
}
示例14: startElement
import org.andengine.util.SAXUtils; //导入依赖的package包/类
@Override
public void startElement(final String pUri, final String pLocalName, final String pQualifiedName, final Attributes pAttributes) throws SAXException {
if(pLocalName.equals(AnimationPackParser.TAG_ANIMATIONPACK)) {
final int version = SAXUtils.getIntAttributeOrThrow(pAttributes, AnimationPackParser.TAG_ANIMATIONPACK_ATTRIBUTE_VERSION);
if(version != 1) {
throw new AnimationPackParseException("Unexpected version: '" + version + "'.");
}
this.mTexturePackLoader = new TexturePackLoader(this.mAssetManager, this.mTextureManager);
this.mTexturePackLibrary = new TexturePackLibrary();
this.mAnimationPackTiledTextureRegionLibrary = new AnimationPackTiledTextureRegionLibrary();
this.mAnimationPack = new AnimationPack(this.mTexturePackLibrary, this.mAnimationPackTiledTextureRegionLibrary);
} else if(pLocalName.equals(AnimationPackParser.TAG_TEXTUREPACKS)) {
/* Nothing. */
} else if(pLocalName.equals(AnimationPackParser.TAG_TEXTUREPACK)) {
final String texturePackName = SAXUtils.getAttributeOrThrow(pAttributes, AnimationPackParser.TAG_TEXTUREPACK_ATTRIBUTE_FILENAME);
final String texturePackPath = this.mAssetBasePath + texturePackName;
final TexturePack texturePack = this.mTexturePackLoader.loadFromAsset(texturePackPath, this.mAssetBasePath);
this.mTexturePackLibrary.put(texturePackName, texturePack);
texturePack.loadTexture();
} else if(pLocalName.equals(AnimationPackParser.TAG_ANIMATIONS)) {
/* Nothing. */
} else if(pLocalName.equals(AnimationPackParser.TAG_ANIMATION)) {
this.mCurrentAnimationName = SAXUtils.getAttributeOrThrow(pAttributes, AnimationPackParser.TAG_ANIMATION_ATTRIBUTE_NAME);
this.mCurrentAnimationLoopCount = SAXUtils.getIntAttribute(pAttributes, AnimationPackParser.TAG_ANIMATION_ATTRIBUTE_LOOPCOUNT, IAnimationData.LOOP_CONTINUOUS);
} else if(pLocalName.equals(AnimationPackParser.TAG_ANIMATIONFRAME)) {
final int duration = SAXUtils.getIntAttributeOrThrow(pAttributes, AnimationPackParser.TAG_ANIMATIONFRAME_ATTRIBUTE_DURATION);
this.mCurrentAnimationFrameDurations.add(duration);
final String textureRegionName = SAXUtils.getAttributeOrThrow(pAttributes, AnimationPackParser.TAG_ANIMATIONFRAME_ATTRIBUTE_TEXTUREREGION);
final TexturePackTextureRegion texturePackTextureRegion = this.mTexturePackLibrary.getTexturePackTextureRegion(textureRegionName);
this.mCurrentAnimationFrameTexturePackTextureRegions.add(texturePackTextureRegion);
} else {
throw new AnimationPackParseException("Unexpected tag: '" + pLocalName + "'.");
}
}