HTML+JavaScript案例分享: 打造经典俄罗斯方块,详解实现全过程
myzbx 2024-12-11 15:56 56 浏览
大家好,我是魏大帅,今天教大家一个装[啤酒]的方法。你说你不懂前端,没关系我教你。打开你的电脑,新建一个txt文档,把我文章最后面的完整代码复制到文档里面,然后把txt文档的后缀名改成.html 就ok啦,你可以直接把这个html文件发给你朋友,说这是哥们我做的,[给力]不!
哈哈,前面这段纯属开玩笑的,主要还是给各位前端开发,或者想从事前端开发的帅哥美女们,一个可以借鉴的案例。有大神觉得自己有更厉害的案例,也可以告诉我,我也学习学习,咱们互相学习互相进步。话不多说,上干货!
这是俄罗斯方块的效果图:
一、游戏界面与布局
我们最先借助 HTML 和 CSS 来打造游戏的界面。这页面主要涵盖了一个游戏区域,也就是 (<canvas>元素),还有一个包含“开始游戏”按钮以及得分展示的区域。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>俄罗斯方块</title>
<style>
body {
background-color: #e0e0e0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
}
#game-container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
display: flex;
flex-direction: column;
align-items: center;
}
#game-board {
border: 3px solid #333;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
width: 350px;
height: 700px;
}
#startButtonAndScore {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-top: 15px;
}
#startButton {
padding: 12px 20px;
font-size: 16px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#startButton:hover {
background-color: #45a049;
}
#scoreContainer {
font-size: 18px;
font-weight: bold;
color: #555;
}
</style>
</head>
<body>
<div id="game-container">
<canvas id="game-board" width="350" height="700"></canvas>
<div id="startButtonAndScore">
<button id="startButton">开始游戏</button>
<div id="scoreContainer">得分:0</div>
</div>
</div>
<script>
// 以下是 JavaScript 代码部分
</script>
</body>
</html>
二、游戏逻辑实现
1. 定义方块形状和颜色
我们先把各种各样可能会出现的方块形状和相对应的颜色给定义好了。
const shapes = [
[
[1, 1],
[1, 1]
],
[
[0, 1, 0],
[1, 1, 1]
],
[
[1, 0],
[1, 0],
[1, 1]
],
[
[0, 1],
[0, 1],
[1, 1]
],
[
[1, 1, 1],
[0, 1, 0]
],
[
[1, 1, 0],
[0, 1, 1]
],
[
[0, 1, 1],
[1, 1, 0]
]
];
// 不同形状对应的颜色数组
const colors = ['red', 'blue', 'green', 'yellow', 'orange', 'purple', 'cyan'];
2. 游戏状态变量
设置了一连串的游戏状态变量,用来追踪游戏板的状况、当下正在下落的方块、所在位置、得分情况,还有游戏是不是结束了之类的信息。
let board = []; // 游戏板状态,二维数组表示游戏区域的方块分布
let currentShape = null; // 当前正在下落的形状
let currentShapeColor = null; // 当前形状的颜色
let currentX = 0; // 当前形状在游戏板上的横坐标
let currentY = 0; // 当前形状在游戏板上的纵坐标
let intervalId = null; // 游戏循环的定时器 ID
let score = 0; // 玩家得分
let gameOver = false; // 游戏是否结束的标志
3. 创建游戏板
用一个函数来把游戏板初始化,把每个格子都初始化成 0 ,意思就是都为空。
function createBoard() {
// 遍历每一行
for (let i = 0; i < 20; i++) {
board[i] = [];
// 遍历每一列,将每个格子初始化为 0
for (let j = 0; j < 10; j++) {
board[i][j] = 0;
}
}
}
4. 绘制游戏板
这个函数负责在<canvas>上面画游戏板和当下正在掉落的方块。要是格子里有方块,那就依据方块的颜色把对应的区域填满。
function drawBoard() {
const canvas = document.getElementById('game-board');
const ctx = canvas.getContext('2d');
ctx.clearRect(0, 0, canvas.width, canvas.height);
// 遍历游戏板的每一行和每一列
for (let i = 0; i < 20; i++) {
for (let j = 0; j < 10; j++) {
if (board[i][j] > 0) {
// 根据格子中的值确定颜色并填充方块
ctx.fillStyle = colors[board[i][j] - 1];
ctx.fillRect(j * (canvas.width / 10), i * (canvas.height / 20), canvas.width / 10, canvas.height / 20);
}
}
}
// 如果有正在下落的方块且游戏未结束,绘制该方块
if (currentShape &&!gameOver) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
ctx.fillStyle = currentShapeColor;
ctx.fillRect((currentX + j) * (canvas.width / 10), (currentY + i) * (canvas.height / 20), canvas.width / 10, canvas.height / 20);
}
}
}
}
}
5. 生成新的形状
随便挑一个方块的形状和颜色,把它的初始位置定在游戏板中央靠上的地方。
function newShape() {
const randomShapeIndex = Math.floor(Math.random() * shapes.length);
// 随机选择一个形状并设置为当前形状
currentShape = shapes[randomShapeIndex];
// 选择对应的颜色
currentShapeColor = colors[randomShapeIndex];
// 计算初始横坐标使其在游戏板中央
currentX = Math.floor(10 / 2 - currentShape[0].length / 2);
currentY = 0;
}
6. 检查是否可以移动
判断一下当前的方块能不能在给定的那个方向上移动,如果移动后的位置超过了游戏板的边界,或者已经有别的方块占着了,那就不能移动。
function canMove(x, y) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
const newX = currentX + j + x;
const newY = currentY + i + y;
// 检查新位置是否合法
if (newX < 0 || newX >= 10 || newY >= 20 || (newY >= 0 && board[newY][newX])) {
return false;
}
}
}
}
return true;
}
7. 移动形状
要是能移动,那就把方块的位置更新一下。
function moveShape(x, y) {
if (canMove(x, y)) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
// 将当前位置在游戏板上的值设置为 0,表示该位置不再有方块
board[currentY + i][currentX + j] = 0;
}
}
}
// 更新横坐标和纵坐标
currentX += x;
currentY += y;
}
}
8. 旋转形状
用转换矩阵的办法来让方块旋转。先弄出一个新的形状的数组,然后看看旋转后的形状能不能放在游戏板上,如果能,就把当前的形状更新成旋转后的形状。
function rotateShape() {
const newShape = [];
for (let i = 0; i < currentShape[0].length; i++) {
newShape[i] = [];
for (let j = 0; j < currentShape.length; j++) {
// 实现形状的旋转
newShape[i][j] = currentShape[currentShape.length - 1 - j][i];
}
}
if (canMove(0, 0)) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
board[currentY + i][currentX + j] = 0;
}
}
}
// 更新当前形状为旋转后的形状
currentShape = newShape;
}
}
9. 固定形状到游戏板
判断一下方块是不是该停止往下落了,如果是,那就把方块固定在游戏板上,再检查检查有没有完整的行能消除掉。要是有,就把这些行删掉,得分也增加,然后生成新的方块。要是方块还能往下落,那就接着往下落。
function fixShape() {
let shouldStop = false;
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
const newY = currentY + i;
if (newY + 1 >= 20 || (newY + 1 >= 0 && board[newY + 1][currentX + j])) {
shouldStop = true;
break;
}
}
}
if (shouldStop) break;
}
if (shouldStop) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
if (currentY + i < 20 && currentX + j >= 0 && currentX + j < 10 && board[currentY + i][currentX + j] === 0) {
board[currentY + i][currentX + j] = colors.indexOf(currentShapeColor) + 1;
}
}
}
}
removeFullLines();
newShape();
checkGameOver();
} else {
moveShape(0, 1);
}
}
10. 检查是否有满行并删除
把游戏板的每一行都走一遍,检查检查有没有完整的行。要是有,就把那行删掉,在顶部加上一行空的,同时得分也增加。
function removeFullLines() {
let linesRemoved = 0;
for (let i = board.length - 1; i >= 0; i--) {
if (board[i].every(cell => cell > 0)) {
board.splice(i, 1);
board.unshift(new Array(10).fill(0));
linesRemoved++;
}
}
if (linesRemoved > 0) {
score += linesRemoved * 10;
document.getElementById('scoreContainer').innerText = '得分:' + score;
}
}
11. 检查游戏是否结束
检查游戏板的第一行有没有方块,要是有,那游戏就结束啦
function checkGameOver() {
for (let j = 0; j < 10; j++) {
if (board[0][j] > 0) {
gameOver = true;
clearInterval(intervalId);
alert('游戏结束!你的得分是:' + score);
break;
}
}
}
12. 游戏循环
游戏循环的那个函数不停地查看方块能不能下落,要是不能下落或者游戏已经结束了,那就调用 fixShape 函数把方块给定住;要是能下落,就让方块接着往下落,并且把游戏板给画出来。
function gameLoop() {
if (!canMove(0, 1) || gameOver) {
fixShape();
} else {
moveShape(0, 1);
}
drawBoard();
}
13. 开始游戏
要是点击“开始游戏”这个按钮,就调用这个函数。要是已经有游戏正在进行当中,那就先把旧游戏停下,接着把游戏状态重置了,创建一个新的游戏板,生成新的方块,启动游戏循环,然后把得分显示也更新一下。
function startGame() {
if (intervalId) {
clearInterval(intervalId);
}
board = [];
currentShape = null;
currentShapeColor = null;
currentX = 0;
currentY = 0;
score = 0;
gameOver = false;
createBoard();
newShape();
intervalId = setInterval(gameLoop, 1000);
document.getElementById('scoreContainer').innerText = '得分:' + score;
}
14. 按键事件处理
咱们监听键盘事件,要是按了左、右、下、上箭头键,那就分别对应着方块的左移、右移、下落和旋转这些操作。要是游戏已经结束了,那就不响应按键事件。
document.addEventListener('keydown', event => {
if (gameOver) return;
switch (event.keyCode) {
case 37: // 左箭头
moveShape(-1, 0);
break;
case 39: // 右箭头
moveShape(1, 0);
break;
case 40: // 下箭头
moveShape(0, 1);
break;
case 38: // 上箭头
rotateShape();
break;
}
drawBoard();
});
三、完整代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>俄罗斯方块</title>
<style>
body {
background-color: #e0e0e0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
}
#game-container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
display: flex;
flex-direction: column;
align-items: center;
}
#game-board {
border: 3px solid #333;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
width: 350px;
height: 700px;
}
#startButtonAndScore {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-top: 15px;
}
#startButton {
padding: 12px 20px;
font-size: 16px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#startButton:hover {
background-color: #45a049;
}
#scoreContainer {
font-size: 18px;
font-weight: bold;
color: #555;
}
</style>
</head>
<body>
<div id="game-container">
<canvas id="game-board" width="350" height="700"></canvas>
<div id="startButtonAndScore">
<button id="startButton">开始游戏</button>
<div id="scoreContainer">得分:0</div>
</div>
</div>
<script>
// 定义方块形状和颜色数组
const shapes = [
[
[1, 1],
[1, 1]
],
[
[0, 1, 0],
[1, 1, 1]
],
[
[1, 0],
[1, 0],
[1, 1]
],
[
[0, 1],
[0, 1],
[1, 1]
],
[
[1, 1, 1],
[0, 1, 0]
],
[
[1, 1, 0],
[0, 1, 1]
],
[
[0, 1, 1],
[1, 1, 0]
]
];
const colors = ['red', 'blue', 'green', 'yellow', 'orange', 'purple', 'cyan'];
// 游戏状态变量
let board = []; // 游戏板状态
let currentShape = null; // 当前正在下落的形状
let currentShapeColor = null; // 当前形状的颜色
let currentX = 0; // 当前形状的横坐标
let currentY = 0; // 当前形状的纵坐标
let intervalId = null; // 游戏循环的定时器 ID
let score = 0; // 得分
let gameOver = false; // 游戏是否结束标志
// 创建游戏板
function createBoard() {
for (let i = 0; i < 20; i++) {
board[i] = [];
for (let j = 0; j < 10; j++) {
board[i][j] = 0;
}
}
}
// 绘制游戏板
function drawBoard() {
const canvas = document.getElementById('game-board');
const ctx = canvas.getContext('2d');
ctx.clearRect(0, 0, canvas.width, canvas.height);
for (let i = 0; i < 20; i++) {
for (let j = 0; j < 10; j++) {
if (board[i][j] > 0) {
ctx.fillStyle = colors[board[i][j] - 1];
ctx.fillRect(j * (canvas.width / 10), i * (canvas.height / 20), canvas.width / 10, canvas.height / 20);
}
}
}
if (currentShape &&!gameOver) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
ctx.fillStyle = currentShapeColor;
ctx.fillRect((currentX + j) * (canvas.width / 10), (currentY + i) * (canvas.height / 20), canvas.width / 10, canvas.height / 20);
}
}
}
}
}
// 生成新的形状
function newShape() {
const randomShapeIndex = Math.floor(Math.random() * shapes.length);
currentShape = shapes[randomShapeIndex];
currentShapeColor = colors[randomShapeIndex];
currentX = Math.floor(10 / 2 - currentShape[0].length / 2);
currentY = 0;
}
// 检查是否可以移动
function canMove(x, y) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
const newX = currentX + j + x;
const newY = currentY + i + y;
if (newX < 0 || newX >= 10 || newY >= 20 || (newY >= 0 && board[newY][newX])) {
return false;
}
}
}
}
return true;
}
// 移动形状
function moveShape(x, y) {
if (canMove(x, y)) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
board[currentY + i][currentX + j] = 0;
}
}
}
currentX += x;
currentY += y;
}
}
// 旋转形状
function rotateShape() {
const newShape = [];
for (let i = 0; i < currentShape[0].length; i++) {
newShape[i] = [];
for (let j = 0; j < currentShape.length; j++) {
newShape[i][j] = currentShape[currentShape.length - 1 - j][i];
}
}
if (canMove(0, 0)) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
board[currentY + i][currentX + j] = 0;
}
}
}
currentShape = newShape;
}
}
// 固定形状到游戏板
function fixShape() {
let shouldStop = false;
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
const newY = currentY + i;
if (newY + 1 >= 20 || (newY + 1 >= 0 && board[newY + 1][currentX + j])) {
shouldStop = true;
break;
}
}
}
if (shouldStop) break;
}
if (shouldStop) {
for (let i = 0; i < currentShape.length; i++) {
for (let j = 0; j < currentShape[i].length; j++) {
if (currentShape[i][j]) {
if (currentY + i < 20 && currentX + j >= 0 && currentX + j < 10 && board[currentY + i][currentX + j] === 0) {
board[currentY + i][currentX + j] = colors.indexOf(currentShapeColor) + 1;
}
}
}
}
removeFullLines();
newShape();
checkGameOver();
} else {
moveShape(0, 1);
}
}
// 检查是否有满行并删除
function removeFullLines() {
let linesRemoved = 0;
for (let i = board.length - 1; i >= 0; i--) {
if (board[i].every(cell => cell > 0)) {
board.splice(i, 1);
board.unshift(new Array(10).fill(0));
linesRemoved++;
}
}
if (linesRemoved > 0) {
score += linesRemoved * 10;
document.getElementById('scoreContainer').innerText = '得分:' + score;
}
}
// 检查游戏是否结束
function checkGameOver() {
for (let j = 0; j < 10; j++) {
if (board[0][j] > 0) {
gameOver = true;
clearInterval(intervalId);
alert('游戏结束!你的得分是:' + score);
break;
}
}
}
// 游戏循环
function gameLoop() {
if (!canMove(0, 1) || gameOver) {
fixShape();
} else {
moveShape(0, 1);
}
drawBoard();
}
// 开始游戏
function startGame() {
if (intervalId) {
// 如果已经有游戏在进行,先停止旧的游戏
clearInterval(intervalId);
}
// 重置游戏状态
board = [];
currentShape = null;
currentShapeColor = null;
currentX = 0;
currentY = 0;
score = 0;
gameOver = false;
createBoard();
newShape();
intervalId = setInterval(gameLoop, 1000);
document.getElementById('scoreContainer').innerText = '得分:' + score;
}
document.getElementById('startButton').addEventListener('click', startGame);
// 按键事件处理
document.addEventListener('keydown', event => {
if (gameOver) return;
switch (event.keyCode) {
case 37: // 左箭头
moveShape(-1, 0);
break;
case 39: // 右箭头
moveShape(1, 0);
break;
case 40: // 下箭头
moveShape(0, 1);
break;
case 38: // 上箭头
rotateShape();
break;
}
drawBoard();
});
</script>
</body>
</html>
凭借上面这些代码,咱们顺利做成了一个挺简单的俄罗斯方块游戏。
希望这篇文章能对你有所帮助![赞][比心]
相关推荐
- Xbox Series X具有比PS5更高的有效I/O吞吐量
-
来源:cnBeta在今年3月宣布XboxSeriesX时,微软就已经预告了全新的XboxVelocity架构,宣称可为次世代主机带来前所未有的功能体验。据悉,XboxVelocity体系结构有...
- 科个普:固态硬盘之友!DirectStorage显存直通车
-
谁能想到有一天,固态硬盘之友竟然是一个API——为了解决游戏Loading烦人的等待时间,微软利用NVMeSSD的超高读写速度特性,有针对性的开发了DirectStorageAPI,它可以让游戏直...
- 虚拟机备份应注意四大问题_虚拟机备份命令
-
2015-01-1405:48:00作者:赵为民虚拟化技术在近两年发展的非常快,很多企业都采用虚拟机技术来解决企业IT基础设施所面临的一些问题,如硬件过度浪费,扩展难等问题,但对于企业来说,保证企...
- PS4支持进入倒计时:2026年春季新发售的PS4游戏将停用部分功能
-
PlayStation似乎正在逐步开始淘汰对上世代主机PS4的支持。据InsiderGaming独家报道,PS4的一些传统服务将在2026年春季停止提供。InsiderGaming收到的文件显示...
- 2026年春季起索尼PS4平台新发行游戏将停用部分旧版PSN功能
-
IT之家10月2日消息,据游戏媒体InsiderGaming今天报道,部分文件显示,索尼互娱似乎已经准备开始逐步淘汰PS4游戏机。InsiderGaming收到的文件显示,索尼...
- 吞吐量18.09GB/s,硬盘启用DirectStorage 1.1的GPU解压功能实测
-
IT之家12月21日消息,AMD在今年5月初曾表示,即便用户装备了NVMe的存储设备,也可能无法满足SmartAccessStorage(该技术建立在微软DirectStora...
- 面试官:如何让localStorage支持过期时间设置?
-
聊到localStorage想必熟悉前端的朋友都不会陌生,我们可以使用它提供的getItem,setItem,removeItem,clear这几个API轻松的对存储在浏览器本地的...
- 2025年是时候对localstorage说再见了
-
localStorage隐藏风险在前端开发领域,localStorage自诞生之日起就一直是数据持久化的首选方案。凭借其看似简单的setItem/getItemAPI,它成为了存储用户偏好和应用状...
- 前端最能打的本地存储方案_前端数据存储
-
前言之前开发了一个离线存储的需求,需要在本地存储较大的数据量,并且还要考虑到多种场景下的存储方式兼容。产品的原话就是“要又大又全”。既然存储量大,也要覆盖全多种设备多种浏览器。方案选择既然要存储的数量...
- 抛弃 localStorage,这个存储方案更安全更高效
-
在前端开发的世界里,浏览器存储一直是我们处理客户端数据持久化的重要工具。多年来,localStorage凭借其简单易用的API和跨会话持久化能力,成为了许多开发者的默认选择。然而,随着Web...
- 软件性能测试中链接追踪工具Zipkin工具的使用
-
大家好,今天一起来学习一下在软件性能测试过程中如何使用Zipkin这个工具来追踪链接程序逻辑链路上的相关问题首先我们了解一下Zipkin是什么?Zipkin是Twitter的一个开源项目,基于G...
- Vue3管理系统实现动态路由和动态侧边菜单栏
-
在做Vue管理系统的时候,都会遇到的一个需求:每个用户的权限是不一样的,那么他可以访问的页面(路由),可以操作的菜单选项是不一样的,如果由后端控制,我们前端需要去实现动态路由,动态渲染侧边菜单栏。实现...
- JS删除上一条浏览器历史记录的方法(登录回退)
-
JS使用window.location.replace删除上一条浏览器历史记录的方法(登录回退)一、问题如果用户登录状态过期,或者没有登录,当用户登录之后回退上一个页面的时候,就会回退到登录页面,这样...
- LightRAG: 简单快速的检索增强生成工具
-
这里是Aideas,每日分享AI相关资讯。本文由AideasAgent整理并推荐。项目地址:/HKUDS/LightRAG,程序语言:Python,收藏:14,287,分支:1,996,...
- 实战指南:React 路由与Ant Design集成
-
路由管理:如何在React项目中集成react-router-dom使用前的准备:安装react-router-dom为了在React项目中使用路由功能,首先需要安装react-router-dom...
- 一周热门
- 最近发表
- 标签列表
-
- HTML 简介 (30)
- HTML 响应式设计 (31)
- HTML URL 编码 (32)
- HTML Web 服务器 (31)
- HTML 表单属性 (32)
- HTML 音频 (31)
- HTML5 支持 (33)
- HTML API (36)
- HTML 总结 (32)
- HTML 全局属性 (32)
- HTML 事件 (31)
- HTML 画布 (32)
- HTTP 方法 (30)
- 键盘快捷键 (30)
- CSS 语法 (35)
- CSS 轮廓宽度 (31)
- CSS 谷歌字体 (33)
- CSS 链接 (31)
- CSS 定位 (31)
- CSS 图片库 (32)
- CSS 图像精灵 (31)
- SVG 文本 (32)
- 时钟启动 (33)
- HTML 游戏 (34)
- JS Loop For (32)