飞道的博客

VUE+Canvas实现雷霆战机打字类小游戏

220人阅读  评论(0)

是的,又是我,在折腾小游戏的路上流连忘返了,之前用vue+canvas实现了一系列简单的小游戏,感兴趣的小伙伴可以戳戳以往的几个帖子:

《VUE实现一个Flappy Bird~~~》

《VUE+Canvas实现上吊火柴人猜单词游戏》

《VUE+Canvas 实现桌面弹球消砖块小游戏》

今天就来实现一个雷霆战机打字游戏,玩法很简单,每一个“敌人”都是一些英文单词,键盘正确打出单词的字母,飞机就会发射一个个子弹消灭“敌人”,每次需要击毙当前“敌人”后才能击毙下一个,一个比手速和单词熟练度的游戏。

首先来看看最终效果图:

emmmmmmmmmmmmm,界面UI做的很简单,先实现基本功能,再考虑高大上的UI吧。

首先依旧是来分析界面组成:

(1)固定在画面底部中间的飞机;

(2)从画面上方随机产生的敌人(单词);

(3)从飞机头部发射出去,直奔敌人而去的子弹;

(4)游戏结束后的分数显示。

这次的游戏和之前的比,运动的部分貌似更多且更复杂了。在flappy bird中,虽然管道是运动的,但是小鸟的x坐标和管道的间隔、宽度始终不变,比较容易计算边界;在弹球消砖块游戏中,木板和砖块都是相对简单或者固定的坐标,只用判定弹球的边界和砖块的触碰面积就行。在雷霆战机消单词游戏中,无论是降落的目标单词,还是飞出去的子弹,都有着各自的运动轨迹,但是子弹又要追寻着目标而去,所以存在着一个实时计算轨道的操作。

万丈高楼平地起,说了那么多,那就从最简单的开始着手吧!

1、固定在画面底部中间的飞机

这个很简单没啥好说的,这里默认飞机宽度高度为40像素单位,然后将飞机画在画面的底部中间:


  
  1. drawPlane() {
  2. let _this = this;
  3. _this.ctx.save();
  4. _this.ctx.drawImage(
  5. _this.planeImg,
  6. _this.clientWidth / 2 - 20,
  7. _this.clientHeight - 20 - 40,
  8. 40,
  9. 40
  10. );
  11. _this.ctx.restore();
  12. },

2、从画面上方随机产生的敌人

这里默认设置每次在画面中最多只出现3个单词靶子,靶子的y轴移动速度为1.3,靶子的半径大小为10:

const _MAX_TARGET = 3; // 画面中一次最多出现的目标

const _TARGET_CONFIG = {

  // 靶子的固定参数

  speed: 1.3,

  radius: 10

};

然后我们一开始要随机在词库数组里取出_MAX_TARGET个不重复的单词,并把剩下的词放进循环词库this.wordsPool中去:


  
  1. generateWord(number) {
  2. // 从池子里随机挑选一个词,不与已显示的词重复
  3. let arr = [];
  4. for ( let i = 0; i < number; i++) {
  5. let random = Math.floor( Math.random() * this.wordsPool.length);
  6. arr.push( this.wordsPool[random]);
  7. this.wordsPool.splice(random, 1);
  8. }
  9. return arr;
  10. },
  11. generateTarget() {
  12. // 随机生成目标
  13. let _this = this;
  14. let length = _this.targetArr.length;
  15. if (length < _MAX_TARGET) {
  16. let txtArr = _this.generateWord(_MAX_TARGET - length);
  17. for ( let i = 0; i < _MAX_TARGET - length; i++) {
  18. _this.targetArr.push({
  19. x: _this.getRandomInt(
  20. _TARGET_CONFIG.radius,
  21. _this.clientWidth - _TARGET_CONFIG.radius
  22. ),
  23. y: _TARGET_CONFIG.radius * 2,
  24. txt: txtArr[i],
  25. typeIndex: -1,
  26. hitIndex: -1,
  27. dx: (_TARGET_CONFIG.speed * Math.random().toFixed( 1)) / 2,
  28. dy: _TARGET_CONFIG.speed * Math.random().toFixed( 1),
  29. rotate: 0
  30. });
  31. }
  32. }
  33. }

可以看出,this.targetArr是存放目标对象的数组:

一个初始的目标有随机分布在画面宽度的x;

y轴值为直径;

txt记录靶子代表的单词;

typeIndex记录“轰炸”这个单词时正在敲击的字符索引下标(用来分离已敲击字符和未敲击字符);

hitIndex记录“轰炸”这个单词时子弹轰炸的索引下标(因为子弹真正轰炸掉目标是在打完单词之后,毕竟子弹有飞行时间,所以通过hitIndex来判断子弹什么时候被击碎消失);

dx是靶子每帧在x轴偏移距离;

dy是靶子每帧在y轴偏移距离;

rotate设置靶子自转角度。

好了,生成了3个靶子,我们就让靶子先从上往下动起来吧:


  
  1. drawTarget() {
  2. // 逐帧画目标
  3. let _this = this;
  4. _this.targetArr.forEach( (item, index) => {
  5. _this.ctx.save();
  6. _this.ctx.translate(item.x, item.y); //设置旋转的中心点
  7. _this.ctx.beginPath();
  8. _this.ctx.font = "14px Arial";
  9. if (
  10. index === _this.currentIndex ||
  11. item.typeIndex === item.txt.length - 1
  12. ) {
  13. _this.drawText(
  14. item.txt.substring( 0, item.typeIndex + 1),
  15. -item.txt.length * 3,
  16. _TARGET_CONFIG.radius * 2,
  17. "gray"
  18. );
  19. let width = _this.ctx.measureText(
  20. item.txt.substring( 0, item.typeIndex + 1)
  21. ).width; // 获取已敲击文字宽度
  22. _this.drawText(
  23. item.txt.substring(item.typeIndex + 1, item.txt.length),
  24. -item.txt.length * 3 + width,
  25. _TARGET_CONFIG.radius * 2,
  26. "red"
  27. );
  28. } else {
  29. _this.drawText(
  30. item.txt,
  31. -item.txt.length * 3,
  32. _TARGET_CONFIG.radius * 2,
  33. "yellow"
  34. );
  35. }
  36. _this.ctx.closePath();
  37. _this.ctx.rotate((item.rotate * Math.PI) / 180);
  38. _this.ctx.drawImage(
  39. _this.targetImg,
  40. -1 * _TARGET_CONFIG.radius,
  41. -1 * _TARGET_CONFIG.radius,
  42. _TARGET_CONFIG.radius * 2,
  43. _TARGET_CONFIG.radius * 2
  44. );
  45. _this.ctx.restore();
  46. item.y += item.dy;
  47. item.x += item.dx;
  48. if (item.x < 0 || item.x > _this.clientWidth) {
  49. item.dx *= -1;
  50. }
  51. if (item.y > _this.clientHeight - _TARGET_CONFIG.radius * 2) {
  52. // 碰到底部了
  53. _this.gameOver = true;
  54. }
  55. // 旋转
  56. item.rotate++;
  57. });
  58. }

这一步画靶子没有什么特别的,随机得增加dx和dy,在碰到左右边缘时反弹。主要一点就是单词的绘制,通过typeIndex将单词一分为二,敲击过的字符置为灰色,然后通过measureText获取到敲击字符的宽度从而设置未敲击字符的x轴偏移量,将未敲击的字符设置为红色,提示玩家这个单词是正在攻击中的目标。

3、从飞机头部发射出去,直奔敌人而去的子弹

子弹是这个游戏的关键部分,在绘制子弹的时候要考虑哪些方面呢?

(1)目标一直是运动的,发射出去的子弹要一直“追踪”目标,所以路径是动态变化的;

(2)一个目标需要被若干个子弹消灭掉,所以什么时候子弹才从画面中抹去;

(3)当一个目标单词被敲击完了后,下一批子弹就要朝向下一个目标射击,所以子弹的路径是单独的;

(4)如何绘制出子弹的拖尾效果;

(5)如果锁定正在敲击的目标单词,使玩家敲完当前单词才能去击破下一个单词

这里先设置几个变量:

bulletArr: [], // 存放子弹对象

currentIndex: -1  //当前锁定的目标在targetArr中的索引

首先我们先来写一下键盘按下时要触发的函数:


  
  1. handleKeyPress(key) {
  2. // 键盘按下,判断当前目标
  3. let _this = this;
  4. if (_this.currentIndex === -1) {
  5. // 当前没有在射击的目标
  6. let index = _this.targetArr.findIndex( item => {
  7. return item.txt.indexOf(key) === 0;
  8. });
  9. if (index !== -1) {
  10. _this.currentIndex = index;
  11. _this.targetArr[index].typeIndex = 0;
  12. _this.createBullet(index);
  13. }
  14. } else {
  15. // 已有目标正在被射击
  16. if (
  17. key ===
  18. _this.targetArr[_this.currentIndex].txt.split( "")[
  19. _this.targetArr[_this.currentIndex].typeIndex + 1
  20. ]
  21. ) {
  22. // 获取到目标对象
  23. _this.targetArr[_this.currentIndex].typeIndex++;
  24. _this.createBullet(_this.currentIndex);
  25. if (
  26. _this.targetArr[_this.currentIndex].typeIndex ===
  27. _this.targetArr[_this.currentIndex].txt.length - 1
  28. ) {
  29. // 这个目标已经别射击完毕
  30. _this.currentIndex = -1;
  31. }
  32. }
  33. }
  34. },
  35. // 发射一个子弹
  36. createBullet(index) {
  37. let _this = this;
  38. this.bulletArr.push({
  39. dx: 1,
  40. dy: 4,
  41. x: _this.clientWidth / 2,
  42. y: _this.clientHeight - 60,
  43. targetIndex: index
  44. });
  45. }

这个函数做的事情很明确,拿到当前键盘按下的字符,如果currentIndex ===-1,证明没有正在被攻击的靶子,所以就去靶子数组里看,哪个单词的首字母等于该字符,则设置currentIndex为该单词的索引,并发射一个子弹;如果已经有正在被攻击的靶子,则看还未敲击的单词的第一个字符是否符合,若符合,则增加该靶子对象的typeIndex,并发射一个子弹,若当前靶子已敲击完毕,则重置currentIndex为-1。

接下来就是画子弹咯:


  
  1. drawBullet() {
  2. // 逐帧画子弹
  3. let _this = this;
  4. // 判断子弹是否已经击中目标
  5. if (_this.bulletArr.length === 0) {
  6. return;
  7. }
  8. _this.bulletArr = _this.bulletArr.filter(_this.firedTarget);
  9. _this.bulletArr.forEach( item => {
  10. let targetX = _this.targetArr[item.targetIndex].x;
  11. let targetY = _this.targetArr[item.targetIndex].y;
  12. let k =
  13. (_this.clientHeight - 60 - targetY) /
  14. (_this.clientWidth / 2 - targetX); // 飞机头和目标的斜率
  15. let b = targetY - k * targetX; // 常量b
  16. item.y = item.y - bullet.dy; // y轴偏移一个单位
  17. item.x = (item.y - b) / k;
  18. for ( let i = 0; i < 15; i++) {
  19. // 画出拖尾效果
  20. _this.ctx.beginPath();
  21. _this.ctx.arc(
  22. (item.y + i * 1.8 - b) / k,
  23. item.y + i * 1.8,
  24. 4 - 0.2 * i,
  25. 0,
  26. 2 * Math.PI
  27. );
  28. _this.ctx.fillStyle = `rgba(193,255,255,${1 - 0.08 * i})`;
  29. _this.ctx.fill();
  30. _this.ctx.closePath();
  31. }
  32. });
  33. },
  34. firedTarget(item) {
  35. // 判断是否击中目标
  36. let _this = this;
  37. if (
  38. item.x > _this.targetArr[item.targetIndex].x - _TARGET_CONFIG.radius &&
  39. item.x < _this.targetArr[item.targetIndex].x + _TARGET_CONFIG.radius &&
  40. item.y > _this.targetArr[item.targetIndex].y - _TARGET_CONFIG.radius &&
  41. item.y < _this.targetArr[item.targetIndex].y + _TARGET_CONFIG.radius
  42. ) {
  43. // 子弹击中了目标
  44. let arrIndex = item.targetIndex;
  45. _this.targetArr[arrIndex].hitIndex++;
  46. if (
  47. _this.targetArr[arrIndex].txt.length - 1 ===
  48. _this.targetArr[arrIndex].hitIndex
  49. ) {
  50. // 所有子弹全部击中了目标
  51. let word = _this.targetArr[arrIndex].txt;
  52. _this.targetArr[arrIndex] = {
  53. // 生成新的目标
  54. x: _this.getRandomInt(
  55. _TARGET_CONFIG.radius,
  56. _this.clientWidth - _TARGET_CONFIG.radius
  57. ),
  58. y: _TARGET_CONFIG.radius * 2,
  59. txt: _this.generateWord( 1)[ 0],
  60. typeIndex: -1,
  61. hitIndex: -1,
  62. dx: (_TARGET_CONFIG.speed * Math.random().toFixed( 1)) / 2,
  63. dy: _TARGET_CONFIG.speed * Math.random().toFixed( 1),
  64. rotate: 0
  65. };
  66. _this.wordsPool.push(word); // 被击中的目标词重回池子里
  67. _this.score++;
  68. }
  69. return false;
  70. } else {
  71. return true;
  72. }
  73. }

其实也很简单,我们在子弹对象中用targetIndex来记录该子弹所攻击的目标索引,然后就是一个y = kx+b的解方程得到飞机头部(子弹出发点)和靶子的轨道函数,计算出每一帧下每个子弹的移动坐标,就可以画出子弹了;

拖尾效果就是沿轨道y轴增长方向画出若干个透明度和半径逐渐变小的圆,就能实现拖尾效果了;

在firedTarget()函数中,用来过滤出已击中靶子的子弹,为了不影响还在被攻击的其他靶子在targetArr中的索引,不用splice删除,而是直接重置被消灭靶子的值,从wordPool中选出新的词,并把当前击碎的词重新丢回池子里,从而保证画面中不会出现重复的靶子。

4、游戏结束后的得分文字效果

游戏结束就是有目标靶子触碰到了底部就结束了。

这里其实是个彩蛋了,怎么样可以用canvas画出这种闪烁且有光晕的文字呢?切换颜色并且叠buff就行了,不是,叠轮廓stroke就行了


  
  1. drawGameOver() {
  2. let _this = this;
  3. //保存上下文对象的状态
  4. _this.ctx.save();
  5. _this.ctx.font = "34px Arial";
  6. _this.ctx.strokeStyle = _this.colors[ 0];
  7. _this.ctx.lineWidth = 2;
  8. //光晕
  9. _this.ctx.shadowColor = "#FFFFE0";
  10. let txt = "游戏结束,得分:" + _this.score;
  11. let width = _this.ctx.measureText(txt).width;
  12. for ( let i = 60; i > 3; i -= 2) {
  13. _this.ctx.shadowBlur = i;
  14. _this.ctx.strokeText(txt, _this.clientWidth / 2 - width / 2, 300);
  15. }
  16. _this.ctx.restore();
  17. _this.colors.reverse();
  18. }

好了好了,做到这里就是个还算完整的小游戏了,只是UI略显粗糙,如果想做到真正雷霆战机那么酷炫带爆炸的效果那还需要很多素材和canvas的绘制。

canvas很强大很好玩,只要脑洞够大,这张画布上你想画啥就可以画啥~

老规矩,po上vue的完整代码供大家参考学习:


  
  1. <template>
  2. <div class="type-game">
  3. <canvas id="type" width="400" height="600"> </canvas>
  4. </div>
  5. </template>
  6. <script>
  7. const _MAX_TARGET = 3; // 画面中一次最多出现的目标
  8. const _TARGET_CONFIG = {
  9. // 靶子的固定参数
  10. speed: 1.3,
  11. radius: 10
  12. };
  13. const _DICTIONARY = [ "apple", "orange", "blue", "green", "red", "current"];
  14. export default {
  15. name: "TypeGame",
  16. data() {
  17. return {
  18. ctx: null,
  19. clientWidth: 0,
  20. clientHeight: 0,
  21. bulletArr: [], // 屏幕中的子弹
  22. targetArr: [], // 存放当前目标
  23. targetImg: null,
  24. planeImg: null,
  25. currentIndex: -1,
  26. wordsPool: [],
  27. score: 0,
  28. gameOver: false,
  29. colors: [ "#FFFF00", "#FF6666"]
  30. };
  31. },
  32. mounted() {
  33. let _this = this;
  34. _this.wordsPool = _DICTIONARY.concat([]);
  35. let container = document.getElementById( "type");
  36. _this.clientWidth = container.width;
  37. _this.clientHeight = container.height;
  38. _this.ctx = container.getContext( "2d");
  39. _this.targetImg = new Image();
  40. _this.targetImg.src = require( "@/assets/img/target.png");
  41. _this.planeImg = new Image();
  42. _this.planeImg.src = require( "@/assets/img/plane.png");
  43. document.onkeydown = function(e) {
  44. let key = window.event.keyCode;
  45. if (key >= 65 && key <= 90) {
  46. _this.handleKeyPress( String.fromCharCode(key).toLowerCase());
  47. }
  48. };
  49. _this.targetImg.onload = function() {
  50. _this.generateTarget();
  51. ( function animloop() {
  52. if (!_this.gameOver) {
  53. _this.drawAll();
  54. } else {
  55. _this.drawGameOver();
  56. }
  57. window.requestAnimationFrame(animloop);
  58. })();
  59. };
  60. },
  61. methods: {
  62. drawGameOver() {
  63. let _this = this;
  64. //保存上下文对象的状态
  65. _this.ctx.save();
  66. _this.ctx.font = "34px Arial";
  67. _this.ctx.strokeStyle = _this.colors[ 0];
  68. _this.ctx.lineWidth = 2;
  69. //光晕
  70. _this.ctx.shadowColor = "#FFFFE0";
  71. let txt = "游戏结束,得分:" + _this.score;
  72. let width = _this.ctx.measureText(txt).width;
  73. for ( let i = 60; i > 3; i -= 2) {
  74. _this.ctx.shadowBlur = i;
  75. _this.ctx.strokeText(txt, _this.clientWidth / 2 - width / 2, 300);
  76. }
  77. _this.ctx.restore();
  78. _this.colors.reverse();
  79. },
  80. drawAll() {
  81. let _this = this;
  82. _this.ctx.clearRect( 0, 0, _this.clientWidth, _this.clientHeight);
  83. _this.drawPlane( 0);
  84. _this.drawBullet();
  85. _this.drawTarget();
  86. _this.drawScore();
  87. },
  88. drawPlane() {
  89. let _this = this;
  90. _this.ctx.save();
  91. _this.ctx.drawImage(
  92. _this.planeImg,
  93. _this.clientWidth / 2 - 20,
  94. _this.clientHeight - 20 - 40,
  95. 40,
  96. 40
  97. );
  98. _this.ctx.restore();
  99. },
  100. generateWord(number) {
  101. // 从池子里随机挑选一个词,不与已显示的词重复
  102. let arr = [];
  103. for ( let i = 0; i < number; i++) {
  104. let random = Math.floor( Math.random() * this.wordsPool.length);
  105. arr.push( this.wordsPool[random]);
  106. this.wordsPool.splice(random, 1);
  107. }
  108. return arr;
  109. },
  110. generateTarget() {
  111. // 随机生成目标
  112. let _this = this;
  113. let length = _this.targetArr.length;
  114. if (length < _MAX_TARGET) {
  115. let txtArr = _this.generateWord(_MAX_TARGET - length);
  116. for ( let i = 0; i < _MAX_TARGET - length; i++) {
  117. _this.targetArr.push({
  118. x: _this.getRandomInt(
  119. _TARGET_CONFIG.radius,
  120. _this.clientWidth - _TARGET_CONFIG.radius
  121. ),
  122. y: _TARGET_CONFIG.radius * 2,
  123. txt: txtArr[i],
  124. typeIndex: -1,
  125. hitIndex: -1,
  126. dx: (_TARGET_CONFIG.speed * Math.random().toFixed( 1)) / 2,
  127. dy: _TARGET_CONFIG.speed * Math.random().toFixed( 1),
  128. rotate: 0
  129. });
  130. }
  131. }
  132. },
  133. getRandomInt(n, m) {
  134. return Math.floor( Math.random() * (m - n + 1)) + n;
  135. },
  136. drawText(txt, x, y, color) {
  137. let _this = this;
  138. _this.ctx.fillStyle = color;
  139. _this.ctx.fillText(txt, x, y);
  140. },
  141. drawScore() {
  142. // 分数
  143. this.drawText( "分数:" + this.score, 10, this.clientHeight - 10, "#fff");
  144. },
  145. drawTarget() {
  146. // 逐帧画目标
  147. let _this = this;
  148. _this.targetArr.forEach( (item, index) => {
  149. _this.ctx.save();
  150. _this.ctx.translate(item.x, item.y); //设置旋转的中心点
  151. _this.ctx.beginPath();
  152. _this.ctx.font = "14px Arial";
  153. if (
  154. index === _this.currentIndex ||
  155. item.typeIndex === item.txt.length - 1
  156. ) {
  157. _this.drawText(
  158. item.txt.substring( 0, item.typeIndex + 1),
  159. -item.txt.length * 3,
  160. _TARGET_CONFIG.radius * 2,
  161. "gray"
  162. );
  163. let width = _this.ctx.measureText(
  164. item.txt.substring( 0, item.typeIndex + 1)
  165. ).width; // 获取已敲击文字宽度
  166. _this.drawText(
  167. item.txt.substring(item.typeIndex + 1, item.txt.length),
  168. -item.txt.length * 3 + width,
  169. _TARGET_CONFIG.radius * 2,
  170. "red"
  171. );
  172. } else {
  173. _this.drawText(
  174. item.txt,
  175. -item.txt.length * 3,
  176. _TARGET_CONFIG.radius * 2,
  177. "yellow"
  178. );
  179. }
  180. _this.ctx.closePath();
  181. _this.ctx.rotate((item.rotate * Math.PI) / 180);
  182. _this.ctx.drawImage(
  183. _this.targetImg,
  184. -1 * _TARGET_CONFIG.radius,
  185. -1 * _TARGET_CONFIG.radius,
  186. _TARGET_CONFIG.radius * 2,
  187. _TARGET_CONFIG.radius * 2
  188. );
  189. _this.ctx.restore();
  190. item.y += item.dy;
  191. item.x += item.dx;
  192. if (item.x < 0 || item.x > _this.clientWidth) {
  193. item.dx *= -1;
  194. }
  195. if (item.y > _this.clientHeight - _TARGET_CONFIG.radius * 2) {
  196. // 碰到底部了
  197. _this.gameOver = true;
  198. }
  199. // 旋转
  200. item.rotate++;
  201. });
  202. },
  203. handleKeyPress(key) {
  204. // 键盘按下,判断当前目标
  205. let _this = this;
  206. if (_this.currentIndex === -1) {
  207. // 当前没有在射击的目标
  208. let index = _this.targetArr.findIndex( item => {
  209. return item.txt.indexOf(key) === 0;
  210. });
  211. if (index !== -1) {
  212. _this.currentIndex = index;
  213. _this.targetArr[index].typeIndex = 0;
  214. _this.createBullet(index);
  215. }
  216. } else {
  217. // 已有目标正在被射击
  218. if (
  219. key ===
  220. _this.targetArr[_this.currentIndex].txt.split( "")[
  221. _this.targetArr[_this.currentIndex].typeIndex + 1
  222. ]
  223. ) {
  224. // 获取到目标对象
  225. _this.targetArr[_this.currentIndex].typeIndex++;
  226. _this.createBullet(_this.currentIndex);
  227. if (
  228. _this.targetArr[_this.currentIndex].typeIndex ===
  229. _this.targetArr[_this.currentIndex].txt.length - 1
  230. ) {
  231. // 这个目标已经别射击完毕
  232. _this.currentIndex = -1;
  233. }
  234. }
  235. }
  236. },
  237. // 发射一个子弹
  238. createBullet(index) {
  239. let _this = this;
  240. this.bulletArr.push({
  241. dx: 1,
  242. dy: 4,
  243. x: _this.clientWidth / 2,
  244. y: _this.clientHeight - 60,
  245. targetIndex: index
  246. });
  247. },
  248. firedTarget(item) {
  249. // 判断是否击中目标
  250. let _this = this;
  251. if (
  252. item.x > _this.targetArr[item.targetIndex].x - _TARGET_CONFIG.radius &&
  253. item.x < _this.targetArr[item.targetIndex].x + _TARGET_CONFIG.radius &&
  254. item.y > _this.targetArr[item.targetIndex].y - _TARGET_CONFIG.radius &&
  255. item.y < _this.targetArr[item.targetIndex].y + _TARGET_CONFIG.radius
  256. ) {
  257. // 子弹击中了目标
  258. let arrIndex = item.targetIndex;
  259. _this.targetArr[arrIndex].hitIndex++;
  260. if (
  261. _this.targetArr[arrIndex].txt.length - 1 ===
  262. _this.targetArr[arrIndex].hitIndex
  263. ) {
  264. // 所有子弹全部击中了目标
  265. let word = _this.targetArr[arrIndex].txt;
  266. _this.targetArr[arrIndex] = {
  267. // 生成新的目标
  268. x: _this.getRandomInt(
  269. _TARGET_CONFIG.radius,
  270. _this.clientWidth - _TARGET_CONFIG.radius
  271. ),
  272. y: _TARGET_CONFIG.radius * 2,
  273. txt: _this.generateWord( 1)[ 0],
  274. typeIndex: -1,
  275. hitIndex: -1,
  276. dx: (_TARGET_CONFIG.speed * Math.random().toFixed( 1)) / 2,
  277. dy: _TARGET_CONFIG.speed * Math.random().toFixed( 1),
  278. rotate: 0
  279. };
  280. _this.wordsPool.push(word); // 被击中的目标词重回池子里
  281. _this.score++;
  282. }
  283. return false;
  284. } else {
  285. return true;
  286. }
  287. },
  288. drawBullet() {
  289. // 逐帧画子弹
  290. let _this = this;
  291. // 判断子弹是否已经击中目标
  292. if (_this.bulletArr.length === 0) {
  293. return;
  294. }
  295. _this.bulletArr = _this.bulletArr.filter(_this.firedTarget);
  296. _this.bulletArr.forEach( item => {
  297. let targetX = _this.targetArr[item.targetIndex].x;
  298. let targetY = _this.targetArr[item.targetIndex].y;
  299. let k =
  300. (_this.clientHeight - 60 - targetY) /
  301. (_this.clientWidth / 2 - targetX); // 飞机头和目标的斜率
  302. let b = targetY - k * targetX; // 常量b
  303. item.y = item.y - 4; // y轴偏移一个单位
  304. item.x = (item.y - b) / k;
  305. for ( let i = 0; i < 15; i++) {
  306. // 画出拖尾效果
  307. _this.ctx.beginPath();
  308. _this.ctx.arc(
  309. (item.y + i * 1.8 - b) / k,
  310. item.y + i * 1.8,
  311. 4 - 0.2 * i,
  312. 0,
  313. 2 * Math.PI
  314. );
  315. _this.ctx.fillStyle = `rgba(193,255,255,${1 - 0.08 * i})`;
  316. _this.ctx.fill();
  317. _this.ctx.closePath();
  318. }
  319. });
  320. }
  321. }
  322. };
  323. </script>
  324. <!-- Add "scoped" attribute to limit CSS to this component only -->
  325. <style scoped lang="scss">
  326. .type-game {
  327. #type {
  328. background: #2a4546;
  329. }
  330. }
  331. </style>

 


转载:https://blog.csdn.net/denglouhen/article/details/115629918
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场