游戏中摄像头的原理介绍


       在游戏开发中更新摄像头的位置可以决定屏幕显示的内容,尤其是RPG类游戏摄像头有着非常重要的作用,我举一个例子,有时候我们在玩RPG游戏的时候进入一个新的场景,触发一段脚本后,发现镜头开始向上移动,根据镜头移动玩家可以大概浏览一下这个场景有什么东西 ,触发什么样的剧情。这个实现的方式就是游戏摄像头原理。

       如图所示:首先摄像头显示的区域也是手机屏幕显示的区域,如果需要更改摄像头的位置,其实是更改背景地图的位置,利用程序拖动背景地图,给玩家一种假象让玩家感觉像是摄像头在移动而不是背景地图在移动。

Android游戏开发教程之二:摄像头更新

       游戏中地图的绘制原理介绍


       根据地图编辑器生成的出来的数组的每一个tile 的 ID 找到每一个tile的地图资源原始文件的XY坐标 算出来图片的显示位置利用程序的切割的方法把每一个tile切割出来显示在手机屏幕中。 切割图片的代码所示:

Java代码
  1. /** 
  2.  * 绘制图片中的一部分图片 
  3.  * 
  4.  * @param canvas 
  5.  * @param paint 
  6.  * @param bitmap 
  7.  * @param x 
  8.  * @param y 
  9.  * @param src_x 
  10.  * @param src_y 
  11.  * @param src_width 
  12.  * @param src_Height 
  13.  */  
  14. private void DrawClipImage(Canvas canvas, Paint paint, Bitmap bitmap,  
  15.     int x, int y, int src_x, int src_y, int src_xp, int src_yp) {  
  16.     canvas.save();  
  17.     canvas.clipRect(x, y, x + src_xp, y + src_yp);  
  18.     canvas.drawBitmap(bitmap, x - src_x, y - src_y, paint);  
  19.     canvas.restore();  
  20. }  

       canvas.save();

       切割图片之前先把Canvas保存起来 然后在切割  绘制结束后

       canvas.restore();

       在把Canvas的在状态重置回来 如果不这么做的话 第一张图片切割后就会挡住以后所有的图片,所以大家一定要记住这一点喔。

Android游戏开发教程之二:摄像头更新

       图所示:每一张tile的绘制原理就是这样,说到这里有些朋友可能就要问 如果我的地图无限大那根据这个方法岂不是要循环无限次?其实屏幕须要绘制的tile数量只需要绘制屏幕显示区域以内的, 屏幕现实区域以外的我们不用考虑绘制 只需要更新地图的坐标数据就可以,比如我的模拟器屏幕的大小是320X480 那么我实际绘制的tile数量只是 10 X15 (块)。其实游戏开发绘制中还有一个更重要的绘制技术就是双缓冲技术它可以用来解决屏幕闪烁问题,下一章中我会详细介绍。

       昨天有朋友跟我提出这种用数组的方式来绘制地图不科学我很同意他的观点,为什么不科学? 原因是现在我们只有一个场景我们用一个数组来绘制地图 万一我们的游戏有100个场景 我们岂不是要在程序中写100个数组了?其实在实际开发中我们是把这些地图的信息转成xml文件 打到游戏的包中 玩家在切换游戏场景的时候便会读取当前游戏场景中的地图xml文件。其实这些xml文件中也是保存这地图的二位数组信息 但是这样做的好处就是数据驱动  程序员不用定义N个数组 做N种判断 只须要根据当前切换的场景的ID就可以得到地图的信息 十分方便 也可以避免代码中由于笔误造成的的错误 何乐而不为。

       但是不管用任何方法处理数据 它的绘制原理都是一样的。

       如何更新游戏中摄像头


       效果图:程序取随机数更新游戏摄像头

Android游戏开发教程之二:摄像头更新

Android游戏开发教程之二:摄像头更新

        目前以每10000毫秒更新一下摄像头的位置 (随机数) 我们有了摄像头的位置以后 就可以在算出背景图片的相对显示位置,移动背景图片的位置后就可以给玩家制造出一种摄像头在移动的假象了。

        地图块是我新拼的 长宽的tile块数是20X20。

Android游戏开发教程之二:摄像头更新

Java代码
  1. package cn.m15.xys;  
  2.    
  3. import java.io.InputStream;  
  4. import java.util.Random;  
  5.    
  6. import android.app.Activity;  
  7. import android.content.Context;  
  8. import android.content.res.Resources;  
  9. import android.graphics.Bitmap;  
  10. import android.graphics.BitmapFactory;  
  11. import android.graphics.Canvas;  
  12. import android.graphics.Color;  
  13. import android.graphics.Paint;  
  14. import android.os.Bundle;  
  15. import android.view.Display;  
  16. import android.view.View;  
  17. import android.view.Window;  
  18. import android.view.WindowManager;  
  19.    
  20. public class CameraAcitvity extends Activity {  
  21.    
  22.     MapView mMapView = null;  
  23.     @Override  
  24.     public void onCreate(Bundle savedInstanceState) {  
  25.     super.onCreate(savedInstanceState);  
  26.     // 全屏显示窗口  
  27.     requestWindowFeature(Window.FEATURE_NO_TITLE);  
  28.     getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,  
  29.         WindowManager.LayoutParams.FLAG_FULLSCREEN);  
  30.     // 获取屏幕宽高  
  31.     Display display = getWindowManager().getDefaultDisplay();  
  32.     // 显示自定义的游戏View  
  33.     mMapView = new MapView(this,display.getWidth(), display.getHeight());  
  34.     setContentView(mMapView);  
  35.     }  
  36.    
  37.     public class MapView extends View {  
  38.    
  39.     // tile块的宽高  
  40.     public final static int TILE_WIDTH = 32;  
  41.     public final static int TILE_HEIGHT = 32;  
  42.    
  43.     // tile块的宽高的数量  
  44.     public final static int TILE_WIDTH_COUNT = 20;  
  45.     public final static int TILE_HEIGHT_COUNT = 20;  
  46.    
  47.     // 地图的宽高的  
  48.     public final static int MAP_WIDTH = 640;  
  49.     public final static int MAP_HEIGHT = 640;  
  50.    
  51.     //镜头移动范围  
  52.     public final static int CAMERA_MOVE = 10;  
  53.    
  54.     // 屏幕的宽高  
  55.     public int mScreenWidth = 0;  
  56.     public int mScreenHeight = 0;  
  57.    
  58.     // 数组元素为0则什么都不画  
  59.     public final static int TILE_NULL = 0;  
  60.     // 第一层游戏View地图数组  
  61.     public int[][] mMapView = {  
  62.         { 111111111137137137137137111,  
  63.             111 },  
  64.         { 1111111137137137137137137111,  
  65.             1111 },  
  66.         { 111111111371371371371371111,  
  67.             111 },  
  68.         { 1111113713713713713713713713711,  
  69.             11111 },  
  70.         { 137137137137137137137137137137137137,  
  71.             137137137137137111 },  
  72.         { 137137137137137137137137137137137137,  
  73.             137137137137137111 },  
  74.         { 13713713711137137137137137137137137,  
  75.             1371371371111 },  
  76.         { 1137137111137137137137137137137137,  
  77.             13713713711371 },  
  78.         { 1111111137137137137137137137137,  
  79.             1371371371371 },  
  80.         { 1111111137137137137111137137,  
  81.             137137137137 },  
  82.         { 11111111137137137137111137,  
  83.             1371371371 },  
  84.         { 111111137137137137137137137111,  
  85.             1137137137 },  
  86.         { 111111137137137137137111111,  
  87.             1137137 },  
  88.         { 1111111137137137137111111,  
  89.             137137137 },  
  90.         { 111111371371371371371371371111,  
  91.             1137137137 },  
  92.         { 1111111371371371371371371111,  
  93.             1111 },  
  94.         { 111111137137137137137111111,  
  95.             111 },  
  96.         { 111111137137137137137111111,  
  97.             111 },  
  98.         { 111111137137137137137111111,  
  99.             111 },  
  100.         { 111111113713713711111111,  
  101.             11 } };  
  102.    
  103.     // 第二层游戏实体actor数组  
  104.     public int[][] mMapAcotor = {  
  105.         { 143144010210400000000000,  
  106.             185186187188 },  
  107.             { 151152011011200000000000,  
  108.             193194195196 },  
  109.             { 159160011011200000000000,  
  110.             201202203204 },  
  111.             { 00012612800000000000,  
  112.             209210211212 },  
  113.             { 00013413600000000000,  
  114.             0218219220 },  
  115.             { 0000000000000000,  
  116.             00227228 },  
  117.             { 0000000000000000,  
  118.             0000 },  
  119.             { 0000000000000000,  
  120.             0000 },  
  121.             { 10210310310310400000000000,  
  122.             0000 },  
  123.             { 11011111111111200000000000,  
  124.             0000 },  
  125.             { 11011111111111200000000000,  
  126.             0000 },  
  127.             { 126127127127128000000016516600,  
  128.             0000 },  
  129.             { 1231241241241250000000173174175176,  
  130.             0000 },  
  131.             { 22923023123200000000181182183184,  
  132.             0000 },  
  133.             { 237238239240000000000000,  
  134.             0000 },  
  135.             { 245246247248000000000000,  
  136.             0000 },  
  137.             { 02542550000000000233234235,  
  138.             236000 },  
  139.             { 02622630000000000241242243,  
  140.             244000 },  
  141.             { 00000000000000250251,  
  142.             0000 },  
  143.             { 00000000000000258259,  
  144.             00143144 }  
  145.             };  
  146.    
  147.     // 第三层游戏碰撞物理层数组  
  148.     // 下一章介绍  
  149.     // ....................  
  150.    
  151.     // 游戏地图资源  
  152.     Bitmap mBitmap = null;  
  153.    
  154.     // 资源文件  
  155.     Resources mResources = null;  
  156.    
  157.     // 游戏画笔  
  158.     Paint mPaint = null;  
  159.    
  160.     // 横向纵向tile块的数量  
  161.     int mWidthTileCount = 0;  
  162.     int mHeightTileCount = 0;  
  163.    
  164.     // 横向纵向tile块的数量  
  165.     int mBitMapWidth = 0;  
  166.     int mBitMapHeight = 0;  
  167.    
  168.     //摄像头的焦点  0.0点为焦点在中心。  
  169.     int mCameraPosX = 0;  
  170.     int mCameraPosY = 0;   
  171.    
  172.     //地图左上角锚点坐标  
  173.     int mMapPosX =0;  
  174.     int mMapPosY =0;  
  175.    
  176.     //记录上次时间  
  177.    
  178.     private long statrTime = 0;  
  179.    
  180.     /** 
  181.      * 构造方法 
  182.      * 
  183.      * @param context 
  184.      */  
  185.     public MapView(Context context,int screenWidth, int screenHeight) {  
  186.         super(context);  
  187.         mScreenHeight = screenHeight;  
  188.         mScreenWidth = screenWidth;  
  189.         mPaint = new Paint();  
  190.         mBitmap = ReadBitMap(context, R.drawable.map);  
  191.         mBitMapWidth = mBitmap.getWidth();  
  192.         mBitMapHeight = mBitmap.getHeight();  
  193.         mWidthTileCount = mBitMapWidth / TILE_WIDTH;  
  194.         mHeightTileCount = mBitMapHeight / TILE_HEIGHT;  
  195.         statrTime = System.currentTimeMillis();  
  196.     }  
  197.    
  198.     @Override  
  199.     protected void onDraw(Canvas canvas) {  
  200.         UpdateCamera();  
  201.         DrawMap(canvas, mBitmap);  
  202.         DrawRectText(canvas);  
  203.         super.onDraw(canvas);  
  204.         invalidate();  
  205.     }  
  206.    
  207.     private void DrawMap(Canvas canvas, Bitmap bitmap) {  
  208.         int i, j;  
  209.         for (i = 0; i < TILE_HEIGHT_COUNT; i++) {  
  210.         for (j = 0; j < TILE_WIDTH_COUNT; j++) {  
  211.             int ViewID = mMapView[i][j];  
  212.             int ActorID = mMapAcotor[i][j];  
  213.             int x = (j* TILE_WIDTH) + mMapPosX;  
  214.             int y = (i* TILE_HEIGHT) + mMapPosY;  
  215.             // 绘制地图第一层  
  216.             if (ViewID > TILE_NULL) {  
  217.             DrawMapTile(ViewID, canvas, mPaint, bitmap, x, y);  
  218.             }  
  219.    
  220.             // 绘制地图第二层  
  221.             if (ActorID > TILE_NULL) {  
  222.             DrawMapTile(ActorID, canvas, mPaint, bitmap, x, y);  
  223.             }  
  224.         }  
  225.         }  
  226.     }  
  227.     private void DrawRectText(Canvas canvas) {  
  228.         canvas.clipRect(00,mScreenWidth, 30);  
  229.         mPaint.setColor(Color.WHITE);  
  230.         canvas.drawRect(00,mScreenWidth, 30, mPaint);  
  231.         mPaint.setColor(Color.RED);  
  232.         canvas.drawText("当前摄像头X坐标:" + mCameraPosX + "当前摄像头Y坐标 :" + mCameraPosY, 020, mPaint);  
  233.     }  
  234.     private void UpdateCamera() {  
  235.         long nowTime = System.currentTimeMillis();  
  236.         //每100毫秒更新一下摄像头的位置  
  237.         if(nowTime - statrTime > 1000) {  
  238.         //随机获得摄像头的坐标  
  239.         mCameraPosX = UtilRandom(0,MAP_WIDTH - mScreenWidth);  
  240.         mCameraPosY = UtilRandom(0,MAP_HEIGHT - mScreenHeight);  
  241.         //根据摄像头的坐标更新地图坐标  
  242.         mMapPosX = -mCameraPosX;  
  243.         mMapPosY = -mCameraPosY;  
  244.         statrTime = nowTime;  
  245.         }  
  246.     }  
  247.    
  248.     /** 
  249.     * 返回一个随机数 
  250.     * @param botton 
  251.     * @param top 
  252.     * @return 
  253.     */  
  254.     private int UtilRandom(int botton, int top) {  
  255.         return ((Math.abs(new Random().nextInt()) % (top - botton)) + botton);  
  256.     }  
  257.     /** 
  258.      * 根据ID绘制一个tile块 
  259.      * 
  260.      * @param id 
  261.      * @param canvas 
  262.      * @param paint 
  263.      * @param bitmap 
  264.      */  
  265.     private void DrawMapTile(int id, Canvas canvas, Paint paint,  
  266.         Bitmap bitmap, int x, int y) {  
  267.         // 根据数组中的ID算出在地图资源中的XY 坐标  
  268.         // 因为编辑器默认0 所以第一张tile的ID不是0而是1 所以这里 -1  
  269.         id--;  
  270.         int count = id / mWidthTileCount;  
  271.         int bitmapX = (id - (count * mWidthTileCount)) * TILE_WIDTH;  
  272.         int bitmapY = count * TILE_HEIGHT;  
  273.         DrawClipImage(canvas, paint, bitmap, x, y, bitmapX, bitmapY,  
  274.             TILE_WIDTH, TILE_HEIGHT);  
  275.     }  
  276.    
  277.     /** 
  278.      * 读取本地资源的图片 
  279.      * 
  280.      * @param context 
  281.      * @param resId 
  282.      * @return 
  283.      */  
  284.     public Bitmap ReadBitMap(Context context, int resId) {  
  285.         BitmapFactory.Options opt = new BitmapFactory.Options();  
  286.         opt.inPreferredConfig = Bitmap.Config.RGB_565;  
  287.         opt.inPurgeable = true;  
  288.         opt.inInputShareable = true;  
  289.         // 获取资源图片  
  290.         InputStream is = context.getResources().openRawResource(resId);  
  291.         return BitmapFactory.decodeStream(is, null, opt);  
  292.     }  
  293.    
  294.     /** 
  295.      * 绘制图片中的一部分图片 
  296.      * 
  297.      * @param canvas 
  298.      * @param paint 
  299.      * @param bitmap 
  300.      * @param x 
  301.      * @param y 
  302.      * @param src_x 
  303.      * @param src_y 
  304.      * @param src_width 
  305.      * @param src_Height 
  306.      */  
  307.     private void DrawClipImage(Canvas canvas, Paint paint, Bitmap bitmap,  
  308.         int x, int y, int src_x, int src_y, int src_xp, int src_yp) {  
  309.         canvas.save();  
  310.         canvas.clipRect(x, y, x + src_xp, y + src_yp);  
  311.         canvas.drawBitmap(bitmap, x - src_x, y - src_y, paint);  
  312.         canvas.restore();  
  313.     }  
  314.    
  315.     }  
  316. }  

       最后如果你还是觉得我写的不够详细,看的不够爽,不要紧我把源代码的下载地址贴出来 欢迎大家一起讨论学习。

       下载地址:http://vdisk.weibo.com/s/aa8MZ

本文发布:Android开发网
本文地址:http://www.jizhuomi.com/android/game/481.html
2015年10月16日
发布:鸡啄米 分类:Android游戏开发 浏览: 评论:0