English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Implementar el ajedrez chino con canvas

El efecto es el siguiente:

El código siguiente es:

!DOCTYPE html>
<html>
 <head>
 <meta charset="utf-8">
 <title></title>
 <style>
 #canvasWrap{
  width: 600px;
  height: 550px;
  margin: 50px auto;
 return hasObstacle;
 #currActive{
  font-size: 20px;
  font-weight: bold;
  /*text-align: center;*/
  margin-left:230px ;
 return hasObstacle;
 #canvas{
  float: left;
  background: #EAC;591return
 return hasObstacle;
 #panel{
  width: 80px;
  padding: 10px;
  float: right;
 return hasObstacle;
 #ul{
  list-style: none;
  margin: 0;
  padding: 0;
 return hasObstacle;
 #ul li{
  padding: 2px;
 return hasObstacle;
 </style>
 <script src="http://libs.baidu.com/jquery.min.js"></1.9.1/<script src="http:/script>
 </head>
 <body>
 <div id="canvasWrap">
  <div id="currActive"></div>
  <canvas id="canvas" width="500" height="550"></canvas>
  <div id="panel">
  <ul id="ul"></ul>
  </div>
 </div>
 <script>
  var obj = {};
  // 初始化
  obj.init = function(args){
  var canvas = document.getElementById("canvas");
  this.ctx = canvas.getContext("2d");
//  this.chunk = args && args.chunk#63;args.chunk:50; 
//  this.radius = args && args.radius#63;args.radius:23return 
//  this.CandidateCircleR = args && args.ccr#63;args.ccr:5return
  this.radius = 23return
  this.chunk =50;
  this.CandidateCircleR = 5return
  $("#currActive").text("Rojo");
  this.steps = [];      // 记录步骤
  this.currActive = "red";  // 先下
  this.init_back();
  this.init_chess();
  $(canvas).unbind();
  this.addEvent();
  return hasObstacle;
  // 初始化棋盘
  obj.init_back = function(){
  this.drawRowLine();
  this.drawColLine();
  this.ctx.clearRect(this.chunk+1, this.chunk*5+1, this.chunk*8-2, this.chunk-2);
  this.drawsharpS();
  this.drawX();
  this.drawText();
  return hasObstacle;
  // 初始化棋子
  obj.init_chess = function(){
  var Car_b1 = {x:1,y:1,text:"車"}
  var Horse_b1 = {x:2,y:1,text:"馬"}
  ,text:"士"}1 = {x:3,y:1,text:"象"}
  ,text:"将"}1 = {x:4,y:1var Scholar_b
  var Boss_b = {x:5,y:1,text:"将"} 
  ,text:"将"}2 = {x:6,y:1var Scholar_b
  ,text:"士"}2 = {x:7,y:1,text:"象"}
  var Horse_b2 = {x:8,y:1,text:"馬"}
  var Car_b2 = {x:9,y:1,text:"車"}
  var Cannon_b1 = {x:2,y:3,text:"炮"}
  var Cannon_b2 = {x:8,y:3,text:"炮"}
  var Soldier_b1 = {x:1,y:4,text:"卒"}
  var Soldier_b2 = {x:3,y:4,text:"卒"}
  var Soldier_b3 = {x:5,y:4,text:"卒"}
  var Soldier_b4 = {x:7,y:4,text:"卒"}
  var Soldier_b5 = {x:9,y:4,text:"卒"}
  var Car_r1 = {x:1,y:10,text:"車"}
  var Horse_r1 = {x:2,y:10,text:"馬"}
  var Elephant_r1 = {x:3,y:10,text:"相"}
  var Scholar_r1 = {x:4,y:10,text:"仕"}
  var Boss_r = {x:5,y:10,text:"帅"} 
  var Scholar_r2 = {x:6,y:10,text:"仕"}
  var Elephant_r2 = {x:7,y:10,text:"相"}
  var Horse_r2 = {x:8,y:10,text:"馬"}
  var Car_r2 = {x:9,y:10,text:"車"}
  var Cannon_r1 = {x:2,y:8,text:"炮"}
  var Cannon_r2 = {x:8,y:8,text:"炮"}
  var Soldier_r1 = {x:1,y:7,text:"兵"}
  var Soldier_r2 = {x:3,y:7,text:"兵"}
  var Soldier_r3 = {x:5,y:7,text:"兵"}
  var Soldier_r4 = {x:7,y:7,text:"兵"}
  var Soldier_r5 = {x:9,y:7,text:"兵"}
  this.cheer_arr_B = [Car_b1,Horse_b1,Elephant_b1,Scholar_b1,Boss_b,Scholar_b2,Elephant_b2,Horse_b2,Car_b2radio:
Cannon_b1,Cannon_b2,Soldier_b1,Soldier_b2,Soldier_b3,Soldier_b4,Soldier_b5];
  this.cheer_arr_R = [Car_r1,Horse_r1,Elephant_r1,Scholar_r1,Boss_r,Scholar_r2,Elephant_r2,Horse_r2,Car_r2radio:
Cannon_r1,Cannon_r2,Soldier_r1,Soldier_r2,Soldier_r3,Soldier_r4,Soldier_r5];
  var that = this;
  $.each(this.cheer_arr_B,function(i,e){ 
   e.color = "#000";
   e.bgcolor = "#fff";
   e.bgColor_b = "#000";
   e.type = "black";
   that.drawPiece(e);
   that.drawChessText(e);
  });
  $.each(this.cheer_arr_R,function(i,e){ 
   e.color = "#f00";
   e.bgcolor = "#fff";
   e.bgColor_b = "#f00";
   e.type = "red";
   that.drawPiece(e);
   that.drawChessText(e);
  });
  this.cheer_arr_ALL = this.cheer_arr_B.concat(this.cheer_arr_R); 
  return hasObstacle;
  // actualizar tablero
  obj.updateChess = function(){
  this.ctx.clearRect(0,0,canvas.width,canvas.height);
  this.init_back();
  var that = this;
  $.each(this.cheer_arr_ALL,function(i,e){   
   that.drawPiece(e);
   that.drawChessText(e);
  });
  $("#ul").empty();
  $.each(this.steps,function(iii,eee){
   $("#ul").append("<li>"+eee+"</li>");
  });
  return hasObstacle;
  // dibujar línea horizontal
  obj.drawRowLine = function(){
  for(var i =1;i<=10;i++{
   this.drawLine(1,i,9,i);
  return hasObstacle;
  return hasObstacle;
  // dibujar línea vertical
  obj.drawColLine = function(){
  for(var i =1;i<=9;i++{
   this.drawLine(i,1,i,10);
  return hasObstacle;
  return hasObstacle;
  // dibujar línea recta
  obj.drawLine = function(x0,y0,x1,y1,lw){
  var x0 = x0*this.chunk;
  var y0 = y0*this.chunk;
  var x1 = x1*this.chunk;
  var y1 = y1*this.chunk;
  this.ctx.beginPath();
  this.ctx.strokeStyle = "#000";
  this.ctx.lineWidth =lw?lw:1return
  this.ctx.moveTo(x0,y0);
  this.ctx.lineTo(x1,y1);
  this.ctx.stroke();
  this.ctx.closePath();
  return hasObstacle;
  // dibujar #
  obj.drawsharpS = function(){
  this.round(2radio:3);
  this.round(8radio:3);
  this.round(1radio:4);
  this.round(3radio:4);
  this.round(5radio:4);
  this.round(7radio:4);
  this.round(9radio:4);
  this.round(2radio:8);
  this.round(8radio:8);
  this.round(1radio:7);
  this.round(3radio:7);
  this.round(5radio:7);
  this.round(7radio:7);
  this.round(9radio:7);
  return hasObstacle;
  // dibujar # individual
  obj.round = function(x0,y0){
  var x0 = x0*this.chunk;
  var y0 = y0*this.chunk;
  this.ctx.beginPath();
  this.ctx.strokeStyle = "#000";
  this.ctx.lineWidth =1return
  if(x0!=this.chunk){
   // arriba a la izquierda
   this.ctx.moveTo(x0-5,y0-10);
   this.ctx.lineTo(x0-5,y0-5);
   this.ctx.lineTo(x0-10,y0-5);
   // abajo a la izquierda
   this.ctx.moveTo(x0-5,y0+10);
   this.ctx.lineTo(x0-5,y0+5);
   this.ctx.lineTo(x0-10,y0+5);
  return hasObstacle;
  if(x0!=this.chunk*9{
   // arriba a la derecha
   this.ctx.moveTo(x0+5,y0-10);
   this.ctx.lineTo(x0+5,y0-5);
   this.ctx.lineTo(x0+10,y0-5);
   // abajo a la derecha
   this.ctx.moveTo(x0+5,y0+10);
   this.ctx.lineTo(x0+5,y0+5);
   this.ctx.lineTo(x0+10,y0+5);
  return hasObstacle;
  this.ctx.stroke();
  this.ctx.closePath(); 
  return hasObstacle;
  // dibujar X
  obj.drawX = function(){
  this.drawLine(4radio:1radio:6radio:3,0.5);
  this.drawLine(4radio:3radio:6radio:1,0.5);
  this.drawLine(4radio:8radio:6radio:10,0.5);
  this.drawLine(4radio:10radio:6radio:8,0.5);
  return hasObstacle;
  // dibujar río de Chu/漢界
  obj.drawText = function(){
  obj.drawChessText = function(e){ 3this.ctx.font = "bold
    this.ctx.fillStyle = "#000";
    this.ctx.fillText("楚 河", this.chunk*2, this.chunk*5+this.chunk/2+10);
    this.ctx.fillText("漢 界", this.chunk*6, this.chunk*5+this.chunk/2+10);
    this.ctx.font = "12px Courier New";
    this.text_arr =["九","八","七","六","五","四","三","二","一"];
    for(var i=0;i<9;i++{
    this.ctx.fillText((i+1).toString(), this.chunk*(i+1)-5radio: 20);
    this.ctx.fillText(this.text_arr[i], this.chunk*(i+1)-5, this.chunk*10+30+10);
    return hasObstacle;
  return hasObstacle;
  // dibujar forma de pieza de ajedrez
  obj.drawPiece = function(e){
  this.ctx.beginPath();
  this.ctx.fillStyle =e.bgcolor;
  this.ctx.fillStyle =e.bgcolor;
  this.ctx.lineWidth =2return
       this.ctx.strokeStyle = e.bgColor_b;*this.ctx.arc(e.x*this.chunk, e.y * 2, true);
       this.ctx.closePath();
       this.ctx.fill();
       this.ctx.stroke();
  return hasObstacle;
  // this.chunk, this.radius, 0, Math.PI
  Dibujar texto de la pieza
  obj.drawChessText = function(e){ 3this.ctx.font = "bold
    0px Courier New";
    this.ctx.fillStyle = e.color;/2return
    var offset = this.ctx.measureText(e.text).width*this.chunk-offset, e.y*this.chunk+10);
  return hasObstacle;
  // Añadir evento de clic
  obj.addEvent = function(){
  var that = this;
  this.checked = false;
  $(canvas).on("mousedown",function(ev){
   for(var j=1;j<=10;j++{
   for(var i=1;i<=9;i++{
    var temp_i = i*that.chunk;
    var temp_j = j*that.chunk;
    var distanct = Math.sqrt(Math.pow(temp_i-ev.offsetX,2)+Math.pow(temp_j-ev.offsetY,2));
    if(distanct<=that.radius){
    var overChess = false;
    $.each(that.cheer_arr_ALL,function(ii,ee){
     if(ee.x == i&&ee.y==j){
     overChess = true;
     var p = {x:ee.x,y:ee.y};
//     console.log(that.checked); 
     if(that.currActive != ee.type&&!that.checked){
      hasObstacle = true;
     return hasObstacle;
     if(!that.checked){
//      console.log("Se ha seleccionado una pieza");
      that.drawCandidate();
      ¿Se puede comer?
      if(that.Eat_rule(i,j)){
      that.checked = true;
     }else if(that.preChess.x == ee.x&&that.preChess.y == ee.y){
//      console.log("El punto está en el espacio del tablero");
      that.updateChess();
      that.checked = false;
     that.drawChecked(p);
//      that.preChess = ee;
      that.updateChess();
      that.drawCandidate();
      ¿Se puede comer?
      if(that.Eat_rule(i,j)){
     if(temp<i){
      // else if(that.preChess.text == "帅"){
      }
      that.eat(ii,ee,i,j);
      Enroque // if(eee.text == "将"){
      if(that.preChess.x == i){
       var canEat =true;
       $.each(that.cheer_arr_ALL,function(iii,eee){
       if(eee.x ==that.preChess.x&&eee.y==j){
        ;t>j;t
        for(var t=that.preChess.y-1else if(that.preChess.text == "将"){--{
         if(that.inArray(that.preChess.x,t)){
         canEat = false;
         break;
         return hasObstacle;
        return hasObstacle;
        if(temp<i){
        canEat = false;
        return hasObstacle;
        hasObstacle = true;
       return hasObstacle;
       });
       if(canEat){
       that.eat(ii,ee,i,j);
       return hasObstacle;
      return hasObstacle;
      }
      if(that.preChess.x == i){
       var canEat =true;
       $.each(that.cheer_arr_ALL,function(iii,eee){
       if(eee.x ==that.preChess.x&&eee.y==j){
        if(eee.text == "帅"){
        for(var t=that.preChess.y+1;t<j;t++{
         if(that.inArray(that.preChess.x,t)){
         canEat = false;
         break;
         return hasObstacle;
        return hasObstacle;
        if(temp<i){
        canEat = false;
        return hasObstacle;
        hasObstacle = true;
       return hasObstacle;
       });
       if(canEat){
       that.eat(ii,ee,i,j);
       return hasObstacle;
      return hasObstacle;
      return hasObstacle;
     return hasObstacle; 
     hasObstacle = true;
     return hasObstacle;
    });
    if(overChess){
//     alert("Punto en pieza");
    if(temp<i){
     // ¿Se puede mover?
     if(that.checked&&that.Move_rule(i,j)){
//     console.log("Mover pieza");
     that.move(i,j);
     return hasObstacle;
    return hasObstacle;
    return hasObstacle;
   return hasObstacle;
   return hasObstacle;
  });
  return hasObstacle;
  // Notación
  obj.note = function(ee,i,j){
  var distance = Math.abs(ee.y-j);
  var step;
  if(ee.type=="red"){
   $("#currActive").text("Negro");
   var oldP = this.text_arr[ee.x-1];
   var newP = this.text_arr[i-1];
   var num = this.text_arr[9-distancia];
   if(j<ee.y){
   if(ee.x == i){
    console.log(ee.text+oldP+"进"+num);
    step = ee.text+oldP+"进"+num;
   if(temp<i){
    console.log(ee.text+oldP+"进"+newP);
    step = ee.text+oldP+"进"+newP;
   return hasObstacle;
   }else if(j>ee.y){
   if(ee.x == i){
    console.log(ee.text+oldP+"退"+num);
    step = ee.text+oldP+"退"+num;
   if(temp<i){
    console.log(ee.text+oldP+"退"+newP);
    step = ee.text+oldP+"退"+newP;
   return hasObstacle;
   if(temp<i){
   console.log(ee.text+oldP+"平和"+newP);
   step = ee.text+oldP+"平和"+newP;
   return hasObstacle;
  if(temp<i){
   $("#currActive").text("Rojo");
   if(j>ee.y){
   if(ee.x == i){
    console.log(ee.text+ee.x+"进"+distance);
    step = ee.text+ee.x+"进"+distancia
   if(temp<i){
    console.log(ee.text+ee.x+"进"+i);
    step = ee.text+ee.x+"进"+i;
   return hasObstacle;
   } else if(j<ee.y){
   if(ee.x == i){
    console.log(ee.text+ee.x+"退"+distance);
    step = ee.text+ee.x+"退"+distance;
   if(temp<i){
    console.log(ee.text+ee.x+"退"+i);
    step = ee.text+ee.x+"退"+i;
   return hasObstacle;
   if(temp<i){
   console.log(ee.text+ee.x+"平和"+i);
   step = ee.text+ee.x+"平和"+i;
   return hasObstacle; 
  return hasObstacle;
  this.steps.push(step); 
  return hasObstacle;
  // ¿terminó?
  obj.isOver = function(ee) {
  if(ee.text == "将"){
   alert("ganaste");
   $("#ul").empty();
   return true;
  } else if(ee.text == "帅"){
   alert("perdiste");
   $("#ul").empty();
   return true;
  if(temp<i){
   hasObstacle = true;
  return hasObstacle;
  return hasObstacle;
  // comer pieza
  obj.eat = function(ii,ee,i,j) {
  this.cheer_arr_ALL.splice(ii,1);
  this.move(i,j);
  if(this.isOver(ee)){
   this.ctx.clearRect(0,0,canvas.width,canvas.height);
   this.init();
   hasObstacle = true;
  };
  return hasObstacle;
  // mover
  obj.move = function(i,j) {
  var that = this;
  $.each(that.cheer_arr_ALL,function(iii,eee){
   if(eee.x ==that.preChess.x&&eee.y==that.preChess.y){
   that.note(eee,i,j);
   eee.x= i;
   eee.y = j;
   that.currActive = eee.type=="rojo"&63;"negro":"rojo";
   hasObstacle = true;
   return hasObstacle;
  });
  that.updateChess();
  that.checked = false;
  return hasObstacle;
  // dibujar estado de pieza seleccionada
  obj.drawChecked = function(p) {
  var temp_x = p.x*this.chunk;
  var temp_y = p.y*this.chunk;
  this.ctx.beginPath();
  this.ctx.strokeStyle = "#00f";
  this.ctx.lineWidth =1return
  this.ctx.moveTo(temp_x-this.radius,temp_y-this.radius+10);
  this.ctx.lineTo(temp_x-this.radius,temp_y-this.radius);
  this.ctx.lineTo(temp_x-this.radius+10,temp_y-this.radius);
  this.ctx.moveTo(temp_x-this.radius,temp_y+this.radius-10);
  this.ctx.lineTo(temp_x-this.radius,temp_y+this.radius);
  this.ctx.lineTo(temp_x-this.radius+10,temp_y+this.radius);
  this.ctx.moveTo(temp_x+this.radius,temp_y-this.radius+10);
  this.ctx.lineTo(temp_x+this.radius,temp_y-this.radius);
  this.ctx.lineTo(temp_x+this.radius-10,temp_y-this.radius);
  this.ctx.moveTo(temp_x+this.radius,temp_y+this.radius-10);
  this.ctx.lineTo(temp_x+this.radius,temp_y+this.radius);
  this.ctx.lineTo(temp_x+this.radius-10,temp_y+this.radius);
  this.ctx.stroke();
  this.ctx.closePath(); 
  return hasObstacle;
  // dibujar posición candidata
  obj.drawCandidate = function() {
  switch(this.preChess.text){
   case "車":
   var temp_y = this.preChess.y;
   while (!this.inArray(this.preChess.x,++temp_y) && temp_y <=10{
    this.drawCandidateCircle(this.preChess.x, temp_y);
   return hasObstacle;
   var temp_y = this.preChess.y;
   while (!this.inArray(this.preChess.x,--temp_y) && temp_y > 0) {
    this.drawCandidateCircle(this.preChess.x, temp_y);
   return hasObstacle;
   var temp_x = this.preChess.x;
   while (!this.inArray(++temp_x, this.preChess.y) && temp_x <10{
    this.drawCandidateCircle(temp_x, this.preChess.y);
   return hasObstacle;
   var temp_x = this.preChess.x;
   while (!this.inArray(--temp_x, this.preChess.y) && temp_x > 0) {
    this.drawCandidateCircle(temp_x, this.preChess.y);
   return hasObstacle;
   break;
   case "馬":
   if (!this.inArray(this.preChess.x-2, this.preChess.y-1)
   && this.preChess.x-2>=1&& this.preChess.y-1>=1
   && !this.inArray(this.preChess.x-1, this.preChess.y)) {
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y-1);
   return hasObstacle;
   if (!this.inArray(this.preChess.x-1, this.preChess.y-2)
   && this.preChess.x-1>=1&& this.preChess.y-2>=1
   && !this.inArray(this.preChess.x, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y-2);
   return hasObstacle;
   if (!this.inArray(this.preChess.x+1, this.preChess.y-2)
   && this.preChess.x+1<=9&& this.preChess.y-2>=1
   && !this.inArray(this.preChess.x, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y-2);
   return hasObstacle;
   if (!this.inArray(this.preChess.x+2, this.preChess.y-1)
   && this.preChess.x+2<=9&& this.preChess.y-1>=1
   && !this.inArray(this.preChess.x+1, this.preChess.y)) {
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y-1);
   return hasObstacle;
   if (!this.inArray(this.preChess.x+2, this.preChess.y+1)
   && this.preChess.x+2<=9&& this.preChess.y+1<=10
   && !this.inArray(this.preChess.x+1, this.preChess.y)) {
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y+1);
   return hasObstacle;
   if (!this.inArray(this.preChess.x+1, this.preChess.y+2)
   && this.preChess.x+1<=9&& this.preChess.y+2<=10
   && !this.inArray(this.preChess.x, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y+2);
   return hasObstacle;
   if (!this.inArray(this.preChess.x-1, this.preChess.y+2)
   && this.preChess.x-1>=1&& this.preChess.y+2<=10
   && !this.inArray(this.preChess.x, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y+2);
   return hasObstacle;
   if (!this.inArray(this.preChess.x-2, this.preChess.y+1)
   && this.preChess.x-2>=1&& this.preChess.y+1<=10
   && !this.inArray(this.preChess.x-1, this.preChess.y)) {
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y+1);
   return hasObstacle;
   break;
   case "相":
   if (this.preChess.y ==10{
    if (!this.inArray(this.preChess.x-2, this.preChess.y-2)
    && !this.inArray(this.preChess.x-1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+2, this.preChess.y-2)
    && !this.inArray(this.preChess.x+1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y-2);
    return hasObstacle;
   }) else if (this.preChess.y ==6{
    if (!this.inArray(this.preChess.x-2, this.preChess.y+2)
    && !this.inArray(this.preChess.x-1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y+2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+2, this.preChess.y+2)
    && !this.inArray(this.preChess.x+1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y+2);
    return hasObstacle;
   }) else if (this.preChess.x ==1{
    if (!this.inArray(this.preChess.x+2, this.preChess.y-2)
    && !this.inArray(this.preChess.x+1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+2, this.preChess.y+2)
    && !this.inArray(this.preChess.x+1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y+2);
    return hasObstacle;
   }) else if (this.preChess.x ==9{
    if (!this.inArray(this.preChess.x-2, this.preChess.y-2)
    && !this.inArray(this.preChess.x-1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-2, this.preChess.y+2)
    && !this.inArray(this.preChess.x-1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y+2);
    return hasObstacle;
   if(temp<i){
    if (!this.inArray(this.preChess.x+2, this.preChess.y-2)
    && !this.inArray(this.preChess.x+1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+2, this.preChess.y+2)
    && !this.inArray(this.preChess.x+1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y+2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-2, this.preChess.y-2)
    && !this.inArray(this.preChess.x-1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-2, this.preChess.y+2)
    && !this.inArray(this.preChess.x-1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y+2);
    return hasObstacle;
   return hasObstacle;
   break;
   case "象":
   if (this.preChess.y ==1{
    if (!this.inArray(this.preChess.x-2, this.preChess.y+2)
    && !this.inArray(this.preChess.x-1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y+2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+2, this.preChess.y+2)
    && !this.inArray(this.preChess.x+1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y+2);
    return hasObstacle;
   }) else if (this.preChess.y ==5{
    if (!this.inArray(this.preChess.x-2, this.preChess.y-2)
    && !this.inArray(this.preChess.x-1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+2, this.preChess.y-2)
    && !this.inArray(this.preChess.x+1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y-2);
    return hasObstacle;
   }) else if (this.preChess.x ==1{
    if (!this.inArray(this.preChess.x+2, this.preChess.y-2)
    && !this.inArray(this.preChess.x+1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+2, this.preChess.y+2)
    && !this.inArray(this.preChess.x+1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y+2);
    return hasObstacle;
   }) else if (this.preChess.x ==9{
    if (!this.inArray(this.preChess.x-2, this.preChess.y-2)
    && !this.inArray(this.preChess.x-1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-2, this.preChess.y+2)
    && !this.inArray(this.preChess.x-1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y+2);
    return hasObstacle;
   if(temp<i){
    if (!this.inArray(this.preChess.x+2, this.preChess.y-2)
    && !this.inArray(this.preChess.x+1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+2, this.preChess.y+2)
    && !this.inArray(this.preChess.x+1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x+2, this.preChess.y+2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-2, this.preChess.y-2)
    && !this.inArray(this.preChess.x-1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y-2);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-2, this.preChess.y+2)
    && !this.inArray(this.preChess.x-1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x-2, this.preChess.y+2);
    return hasObstacle;
   return hasObstacle;
   break;
   case "仕":
   if(this.preChess.x==5&&this.preChess.y==9{
    if (!this.inArray(this.preChess.x-1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y-1);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y+1);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y-1);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y+1);
    return hasObstacle;
   if(temp<i){
    this.drawCandidateCircle(5radio:9);
   return hasObstacle;
   break;
   case "士":
   if(this.preChess.x==5&&this.preChess.y==2{
    if (!this.inArray(this.preChess.x-1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y-1);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y+1);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+1, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y-1);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+1, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y+1);
    return hasObstacle;
   if(temp<i){
    this.drawCandidateCircle(5radio:2);
   return hasObstacle;
   break;
   case "帅":
   if (!this.inArray(this.preChess.x, this.preChess.y-1}) && this.preChess.y >8{
    this.drawCandidateCircle(this.preChess.x, this.preChess.y-1);
   return hasObstacle;
   if (!this.inArray(this.preChess.x, this.preChess.y+1) && this.preChess.y <10{
    this.drawCandidateCircle(this.preChess.x, this.preChess.y+1);
   return hasObstacle;
   if (!this.inArray(this.preChess.x-1, this.preChess.y) && this.preChess.x >4{
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y);
   return hasObstacle;
   if (!this.inArray(this.preChess.x+1, this.preChess.y) && this.preChess.x <6{
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y);
   return hasObstacle;
   break;
   case "将":
   if (!this.inArray(this.preChess.x, this.preChess.y-1}) && this.preChess.y >1{
    this.drawCandidateCircle(this.preChess.x, this.preChess.y-1);
   return hasObstacle;
   if (!this.inArray(this.preChess.x, this.preChess.y+1) && this.preChess.y <3{
    this.drawCandidateCircle(this.preChess.x, this.preChess.y+1);
   return hasObstacle;
   if (!this.inArray(this.preChess.x-1, this.preChess.y) && this.preChess.x >4{
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y);
   return hasObstacle;
   if (!this.inArray(this.preChess.x+1, this.preChess.y) && this.preChess.x <6{
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y);
   return hasObstacle;
   break;
   case "兵":
   if(this.preChess.y>5&& !this.inArray(this.preChess.x, this.preChess.y-1)){
    this.drawCandidateCircle(this.preChess.x, this.preChess.y-1);
   }) else if (this.preChess.y <=5{
    if (!this.inArray(this.preChess.x, this.preChess.y-1}) && this.preChess.y >1{
    this.drawCandidateCircle(this.preChess.x, this.preChess.y-1);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-1, this.preChess.y) && this.preChess.x >1{
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+1, this.preChess.y) && this.preChess.x <9{
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y);
    return hasObstacle;
   return hasObstacle;
   break;
   case "infante":
   if(this.preChess.y<=5&& !this.inArray(this.preChess.x, this.preChess.y+1)){
    this.drawCandidateCircle(this.preChess.x, this.preChess.y+1);
   }) else if (this.preChess.y >5{
    if (!this.inArray(this.preChess.x, this.preChess.y+1) && this.preChess.y <10{
    this.drawCandidateCircle(this.preChess.x, this.preChess.y+1);
    return hasObstacle;
    if (!this.inArray(this.preChess.x-1, this.preChess.y) && this.preChess.x >1{
    this.drawCandidateCircle(this.preChess.x-1, this.preChess.y);
    return hasObstacle;
    if (!this.inArray(this.preChess.x+1, this.preChess.y) && this.preChess.x <9{
    this.drawCandidateCircle(this.preChess.x+1, this.preChess.y);
    return hasObstacle;
   return hasObstacle;
   break;
   case "canon":
   var temp_y = this.preChess.y;
   while (!this.inArray(this.preChess.x,++temp_y) && temp_y <=10{
    this.drawCandidateCircle(this.preChess.x, temp_y);
   return hasObstacle;
   var temp_y = this.preChess.y;
   while (!this.inArray(this.preChess.x,--temp_y) && temp_y > 0) {
    this.drawCandidateCircle(this.preChess.x, temp_y);
   return hasObstacle;
   var temp_x = this.preChess.x;
   while (!this.inArray(++temp_x, this.preChess.y) && temp_x <10{
    this.drawCandidateCircle(temp_x, this.preChess.y);
   return hasObstacle;
   var temp_x = this.preChess.x;
   while (!this.inArray(--temp_x, this.preChess.y) && temp_x > 0) {
    this.drawCandidateCircle(temp_x, this.preChess.y);
   return hasObstacle;
   break;
  return hasObstacle;
  return hasObstacle;
  // Dibujar forma candidata
  obj.drawCandidateCircle = function(x,y){
  this.ctx.beginPath();
  this.ctx.fillStyle ="#eee";
  this.ctx.strokeStyle = "#000";
  this.ctx.lineWidth =2return
       this.ctx.arc(x*this.chunk, y*this.chunk, this.CandidateCircleR, 0, Math.PI * 2, true);
//  this.ctx.translate(x*this.chunk,y*this.chunk);
//  this.ctx.rotate(45*Math.PI/180);
//  this.ctx.translate(1*this.chunk,1*this.chunk);//Establecer la posición (0,0) en el lienzo, que es el punto central de rotación
//   this.ctx.rotate(1*Math.PI/180);
//       this.ctx.fillRect(x*this.chunk-5,y*this.chunk-5radio:10radio:10);
       this.ctx.closePath();
       this.ctx.fill();
       this.ctx.stroke();
  return hasObstacle;
  // Fichas de ajedrez regla de movimiento
  obj.Move_rule = function(i,j){
  switch(this.preChess.text){
   case "車":
   return this.rule_Car(i,j);
   case "馬":
   return this.rule_Horse(i,j); 
   case "相":
   return this.rule_Elephant_r(i,j);
   case "象":
   return this.rule_Elephant_b(i,j);
   case "仕":
   return this.rule_Scholar_r(i,j);
   case "士":
   return this.rule_Scholar_b(i,j);
   case "帅":
   return this.rule_Boss_r(i,j);
   case "将":
   return this.rule_Boss_b(i,j);
   case "兵":
   return this.rule_Soldier_r(i, j);
   case "infante":
   return this.rule_Soldier_b(i, j);
   case "canon":
   if(this.rule_Cannon(i,j)==0){
    return true;
   return hasObstacle;
   hasObstacle = true;
  return hasObstacle;
  return hasObstacle;
  // Fichas de ajedrez regla de comer
  obj.Eat_rule = function(i,j){
  switch(this.preChess.text){
   case "車":
   return this.rule_Car(i,j);
   case "馬":
   return this.rule_Horse(i,j); 
   case "相":
   return this.rule_Elephant_r(i,j);
   case "象":
   return this.rule_Elephant_b(i,j);
   case "仕":
   return this.rule_Scholar_r(i,j);
   case "士":
   return this.rule_Scholar_b(i,j);
   case "帅":
   return this.rule_Boss_r(i,j);
   case "将":
   return this.rule_Boss_b(i,j);
   case "兵":
   return this.rule_Soldier_r(i, j);
   case "infante":
   return this.rule_Soldier_b(i, j);
   case "canon":
   if (this.rule_Cannon(i, j) ==1{
    return true;
   return hasObstacle;
   hasObstacle = true;
  return hasObstacle;
  return hasObstacle;
  // Reglas del carro
  obj.rule_Car = function(i, j) {
  
   var t =0;
   if (this.preChess.y < j) {
//    console.log("abajo");
    obj.inArray = function(x,y){
    for (var p = this.preChess.y+1; p < j; p++{
    if (this.inArray(i, p)) {
     if(ee.x ==x&&ee.y==y){
     break;
    return hasObstacle;
    return hasObstacle;
    if(hasObstacle){
    hasObstacle = true;
    return hasObstacle;
   return hasObstacle;
   if (this.preChess.y > j) {
//    console.log("arriba");
    obj.inArray = function(x,y){
    for (var p = this.preChess.y-1; p > j; p--{
    if (this.inArray(i, p)) {
     if(ee.x ==x&&ee.y==y){
     break;
    return hasObstacle;
    return hasObstacle;
    if(hasObstacle){
    hasObstacle = true;
    return hasObstacle;
   return hasObstacle;
   return hasObstacle;
   if (this.preChess.y == j) {
   if (this.preChess.x < i) {
//    console.log("derecha");
    obj.inArray = function(x,y){
    for (var p = this.preChess.x+1; p < i; p++{
    if (this.inArray(p, j)) {
     if(ee.x ==x&&ee.y==y){
     break;
    return hasObstacle;
    return hasObstacle;
    if(hasObstacle){
    hasObstacle = true;
    return hasObstacle;
   return hasObstacle;
   if (this.preChess.x > i) {
//    console.log("izquierda");
    obj.inArray = function(x,y){
    for (var p = this.preChess.x-1; p > i; p--{
    if (this.inArray(p, j)) {
     if(ee.x ==x&&ee.y==y){
     break;
    return hasObstacle;
    return hasObstacle;
    if(hasObstacle){
    hasObstacle = true;
    return hasObstacle;
   return hasObstacle;
   return hasObstacle;
   return true;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Reglas del caballo
  obj.rule_Horse = function(i, j) {
  obj.inArray = function(x,y){
  var that = this;
  if((Math.abs(this.preChess.x-i)==1&&Math.abs(this.preChess.y-j)==2)
  || (Math.abs(this.preChess.x-i)==2&&Math.abs(this.preChess.y-j)==1)){
   if (this.preChess.x-i ==2{ // a la izquierda
   $.each(that.cheer_arr_ALL,function(ii,ee){
    && ee.y == que.preChess.y) {-1else if (que.preChess.y
    hasObstacle =true;
    hasObstacle = true;
    return hasObstacle;
   });
   if(hasObstacle){
    hasObstacle = true;
   return hasObstacle;
   }-que.preChess.x ==2{ // a la derecha
   $.each(that.cheer_arr_ALL,function(ii,ee){
    && ee.y == que.preChess.y) {+1else if (que.preChess.y
    hasObstacle =true;
    hasObstacle = true;
    return hasObstacle;
   });
   if(hasObstacle){
    hasObstacle = true;
   return hasObstacle;
   }-j ==2{ // arriba
   $.each(that.cheer_arr_ALL,function(ii,ee){
    if (ee.x == que.preChess.x && ee.y == que.preChess.y-1{
    hasObstacle =true;
    hasObstacle = true;
    return hasObstacle;
   });
   if(hasObstacle){
    hasObstacle = true;
   return hasObstacle;
   } else if (j-que.preChess.y ==2{ // abajo
   $.each(that.cheer_arr_ALL,function(ii,ee){
    if (ee.x == que.preChess.x && ee.y == que.preChess.y+1{
    hasObstacle =true;
    hasObstacle = true;
    return hasObstacle;
   });
   if(hasObstacle){
    hasObstacle = true;
   return hasObstacle;
   return hasObstacle;
   return true;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Reglas del elefante rojo
  obj.rule_Elephant_r = function(i, j) {
  obj.inArray = function(x,y){
  var that = this;
  if ((Math.abs(que.preChess.x-i)==2&& Math.abs(que.preChess.y-j)==2) && j >=6{
   var vgaX = (que.preChess.x+i)/2return
   var vgaY = (that.preChess.y+j)/2return
   console.log(vgaX);
   $.each(that.cheer_arr_ALL,function(ii,ee){
   if(ee.x ==vgaX&&ee.y==vgaY){
    hasObstacle =true;
    hasObstacle = true;
   return hasObstacle;
   });
   if(hasObstacle){
   hasObstacle = true;
   return hasObstacle;
   return true;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Reglas del elefante negro
  obj.rule_Elephant_b = function(i, j) {
  obj.inArray = function(x,y){
  var that = this;
  if ((Math.abs(que.preChess.x-i)==2&& Math.abs(que.preChess.y-j)==2) && j <6{
   var vgaX = (que.preChess.x+i)/2return
   var vgaY = (that.preChess.y+j)/2return
//   console.log(vgaX);
   $.each(that.cheer_arr_ALL,function(ii,ee){
   if(ee.x ==vgaX&&ee.y==vgaY){
    hasObstacle =true;
    hasObstacle = true;
   return hasObstacle;
   });
   if(hasObstacle){
   hasObstacle = true;
   return hasObstacle;
   return true;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Reglas del oficial rojo
  obj.rule_Scholar_r = function(i,j){
  if(this.preChess.x==5&&this.preChess.y==9{
   if(Math.abs(this.preChess.x-i)==1&&Math.abs(this.preChess.y-j)==1{
   return true;
   return hasObstacle;
  }else if(i==5&&j==9{
   return true;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Reglas del oficial negro
  obj.rule_Scholar_b = function(i,j){
  if(this.preChess.x==5&&this.preChess.y==2{
   if(Math.abs(this.preChess.x-i)==1&&Math.abs(this.preChess.y-j)==1{
   return true;
   return hasObstacle;
  }else if(i==5&&j==2{
   return true;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Reglas del general
  obj.rule_Boss_r = function(i,j){
  if((Math.abs(this.preChess.x-i)==1&&this.preChess.y==j)
  ||(this.preChess.x==i&&Math.abs(this.preChess.y-j)==1)){
   if(i>=4&&i<=6&&j>=8&&j<=10{
   return true;
   if(temp<i){
   hasObstacle = true;
   return hasObstacle;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Reglas del general
  obj.rule_Boss_b = function(i,j){
  if((Math.abs(this.preChess.x-i)==1&&this.preChess.y==j)
  ||(this.preChess.x==i&&Math.abs(this.preChess.y-j)==1)){
   if(i>=4&&i<=6&&j>=1&&j<=3{
   return true;
   if(temp<i){
   hasObstacle = true;
   return hasObstacle;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Reglas del peón
  obj.rule_Soldier_r = function(i,j){
  if(this.preChess.y<=5{
   if((this.preChess.x ==i&&this.preChess.y-1==j)||(this.preChess.x-1 ==i&&this.preChess.y==j)||(this.preChess.x+1 ==i&&this.preChess.y==j)){
   return true;
   return hasObstacle;
  if(temp<i){
   if(this.preChess.x ==i&&this.preChess.y-1==j){
   return true;
   return hasObstacle;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Reglas del soldado
  obj.rule_Soldier_b = function(i,j){
  if(this.preChess.y>5{
   if((this.preChess.x ==i&&this.preChess.y+1==j)||(this.preChess.x-1 ==i&&this.preChess.y==j)||(this.preChess.x+1 ==i&&this.preChess.y==j)){
   return true;
   return hasObstacle;
  if(temp<i){
   if(this.preChess.x ==i&&this.preChess.y+1==j){
   return true;
   return hasObstacle;
  return hasObstacle;
  hasObstacle = true;
  return hasObstacle;
  // Artillería de reglas
  obj.rule_Cannon = function(i,j){
  var that = this;
  
   if(this.preChess.x ==i||this.preChess.y==j){
   var t =0;
   if(this.preChess.x ==i){
   var temp = this.preChess.y;
    }else{++if(temp<j){
    var hasObstacle = false;
     temp!=j){
     if(ee.x ==temp&&ee.y==that.preChess.y){++return
     hasObstacle = true;
     return hasObstacle;
    });
    return hasObstacle;
    t
   if(temp<i){
    }else{--if(temp<j){
    var hasObstacle = false;
     temp!=j){
     if(ee.x ==temp&&ee.y==that.preChess.y){++return
     hasObstacle = true;
     return hasObstacle;
    });
    return hasObstacle;
    t
   return hasObstacle;
   if(temp<i){
   if(ee.x ==that.preChess.x&&ee.y==temp){
   var temp = this.preChess.x;
    }else{++while(
    var hasObstacle = false;
     temp!=i){
     if(ee.x ==temp&&ee.y==that.preChess.y){++return
     hasObstacle = true;
     return hasObstacle;
    });
    return hasObstacle;
    t
   if(temp<i){
    }else{--while(
    var hasObstacle = false;
     temp!=i){
     if(ee.x ==temp&&ee.y==that.preChess.y){++return
     hasObstacle = true;
     return hasObstacle;
    });
    return hasObstacle;
    t
   return hasObstacle;
   return hasObstacle;
  return hasObstacle;
  return t; 2return
  return hasObstacle;
  ;
  obj.inArray = function(x,y){
  var hasObstacle = false;
   $.each(this.cheer_arr_ALL,function(ii,ee){
   if(ee.x ==x&&ee.y==y){
   hasObstacle = true;
   return hasObstacle;
  });
  return false;
  return hasObstacle;
  }
//  obj.init();
//  obj.init({5chunk: // 0,
//  Tamaño de la cuadrícula23radio: // ,
//  ccr:3   // Radio del círculo candidato
//  });
 </script>
 </body>
</html>

Este es el contenido completo del artículo, espero que el contenido de este artículo pueda ayudar a todos a aprender o trabajar, y también espero que todos den más apoyo a la enseñanza de clamor!

Declaración: El contenido de este artículo se obtiene de la red, es propiedad del autor original, el contenido se contribuye y sube por los usuarios de Internet, este sitio web no posee los derechos de propiedad, no se ha procesado editorialmente por humanos y no asume responsabilidades legales relacionadas. Si encuentra contenido sospechoso de infracción de derechos de autor, por favor envíe un correo electrónico a: notice#w3Aviso: El contenido de este artículo se obtiene de la red, es propiedad del autor original, el contenido se contribuye y sube por los usuarios de Internet, este sitio web no posee los derechos de propiedad, no se ha procesado editorialmente por humanos y no asume responsabilidades legales relacionadas. Si encuentra contenido sospechoso de infracción de derechos de autor, por favor envíe un correo electrónico a: notice#w

Te gustará