当前位置: 首页>>代码示例>>Java>>正文


Java TexturePackTextureRegion类代码示例

本文整理汇总了Java中org.andengine.util.texturepack.TexturePackTextureRegion的典型用法代码示例。如果您正苦于以下问题:Java TexturePackTextureRegion类的具体用法?Java TexturePackTextureRegion怎么用?Java TexturePackTextureRegion使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


TexturePackTextureRegion类属于org.andengine.util.texturepack包,在下文中一共展示了TexturePackTextureRegion类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: startElement

import org.andengine.util.texturepack.TexturePackTextureRegion; //导入依赖的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 + "'.");
	}
}
 
开发者ID:ArturVasilov,项目名称:AndroidCourses,代码行数:38,代码来源:AnimationPackParser.java

示例2: endElement

import org.andengine.util.texturepack.TexturePackTextureRegion; //导入依赖的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 + "'.");
	}
}
 
开发者ID:ArturVasilov,项目名称:AndroidCourses,代码行数:30,代码来源:AnimationPackParser.java

示例3: startElement

import org.andengine.util.texturepack.TexturePackTextureRegion; //导入依赖的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 + "'.");
	}
}
 
开发者ID:peterchaula,项目名称:ClassicF1,代码行数:38,代码来源:AnimationPackParser.java

示例4: endElement

import org.andengine.util.texturepack.TexturePackTextureRegion; //导入依赖的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 + "'.");
	}
}
 
开发者ID:peterchaula,项目名称:ClassicF1,代码行数:30,代码来源:AnimationPackParser.java


注:本文中的org.andengine.util.texturepack.TexturePackTextureRegion类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。