欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android游戲開發(fā)之碰撞檢測(矩形碰撞、圓形碰撞、像素碰撞)

 更新時(shí)間:2016年07月26日 12:02:15   作者:liudao7994  
這篇文章主要介紹了Android游戲開發(fā)之碰撞檢測,主要內(nèi)容包含矩形碰撞、圓形碰撞、像素碰撞、多矩形碰撞的代碼,感興趣的小伙伴們可以參考一下

本文為大家分享了Android游戲開發(fā)之碰撞檢測,供大家參考,具體內(nèi)容如下

矩形碰撞 原理: 兩個(gè)矩形位置 的四種情況 不是這四中情況 則碰撞

圓形碰撞 原理: 利用兩個(gè)圓心之間的距離進(jìn)行判定.當(dāng)兩個(gè)圓心的距離小于半徑之和則碰撞.

像素碰撞 原理:不適用 遍歷所有像素 檢測 太多了

多矩形碰撞 原理:設(shè)置多個(gè)矩形碰撞檢測區(qū)域 檢測碰撞矩形數(shù)組 與另一碰撞矩形數(shù)組之間的位置關(guān)系.

矩形碰撞 代碼:

public class MySurfaceView extends SurfaceView implements Callback, Runnable {
 private SurfaceHolder sfh;
 private Paint paint;
 private Thread th;
 private boolean flag;
 private Canvas canvas;
 private int screenW, screenH;
 //定義兩個(gè)矩形的寬高坐標(biāo)
 private int x1 = 10, y1 = 110, w1 = 40, h1 = 40;
 private int x2 = 100, y2 = 110, w2 = 40, h2 = 40;
 //便于觀察是否發(fā)生了碰撞設(shè)置一個(gè)標(biāo)識(shí)位
 private boolean isCollsion;

 /**
  * SurfaceView初始化函數(shù)
  */
 public MySurfaceView(Context context) {
  super(context);
  sfh = this.getHolder();
  sfh.addCallback(this);
  paint = new Paint();
  paint.setColor(Color.WHITE);
  paint.setAntiAlias(true);
  setFocusable(true);
 }

 /**
  * SurfaceView視圖創(chuàng)建,響應(yīng)此函數(shù)
  */
 @Override
 public void surfaceCreated(SurfaceHolder holder) {
  screenW = this.getWidth();
  screenH = this.getHeight();
  flag = true;
  //實(shí)例線程
  th = new Thread(this);
  //啟動(dòng)線程
  th.start();
 }

 /**
  * 游戲繪圖
  */
 public void myDraw() {
  try {
   canvas = sfh.lockCanvas();
   if (canvas != null) {
    canvas.drawColor(Color.BLACK);
    if (isCollsion) {
     paint.setColor(Color.RED);
     paint.setTextSize(20);
     canvas.drawText("Collision!", 0, 30, paint);
    } else {
     paint.setColor(Color.WHITE);
    }
    //繪制兩個(gè)矩形
    canvas.drawRect(x1, y1, x1 + w1, y1 + h1, paint);
    canvas.drawRect(x2, y2, x2 + w2, y2 + h2, paint);
   }
  } catch (Exception e) {
   // TODO: handle exception
  } finally {
   if (canvas != null)
    sfh.unlockCanvasAndPost(canvas);
  }
 }

 /**
  * 觸屏事件監(jiān)聽
  */
 @Override
 public boolean onTouchEvent(MotionEvent event) {
  //讓矩形1隨著觸屏位置移動(dòng)
  x1 = (int) event.getX() - w1 / 2;
  y1 = (int) event.getY() - h1 / 2;
  if (isCollsionWithRect(x1, y1, w1, h1, x2, y2, w2, h2)) {
   isCollsion = true;
  } else {
   isCollsion = false;
  }
  return true;
 }

 /**
  * 按鍵事件監(jiān)聽
  */
 @Override
 public boolean onKeyDown(int keyCode, KeyEvent event) {
  return super.onKeyDown(keyCode, event);
 }

 /**
  * 游戲邏輯
  */
 private void logic() {

 }

 public boolean isCollsionWithRect(int x1, int y1, int w1, int h1, int x2, int y2, int w2, int h2) {
  if (x1 >= x2 && x1 >= x2 + w2) {
   return false;
  } else if (x1 <= x2 && x1 + w1 <= x2) {
   return false;
  } else if (y1 >= y2 && y1 >= y2 + h2) {
   return false;
  } else if (y1 <= y2 && y1 + h1 <= y2) {
   return false;
  }
  return true;
 }

 @Override
 public void run() {
  while (flag) {
   long start = System.currentTimeMillis();
   myDraw();
   logic();
   long end = System.currentTimeMillis();
   try {
    if (end - start < 50) {
     Thread.sleep(50 - (end - start));
    }
   } catch (InterruptedException e) {
    e.printStackTrace();
   }
  }
 }

 /**
  * SurfaceView視圖狀態(tài)發(fā)生改變,響應(yīng)此函數(shù)
  */
 @Override
 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
 }

 /**
  * SurfaceView視圖消亡時(shí),響應(yīng)此函數(shù)
  */
 @Override
 public void surfaceDestroyed(SurfaceHolder holder) {
  flag = false;
 }
}

圓形碰撞 代碼:

public class MySurfaceView extends SurfaceView implements Callback, Runnable {
 private SurfaceHolder sfh;
 private Paint paint;
 private Thread th;
 private boolean flag;
 private Canvas canvas;
 private int screenW, screenH;
 //定義兩個(gè)圓形的半徑與坐標(biāo)
 private int r1 = 20, r2 = 20;
 private int x1 = 50, y1 = 100, x2 = 150, y2 = 100;
 //定義一個(gè)碰撞標(biāo)識(shí)位
 private boolean isCollision;

 /**
  * SurfaceView初始化函數(shù)
  */
 public MySurfaceView(Context context) {
  super(context);
  sfh = this.getHolder();
  sfh.addCallback(this);
  paint = new Paint();
  paint.setColor(Color.WHITE);
  paint.setAntiAlias(true);
  setFocusable(true);
 }

 /**
  * SurfaceView視圖創(chuàng)建,響應(yīng)此函數(shù)
  */
 @Override
 public void surfaceCreated(SurfaceHolder holder) {
  screenW = this.getWidth();
  screenH = this.getHeight();
  flag = true;
  //實(shí)例線程
  th = new Thread(this);
  //啟動(dòng)線程
  th.start();
 }

 /**
  * 游戲繪圖
  */
 public void myDraw() {
  try {
   canvas = sfh.lockCanvas();
   if (canvas != null) {
    canvas.drawColor(Color.BLACK);
    if (isCollision) {
     paint.setColor(Color.RED);
     paint.setTextSize(20);
     canvas.drawText("Collision!", 0, 30, paint);
    } else {
     paint.setColor(Color.WHITE);
    }
    canvas.drawCircle(x1, y1, r1, paint);
    canvas.drawCircle(x2, y2, r2, paint);
   }
  } catch (Exception e) {
   // TODO: handle exception
  } finally {
   if (canvas != null)
    sfh.unlockCanvasAndPost(canvas);
  }
 }

 /**
  * 觸屏事件監(jiān)聽
  */
 @Override
 public boolean onTouchEvent(MotionEvent event) {
  x1 = (int) event.getX();
  y1 = (int) event.getY();
  if (isCollisionWithCircle(x1, y1, x2, y2, r1, r2)) {
   isCollision = true;
  } else {
   isCollision = false;
  }
  return true;
 }
 /**
  * 圓形碰撞
  * @param x1 圓形1的圓心X坐標(biāo)
  * @param y1 圓形2的圓心X坐標(biāo)
  * @param x2 圓形1的圓心Y坐標(biāo)
  * @param y2 圓形2的圓心Y坐標(biāo)
  * @param r1 圓形1的半徑
  * @param r2 圓形2的半徑
  * @return
  */
 private boolean isCollisionWithCircle(int x1, int y1, int x2, int y2, int r1, int r2) {
  //Math.sqrt:開平方
  //Math.pow(double x, double y): X的Y次方
  if (Math.sqrt(Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2)) <= r1 + r2) {
   //如果兩圓的圓心距小于或等于兩圓半徑則認(rèn)為發(fā)生碰撞
   return true;
  }
  return false;
 }

 /**
  * 按鍵事件監(jiān)聽
  */
 @Override
 public boolean onKeyDown(int keyCode, KeyEvent event) {
  return super.onKeyDown(keyCode, event);
 }

 /**
  * 游戲邏輯
  */
 private void logic() {
 }

 @Override
 public void run() {
  while (flag) {
   long start = System.currentTimeMillis();
   myDraw();
   logic();
   long end = System.currentTimeMillis();
   try {
    if (end - start < 50) {
     Thread.sleep(50 - (end - start));
    }
   } catch (InterruptedException e) {
    e.printStackTrace();
   }
  }
 }

 /**
  * SurfaceView視圖狀態(tài)發(fā)生改變,響應(yīng)此函數(shù)
  */
 @Override
 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
 }

 /**
  * SurfaceView視圖消亡時(shí),響應(yīng)此函數(shù)
  */
 @Override
 public void surfaceDestroyed(SurfaceHolder holder) {
  flag = false;
 }
}

多矩形碰撞 代碼

public class MySurfaceView extends SurfaceView implements Callback, Runnable {
 private SurfaceHolder sfh;
 private Paint paint;
 private Thread th;
 private boolean flag;
 private Canvas canvas;
 private int screenW, screenH;
 //定義兩個(gè)矩形圖形的寬高坐標(biāo)
 private int rectX1 = 10, rectY1 = 10, rectW1 = 40, rectH1 = 40;
 private int rectX2 = 100, rectY2 = 110, rectW2 = 40, rectH2 = 40;
 //便于觀察是否發(fā)生了碰撞設(shè)置一個(gè)標(biāo)識(shí)位
 private boolean isCollsion;
 //定義第一個(gè)矩形的矩形碰撞數(shù)組
 private Rect clipRect1 = new Rect(0, 0, 15, 15);
 private Rect clipRect2 = new Rect(rectW1 - 15, rectH1 - 15, rectW1, rectH1);
 private Rect[] arrayRect1 = new Rect[] { clipRect1, clipRect2 };
 //定義第二個(gè)矩形的矩形碰撞數(shù)組
 private Rect clipRect3 = new Rect(0, 0, 15, 15);
 private Rect clipRect4 = new Rect(rectW2 - 15, rectH2 - 15, rectW2, rectH2);
 private Rect[] arrayRect2 = new Rect[] { clipRect3, clipRect4 };

 /**
  * SurfaceView初始化函數(shù)
  */
 public MySurfaceView(Context context) {
  super(context);
  sfh = this.getHolder();
  sfh.addCallback(this);
  paint = new Paint();
  paint.setColor(Color.WHITE);
  paint.setAntiAlias(true);
  setFocusable(true);
 }

 /**
  * SurfaceView視圖創(chuàng)建,響應(yīng)此函數(shù)
  */
 @Override
 public void surfaceCreated(SurfaceHolder holder) {
  screenW = this.getWidth();
  screenH = this.getHeight();
  flag = true;
  //實(shí)例線程
  th = new Thread(this);
  //啟動(dòng)線程
  th.start();
 }

 /**
  * 游戲繪圖
  */
 public void myDraw() {
  try {
   canvas = sfh.lockCanvas();
   if (canvas != null) {
    canvas.drawColor(Color.BLACK);
    paint.setColor(Color.WHITE);
    paint.setStyle(Style.FILL);
    if (isCollsion) {
     paint.setTextSize(20);
     canvas.drawText("Collision!", 0, 30, paint);
    }
    //繪制兩個(gè)矩形
    canvas.drawRect(rectX1, rectY1, rectX1 + rectW1, rectY1 + rectH1, paint);
    canvas.drawRect(rectX2, rectY2, rectX2 + rectW2, rectY2 + rectH2, paint);
    //---繪制碰撞區(qū)域使用非填充,并設(shè)置畫筆顏色白色
    paint.setStyle(Style.STROKE);
    paint.setColor(Color.RED);
    //繪制第一個(gè)矩形的所有矩形碰撞區(qū)域
    for (int i = 0; i < arrayRect1.length; i++) {
     canvas.drawRect(arrayRect1[i].left + this.rectX1, arrayRect1[i].top + this.rectY1, arrayRect1[i].right + this.rectX1, arrayRect1[i].bottom
       + this.rectY1, paint);
    }
    //繪制第二個(gè)矩形的所有矩形碰撞區(qū)域
    for (int i = 0; i < arrayRect2.length; i++) {
     canvas.drawRect(arrayRect2[i].left + this.rectX2, arrayRect2[i].top + this.rectY2, arrayRect2[i].right + this.rectX2, arrayRect2[i].bottom
       + rectY2, paint);
    }
   }
  } catch (Exception e) {
   // TODO: handle exception
  } finally {
   if (canvas != null)
    sfh.unlockCanvasAndPost(canvas);
  }
 }

 /**
  * 觸屏事件監(jiān)聽
  */
 @Override
 public boolean onTouchEvent(MotionEvent event) {
  //讓矩形1隨著觸屏位置移動(dòng)
  rectX1 = (int) event.getX() - rectW1 / 2;
  rectY1 = (int) event.getY() - rectH1 / 2;
  if (isCollsionWithRect(arrayRect1, arrayRect2)) {
   isCollsion = true;
  } else {
   isCollsion = false;
  }
  return true;
 }

 /**
  * 按鍵事件監(jiān)聽
  */
 @Override
 public boolean onKeyDown(int keyCode, KeyEvent event) {
  return super.onKeyDown(keyCode, event);
 }

 /**
  * 游戲邏輯
  */
 private void logic() {

 }

 //Rect 類中的四個(gè)屬性 top bottom left right
 //分別表示這個(gè)矩形的   上  下   左   右
 public boolean isCollsionWithRect(Rect[] rectArray, Rect[] rect2Array) {
  Rect rect = null;
  Rect rect2 = null;
  for (int i = 0; i < rectArray.length; i++) {
   //依次取出第一個(gè)矩形數(shù)組的每個(gè)矩形實(shí)例
   rect = rectArray[i];
   //獲取到第一個(gè)矩形數(shù)組中每個(gè)矩形元素的屬性值
   int x1 = rect.left + this.rectX1;
   int y1 = rect.top + this.rectY1;
   int w1 = rect.right - rect.left;
   int h1 = rect.bottom - rect.top;
   for (int j = 0; j < rect2Array.length; j++) {
    //依次取出第二個(gè)矩形數(shù)組的每個(gè)矩形實(shí)例
    rect2 = rect2Array[j];
    //獲取到第二個(gè)矩形數(shù)組中每個(gè)矩形元素的屬性值
    int x2 = rect2.left + this.rectX2;
    int y2 = rect2.top + this.rectY2;
    int w2 = rect2.right - rect2.left;
    int h2 = rect2.bottom - rect2.top;
    //進(jìn)行循環(huán)遍歷兩個(gè)矩形碰撞數(shù)組所有元素之間的位置關(guān)系
    if (x1 >= x2 && x1 >= x2 + w2) {
    } else if (x1 <= x2 && x1 + w1 <= x2) {
    } else if (y1 >= y2 && y1 >= y2 + h2) {
    } else if (y1 <= y2 && y1 + h1 <= y2) {
    } else {
     //只要有一個(gè)碰撞矩形數(shù)組與另一碰撞矩形數(shù)組發(fā)生碰撞則認(rèn)為碰撞
     return true;
    }
   }
  }
  return false;
 }

 @Override
 public void run() {
  while (flag) {
   long start = System.currentTimeMillis();
   myDraw();
   logic();
   long end = System.currentTimeMillis();
   try {
    if (end - start < 50) {
     Thread.sleep(50 - (end - start));
    }
   } catch (InterruptedException e) {
    e.printStackTrace();
   }
  }
 }

 /**
  * SurfaceView視圖狀態(tài)發(fā)生改變,響應(yīng)此函數(shù)
  */
 @Override
 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
 }

 /**
  * SurfaceView視圖消亡時(shí),響應(yīng)此函數(shù)
  */
 @Override
 public void surfaceDestroyed(SurfaceHolder holder) {
  flag = false;
 }
}

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android開發(fā)自學(xué)筆記(四):APP布局下

    Android開發(fā)自學(xué)筆記(四):APP布局下

    這篇文章主要介紹了Android開發(fā)自學(xué)筆記(四):APP布局下,本文是上一篇的補(bǔ)充,需要的朋友可以參考下
    2015-04-04
  • Android 通過觸摸動(dòng)態(tài)地在屏幕上畫矩形效果

    Android 通過觸摸動(dòng)態(tài)地在屏幕上畫矩形效果

    在屏幕上用手指畫出一個(gè)區(qū)域,返回所圈的區(qū)域坐標(biāo)。通過自定義view設(shè)置畫筆及對(duì)應(yīng)參數(shù),在onTouchEvent()回調(diào)函數(shù)里,對(duì)觸摸事件進(jìn)行判斷。畫出矩形圖形,具體實(shí)現(xiàn)代碼大家參考下本文
    2017-07-07
  • Android自定義View實(shí)現(xiàn)粉碎的面具效果

    Android自定義View實(shí)現(xiàn)粉碎的面具效果

    這篇文章主要給大家介紹了關(guān)于Android自定義View實(shí)現(xiàn)粉碎的面具效果的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)各位Android開發(fā)者們具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2018-08-08
  • android如何獲取經(jīng)緯度

    android如何獲取經(jīng)緯度

    這篇文章主要為大家詳細(xì)介紹了android獲取經(jīng)緯度的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-06-06
  • Android編程使用HTTP協(xié)議與TCP協(xié)議實(shí)現(xiàn)上傳文件的方法

    Android編程使用HTTP協(xié)議與TCP協(xié)議實(shí)現(xiàn)上傳文件的方法

    這篇文章主要介紹了Android編程使用HTTP協(xié)議與TCP協(xié)議實(shí)現(xiàn)上傳文件的方法,結(jié)合實(shí)例形式較為詳細(xì)的分析了Android使用HTTP協(xié)議與TCP協(xié)議的具體步驟與實(shí)現(xiàn)文件傳輸?shù)南嚓P(guān)技巧,需要的朋友可以參考下
    2016-01-01
  • Android Bitmap的加載優(yōu)化與Cache相關(guān)介紹

    Android Bitmap的加載優(yōu)化與Cache相關(guān)介紹

    這篇文章主要介紹了Android中性能優(yōu)化之Bitmap的加載優(yōu)化與Cache相關(guān)內(nèi)容介紹,文中介紹的很詳細(xì),對(duì)大家具有一定的參考價(jià)值,需要的朋友們下面來一起看看吧。
    2017-02-02
  • Android設(shè)置鬧鐘相對(duì)完善的解決方案

    Android設(shè)置鬧鐘相對(duì)完善的解決方案

    這篇文章主要為大家詳細(xì)介紹了Android設(shè)置鬧鐘相對(duì)完善的解決方案,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-06-06
  • Flutter 利用CustomScrollView實(shí)現(xiàn)滑動(dòng)效果

    Flutter 利用CustomScrollView實(shí)現(xiàn)滑動(dòng)效果

    我們可以使用ListView將幾個(gè)GridView組合在一起實(shí)現(xiàn)了不同可滑動(dòng)組件的粘合,但是這里必須要設(shè)置禁止 GridView 的滑動(dòng),防止多個(gè)滑動(dòng)組件的沖突。這種方式寫起來不太方便,事實(shí)上 Flutter 提供了 CustomScrollView 來粘合多個(gè)滑動(dòng)組件,并且可以實(shí)現(xiàn)更有趣的滑動(dòng)效果。
    2021-06-06
  • Android中簡單調(diào)用圖片、視頻、音頻、錄音和拍照的方法

    Android中簡單調(diào)用圖片、視頻、音頻、錄音和拍照的方法

    這篇文章主要介紹了Android中簡單調(diào)用圖片、視頻、音頻、錄音和拍照的方法,涉及Android多媒體操作的常用技巧,需要的朋友可以參考下
    2016-08-08
  • OpenGL Shader實(shí)例分析(8)彩色光圈效果

    OpenGL Shader實(shí)例分析(8)彩色光圈效果

    這篇文章主要為大家詳細(xì)介紹了OpenGL Shader實(shí)例分析第8篇,彩色光圈效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-02-02

最新評(píng)論