本文整理汇总了Java中org.andengine.util.animationpack.exception.AnimationPackParseException类的典型用法代码示例。如果您正苦于以下问题:Java AnimationPackParseException类的具体用法?Java AnimationPackParseException怎么用?Java AnimationPackParseException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AnimationPackParseException类属于org.andengine.util.animationpack.exception包,在下文中一共展示了AnimationPackParseException类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: startElement
import org.andengine.util.animationpack.exception.AnimationPackParseException; //导入依赖的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 + "'.");
}
}
示例2: endElement
import org.andengine.util.animationpack.exception.AnimationPackParseException; //导入依赖的package包/类
@Override
public void endElement(final String pUri, final String pLocalName, final String pQualifiedName) throws SAXException {
if (pLocalName.equals(AnimationPackParser.TAG_ANIMATIONPACK)) {
/* Nothing. */
} else if (pLocalName.equals(AnimationPackParser.TAG_TEXTUREPACKS)) {
/* Nothing. */
} else if (pLocalName.equals(AnimationPackParser.TAG_TEXTUREPACK)) {
/* Nothing. */
} else if (pLocalName.equals(AnimationPackParser.TAG_ANIMATIONS)) {
/* Nothing. */
} else if (pLocalName.equals(AnimationPackParser.TAG_ANIMATION)) {
final int currentAnimationFrameFrameCount = this.mCurrentAnimationFrameDurations.size();
final long[] frameDurations = this.mCurrentAnimationFrameDurations.toArray();
final TexturePackTextureRegion[] textureRegions = new TexturePackTextureRegion[currentAnimationFrameFrameCount];
this.mCurrentAnimationFrameTexturePackTextureRegions.toArray(textureRegions);
final AnimationPackTiledTextureRegion animationPackTiledTextureRegion = new AnimationPackTiledTextureRegion(this.mCurrentAnimationName, frameDurations, this.mCurrentAnimationLoopCount, textureRegions[0].getTexture(), textureRegions);
this.mAnimationPackTiledTextureRegionLibrary.put(animationPackTiledTextureRegion);
this.mCurrentAnimationName = null;
this.mCurrentAnimationLoopCount = IAnimationData.LOOP_CONTINUOUS;
this.mCurrentAnimationFrameDurations.clear();
this.mCurrentAnimationFrameTexturePackTextureRegions.clear();
} else if (pLocalName.equals(AnimationPackParser.TAG_ANIMATIONFRAME)) {
/* Nothing. */
} else {
throw new AnimationPackParseException("Unexpected end tag: '" + pLocalName + "'.");
}
}
示例3: loadFromAsset
import org.andengine.util.animationpack.exception.AnimationPackParseException; //导入依赖的package包/类
public AnimationPack loadFromAsset(final String pAssetPath, final String pAssetBasePath) throws AnimationPackParseException {
try {
return this.load(this.mAssetManager.open(pAssetPath), pAssetBasePath);
} catch (final IOException e) {
throw new AnimationPackParseException("Could not load " + this.getClass().getSimpleName() + " data from asset: " + pAssetPath, e);
}
}
示例4: startElement
import org.andengine.util.animationpack.exception.AnimationPackParseException; //导入依赖的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 + "'.");
}
}
示例5: endElement
import org.andengine.util.animationpack.exception.AnimationPackParseException; //导入依赖的package包/类
@Override
public void endElement(final String pUri, final String pLocalName, final String pQualifiedName) throws SAXException {
if(pLocalName.equals(AnimationPackParser.TAG_ANIMATIONPACK)) {
/* Nothing. */
} else if(pLocalName.equals(AnimationPackParser.TAG_TEXTUREPACKS)) {
/* Nothing. */
} else if(pLocalName.equals(AnimationPackParser.TAG_TEXTUREPACK)) {
/* Nothing. */
} else if(pLocalName.equals(AnimationPackParser.TAG_ANIMATIONS)) {
/* Nothing. */
} else if(pLocalName.equals(AnimationPackParser.TAG_ANIMATION)) {
final int currentAnimationFrameFrameCount = this.mCurrentAnimationFrameDurations.size();
final long[] frameDurations = this.mCurrentAnimationFrameDurations.toArray();
final TexturePackTextureRegion[] textureRegions = new TexturePackTextureRegion[currentAnimationFrameFrameCount];
this.mCurrentAnimationFrameTexturePackTextureRegions.toArray(textureRegions);
final AnimationPackTiledTextureRegion animationPackTiledTextureRegion = new AnimationPackTiledTextureRegion(this.mCurrentAnimationName, frameDurations, this.mCurrentAnimationLoopCount, textureRegions[0].getTexture(), textureRegions);
this.mAnimationPackTiledTextureRegionLibrary.put(animationPackTiledTextureRegion);
this.mCurrentAnimationName = null;
this.mCurrentAnimationLoopCount = IAnimationData.LOOP_CONTINUOUS;
this.mCurrentAnimationFrameDurations.clear();
this.mCurrentAnimationFrameTexturePackTextureRegions.clear();
} else if(pLocalName.equals(AnimationPackParser.TAG_ANIMATIONFRAME)) {
/* Nothing. */
} else {
throw new AnimationPackParseException("Unexpected end tag: '" + pLocalName + "'.");
}
}