search
HomeWeb Front-endJS TutorialImplementing backgammon game based on JavaScript

Implementing backgammon game based on JavaScript

Jan 16, 2018 am 11:13 AM
javascriptjsbackgammon

This article mainly introduces in detail the implementation of the backgammon game based on JavaScript. It has certain reference and value for learning JavaScript. Friends who are interested in JavaScript can refer to this article.

The example in this article shares the specific code for implementing backgammon in js for your reference. The specific content is as follows

Thinking:

##1 , first use canvas to draw the backgammon board

2. Get the position of the mouse click
3. Judge based on the position of the mouse click and draw the chess pieces
4. Judge whether you have won based on the chess pieces placed

Code:

<!DOCTYPE html> 
<html> 
<head lang="en"> 
 <meta charset="UTF-8"> 
 <title></title> 
 <style> 
  * { 
   padding: 0; 
   margin: 0; 
  } 
  canvas { 
   margin: 10px; 
   border: 2px solid #000; 
  } 
  #box { 
   display: inline-block; 
   position: absolute; 
   margin-top: 200px; 
   margin-left: 100px; 
  } 
  span { 
   font: 24px "微软雅黑"; 
   display: inline-block; 
   height: 50px; 
  } 
  input { 
   margin-top: 30px; 
   display: block; 
   width: 100px; 
   height: 50px; 
   font: 16px "微软雅黑"; 
   color: #fff; 
   background-color: #0099cc; 
  } 
 </style> 
</head> 
<body> 
<canvas width="640" height="640" id="cas"> 
 您的浏览器不支持canvas,请升级到最新的浏览器 
</canvas> 
<p id="box"> 
 <span id="txt"></span> 
 <input type="button" id="btn" value="重新开始"/> 
 
</p> 
 
<script> 
 var flag = true; //true代表白棋下的棋子,false代表黑棋下的棋子 
 var isWin = false; //判断是否结束,true结束,false没有结束 
 var step = 40; //设置每个格子的宽高都是40 
 
 var txt = document.getElementById("txt"); 
 var btn = document.getElementById("btn"); 
 var cas = document.getElementById("cas");// 获取画布对象 
 var ctx = cas.getContext("2d"); //画布上下文 
 
// 创建图片对象 
 var img_b = new Image(); 
 img_b.src = "imgs/b.png";//设置黑棋图片路径 
 var img_w = new Image(); 
 img_w.src = "imgs/w.png";//设置白棋图片路径 
 
// 用二维数组来保存棋盘,0代表没有走过,1为白棋走过,2为黑棋走过 
 var arr = new Array(15); //声明一个一维数组 
 for (var i = 0; i < 15; i++) { 
  arr[i] = new Array(15); //每个值再声明一个一维数组,这样就组成了一个二维数组 
  for (var j = 0; j < 15; j++) { 
   arr[i][j] = 0; 
  } 
 } 
 
 //绘制棋盘 
 function drawLine() { 
  for (var i = 0; i < cas.width / step; i++) { 
   // 画竖线 
   ctx.moveTo((i + 1) * step, 0); 
   ctx.lineTo((i + 1) * step, cas.height); 
   // 画横线 
   ctx.moveTo(0, (i + 1) * step); 
   ctx.lineTo(cas.width, (i + 1) * step); 
   ctx.stroke(); 
  } 
 } 
 //获取鼠标点击的位置 
 cas.onclick = function (e) { 
  // 先判断游戏是否结束 
  if (isWin) { 
   alert("游戏已经结束,请刷新重新开始!"); 
   return 0; 
  } 
  //判断棋子显示的地方,四条边上不显示棋子, 
  //鼠标点击的位置减去边框距离页面的上和左的距离(10),减去一个格子宽高的一半(20) 
  var x = (e.clientX - 10 - 20) / 40; 
  var y = (e.clientY - 10 - 20) / 40; 
 
  //进行取整来确定棋子最终显示的区域 
  x = parseInt(x); 
  y = parseInt(y); 
  //如果超出棋盘或者在棋盘边界直接返回,边界上不能画棋子 
  if(x < 0 || x >= 15 || y < 0 || y >= 15) { 
   return; 
  } 
  //进行判断该位置是否已经显示过棋子 
  if (arr[x][y] != 0) { 
   alert("你不能在这个位置下棋"); 
   return; 
  } 
  // 判断是显示黑子还是白子 
  if (flag) {//白子 
   flag = false; //将标志置为false,表示下次为黑子 
   drawChess(1, x, y); //调用函数来画棋子 
 
  } else {//黑子 
   flag = true; //将标志置为true,表示下次为白子 
   drawChess(2, x, y); //调用函数来画棋子 
 
  } 
 } 
 //画棋子 
 function drawChess(num, x, y) { 
  //根据x和y确定图片显示位置,让图片显示在十字线中间,因为一个格子为40,图片大小为30,所以40-30/2等于25,所以需要加上25 
  var x0 = x * step + 25; 
  var y0 = y * step + 25; 
  if (num == 1) { 
   //绘制白棋 
   ctx.drawImage(img_w, x0, y0); 
   arr[x][y] = 1; //白子 
  } else if (num == 2) { 
   // 绘制黑棋 
   ctx.drawImage(img_b, x0, y0); 
   arr[x][y] = 2; //黑子 
  } 
  //调用函数判断输赢 
  judge(num, x, y); 
 } 
 //判断输赢 
 function judge(num, x, y) { 
  var n1 = 0, //左右方向 
    n2 = 0, //上下方向 
    n3 = 0, //左上到右下方向 
    n4 = 0; // 右上到左下方向 
  //***************左右方向*************
  //先从点击的位置向左寻找,相同颜色的棋子n1自加,直到不是相同颜色的棋子,则跳出循环 
  for (var i = x; i >= 0; i--) { 
   if (arr[i][y] != num) { 
    break; 
   } 
   n1++; 
  } 
  //然后从点击的位置向右下一个位置寻找,相同颜色的棋子n1自加,直到不是相同颜色的棋子,则跳出循环 
  for (var i = x + 1; i < 15; i++) { 
   if (arr[i][y] != num) { 
    break; 
   } 
   n1++; 
  } 
  //****************上下方向************ 
  for (var i = y; i >= 0; i--) { 
   if (arr[x][i] != num) { 
    break; 
   } 
   n2++; 
  } 
  for (var i = y + 1; i < 15; i++) { 
   if (arr[x][i] != num) { 
    break; 
   } 
   n2++; 
  } 
  //****************左上到右下斜方向*********** 
  for(var i = x, j = y; i >=0, j >= 0; i--, j--) { 
   if (i < 0 || j < 0 || arr[i][j] != num) { 
    break; 
   } 
   n3++; 
  } 
  for(var i = x+1, j = y+1; i < 15, j < 15; i++, j++) { 
   if (i >= 15 || j >= 15 || arr[i][j] != num) { 
    break; 
   } 
   n3++; 
  } 
  //****************右上到左下斜方向*************
  for(var i = x, j = y; i >= 0, j < 15; i--, j++) { 
   if (i < 0 || j >= 15 || arr[i][j] != num) { 
    break; 
   } 
   n4++; 
  } 
  for(var i = x+1, j = y-1; i < 15, j >= 0; i++, j--) { 
   if (i >= 15 || j < 0 || arr[i][j] != num) { 
    break; 
   } 
   n4++; 
  } 
  //用一个定时器来延时,否则会先弹出对话框,然后才显示棋子 
  var str; 
  if (n1 >= 5 || n2 >= 5 || n3 >= 5 || n4 >= 5) { 
   if (num == 1) {//白棋 
    str = "白棋赢了,游戏结束!" 
   } else if (num == 2) {//黑棋 
    str = "黑棋赢了,游戏结束!" 
   } 
   txt.innerHTML = str; 
   isWin = true; 
  } 
 } 
 //重新开始 
 btn.onclick = function() { 
  flag = true; 
  isWin = false; 
 
  for (var i = 0; i < 15; i++) { 
   for (var j = 0; j < 15; j++) { 
    arr[i][j] = 0; 
   } 
  } 
  ctx.clearRect(0, 0, 640, 640); 
  txt.innerHTML = ""; 
  drawLine(); 
 } 
 drawLine(); 
</script> 
</body> 
</html>

The above is the entire content of this article, I hope it will be helpful to everyone’s study! !

Related recommendations:

Javascript uses rem to do responsive development example sharing

A brief discussion on the difference between Ajax and JavaScript

How to implement red envelope grabbing plug-in in Javascript web page

The above is the detailed content of Implementing backgammon game based on JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

Node.js Streams with TypeScriptNode.js Streams with TypeScriptApr 30, 2025 am 08:22 AM

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

Python vs. JavaScript: Performance and Efficiency ConsiderationsPython vs. JavaScript: Performance and Efficiency ConsiderationsApr 30, 2025 am 12:08 AM

The differences in performance and efficiency between Python and JavaScript are mainly reflected in: 1) As an interpreted language, Python runs slowly but has high development efficiency and is suitable for rapid prototype development; 2) JavaScript is limited to single thread in the browser, but multi-threading and asynchronous I/O can be used to improve performance in Node.js, and both have advantages in actual projects.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function