import org.andengine.engine.camera.Camera;
import org.andengine.engine.handler.physics.PhysicsHandler;
import org.andengine.engine.options.EngineOptions;
import org.andengine.engine.options.ScreenOrientation;
import org.andengine.engine.options.resolutionpolicy.RatioResolutionPolicy;
import org.andengine.entity.scene.Scene;
import org.andengine.entity.scene.background.Background;
import org.andengine.entity.sprite.AnimatedSprite;
import org.andengine.entity.util.FPSLogger;
import org.andengine.opengl.texture.TextureOptions;
import org.andengine.opengl.texture.atlas.bitmap.BitmapTextureAtlas;
import org.andengine.opengl.texture.atlas.bitmap.BitmapTextureAtlasTextureRegionFactory;
import org.andengine.opengl.texture.region.ITiledTextureRegion;
import org.andengine.opengl.texture.region.TiledTextureRegion;
import org.andengine.opengl.vbo.VertexBufferObjectManager;
import org.andengine.ui.activity.SimpleBaseGameActivity;
import android.util.DisplayMetrics;
/**
* 运动的小球
*/
public class MovingBallActivity extends SimpleBaseGameActivity
{
private static int winWidth = 854;
private static int winHeight = 480;
private final static float VELOCITY = 200;
//图片纹理区域
private BitmapTextureAtlas mBitmapTextureAtlas;
//动画(瓦片)图片纹理范围
private TiledTextureRegion mTiledTextureRegion;
@Override
public EngineOptions onCreateEngineOptions()
{
setScreenDisplay();
Camera camera = new Camera(0, 0, winWidth, winHeight);
EngineOptions engineOptions = new EngineOptions(
true,
ScreenOrientation.LANDSCAPE_FIXED,
new RatioResolutionPolicy(winWidth, winHeight),
camera);
return engineOptions;
}
@Override
protected void onCreateResources()
{
BitmapTextureAtlasTextureRegionFactory.setAssetBasePath("images/");
mBitmapTextureAtlas = new BitmapTextureAtlas(this.getTextureManager(), 64, 32, TextureOptions.BILINEAR);
//动画图片的创建,参数pTileColumns:列, pTileRows:行
mTiledTextureRegion = BitmapTextureAtlasTextureRegionFactory
.createTiledFromAsset(mBitmapTextureAtlas, this, "face_circle_tiled.png", 0, 0, 2, 1);
mBitmapTextureAtlas.load();
}
@Override
protected Scene onCreateScene()
{
this.mEngine.registerUpdateHandler(new FPSLogger());
Scene scene = new Scene();
scene.setBackground(new Background(0.09804f, 0.6274f, 0.8784f));
Ball ball = new Ball(10, 10, mTiledTextureRegion, getVertexBufferObjectManager());
scene.attachChild(ball);
return scene;
}
/**
* 设置屏幕大小
*/
private void setScreenDisplay()
{
DisplayMetrics outMetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(outMetrics);
winWidth = outMetrics.widthPixels;
winHeight = outMetrics.heightPixels;
}
/**
* 球精灵的定义
*/
private class Ball extends AnimatedSprite
{
private PhysicsHandler mPhysicsHandler;
//前两个参数是球的初始位置
public Ball(float pX, float pY,ITiledTextureRegion pTiledTextureRegion,VertexBufferObjectManager pVertexBufferObjectManager)
{
super(pX, pY, pTiledTextureRegion, pVertexBufferObjectManager);
/*
* IModifier相当于IUpdateHandler的增强版,不能拥有onUpdate的业务更新方法,而且增加状态监听功能、自动注销功能和持续时间的设置。
* 在这次的例子中首先登场的就是IUpdateHandler的实现
* 一个模拟物理运动的IUpdateHandler,设置速度和加速度完成实体的运动。(构造函数的参数就是需要运动实体)
*/
mPhysicsHandler = new PhysicsHandler(this);
this.registerUpdateHandler(mPhysicsHandler);
mPhysicsHandler.setVelocity(VELOCITY, VELOCITY);
}
/**
* 注意onManagedUpdate方法是业务线程调用的管理方法,
* 每次业务轮换到业务线程的时候首先调用实体的onUpdate,
* 接着调用实体的onManagedUpdate。相当于实体本身也是一个IUpdateHandler,自身就可以根据条件发生变化,
* 同时也可以通过注册在实体的IUpdateHandler来改变。
* 在这个例子中mPhysicsHandler完成了实体的直线运动,而实体本身完成了接触屏幕边缘改变运动方向,
* 如此如此..
* AndEngine是通过业务线程处理各种变化的,可能包含计算、存储、交互等等,当然最重要的还是改变实体的状态,在渲染的时候会看到实质的改变。
*/
@Override
protected void onManagedUpdate(float pSecondsElapsed)
{
//X轴越界判断,改变mPhysicsHandler的X速度
if (mX < 0)
{
mPhysicsHandler.setVelocityX(VELOCITY);
}
else if((mX+this.getWidth()) > winWidth)
{
mPhysicsHandler.setVelocityX(-VELOCITY);
}
//Y轴越界判断,改变mPhysicsHandler的Y速度
if (mY < 0)
{
mPhysicsHandler.setVelocityY(VELOCITY);
}
else if((mY+this.getHeight()) > winHeight)
{
mPhysicsHandler.setVelocityY(-VELOCITY);
}
//一定要调用,因为它不是钩子方法
super.onManagedUpdate(pSecondsElapsed);
}
}
}
相关推荐
AndEngine是一款专为Android平台设计的游戏开发框架,它简化了2D游戏的创建过程,让开发者无需深入理解底层图形库,就能快速构建出高质量的移动游戏。本示例旨在介绍如何利用AndEngine进行游戏开发,通过实例化引擎...
6. **教程和社区支持**:AndEngine有一个活跃的社区,提供了大量教程和示例代码,帮助新手快速入门。 7. **性能优化**:AndEngine针对移动设备进行了优化,可以处理大量的游戏对象而不会导致性能下降。 在这个...
6. **兼容性**:AndEngine支持多种Android设备,从旧版本的Android系统到最新的Android版本,都能良好运行。 7. **AndEngine Robotium Extension**:从提供的文件名`AndEngineRobotiumExtensionExampleTest-master`...
6. **资源管理器扩展**:高效地加载和管理游戏资源,如图像、音频、XML配置文件等。 7. **触摸输入和手势识别扩展**:处理用户的触摸事件,识别滑动、点击等手势,增加交互性。 8. **优化和性能扩展**:提供了一些...
AndEngine是一款专为Android平台设计的2D游戏开发框架,它提供了一套高效、易用的API,使得开发者能够快速构建各种2D游戏。AndEngine源码的分析和理解对于想要深入学习Android游戏开发的人来说至关重要。 1. **...
开发者可以通过Box2D轻松实现物体的运动和交互,创造出更具真实感的游戏环境。例如,你可以创建出一个动态的平台跳跃游戏,其中角色和平台的碰撞、弹跳等效果都会由Box2D自动处理。 AndEngine提供了许多特性,包括...
AndEngine是一款专为Android平台设计的游戏开发框架,它基于OpenGL ES 1.1或2.0,提供了一套高效、易用的2D游戏开发工具。这个“andengine 中文”压缩包包含的是AndEngine的中文文档,对于想要在Android上进行游戏...
AndEngine是一个开源项目。这使得开发者在遇到问题时可以直接从源码上找到答案,也能按照自己的需要对AndEngine进行修改和扩展。AndEngine的源码在github上托管[2]。 高效 AndEngine主要使用Java语言开发,但在...
AndEngine是一个开源项目。这使得开发者在遇到问题时可以直接从源码上找到答案,也能按照自己的需要对AndEngine进行修改和扩展。AndEngine的源码在github上托管[2]。 高效 AndEngine主要使用Java语言开发,但在...
AndEngine是一款专为Android平台设计的游戏开发引擎,它简化了2D游戏的创建过程,让开发者无需深入理解底层图形库,就能快速构建游戏。本入门篇将带你了解AndEngine的基本概念、架构以及如何开始你的第一个AndEngine...
8. **易于上手**:AndEngine的设计目标之一就是易用性,它提供了清晰的API文档和活跃的社区支持,使开发者能更快地入门并开发出自己的游戏。 在使用AndEngine时,开发者需要注意以下几点: - **兼容性**:虽然...
6. **Animations**: AndEngine支持帧动画,可以轻松创建角色行走、攻击等动作。 7. **Particles System**: 粒子系统可以创建出如火花、烟雾、爆炸等视觉效果。 8. **Groups and Layers**: 用于组织和管理场景中的...
AndEngine最新jar包 AndEngine最新jar包 AndEngine最新jar包
3. **物理引擎集成**:AndEngine支持Box2D物理引擎,使得游戏中的碰撞检测和物体运动更加真实。在DeliveryBoy中,可能会用到Box2D来模拟角色和环境的交互。 4. **动画处理**:AndEngine提供动画系统,支持帧动画和...
6. **动画与特效**:AndEngine提供了丰富的动画和特效功能,如淡入淡出、旋转、缩放等。学习如何创建和控制这些动画能让你的游戏更具吸引力。 7. **音频管理**:AndEngine支持音频播放,包括音乐和音效。文档会解释...
2. **精灵与动画**:AndEngine提供了精灵(Sprite)和动画(Animation)管理功能,允许开发者轻松创建和控制2D角色或对象的运动和行为。 3. **物理引擎集成**:AndEngine可以与Box2D物理引擎无缝集成,用于实现复杂的...
AndEngine是一款针对Android平台开发2D游戏的开源引擎,它以简单易用和高效著称。这个Demo是AndEngine官方网站提供的示例集合,用于帮助开发者更好地理解和学习如何使用AndEngine来构建游戏。以下是对AndEngine及其...
**6. 物理引擎** - AndEngine提供了Box2D物理引擎的扩展模块,用于实现物体碰撞检测和物理模拟。 - 创建`PhysicsWorld`实例并添加物理对象,如`Body`、`Fixture`。 **7. 动画与粒子系统** - `Animation`类用于创建...
在Android游戏开发中,andEngine是一个非常受欢迎的2D游戏引擎,它提供了丰富的功能和简单易用的API,使得开发者可以快速构建出高质量的游戏。在本篇内容中,我们将深入探讨如何在andEngine中利用SVG(Scalable ...
5. **PhysicsWorld**:如果游戏包含了物理效果,那么会有一个PhysicsWorld实例来处理碰撞检测和物体运动。 6. **InputHandlers**:处理用户输入,如触摸屏事件,控制游戏人物移动或进行其他操作。 7. **ScoreSystem*...