javascript snake implementation code_javascript skills
During the practice process, I tried to implement the snake game using JS. It actually worked.
Idea: Use a 10px*10px div layer to act as the "pixel", and then use a 40*40 matrix of 160 "pixels" to form the game interface.
The following is the code:
// JavaScript Document
alert("The arrow keys of the keyboard control the direction, and the space bar pauses. LIFE production nhttp://blog.csdn.net/anhulife");
// Add basic graphics blocks, that is, a two-dimensional matrix composed of 160 10 * 10 layers
var rowindex = new Array(40 );
var colindex;
var cell;
//Definition of image unit
var backcolor = "black";
for(var i = 0; i < 40; i )
{
colindex = new Array(40);
for(var j = 0; j < 40; j )
{
// Set the attributes of each cell
cell = document.createElement("div");
cell.style.backgroundColor = backcolor;
cell.style.width = "10px";
cell.style.height = "10px";
cell.style.position = "absolute";
cell.style.left = "" (j * 10 100) "px";
cell.style.top = "" (i * 10 100) " px";
cell.style.overflow = "hidden";
// Add cell
document.body.appendChild(cell);
// Fill column group
colindex[j] = cell;
}
// Fill row group
rowindex[i] = colindex;
}
// Definition of snake type, based on basic image unit
function snake()
{
// Define the body of the snake and initialize
this.bodycolor = "white";
this.bodys = new Array();
for(var i = 20; i < 25; i )
{
rowindex[20][i].style.backgroundColor = this.bodycolor;
//The first coordinate of rowindex is the row index, and the second is Column index
this.bodys.push(rowindex[20][i]);
}
// Define the coordinates of the snake’s head, the first one is the row index, the second one is the column index
this.head = [20, 20];
// Define the direction of the snake, 0 represents left, 1 represents down, 2 represents right, 3 represents up
this.direct = 0;
}
//Move module
function move()
{
// Calculate the coordinates of the head according to the forward direction
switch(this.direct)
{
case 0 :
this.head[1] -= 1;
break;
case 1 :
this.head[0] = 1;
break;
case 2 :
this.head[1] = 1;
break;
case 3 :
this.head[0] -= 1;
break;
}
// Determine whether Out of bounds
if(this.head[0] < 0 || this.head[0] > 39 || this.head[1] < 0 || this.head[1] > 39)
{
// If it is out of bounds, return false
return false;
}
else
// If it is not out of bounds, check the properties of the next element, and eat it if it is food. and regenerated into food.If it is itself, return false
if(this.head[0] == food[0] && this.head[1] == food[1])
{
// If it is food
rowindex[this.head[0]][this.head[1]].style.backgroundColor = this.bodycolor;
this.bodys.unshift(rowindex[this.head[0]][this. head[1]]);
score ;
makefood();
return true;
}
else
// if it is itself
if(rowindex[this .head[0]][this.head[1]].style.backgroundColor == this.bodycolor)
{
if(rowindex[this.head[0]][this.head[1]] == this.bodys.pop())// If it is its tail
{
this.bodys.unshift(rowindex[this.head[0]][this.head[1]]);
return true;
}
// If not the tail
return false;
}
// None of the above
this.bodys.pop().style.backgroundColor = backcolor;
rowindex[this.head[0]][this.head[1]].style.backgroundColor = this.bodycolor;
this.bodys.unshift(rowindex[this.head[0]] [this.head[1]]);
return true;
}
snake.prototype.move = move;
// Generate food module
var foodcolor = "blue";
var food = [20, 17];
rowindex[food[0]][food[1]].style.backgroundColor = foodcolor;
function makefood()
{
var tempfood ;
var tempelement;
out :
while(true)
{
tempfood = [Math.round(Math.random() * 39), Math.round(Math.random( ) * 39)];
tempelement = rowindex[tempfood[0]][tempfood[1]];
for(var i in s.bodys)
{
if(s.bodys[ i] == tempelement)
{
// If the randomly generated food is on the snake's body, jump out and continue
continue out;
}
// Generate food successfully
break out;
}
}
food = tempfood;
rowindex[food[0]][food[1]].style.backgroundColor = foodcolor;
}
// Turning module and pausing module
document.onkeydown = turnorstop;
function turnorstop(event)
{
if(window.event != undefined)
{
if(parseInt(window .event.keyCode)==32)
{
alert("Take a break");
}
else
{
switch(parseInt(window.event.keyCode))
{
case 37 :
if(s.direct!=2)
s.direct = 0;
break;
case 38 :
if(s.direct !=1)
s.direct = 3;
break;
case 39:
if(s.direct!=0)
s.direct = 2;
break;
case 40:
if(s.direct!=3)
s.direct = 1;
break;
}
}
}
else
{
if(parseInt(event.which)==32)
{
alert("Take a break");
}
else
{
switch(parseInt (event.which))
{
case 37 :
if(s.direct!=2)
s.direct = 0;
break;
case 38 :
if(s.direct!=1)
s.direct = 3;
break;
case 39:
if(s.direct!=0)
s.direct = 2 ;
break;
case 40:
if(s.direct!=3)
s.direct = 1;
break;
}
}
}
}
//Start the game module
var s = new snake();
var time = 60;//Snake’s speed index
function startmove()
{
if(s.move())
{
setTimeout(startmove, time);
}
else
{
alert("GAME OVERn Your score is:" score "point");
}
}
//Score setting
var score = -1;
//Run the game
startmove();
Just connect the JS file in the web page.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data
