Android实战打飞机游戏之怪物(敌机)类的实现(4)

先看看效果图:

分析: 根据敌机类型区分 敌机 运动逻辑 以及绘制

/**
 * 敌机
 *
 * @author liuml
 * @time 2016-5-31 下午4:14:59
 */
public class Enemy {

  // 敌机的种类标识
  public int type;
  // 苍蝇
  public static final int TYPE_FLY = 1;
  // 鸭子(从左往右运动)
  public static final int TYPE_DUCKL = 2;
  // 鸭子(从右往左运动)
  public static final int TYPE_DUCKR = 3;
  // 敌机图片资源
  public Bitmap bmpEnemy;
  // 敌机坐标
  public int x, y;
  // 敌机每帧的宽高
  public int frameW, frameH;
  // 敌机当前帧下标
  private int frameIndex;
  // 敌机的移动速度
  private int speed;;
  // 判断敌机是否已经出屏
  public boolean isDead;

  // 敌机的构造函数
  public Enemy(Bitmap bmpEnemy, int enemyType, int x, int y) {
    this.bmpEnemy = bmpEnemy;
    frameW = bmpEnemy.getWidth() / 10;
    frameH = bmpEnemy.getHeight();
    this.type = enemyType;
    this.x = x;
    this.y = y;
    // 不同种类的敌机血量不同
    switch (type) {
    // 苍蝇
    case TYPE_FLY:
      speed = 25;
      break;
    // 鸭子
    case TYPE_DUCKL:
      speed = 3;
      break;
    case TYPE_DUCKR:
      speed = 3;
      break;
    }
  }

  // 敌机绘图函数
  public void draw(Canvas canvas, Paint paint) {
    canvas.save();
    canvas.clipRect(x, y, x + frameW, y + frameH);
    canvas.drawBitmap(bmpEnemy, x - frameIndex * frameW, y, paint);
    canvas.restore();
  }

  // 敌机逻辑AI
  public void logic() {
    // 不断循环播放帧形成动画
    frameIndex++;
    if (frameIndex >= 10) {
      frameIndex = 0;
    }
    // 不同种类的敌机拥有不同的AI逻辑
    switch (type) {
    case TYPE_FLY:
      if (isDead == false) {
        // 减速出现,加速返回
        speed -= 1;
        y += speed;
        if (y <= -200) {
          isDead = true;
        }
      }
      break;
    case TYPE_DUCKL:
      if (isDead == false) {
        // 斜右下角运动
        x += speed / 2;
        y += speed;
        if (x > MySurfaceView.screenW) {
          isDead = true;
        }
      }
      break;
    case TYPE_DUCKR:
      if (isDead == false) {
        // 斜左下角运动
        x -= speed / 2;
        y += speed;
        if (x < -50) {
          isDead = true;
        }
      }
      break;
    }
  }

}

在MySurfaceView 中 生成敌机

public class MySurfaceView extends SurfaceView implements Callback, Runnable {
  private SurfaceHolder sfh;
  private Paint paint;
  private Thread th;
  private boolean flag;
  private Canvas canvas;

  // 1 定义游戏状态常量
  public static final int GAME_MENU = 0;// 游戏菜单
  public static final int GAMEING = 1;// 游戏中
  public static final int GAME_WIN = 2;// 游戏胜利
  public static final int GAME_LOST = 3;// 游戏失败
  public static final int GAME_PAUSE = -1;// 游戏菜单
  // 当前游戏状态(默认初始在游戏菜单界面)
  public static int gameState = GAME_MENU;
  // 声明一个Resources实例便于加载图片
  private Resources res = this.getResources();
  // 声明游戏需要用到的图片资源(图片声明)
  private Bitmap bmpBackGround;// 游戏背景
  private Bitmap bmpBoom;// 爆炸效果
  private Bitmap bmpBoosBoom;// Boos爆炸效果
  private Bitmap bmpButton;// 游戏开始按钮
  private Bitmap bmpButtonPress;// 游戏开始按钮被点击
  private Bitmap bmpEnemyDuck;// 怪物鸭子
  private Bitmap bmpEnemyFly;// 怪物苍蝇
  private Bitmap bmpEnemyBoos;// 怪物猪头Boos
  private Bitmap bmpGameWin;// 游戏胜利背景
  private Bitmap bmpGameLost;// 游戏失败背景
  private Bitmap bmpPlayer;// 游戏主角飞机
  private Bitmap bmpPlayerHp;// 主角飞机血量
  private Bitmap bmpMenu;// 菜单背景
  public static Bitmap bmpBullet;// 子弹
  public static Bitmap bmpEnemyBullet;// 敌机子弹
  public static Bitmap bmpBossBullet;// Boss子弹
  public static int screenW;
  public static int screenH;

  // 声明一个敌机容器
  private Vector<Enemy> vcEnemy;
  // 每次生成敌机的时间(毫秒)
  private int createEnemyTime = 50;
  private int count;// 计数器
  // 敌人数组:1和2表示敌机的种类,-1表示Boss
  // 二维数组的每一维都是一组怪物
  private int enemyArray[][] = { { 1, 2 }, { 1, 1 }, { 1, 3, 1, 2 },
      { 1, 2 }, { 2, 3 }, { 3, 1, 3 }, { 2, 2 }, { 1, 2 }, { 2, 2 },
      { 1, 3, 1, 1 }, { 2, 1 }, { 1, 3 }, { 2, 1 }, { -1 } };
  // 当前取出一维数组的下标
  private int enemyArrayIndex;
  // 是否出现Boss标识位
  private boolean isBoss;
  // 随机库,为创建的敌机赋予随即坐标
  private Random random;

  //
  private GameMenu gameMenu;
  private GameBg gameBg;

  private Player player;

  /**
   * SurfaceView初始化函数
   */
  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视图创建,响应此函数
   */
  @Override
  public void surfaceCreated(SurfaceHolder holder) {
    screenW = this.getWidth();
    screenH = this.getHeight();
    initGame();
    flag = true;
    // 实例线程
    th = new Thread(this);
    // 启动线程
    th.start();
  }

  /**
   * 加载游戏资源
   */
  private void initGame() {
    // 加载游戏资源
    bmpBackGround = BitmapFactory
        .decodeResource(res, R.drawable.background);
    bmpBoom = BitmapFactory.decodeResource(res, R.drawable.boom);
    bmpBoosBoom = BitmapFactory.decodeResource(res, R.drawable.boos_boom);
    bmpButton = BitmapFactory.decodeResource(res, R.drawable.button);
    bmpButtonPress = BitmapFactory.decodeResource(res,
        R.drawable.button_press);
    bmpEnemyDuck = BitmapFactory.decodeResource(res, R.drawable.enemy_duck);
    bmpEnemyFly = BitmapFactory.decodeResource(res, R.drawable.enemy_fly);
    bmpEnemyBoos = BitmapFactory.decodeResource(res, R.drawable.enemy_pig);
    bmpGameWin = BitmapFactory.decodeResource(res, R.drawable.gamewin);
    bmpGameLost = BitmapFactory.decodeResource(res, R.drawable.gamelost);
    bmpPlayer = BitmapFactory.decodeResource(res, R.drawable.player);
    bmpPlayerHp = BitmapFactory.decodeResource(res, R.drawable.hp);
    bmpMenu = BitmapFactory.decodeResource(res, R.drawable.menu);
    bmpBullet = BitmapFactory.decodeResource(res, R.drawable.bullet);
    bmpEnemyBullet = BitmapFactory.decodeResource(res,
        R.drawable.bullet_enemy);
    bmpBossBullet = BitmapFactory
        .decodeResource(res, R.drawable.boosbullet);

    // 菜单类实例化
    gameMenu = new GameMenu(bmpMenu, bmpButton, bmpButtonPress);
    // 实例游戏背景
    gameBg = new GameBg(bmpBackGround);
    // 实例主角
    player = new Player(bmpPlayer, bmpPlayerHp);

    // 实例敌机容器
    vcEnemy = new Vector<Enemy>();
    // 实例随机库
    random = new Random();
  }

  /**
   * 游戏绘图
   */
  public void myDraw() {
    try {
      canvas = sfh.lockCanvas();
      if (canvas != null) {
        canvas.drawColor(Color.WHITE);
        // 绘图函数根据游戏状态不同进行不同绘制

        switch (gameState) {
        case GAME_MENU:

          gameMenu.draw(canvas, paint);
          break;
        case GAMEING:
          gameBg.draw(canvas, paint);
          player.draw(canvas, paint);
          if (isBoss == false) {
            // 敌机绘制
            for (int i = 0; i < vcEnemy.size(); i++) {
              vcEnemy.elementAt(i).draw(canvas, paint);
            }

          } else {
            // boss 绘制
          }
          break;

        case GAME_WIN:

          break;
        case GAME_LOST:

          break;
        case GAME_PAUSE:

          break;
        default:
          break;
        }

      }
    } catch (Exception e) {
      // TODO: handle exception
    } finally {
      if (canvas != null)
        sfh.unlockCanvasAndPost(canvas);
    }
  }

  /**
   * 触屏事件监听
   */
  @Override
  public boolean onTouchEvent(MotionEvent event) {
    switch (gameState) {
    case GAME_MENU:

      gameMenu.onTouchEvent(event);
      break;
    case GAMEING:

      break;

    case GAME_WIN:

      break;
    case GAME_LOST:

      break;
    case GAME_PAUSE:

      break;
    }
    return true;
  }

  /**
   * 按键事件监听
   */
  @Override
  public boolean onKeyDown(int keyCode, KeyEvent event) {
    switch (gameState) {
    case GAME_MENU:

      break;
    case GAMEING:
      player.onKeyDown(keyCode, event);
      break;

    case GAME_WIN:

      break;
    case GAME_LOST:

      break;
    case GAME_PAUSE:
      break;
    }
    return super.onKeyDown(keyCode, event);
  }

  @Override
  public boolean onKeyUp(int keyCode, KeyEvent event) {
    switch (gameState) {
    case GAME_MENU:

      break;
    case GAMEING:
      player.onKeyUp(keyCode, event);
      break;

    case GAME_WIN:

      break;
    case GAME_LOST:

      break;
    case GAME_PAUSE:
      break;
    }
    return super.onKeyUp(keyCode, event);
  }

  /**
   * 游戏逻辑
   */
  private void logic() {
    switch (gameState) {
    case GAME_MENU:

      break;
    case GAMEING:
      gameBg.logic();
      player.logic();
      // 敌机逻辑
      if (isBoss == false) {
        // 敌机逻辑
        for (int i = 0; i < vcEnemy.size(); i++) {
          Enemy en = vcEnemy.elementAt(i);
          // 因为容器不断添加敌机 ,那么对敌机isDead判定,
          // 如果已死亡那么就从容器中删除,对容器起到了优化作用;
          if (en.isDead) {
            vcEnemy.removeElementAt(i);
          } else {
            en.logic();
          }
        }
        // 生成敌机
        count++;
        if (count % createEnemyTime == 0) {
          for (int i = 0; i < enemyArray[enemyArrayIndex].length; i++) {
            // 苍蝇
            if (enemyArray[enemyArrayIndex][i] == 1) {
              int x = random.nextInt(screenW - 100) + 50;
              vcEnemy.addElement(new Enemy(bmpEnemyFly, 1, x, -50));
              // 鸭子左
            } else if (enemyArray[enemyArrayIndex][i] == 2) {
              int y = random.nextInt(20);
              vcEnemy.addElement(new Enemy(bmpEnemyDuck, 2, -50,
                  y));
              // 鸭子右
            } else if (enemyArray[enemyArrayIndex][i] == 3) {
              int y = random.nextInt(20);
              vcEnemy.addElement(new Enemy(bmpEnemyDuck, 3,
                  screenW + 50, y));
            }
          }
          // 这里判断下一组是否为最后一组(Boss)
          if (enemyArrayIndex == enemyArray.length - 1) {
            isBoss = true;
          } else {
            enemyArrayIndex++;
          }
        }
      }
      break;

    case GAME_WIN:

      break;
    case GAME_LOST:

      break;
    case GAME_PAUSE:
      break;
    }

  }

  @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视图状态发生改变,响应此函数
   */
  @Override
  public void surfaceChanged(SurfaceHolder holder, int format, int width,
      int height) {
  }

  /**
   * SurfaceView视图消亡时,响应此函数
   */
  @Override
  public void surfaceDestroyed(SurfaceHolder holder) {
    flag = false;
  }
}

碰撞检测
修改Player类

package com.gsf;

import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.view.KeyEvent;

public class Player {

  private int playerHp = 3;

  private Bitmap bmpPlayerHP;
  // 主角坐标以及位图
  private int x, y;
  private Bitmap bmpPlayer;
  // 主角移动速度

  private int speed = 5;
  // 主角移动标识
  private boolean isUp, isDown, isLeft, isRight;

  // 主角的构造函数
  public Player(Bitmap bmpPlayer, Bitmap bmpPlayerHp) {
    this.bmpPlayer = bmpPlayer;
    this.bmpPlayerHP = bmpPlayerHp;
    // 飞机初始位置
    x = MySurfaceView.screenW / 2 - bmpPlayer.getWidth() / 2;
    y = MySurfaceView.screenH - bmpPlayer.getHeight();
  }

  // 主角游戏绘制方法
  public void draw(Canvas canvas, Paint paint) {

    // 绘制主角
    canvas.drawBitmap(bmpPlayer, x, y, paint);
    // 绘制血量

    for (int i = 0; i < playerHp; i++) {
      canvas.drawBitmap(bmpPlayerHP, i * bmpPlayerHP.getWidth(),
          MySurfaceView.screenH - bmpPlayerHP.getHeight(), paint);
    }

  }

  /**
   * 按键事件监听
   */
  public void onKeyDown(int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_DPAD_UP) {
      isUp = true;
    }
    if (keyCode == KeyEvent.KEYCODE_DPAD_DOWN) {
      isDown = true;
    }
    if (keyCode == KeyEvent.KEYCODE_DPAD_LEFT) {
      isLeft = true;
    }
    if (keyCode == KeyEvent.KEYCODE_DPAD_RIGHT) {
      isRight = true;
    }
  }

  public void onKeyUp(int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_DPAD_UP) {
      isUp = false;
    }
    if (keyCode == KeyEvent.KEYCODE_DPAD_DOWN) {
      isDown = false;
    }
    if (keyCode == KeyEvent.KEYCODE_DPAD_LEFT) {
      isLeft = false;
    }
    if (keyCode == KeyEvent.KEYCODE_DPAD_RIGHT) {
      isRight = false;
    }
  }

  /**
   * 游戏逻辑
   */
  public void logic() {
    if (isUp) {
      y -= speed;
    }
    if (isDown) {
      y += speed;
    }
    if (isLeft) {
      x -= speed;
    }
    if (isRight) {
      x += speed;
    }
    // 判断屏幕X边界
    if (x + bmpPlayer.getWidth() >= MySurfaceView.screenW) {
      x = MySurfaceView.screenW - bmpPlayer.getWidth();
    } else if (x <= 0) {
      x = 0;
    }
    // 判断屏幕Y边界
    if (y + bmpPlayer.getHeight() >= MySurfaceView.screenH) {
      y = MySurfaceView.screenH - bmpPlayer.getHeight();
    } else if (y <= 0) {
      y = 0;
    }

  }

  //设置主角血量
  public void setPlayerHp(int hp) {
    this.playerHp = hp;
  }

  //获取主角血量
  public int getPlayerHp() {
    return playerHp;
  }

  //判断碰撞(敌机与主角子弹碰撞)
  public boolean isCollsionWith(Enemy bullet) {
      int x2 = bullet.x;
      int y2 = bullet.y;
      int w2 = bullet.frameW;
      int h2 = bullet.frameH;
      if (x >= x2 && x >= x2 + w2) {
        return false;
      } else if (x <= x2 && x + bmpPlayer.getWidth() <= x2) {
        return false;
      } else if (y >= y2 && y >= y2 + h2) {
        return false;
      } else if (y <= y2 && y + bmpPlayer.getHeight() <= y2) {
        return false;
      }
      //发生碰撞,让其死亡
      //isDead = true;
      return true;
    }

}

在MySurface中 加上碰撞逻辑

  /**
   * 游戏逻辑
   */
  private void logic() {
    switch (gameState) {
    case GAME_MENU:

      break;
    case GAMEING:
      gameBg.logic();
      player.logic();
      // 敌机逻辑
      if (isBoss == false) {
        // 敌机逻辑
        for (int i = 0; i < vcEnemy.size(); i++) {
          Enemy en = vcEnemy.elementAt(i);
          // 因为容器不断添加敌机 ,那么对敌机isDead判定,
          // 如果已死亡那么就从容器中删除,对容器起到了优化作用;
          if (en.isDead) {
            vcEnemy.removeElementAt(i);
          } else {
            en.logic();
          }
        }
        // 生成敌机
        count++;
        if (count % createEnemyTime == 0) {
          for (int i = 0; i < enemyArray[enemyArrayIndex].length; i++) {
            // 苍蝇
            if (enemyArray[enemyArrayIndex][i] == 1) {
              int x = random.nextInt(screenW - 100) + 50;
              vcEnemy.addElement(new Enemy(bmpEnemyFly, 1, x, -50));
              // 鸭子左
            } else if (enemyArray[enemyArrayIndex][i] == 2) {
              int y = random.nextInt(20);
              vcEnemy.addElement(new Enemy(bmpEnemyDuck, 2, -50,
                  y));
              // 鸭子右
            } else if (enemyArray[enemyArrayIndex][i] == 3) {
              int y = random.nextInt(20);
              vcEnemy.addElement(new Enemy(bmpEnemyDuck, 3,
                  screenW + 50, y));
            }
          }
          // 这里判断下一组是否为最后一组(Boss)
          if (enemyArrayIndex == enemyArray.length - 1) {
            isBoss = true;
          } else {
            enemyArrayIndex++;
          }
        }
        //处理敌机与主角的碰撞
        for (int i = 0; i < vcEnemy.size(); i++) {
          if (player.isCollsionWith(vcEnemy.elementAt(i))) {
            //发生碰撞,主角血量-1
            player.setPlayerHp(player.getPlayerHp() - 1);
            //当主角血量小于0,判定游戏失败
            if (player.getPlayerHp() <= -1) {
              gameState = GAME_LOST;
            }
          }
        }
      }
      break;

// 计时器
  private int noCollisionCount = 0;
  // 因为无敌时间
  private int noCollisionTime = 60;
  // 是否碰撞的标识位
  private boolean isCollision;

//判断碰撞(主角与敌机)
  public boolean isCollsionWith(Enemy en) {
    //是否处于无敌时间
    if (isCollision == false) {
      int x2 = en.x;
      int y2 = en.y;
      int w2 = en.frameW;
      int h2 = en.frameH;
      if (x >= x2 && x >= x2 + w2) {
        return false;
      } else if (x <= x2 && x + bmpPlayer.getWidth() <= x2) {
        return false;
      } else if (y >= y2 && y >= y2 + h2) {
        return false;
      } else if (y <= y2 && y + bmpPlayer.getHeight() <= y2) {
        return false;
      }
      //碰撞即进入无敌状态
      isCollision = true;
      return true;
      //处于无敌状态,无视碰撞
    } else {
      return false;
    }
  }

修改逻辑方法

  /**
   * 游戏逻辑
   */
  public void logic() {
    if (isUp) {
      y -= speed;
    }
    if (isDown) {
      y += speed;
    }
    if (isLeft) {
      x -= speed;
    }
    if (isRight) {
      x += speed;
    }
    // 判断屏幕X边界
    if (x + bmpPlayer.getWidth() >= MySurfaceView.screenW) {
      x = MySurfaceView.screenW - bmpPlayer.getWidth();
    } else if (x <= 0) {
      x = 0;
    }
    // 判断屏幕Y边界
    if (y + bmpPlayer.getHeight() >= MySurfaceView.screenH) {
      y = MySurfaceView.screenH - bmpPlayer.getHeight();
    } else if (y <= 0) {
      y = 0;
    }

    // 处理无敌状态
    if (isCollision) {
      // 计时器开始计时
      noCollisionCount++;
      if (noCollisionCount >= noCollisionTime) {
        // 无敌时间过后,接触无敌状态及初始化计数器
        isCollision = false;
        noCollisionCount = 0;
      }
    }

  }

修改主角的绘制
Player 类

// 主角游戏绘制方法
  public void draw(Canvas canvas, Paint paint) {

    // 绘制主角
    // 当处于无敌时间时,让主角闪烁
    if (isCollision) {
      // 每2次游戏循环,绘制一次主角
      if (noCollisionCount % 2 == 0) {
        canvas.drawBitmap(bmpPlayer, x, y, paint);
      }
    } else {
      canvas.drawBitmap(bmpPlayer, x, y, paint);
    }
    // 绘制血量

    for (int i = 0; i < playerHp; i++) {
      canvas.drawBitmap(bmpPlayerHP, i * bmpPlayerHP.getWidth(),
          MySurfaceView.screenH - bmpPlayerHP.getHeight(), paint);
    }

  }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android实战打飞机游戏之子弹生成与碰撞以及爆炸效果(5)

    Android实战打飞机游戏子弹生成,新建子弹类 public class Bullet { // 子弹图片资源 public Bitmap bmpBullet; // 子弹的坐标 public int bulletX, bulletY; // 子弹的速度 public int speed; // 子弹的种类以及常量 public int bulletType; // 主角的 public static final int BULLET_PLAYER = -1; // 鸭子的 public st

  • Android游戏开发之碰撞检测(矩形碰撞、圆形碰撞、像素碰撞)

    本文为大家分享了Android游戏开发之碰撞检测,供大家参考,具体内容如下 矩形碰撞 原理: 两个矩形位置 的四种情况 不是这四中情况 则碰撞 圆形碰撞 原理: 利用两个圆心之间的距离进行判定.当两个圆心的距离小于半径之和则碰撞. 像素碰撞 原理:不适用 遍历所有像素 检测 太多了 多矩形碰撞 原理:设置多个矩形碰撞检测区域 检测碰撞矩形数组 与另一碰撞矩形数组之间的位置关系. 矩形碰撞 代码: public class MySurfaceView extends SurfaceView imp

  • Android 重力传感器在游戏开发中的应用

    手势操作可以说是智能手机的一种魅力所在,前两节给大家讲解了两种有趣的手势操作,将它们置于游戏当中,大大提升了游戏的可玩性和趣味性.本节将继续介绍智能手机的另一种神奇之处:传感器.    一.何为传感器 所谓传感器就是能够探测如光.热.温度.重力.方向等等的装置.    二.Android提供了哪些传感器 1.加速度传感器(重力传感器) 2.陀螺仪传感器 3.光传感器 4.恒定磁场传感器 5.方向传感器 6.恒定的压力传感器 7.接近传感器 8.温度传感器 今天我们给大家介绍的是游戏开发中最最常见

  • Android开发之经典游戏贪吃蛇

    前言 这款游戏实现的思路和源码参考了Google自带的Snake的例子,其中修改了一些个人认为还不够完善的地方,加入了一些新的功能,比如屏幕上的方向操作盘,暂停按钮,开始按钮,退出按钮.另外,为了稍微增加些用户体验,除了游戏的主界面,本人自己新增了5个界面,分别是登陆界面,菜单界面,背景音乐设置界面,难度设置界面,还有个关于游戏的介绍界面.个人觉得在新手阶段,参考现成的思路和实现方式是难以避免的.重要的是我们需要有自己的理解,读懂代码之后,需要思考代码背后的实现逻辑,形成自己的思维.这样在下次开

  • Android实现消水果游戏代码分享

    消水果游戏大家都玩过吧,今天小编给大家分享实现消水果游戏的代码,废话不多说了,具体代码如下所示: #include "InGameScene.h" #include "PauseLayer.h" #include "ScoreScene.h" #include "AppDelegate.h" extern "C" { void showAds() { } void hideAds() { } } using

  • Android实战打飞机游戏之怪物(敌机)类的实现(4)

    先看看效果图: 分析: 根据敌机类型区分 敌机 运动逻辑 以及绘制 /** * 敌机 * * @author liuml * @time 2016-5-31 下午4:14:59 */ public class Enemy { // 敌机的种类标识 public int type; // 苍蝇 public static final int TYPE_FLY = 1; // 鸭子(从左往右运动) public static final int TYPE_DUCKL = 2; // 鸭子(从右往左运

  • 打飞机游戏终极BOSS Android实战打飞机游戏完结篇

    本文实例为大家分享了打飞机游戏BOSS以及胜利失败页面设计的Android代码,具体内容如下 修改子弹类: public class Bullet { //子弹图片资源 public Bitmap bmpBullet; //子弹的坐标 public int bulletX, bulletY; //子弹的速度 public int speed; //子弹的种类以及常量 public int bulletType; //主角的 public static final int BULLET_PLAYE

  • Android实战打飞机游戏之无限循环的背景图(2)

    首先分析下游戏界面内的元素: 无限滚动的背景图, 可以操作的主角,主角的子弹, 主角的血量,两种怪物(敌机),一个boss, boss的爆炸效果. 先看效果图 1.首先实现无限滚动的背景图 原理: 定义两个位图对象 当第一个位图到末尾是 第二个位图从第一个位图的末尾跟上. public class GameBg { // 游戏背景的图片资源 // 为了循环播放,这里定义两个位图对象, // 其资源引用的是同一张图片 private Bitmap bmpBackGround1; private B

  • Android实战打飞机游戏之菜单页面设计(1)

    本文目标实现控制小飞机的左右移动.躲避子弹.打boss. 本节实现 开始菜单界面 1.首先 资源文件拷过来 2.划分游戏状态 public static final int GAME_MENU = 0;// 游戏菜单 public static final int GAMEING = 1;// 游戏中 public static final int GAME_WIN = 2;// 游戏胜利 public static final int GAME_LOST = 3;// 游戏失败 public

  • Android实战打飞机游戏之实现主角以及主角相关元素(3)

    先看效果图 新建player 类 public class Player { private int playerHp = 3; private Bitmap bmpPlayerHP; // 主角坐标以及位图 private int x, y; private Bitmap bmpPlayer; // 主角移动速度 private int speed = 5; // 主角移动标识 private boolean isUp, isDown, isLeft, isRight; // 主角的构造函数

  • Android实战之Cocos游戏容器搭建

    目录 一.前言 二.准备工作 三.构建cocos游戏.so文件 四.制作自己的游戏容器 五.总结 六.如何使用 一.前言 现在市面上很多app有游戏中心功能,最早的有微信小游戏和QQ小游戏,再后来像bilibili.喜马拉雅.爱奇艺.比心等等应用中也加入了游戏中心模块.本篇文章将介绍如何上手搭建cocos creater游戏容器,先来看看效果: 二.准备工作 安装最新版本CocosDashboard 在Dashborad下载最新版本编辑器 在Android Studio安装NDK,我这里安装的是

  • java实战之飞机大战小游戏(源码加注释)

    一.工程文件 二.Main.java 主函数,实现类 package ui; //主函数实现 public class Main { public static void main(String[] args) { //创建窗体 GameFrame frame = new GameFrame(); //创建面板 GamePanel panel = new GamePanel(frame); //调用开始游戏的方法启动游戏 panel.action(); //将面板加入到窗体中 frame.add

  • Python Pygame实战之飞机大战的实现

    目录 导语 一.环境安装 1)各种素材(图片.字体等) 2)运行环境 二.代码展示 1)文章思路 2)附代码讲解 3)主程序 三.效果展示 总结 导语 三月疫情原因,很多地方都封闭式管理了! 在回家无聊的打酱油,小编今天给大伙带来了一波小游戏——全民左右飞机大战!在这个快熬不下去的日子里,打打飞机消遣闲暇时间,也是蛮惬意的,这几天小编必须全身心投入到飞机大战中来!肝了几天这款小游戏终于面市啦! 这次的游戏操作很简单,就是左右移动飞机,躲避敌人飞机,打落敌机会随机掉落金币,我们 要打击的敌人!每个

  • JavaScript仿微信打飞机游戏

    首先实现微信打飞机游戏,首先会有自己和敌机,采用canvas绘图来生成自己和敌人. 1.生成自己,且可以通过左右键来进行左右移动. //生成自己,且可以左右移动 //控制飞机向右移动的函数 function moveRight(event){ context.clearRect(aligh,100,47,47); //防止飞机移除背景外 if(aligh < 260){ var img = new Image(); img.src = "../images/self.png";

随机推荐