vue+canvas实现拼图小游戏

利用 vue+canvas 实现拼图小游戏,供大家参考,具体内容如下

思路步骤

  • 一个拼图拼盘和一个原图参照
  • 对原图的切割以及随机排序
  • 通过W/A/D/S或上下左右进行移动
  • 难度的自主选择
  • 对拼图是否完成的判定

JS实现部分

数据分析

  • row:拼图的总行数;column:拼图的总列数。 (用来设置拼图难度,也是每个拼图块宽高的设置规则)
  • pic[{x,y,row,column,index}]:小拼图的集合,其内元素为小拼图的数据结构。 (x、y:拼图块在canvas的绘制规则,初始化后不会进行改变;row、column:对原图进行切割并绘制的规则;index:用来判定是否完成拼图的规则之一,绘制空白块的规则,其中空白块的index=-1)
  • num:随机排列的次数。
  • sign:空白块在拼图集合 pic 中的索引。 (数字类型,用来定位空白块,跟随空白块的移动而变化,是进行移动的规则之一;默认为:15)
  • isWin:用来判断是否完成拼图的条件。 (布尔类型,默认为false)
  • step:表示移动的有效步数。 (数字类型,默认为0,重新游戏及完成游戏会清零)
  • maskShow: 编辑游戏 的判定条件。 (布尔类型,用来显示与隐藏编辑游戏的对话框,默认为false)

方法分析

拼图集合 pic 的初始化及随机排列

randomHandler() {
  // pic的初始化
  for(let i=0;i<this.row*this.column;i++) {
  // 设置切割后每个小图片的位置
  let row = parseInt(i/this.row);
  let column = i - row*this.column;
  // 对在canvas的排列进行初始化,后续不会进行改变
  let x = parseInt(i/this.row);
  let y = i - x*this.column;
  this.pic[i] = {...this.pic[i],x:x,y:y,row:row,column:column,index:i};
  // 设置最后一个元素为空白块,index = -1
  if(i == (this.row*this.column-1)) {
   this.pic[i] = {...this.pic[i],row:row,column:column,index:-1};
  }
  }
  // 随机排列 pic集合
  for(let i=0;i<this.num;i++) {
  let ran1,ran2,temp={};
  // 随机获取0-14
  ran1 = parseInt((this.row*this.column-1)*Math.random())
  ran2 = parseInt((this.row*this.column-1)*Math.random())
  temp.row = this.pic[ran1].row
  temp.column = this.pic[ran1].column
  this.pic[ran1] = {...this.pic[ran1],row:this.pic[ran2].row,column:this.pic[ran2].column}
  this.pic[ran2] = {...this.pic[ran2],...temp}
  }
}

拼图的绘制 (根据得到的随机 pic 集合进行绘制)

drawHandler() {
  // 获取 canvas DOM元素
  let canvas = this.$refs.can;
  let ctx = canvas.getContext('2d');
  canvas.width = 400;
  canvas.height = 400;
  ctx.clearRect(0,0,400,400);
  // 每个小拼图的宽高,根据canvas的宽高和拼图行数row列数column来动态设置
  // 是进行难度动态设置的唯一方式
  let width = canvas.width/this.column;
  let height = canvas.width/this.row;
  // 必须通过 Image 构造函数动态创建,若是通过获取 DOM 节点,则onload只执行一次,无法进行移动
  let img = new Image();
  img.src = require('../../public/image/test.png');
  img.onload = () => {
  for(let i=0;i<this.row*this.column;i++) {
   // 绘制到canvas的各元素的起始坐标
   let dx = this.pic[i].y * width;
   let dy = this.pic[i].x * height;
   // 对图片进行切割的起始点坐标
   let cx = this.pic[i].column * width;
   let cy = this.pic[i].row * height;
   // 参数:img图片,切割的起始点坐标,切割的宽高,绘制的起始点坐标,绘制的宽高
   ctx.drawImage(img,cx,cy,width,height,dx,dy,width,height);
   if(this.pic[i].index == -1) {
   this.sign = i;
   ctx.clearRect(dx,dy,width,height);
   }
  }
  }
}

其中 img 必须通过 Image 构造函数动态创建

拼图的移动

// 在 mounted 钩子进行键盘的监听事件
mounted() {
 this.newGame();
 document.onkeydown = (event) => {
  let key = event.keyCode;
  if(key==38 || key==87) this.moveHandler('up');
  else if (key==40 || key==83 ) this.moveHandler('down');
  else if (key==37 || key==65 ) this.moveHandler('left');
  else if (key==39 || key==68 ) this.moveHandler('right');
 }
 }
methods: {
 moveHandler(dir) {
  // re:空白块根据方向最终需移动到的位置索引
  let re,temp = {};
  if(dir == 'up' && this.pic[this.sign].x>0) {
  // 根据空白块的row和column推算出上面一块图片的序号
  // 在将两个图片快进行互换位置,及交换row、column、index
  // 重新赋值this.sign(标志着空白块的序号:默认15)
  re = (this.pic[this.sign].x-1) * this.row + this.pic[this.sign].y;
  temp.row = this.pic[re].row;
  temp.column = this.pic[re].column;
  temp.index = this.pic[re].index;
  this.pic[re] = {...this.pic[re],row:this.pic[this.sign].row,column:this.pic[this.sign].column,index:this.pic[this.sign].index};
  this.pic[this.sign] = {...this.pic[this.sign],...temp};
  this.step = this.step + 1;
  }
  else if(dir == 'down' && this.pic[this.sign].x<this.row-1) {
  re = (this.pic[this.sign].x+1) * this.row + this.pic[this.sign].y;
  temp.row = this.pic[re].row;
  temp.column = this.pic[re].column;
  temp.index = this.pic[re].index;
  this.pic[re] = {...this.pic[re],row:this.pic[this.sign].row,column:this.pic[this.sign].column,index:this.pic[this.sign].index};
  this.pic[this.sign] = {...this.pic[this.sign],...temp};
  this.step = this.step + 1;
  }
  else if(dir == 'left' && this.pic[this.sign].y>0) {
  re = (this.pic[this.sign].x) * this.row + this.pic[this.sign].y-1;
  temp.row = this.pic[re].row;
  temp.column = this.pic[re].column;
  temp.index = this.pic[re].index;
  this.pic[re] = {...this.pic[re],row:this.pic[this.sign].row,column:this.pic[this.sign].column,index:this.pic[this.sign].index};
  this.pic[this.sign] = {...this.pic[this.sign],...temp};
  this.step = this.step + 1;
  }
  else if(dir == 'right' && this.pic[this.sign].y<this.column-1) {
  re = (this.pic[this.sign].x) * this.row + this.pic[this.sign].y+1;
  temp.row = this.pic[re].row;
  temp.column = this.pic[re].column;
  temp.index = this.pic[re].index;
  this.pic[re] = {...this.pic[re],row:this.pic[this.sign].row,column:this.pic[this.sign].column,index:this.pic[this.sign].index};
  this.pic[this.sign] = {...this.pic[this.sign],...temp};
  this.step = this.step + 1;
  }
  // 重新绘制拼图,也可以通过计算只重新绘制移动的部分区域
  this.drawHandler();
 }
}

完成拼图的判定

isWinHandler() {
  // 通过比较所有元素的x、y和row、column是否相等即可,也可以通过index来判断
  for(let i=0;i<this.row*this.column;i++) {
  if(this.pic[i].x == this.pic[i].row && this.pic[i].y == this.pic[i].column) {
   // 显示成功的状态以及清空步数
   this.isWin = true;
   this.step = 0;
  }
  }
}

重新游戏

newGame() {
  // 在 mounted 钩子进行
  // 隐藏完成状态,清空步数,获取随机排列,绘制拼图模块
  this.isWin = false;
  this.step = 0;
  this.randomHandler();
  this.drawHandler();
 }

JS总合

<script>
export default {
 data() {
 return {
  // row:拼图的总行数,column:拼图的总列数
  row:2,
  column:2,
  // 随机打乱的次数
  num:100,
  // pic:拼图的所有子集和;
  // 元素:index:子图片的位置编号
  // row/column:对原图分割后的横纵编号
  // x/y:在canvas中的坐标位置(不会改变)
  pic:[{x:0,y:0,row:0,column:0,index:0}],
  sign:15,
  isWin: false,
  step:0,
  maskShow:false
 }
 },
 mounted() { 代码在拼图移动模块中 },
 methods: {
 // 判断是否完成拼图
 isWinHandler() { ... },
 // 移动的函数方法
 moveHandler(dir) { ... },
 // 绘制拼图
 drawHandler() { ... },
 // 获取随机排序
 randomHandler() { ... },
 newGame() { ... }
}
</script>

HTML部分

<template>
 <div class="index">
 <div class="contain">
  <canvas class="can" ref="can"></canvas>
  <!-- 完成拼图的状态显示 -->
  <div v-if="isWin" class="win">游戏胜利!</div>
  <div class="btns">
  <span @click="newGame">重新游戏</span>
  <span @click="maskShow = true">编辑游戏</span>
  <span @click="isWinHandler">检验</span>
  <span>{{step}}</span>
  </div>
  <!-- 点击编辑游戏的弹出框 -->
  <div v-show="maskShow" class="mask">
  行:<input type="text" v-model="row" placeholder="请输入行数">
  列:<input type="text" v-model="column" placeholder="请输入列数">
  <button @click="maskShow = false">完成</button>
  </div>
 </div>
 <img ref="img" class="img" src="../../public/image/test.png" alt="error">
 </div>
</template>

CSS部分

<style scoped>
/* 编辑的弹出框 */
.mask {
 width: 200px;
 height: 200px;
 background-color: rosybrown;
 position: absolute;
 left: 510px;
 top: 0;
}
/* 按钮样式 */
.btns > span {
 display: inline-block;
 width: 80px;
 font-size: 12px;
 height: 24px;
 text-align: center;
 line-height: 24px;
 margin-bottom: 5px;
 background-color: thistle;
 cursor: pointer;
}
/* 右侧按钮区 */
.btns {
 width: 80px;
 height: 400px;
 border: 1px solid tan;
 border-radius: 5px;
 background-origin: border-box;
 padding: 5px;
 position: absolute;
 left: 412px;
 top: 0;
}
/* 完成拼图的状态 */
.win {
 width: 402px;
 height: 402px;
 line-height: 402px;
 text-align: center;
 font: 24px;
 opacity: 0.5;
 background-color: paleturquoise;
 position: absolute;
 top: 0;
 left: 0;
}
.img {
 display: inline-block;
}
/* canvas */
.can {
 border: 1px solid teal;
}
/* canvas容器 */
.contain {
 position: relative;
}
</style>

最终的完成结果图

在这里插入图片描述

代码地址:拼图游戏

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

(0)

相关推荐

  • jQuery+vue.js实现的九宫格拼图游戏完整实例【附源码下载】

    本文实例讲述了jQuery+vue.js实现的九宫格拼图游戏.分享给大家供大家参考,具体如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> * { margin: 0; padding: 0; } /*#piclist { width: 600p

  • Vue实现滑动拼图验证码功能

    缘由:之前看哔哩哔哩官网登录的时候有一个拼图验证码,很好奇怎么去实现.然后就想着自己弄一个.先给大家看我的最终效果.后面再一点点拆解代码. 为什么想着写这个功能呢,主要在于拼图验证码在前端这里会比较复杂并且深入.相比文字拼写,12306的图片验证码都没有拼图验证码对前端的要求来的复杂,和难. 我总结下知识点: 1.弹窗功能 2.弹窗基于元素定位 3.元素拖动 4.canvas绘图 5.基础逻辑 一.弹窗和弹窗组件 抱歉,这里我偷懒了直接用了elementUI的el-popover组件,所以小伙伴

  • 使用vue.js编写蓝色拼图小游戏

    之前在网上看到<蓝色拼图>这款小游戏,作者是用jquery写的.于是便考虑能不能用vue.js优雅简单的编写出来呢? Later equals never!说干就干.首先理解游戏的规则:第一关为1*1的方块,第二关为2*2以此类推 该图为第三关3*3的方块.点击一个小方块,该方块和它相邻的方块的的颜色会从黄色变为蓝色,全部变为蓝色就过关了. 现在规则清楚了,开动吧! /*style*/ .game_bg{ background: #333; width: 600px; height: 600p

  • 基于Vue.js实现数字拼图游戏

    先来看看效果图: 功能分析 当然玩归玩,作为一名Vue爱好者,我们理应深入游戏内部,一探代码的实现.接下来我们就先来分析一下要完成这样的一个游戏,主要需要实现哪些功能.下面我就直接将此实例的功能点罗列在下了: 1.随机生成1~15的数字格子,每一个数字都必须出现且仅出现一次 2.点击一个数字方块后,如其上下左右有一处为空,则两者交换位置 3.格子每移动一步,我们都需要校验其是否闯关成功 4.点击重置游戏按钮后需对拼图进行重新排序 以上便是本实例的主要功能点,可见游戏功能并不复杂,我们只需一个个攻

  • vue+canvas实现拼图小游戏

    利用 vue+canvas 实现拼图小游戏,供大家参考,具体内容如下 思路步骤 一个拼图拼盘和一个原图参照 对原图的切割以及随机排序 通过W/A/D/S或上下左右进行移动 难度的自主选择 对拼图是否完成的判定 JS实现部分 数据分析 row:拼图的总行数:column:拼图的总列数. (用来设置拼图难度,也是每个拼图块宽高的设置规则) pic[{x,y,row,column,index}]:小拼图的集合,其内元素为小拼图的数据结构. (x.y:拼图块在canvas的绘制规则,初始化后不会进行改变

  • jQuery实现拼图小游戏(实例讲解)

    小熊维尼拼图 jQuery代码实现拼图小游戏,鼠标选中拼块,用上下左右键移动拼块. html代码 <div id="box-div"> <!--走不通时的提示!--> <div id="tips"> <p>\(╯-╰)/ 哎呦,走不通啦!</p> </div> <div id="container"> <div class="row"&g

  • Android实现拼图小游戏

    本文实例为大家分享了Android实现拼图小游戏的具体代码,供大家参考,具体内容如下 目标效果: 1.activity_main.xml页面: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schem

  • Android自定义View实现拼图小游戏

    本文实例为大家分享了Android拼图小游戏的具体代码,供大家参考,具体内容如下 1.效果图: 运行时: 结束时: 2.PuzzleLayoutView: public class PuzzleLayoutView extends RelativeLayout implements View.OnClickListener { //表示将其切成2*2拼图(默认4块) private int mColumn = 2; //容器的内边距 private int mPadding; //每个块块的边距

  • 基于jquery实现九宫格拼图小游戏

    九宫格拼图小游戏是小时候比较常见的小游戏之一.闲着无聊就用js简单写了一个. 游戏的玩法很简单.九宫格中有八个小图片.随机打乱之后,将八张小图片拼接成一个完整的图. html代码 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <style> body{ border: 0; } .out{ width: 606px; height: 606px; margin: 0 aut

  • java实现拼图小游戏

    一个简单的拼图小游戏,供大家参考,具体内容如下 1.首先设计视图面板. 2.添加所需要的图片按钮. 3.最主要的是设计监听事件,添加图片的监听按钮,设定移动空白图片周围的按钮. 4.判断是否成功 . package sxy; import java.awt.Choice; import java.awt.Image; import java.awt.Toolkit; import java.awt.event.MouseAdapter; import java.awt.event.MouseEv

  • js+canvas实现五子棋小游戏

    本文实例为大家分享了js+canvas实现五子棋小游戏的具体代码,供大家参考,具体内容如下 效果展示: 源码展示: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>五子棋</title> <style> * { margin: 0; padding: 0; } body { margin-to

  • 利用python制作拼图小游戏的全过程

    开发工具 Python版本:3.6.4 相关模块: pygame模块: 以及一些Python自带的模块 关注公众号:Python学习指南,回复"拼图"即可获取源码 环境搭建 安装Python并添加到环境变量,pip安装需要的相关模块即可. 原理介绍 游戏简介: 将图像分为m×n个矩形块,并将图像右下角的矩形块替换为空白块后,将这些矩形块随机摆放成原图像的形状.游戏目标为通过移动非空白块将随机摆放获得的图像恢复成原图像的模样,且规定移动操作仅存在于非空白块移动到空白块. 例如下图所示:

  • 用js实现拼图小游戏

    本文实例为大家分享了js实现拼图小游戏的具体代码,供大家参考,具体内容如下 一.js拼图是什么? 用js做得小游戏 二.使用步骤 1.先创建div盒子 <style> div,body{ margin: 0; height: 0; } #box{ width: 800px; height: 800px; background-color: burlywood; position: relative; } #box div { width: 200px; height: 200px; backg

随机推荐