热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

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

这篇文章主要为大家详细介绍了Android实战打飞机游戏之怪物(敌机)类的实现,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

先看看效果图:

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

/**
 * 敌机
 * 
 * @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 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();
    // 实例随机库
    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 

碰撞检测
修改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 = 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 

// 计时器
  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 

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


推荐阅读
  • Android 九宫格布局详解及实现:人人网应用示例
    本文深入探讨了人人网Android应用中独特的九宫格布局设计,解析其背后的GridView实现原理,并提供详细的代码示例。这种布局方式不仅美观大方,而且在现代Android应用中较为少见,值得开发者借鉴。 ... [详细]
  • 深入解析Android自定义View面试题
    本文探讨了Android Launcher开发中自定义View的重要性,并通过一道经典的面试题,帮助开发者更好地理解自定义View的实现细节。文章不仅涵盖了基础知识,还提供了实际操作建议。 ... [详细]
  • 本文介绍如何在 Android 中通过代码模拟用户的点击和滑动操作,包括参数说明、事件生成及处理逻辑。详细解析了视图(View)对象、坐标偏移量以及不同类型的滑动方式。 ... [详细]
  • 深入理解OAuth认证机制
    本文介绍了OAuth认证协议的核心概念及其工作原理。OAuth是一种开放标准,旨在为第三方应用提供安全的用户资源访问授权,同时确保用户的账户信息(如用户名和密码)不会暴露给第三方。 ... [详细]
  • 2023 ARM嵌入式系统全国技术巡讲旨在分享ARM公司在半导体知识产权(IP)领域的最新进展。作为全球领先的IP提供商,ARM在嵌入式处理器市场占据主导地位,其产品广泛应用于90%以上的嵌入式设备中。此次巡讲将邀请来自ARM、飞思卡尔以及华清远见教育集团的行业专家,共同探讨当前嵌入式系统的前沿技术和应用。 ... [详细]
  • 国内BI工具迎战国际巨头Tableau,稳步崛起
    尽管商业智能(BI)工具在中国的普及程度尚不及国际市场,但近年来,随着本土企业的持续创新和市场推广,国内主流BI工具正逐渐崭露头角。面对国际品牌如Tableau的强大竞争,国内BI工具通过不断优化产品和技术,赢得了越来越多用户的认可。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文详细介绍如何使用arm-eabi-gdb调试Android平台上的C/C++程序。通过具体步骤和实用技巧,帮助开发者更高效地进行调试工作。 ... [详细]
  • 深入理解 Oracle 存储函数:计算员工年收入
    本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]
  • 本文总结了2018年的关键成就,包括职业变动、购车、考取驾照等重要事件,并分享了读书、工作、家庭和朋友方面的感悟。同时,展望2019年,制定了健康、软实力提升和技术学习的具体目标。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • Linux 系统启动故障排除指南:MBR 和 GRUB 问题
    本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]
  • 本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
author-avatar
个信2602926933
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有