Android高级进阶十二 在Android上使用3D 引擎(JPCT-AE)构建立方体

最新版本:Android高级进阶十二 在Android上使用3D 引擎(JPCT-AE)构建立方体

         上面好多文章都是介绍使用Android原生opengl接口的,使用起来很是麻烦,代码量冗余臃肿,所以walfred设想是否有几款封装好了的“新引擎”,当然还最好是开源的,在Android 开源3D游戏引擎调研一 中,我们找到了不少优秀的引擎,今天我们就开始使用JPCT-AE,并且做一个使用JPCT-AE构建立方体的实例,算是入门篇,这个虽然比较简单好用,但是我还是建议你先看完基本的opengl操作,之后再使用JPCT-AE就如鱼得水了。

        这个例子的效果图如下:

        因为已经假设你有一些opengl操作,我这边把所有的代码都加上了注释,所以看起来是很方便的。

Java代码
  1. package org.ourunix.android.jpctcube;  
  2.   
  3. import java.lang.reflect.Field;  
  4.   
  5. import javax.microedition.khronos.egl.EGLConfig;  
  6. import javax.microedition.khronos.opengles.GL10;  
  7.   
  8. import com.threed.jpct.Camera;  
  9. import com.threed.jpct.FrameBuffer;  
  10. import com.threed.jpct.Light;  
  11. import com.threed.jpct.Logger;  
  12. import com.threed.jpct.Object3D;  
  13. import com.threed.jpct.Primitives;  
  14. import com.threed.jpct.RGBColor;  
  15. import com.threed.jpct.SimpleVector;  
  16. import com.threed.jpct.Texture;  
  17. import com.threed.jpct.TextureManager;  
  18. import com.threed.jpct.World;  
  19. import com.threed.jpct.util.MemoryHelper;  
  20.   
  21. import android.app.Activity;  
  22. import android.content.Context;  
  23. import android.graphics.Bitmap;  
  24. import android.graphics.BitmapFactory;  
  25. import android.opengl.GLSurfaceView;  
  26. import android.opengl.GLSurfaceView.Renderer;  
  27. import android.os.Bundle;  
  28. import android.view.MotionEvent;  
  29.   
  30. public class JPCTCubeActivity extends Activity {  
  31.     /** Called when the activity is first created. */  
  32.     private Context mContext;  
  33.       
  34.     // 这是和一般的opengl一样,定义一个glview  
  35.     GLSurfaceView mGLSurfaceView;  
  36.   
  37.     // 这是和一般的opengl一样,定义一个渲染类mGlRenderer  
  38.     GlRenderer mGlRenderer;  
  39.   
  40.     private static JPCTCubeActivity master;  
  41.   
  42.     // 当JPCT渲染背景时FrameBuffer类提供了一个缓冲,它的结果本质上是一个能显示或者修改甚至能进行更多后处理的图片。  
  43.     private FrameBuffer fb;  
  44.   
  45.     // World类是JPCT时最重要的一个类,它好像胶水一样把事物"粘"起来。它包含的对象和光线定义了JPCT的场景  
  46.     private World world;  
  47.   
  48.     // 类似java.awt.*中的Color类  
  49.     private RGBColor backColor = new RGBColor(5050100);  
  50.   
  51.     private float rotateX = 0;  
  52.     private float rotateY = 0;  
  53.   
  54.     //x轴方向坐标  
  55.     private float xpos = -1;  
  56.       
  57.     //y轴方向坐标  
  58.     private float ypos = -1;  
  59.   
  60.     // Object3D类是一个三维对象,千万不要傻呼呼的认为它与java.lang.Object类似。  
  61.     // 一个Object3D对象作为一个实例被添加到在渲染的World对象中。Object3D在World  
  62.     // 中一次添加一个实例 ,他们可能被联系起作为孩子/父母来在他们中建立一个制度.  
  63.     // 人体模型当然也能应用在以上的规则中。他们常常不加到一个World实例中,而是  
  64.     // 绑定到其它对象中(人体模型或非人体模型)。有些方法 在这个类中需要一个实例  
  65.     // 添加到一个World实例中(用World.addObject()方法可以实现)。  
  66.     private Object3D cube;  
  67.   
  68.     // 每秒帧数  
  69. //  private int fps = 0;  
  70.   
  71.     // 光照类  
  72.     private Light sun;  
  73.   
  74.     @Override  
  75.     public void onCreate(Bundle savedInstanceState) {  
  76.         super.onCreate(savedInstanceState);  
  77.         // Logger类是jPCT中一个普通的用于打印和存储消息,错误和警告的日志类。  
  78.         // 每一个JPCT生成的消息将被加入到这个类的队列中  
  79.         Logger.log("onCreate");  
  80.   
  81.         // 如果本类对象不为NULL,将从Object中所有属性装入该类  
  82.         if (master != null) {  
  83.             copy(master);  
  84.         }  
  85.   
  86.         // 上下文  
  87.         mContext = this;  
  88.   
  89.         // 这是和一般的opengl一样,定义一个glview  
  90.         mGLSurfaceView = new GLSurfaceView(this);  
  91.   
  92.         // 这是和一般的opengl一样,定义一个渲染类mGlRenderer  
  93.         mGlRenderer = new GlRenderer();  
  94.   
  95.         mGLSurfaceView.setRenderer(mGlRenderer);  
  96.   
  97.         setContentView(mGLSurfaceView);  
  98.   
  99.     }  
  100.       
  101.     @Override  
  102.     protected void onStart() {  
  103.         // TODO Auto-generated method stub  
  104.         Logger.log("onStart");  
  105.         super.onStart();  
  106.     }  
  107.       
  108.     @Override  
  109.     protected void onRestart() {  
  110.         // TODO Auto-generated method stub  
  111.         Logger.log("onRestart");  
  112.         super.onRestart();  
  113.     }  
  114.       
  115.     @Override  
  116.     protected void onPause() {  
  117.         // TODO Auto-generated method stub  
  118.         Logger.log("onPause");  
  119.         super.onPause();  
  120.         mGLSurfaceView.onPause();  
  121.     }  
  122.       
  123.       
  124.     @Override  
  125.     protected void onResume() {  
  126.         // TODO Auto-generated method stub  
  127.         Logger.log("onResume");  
  128.         super.onResume();  
  129.         mGLSurfaceView.onResume();  
  130.     }  
  131.       
  132.     @Override  
  133.     protected void onStop() {  
  134.         // TODO Auto-generated method stub  
  135.         Logger.log("onStop");  
  136.         super.onStop();  
  137.     }  
  138.       
  139.       
  140.     @Override  
  141.     protected void onDestroy() {  
  142.         // TODO Auto-generated method stub  
  143.         Logger.log("onDestroy");  
  144.         super.onDestroy();  
  145.     }  
  146.   
  147.     private void copy(Object src) {  
  148.         // TODO Auto-generated method stub  
  149.         try {    
  150.             // 打印日志    
  151.             Logger.log("Copying data from master Activity!");    
  152.             // 返回一个数组,其中包含目前这个类的的所有字段的Filed对象    
  153.             Field[] fs = src.getClass().getDeclaredFields();    
  154.             // 遍历fs数组    
  155.             for (Field f : fs) {    
  156.                 // 尝试设置无障碍标志的值。标志设置为false将使访问检查,设置为true,将其禁用。    
  157.                 f.setAccessible(true);    
  158.                 // 将取到的值全部装入当前类中    
  159.                 f.set(this, f.get(src));    
  160.             }    
  161.         } catch (Exception e) {    
  162.             // 抛出运行时异常    
  163.             throw new RuntimeException(e);    
  164.         }    
  165.     }  
  166.   
  167.     @Override  
  168.     public boolean onTouchEvent(MotionEvent me) {  
  169.         // TODO Auto-generated method stub  
  170.   
  171.         // 按键开始    
  172.         if (me.getAction() == MotionEvent.ACTION_DOWN) {    
  173.             // 保存按下的初始x,y位置于xpos,ypos中    
  174.             xpos = me.getX();    
  175.             ypos = me.getY();    
  176.             return true;    
  177.         }    
  178.         // 按键结束    
  179.         if (me.getAction() == MotionEvent.ACTION_UP) {    
  180.             // 设置x,y及旋转角度为初始值    
  181.             xpos = -1;    
  182.             ypos = -1;    
  183.             rotateX = 0;    
  184.             rotateY = 0;    
  185.             return true;    
  186.         }    
  187.     
  188.         if (me.getAction() == MotionEvent.ACTION_MOVE) {    
  189.             // 计算x,y偏移位置及x,y轴上的旋转角度    
  190.             float xd = me.getX() - xpos;    
  191.             float yd = me.getY() - ypos;   
  192.               
  193.             xpos = me.getX();    
  194.             ypos = me.getY();    
  195.               
  196.             rotateX = xd / -100f;    
  197.             rotateY = yd / -100f;    
  198.             return true;    
  199.         }    
  200.     
  201.         // 每Move一下休眠毫秒    
  202.         try {    
  203.             Thread.sleep(15);    
  204.         } catch (Exception e) {    
  205.             // No need for this...    
  206.         }    
  207.         return super.onTouchEvent(me);  
  208.     }  
  209.     public class GlRenderer implements Renderer {  
  210.   
  211.         // 停止旗语  
  212.         private boolean stop = false;  
  213.   
  214.         // 停止方法  
  215.         public void setStop() {  
  216.             stop = true;  
  217.         }  
  218.   
  219.         @Override  
  220.         public void onDrawFrame(GL10 gl) {  
  221.             // TODO Auto-generated method stub  
  222.             if (!stop) {  
  223.                 // 如果rotateX不为0,向Y轴旋转rotateX角度  
  224.                 if (rotateX != 0) {  
  225.                     // 旋转物体的绕Y旋转  
  226.                     cube.rotateY(rotateX);  
  227.                     // 将rotateX置0  
  228.                     rotateX = 0;  
  229.                 }  
  230.                   
  231.                 if (rotateY != 0) {    
  232.                     // 旋转物体的旋转围绕x由给定角度宽(弧度,逆时针为正值)轴矩阵,应用到对象下一次渲染时。    
  233.                     cube.rotateX(rotateY);    
  234.                     // 将rotateY置0    
  235.                     rotateY = 0;    
  236.                 }    
  237.                   
  238.                 // 用给定的颜色(backColor)清除FrameBuffer  
  239.                 fb.clear(backColor);  
  240.   
  241.                 // 变换和灯光所有多边形  
  242.                 world.renderScene(fb);  
  243.   
  244.                 // 绘制  
  245.                 world.draw(fb);  
  246.   
  247.                 // 渲染图像显示  
  248.                 fb.display();  
  249.             }else {    
  250.                 if (fb != null) {    
  251.                     fb.dispose();    
  252.                     fb = null;    
  253.                 }    
  254.             }    
  255.         }  
  256.   
  257.         @Override  
  258.         public void onSurfaceChanged(GL10 gl, int width, int height) {  
  259.             // TODO Auto-generated method stub  
  260.             // 如果FrameBuffer不为NULL,释放fb所占资源  
  261.             if (fb != null) {  
  262.                 fb.dispose();  
  263.             }  
  264.   
  265.             // 创建一个宽度为w,高为h的FrameBuffer  
  266.             fb = new FrameBuffer(gl, width, height);  
  267.   
  268.             // 如果master为空  
  269.             if (master == null) {  
  270.   
  271.                 // 实例化World对象  
  272.                 world = new World();  
  273.   
  274.                 // 设置了环境光源强度。负:整个场景会变暗;正:将照亮了一切。  
  275.                 world.setAmbientLight(202020);  
  276.   
  277.                 // 在World中创建一个新的光源  
  278.                 sun = new Light(world);  
  279.   
  280.                 // 创建一个纹理  
  281.                 Bitmap image = BitmapFactory.decodeResource(mContext  
  282.                         .getResources(), R.drawable.img);  
  283.                 Texture texture = new Texture(image);  
  284.   
  285.                 // 纹理的名字  
  286.                 String textureName = "texture";  
  287.   
  288.                 // TextureManager.getInstance()取得一个Texturemanager对象  
  289.                 // addTexture(textureName,texture)添加一个纹理  
  290.                 TextureManager.getInstance().addTexture(textureName, texture);  
  291.   
  292.                 // Object3D对象开始了:-)  
  293.   
  294.                 // Primitives提供了一些基本的三维物体,假如你为了测试而生成一些对象或为  
  295.                 // 其它目的使用这些类将很明智,因为它即快速又简单,不需要载入和编辑。  
  296.                 // 调用public static Object3D getCube(float scale) scale:角度  
  297.                 // 返回一个立方体  
  298.                 cube = Primitives.getCube(10);  
  299.   
  300.                 // 以纹理的方式给对象所有面"包装"上纹理  
  301.                 cube.calcTextureWrapSpherical();  
  302.   
  303.                 // 给对象设置纹理  
  304.                 cube.setTexture(textureName);  
  305.   
  306.                 // 除非你想在事后再用PolygonManager修改,否则释放那些不再需要数据的内存  
  307.                 cube.strip();  
  308.   
  309.                 // 初始化一些基本的对象是几乎所有进一步处理所需的过程。  
  310.                 // 如果对象是"准备渲染"(装载,纹理分配,安置,渲染模式设置,  
  311.                 // 动画和顶点控制器分配),那么build()必须被调用,  
  312.                 cube.build();  
  313.   
  314.                 // 将Object3D对象添加到world集合  
  315.                 world.addObject(cube);  
  316.   
  317.                 // 该Camera代表了Camera/viewer在当前场景的位置和方向,它也包含了当前视野的有关信息  
  318.                 // 你应该记住Camera的旋转矩阵实际上是应用在World中的对象的一个旋转矩阵。  
  319.                 // 这一点很重要,当选择了Camera的旋转角度,一个Camera(虚拟)围绕w旋转和通过围绕World围绕w旋转、  
  320.                 // 将起到相同的效果,因此,考虑到旋转角度,World围绕camera时,camera的视角是静态的。假如你不喜欢  
  321.                 // 这种习惯,你可以使用rotateCamera()方法  
  322.                 Camera cam = world.getCamera();  
  323.   
  324.                 // 以50有速度向后移动Camera(相对于目前的方向)  
  325.                 cam.moveCamera(Camera.CAMERA_MOVEOUT, 50);  
  326.   
  327.                 // cub.getTransformedCenter()返回对象的中心  
  328.                 // cam.lookAt(SimpleVector lookAt))  
  329.                 // 旋转这样camera以至于它看起来是在给定的world-space 的位置  
  330.                 cam.lookAt(cube.getTransformedCenter());  
  331.   
  332.                 // SimpleVector是一个代表三维矢量的基础类,几乎每一个矢量都  
  333.                 // 是用SimpleVector或者至少是一个SimpleVector变体构成的(有时由于  
  334.                 // 某些原因比如性能可能会用(float x,float y,float z)之类)。  
  335.                 SimpleVector simpleVector = new SimpleVector();  
  336.   
  337.                 // 将当前SimpleVector的x,y,z值设为给定的SimpleVector(cube.getTransformedCenter())的值  
  338.                 simpleVector.set(cube.getTransformedCenter());  
  339.   
  340.                 // Y方向上减去100  
  341.                 simpleVector.y -= 100;  
  342.   
  343.                 // Z方向上减去100  
  344.                 simpleVector.z -= 100;  
  345.   
  346.                 // 设置光源位置  
  347.                 sun.setPosition(simpleVector);  
  348.   
  349.                 // 强制GC和finalization工作来试图去释放一些内存,同时将当时的内存写入日志,  
  350.                 // 这样可以避免动画不连贯的情况,然而,它仅仅是减少这种情况发生的机率  
  351.                 MemoryHelper.compact();  
  352.   
  353.                 // 如果master为空,使用日志记录且设master为HelloWorld本身  
  354.                 if (master == null) {  
  355.                     // Logger.log("Saving master Activity!");  
  356.                     master = JPCTCubeActivity.this;  
  357.                 }  
  358.             }  
  359.   
  360.         }  
  361.   
  362.         @Override  
  363.         public void onSurfaceCreated(GL10 gl, EGLConfig config) {  
  364.             // TODO Auto-generated method stub  
  365.   
  366.         }  
  367.   
  368.     }  
  369. }  

        源码下载: Android高级进阶十二 Android3D引擎(JPCT-AE)构建立方体源码

你可能感兴趣的:(Android高级进阶十二 在Android上使用3D 引擎(JPCT-AE)构建立方体)